Commit 0d0afee 1 parent 388a2a2 commit 0d0afee Copy full SHA for 0d0afee
File tree 4 files changed +26
-9
lines changed
4 files changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,6 @@ pvdeg.scenario
25
25
-------
26
26
27
27
28
- .. autoclass :: GeospatialScenario
29
- :members:
30
-
31
- .. _sphx_glr_backref_pvdeg.scenario.GeospatialScenario :
32
-
33
- .. minigallery :: pvdeg.scenario.GeospatialScenario
34
- :add-heading:
35
28
.. autoclass :: Scenario
36
29
:members:
37
30
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ What's New
4
4
==========
5
5
PVDegradationTools (pvdeg) change log:
6
6
7
+ .. include :: releases/v0.5.1.rst
7
8
.. include :: releases/v0.5.0.rst
8
9
.. include :: releases/v0.4.3.rst
9
10
.. include :: releases/v0.4.2.rst
Original file line number Diff line number Diff line change
1
+ v0.5.1 (2025-2-28)
2
+ ===================
3
+
4
+ Enhancements
5
+ --------------
6
+ - Changed ``GeospatialScenario.get_geospatial_data() `` to a ``@property ``, now use ``GeospatialScenario.geospatial_data ``
7
+ - Changed ``GeospatialScenario.coords_tonumpy() `` to a ``@property ``, now use ``GeospatialScenario.coords ``
8
+
9
+ Deprecations
10
+ -------------
11
+ - ``GeospatialScenario._get_geospatial_data() ``
12
+ - ``GeospatialScenario.getValidRegions() ``
13
+ - ``GeospatialScenario.gids_tonumpy() ``
14
+ - ``GeospatialScenario.gids_tolist() ``
15
+
16
+ Bug Fixes
17
+ ---------
18
+ ``v0.5.0 `` incorrectly claimed that ``GeospatialScenario `` was moved to ``pvdeg/geospatialscenario.py ``. Completed the move.
19
+
20
+
21
+ Contributors
22
+ -----------
23
+ - Tobin Ford (:ghuser: `tobin-ford `)
Original file line number Diff line number Diff line change @@ -760,7 +760,7 @@ def restore_result_gids(self):
760
760
761
761
self .results = self .results .assign (gids = gids_da )
762
762
763
- @pvdeg .decorators .deprecated ("to be removed shortly " )
763
+ @pvdeg .decorators .deprecated ("removing complexity " )
764
764
def _get_geospatial_data (year : int ):
765
765
"""
766
766
Helper function. gets geospatial weather dataset and metadata dictionary.
@@ -793,7 +793,7 @@ def _get_geospatial_data(year: int):
793
793
794
794
return weather_ds , meta_df
795
795
796
- @pvdeg .decorators .deprecated ("function to be removed " )
796
+ @pvdeg .decorators .deprecated ("removing co " )
797
797
def getValidRegions (
798
798
self ,
799
799
country : Optional [str ] = None ,
You can’t perform that action at this time.
0 commit comments