-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* whatsnew cleanup * include 0.1.2 in whatsnew index * add empty 0.1.3 whatsnew
- Loading branch information
1 parent
b9b8766
commit beafe9d
Showing
3 changed files
with
76 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,73 @@ | ||
.. _whatsnew_012: | ||
|
||
0.1.2 (TBD) | ||
------------------------- | ||
|
||
* Removed empty modules ``pvanalytics.filtering`` and ``pvanalytics.fitting`` | ||
until the relevant functionality is added to the package. (:pull:`145`) | ||
0.1.2 (August 18, 2022) | ||
----------------------- | ||
|
||
Enhancements | ||
~~~~~~~~~~~~ | ||
* Detect data shifts in daily summed time series with | ||
:py:func:`pvanalytics.quality.data_shifts.detect_data_shifts` | ||
:py:func:`pvanalytics.quality.data_shifts.detect_data_shifts` | ||
and :py:func:`pvanalytics.quality.data_shifts.get_longest_shift_segment_dates`. (:pull:`142`) | ||
|
||
Bug Fixes | ||
~~~~~~~~~ | ||
|
||
* Updated the outliers routine for z-score, where the NaN mask is assigned the time | ||
* Fix :py:func:`pvanalytics.quality.outliers.zscore` so that the NaN mask is assigned the time | ||
series index (:pull:`138`) | ||
|
||
Requirements | ||
~~~~~~~~~~~~ | ||
|
||
|
||
Documentation | ||
~~~~~~~~~~~~~ | ||
Added fifteen new gallery example pages: | ||
|
||
* ``pvanalytics.features.clipping`` (:issue:`133`, :pull:`134`): | ||
|
||
* :py:func:`~pvanalytics.features.clipping.geometric` | ||
|
||
* ``pvanalytics.quality.gaps`` (:issue:`133`, :pull:`135`): | ||
|
||
* :py:func:`~pvanalytics.quality.gaps.stale_values_diff` | ||
* :py:func:`~pvanalytics.quality.gaps.stale_values_round` | ||
* :py:func:`~pvanalytics.quality.gaps.interpolation_diff` | ||
* :py:func:`~pvanalytics.quality.gaps.completeness_score` | ||
* :py:func:`~pvanalytics.quality.gaps.complete` | ||
* :py:func:`~pvanalytics.quality.gaps.trim_incomplete` | ||
|
||
* ``pvanalytics.quality.outliers`` (:issue:`133`, :pull:`138`): | ||
|
||
* :py:func:`~pvanalytics.quality.outliers.tukey` | ||
* :py:func:`~pvanalytics.quality.outliers.zscore` | ||
* :py:func:`~pvanalytics.quality.outliers.hampel` | ||
|
||
* ``pvanalytics.features.daytime`` (:issue:`133`, :pull:`139`): | ||
|
||
* :py:func:`~pvanalytics.features.daytime.power_or_irradiance` | ||
|
||
* ``pvanalytics.quality.irradiance`` (:issue:`133`, :pull:`140`): | ||
|
||
* :py:func:`~pvanalytics.quality.irradiance.clearsky_limits` | ||
* :py:func:`~pvanalytics.quality.irradiance.daily_insolation_limits` | ||
* :py:func:`~pvanalytics.quality.irradiance.check_irradiance_consistency_qcrad` | ||
* :py:func:`~pvanalytics.quality.irradiance.check_irradiance_limits_qcrad` | ||
|
||
* ``pvanalytics.features.orientation`` (:issue:`133`, :pull:`148`): | ||
|
||
* :py:func:`~pvanalytics.features.orientation.fixed_nrel` | ||
* :py:func:`~pvanalytics.features.orientation.tracking_nrel` | ||
|
||
* ``pvanalytics.quality.data_shifts`` (:pull:`131`): | ||
|
||
* :py:func:`~pvanalytics.quality.data_shifts.detect_data_shifts` | ||
* :py:func:`~pvanalytics.quality.data_shifts.get_longest_shift_segment_dates` | ||
|
||
Other | ||
~~~~~ | ||
* Removed empty modules ``pvanalytics.filtering`` and ``pvanalytics.fitting`` | ||
until the relevant functionality is added to the package. (:pull:`145`) | ||
|
||
* Added an example for | ||
:py:func:`pvanalytics.features.clipping.geometric` (:issue:`133`, :pull:`134`) | ||
* Added examples for the quality.data_gaps module, including | ||
:py:func:`pvanalytics.quality.gaps.stale_values_diff`, | ||
:py:func:`pvanalytics.quality.gaps.stale_values_round`, | ||
:py:func:`pvanalytics.quality.gaps.interpolation_diff`, | ||
:py:func:`pvanalytics.quality.gaps.completeness_score`, | ||
:py:func:`pvanalytics.quality.gaps.complete`, and | ||
:py:func:`pvanalytics.quality.gaps.trim_incomplete` | ||
(:issue:`133`, :pull:`135`) | ||
* Added examples for the quality.outliers module, including | ||
:py:func:`pvanalytics.quality.outliers.tukey`, | ||
:py:func:`pvanalytics.quality.outliers.zscore`, | ||
:py:func:`pvanalytics.quality.outliers.hampel` | ||
(:issue:`133`, :pull:`138`) | ||
* Added examples for the pvanalytics.features.daytime module, | ||
including :py:func:`pvanalytics.features.daytime.power_or_irradiance` | ||
(:issue:`133`, :pull:`139`) | ||
* Added examples for the pvanalytics.quality.irradiance module, | ||
including :py:func:`pvanalytics.quality.irradiance.clearsky_limits`, | ||
:py:func:`pvanalytics.quality.irradiance.daily_insolation_limits`, | ||
:py:func:`pvanalytics.quality.irradiance.check_irradiance_consistency_qcrad`, | ||
and :py:func:`pvanalytics.quality.irradiance.check_irradiance_limits_qcrad` | ||
(:issue:`133`, :pull:`140`) | ||
* Added examples for the pvanalytics.features.orientation module, | ||
including :py:func:`pvanalytics.features.orientation.fixed_nrel`, | ||
and :py:func:`pvanalytics.quality.features.orientation.tracking_nrel` | ||
(:issue:`133`, :pull:`148`) | ||
* Added an example for | ||
:py:func:`pvanalytics.quality.data_shifts` routine (:pull:`131`) | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Kirsten Perry (:ghuser:`kperrynrel`) | ||
* Cliff Hansen (:ghuser:`cwhanse`) | ||
* Kevin Anderson (:ghuser:`kanderso-nrel`) | ||
* Will Vining (:ghuser:`wfvining`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.. _whatsnew_013: | ||
|
||
0.1.3 (TBD) | ||
------------------------- | ||
|
||
Enhancements | ||
~~~~~~~~~~~~ | ||
|
||
|
||
Bug Fixes | ||
~~~~~~~~~ | ||
|
||
|
||
Requirements | ||
~~~~~~~~~~~~ | ||
|
||
|
||
Documentation | ||
~~~~~~~~~~~~~ | ||
|
||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters