Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GeospatialScenario autobuild KDtrees and restructure files #144

Closed
wants to merge 10 commits into from
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pvdeg.geospatial.can\_auto\_template
====================================

.. currentmodule:: pvdeg.geospatial

.. autofunction:: can_auto_template
8 changes: 8 additions & 0 deletions docs/source/_autosummary/pvdeg.geospatial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pvdeg.geospatial
pvdeg.geospatial.auto_template
pvdeg.geospatial.calc_block
pvdeg.geospatial.calc_gid
pvdeg.geospatial.can_auto_template
pvdeg.geospatial.elevation_stochastic_downselect
pvdeg.geospatial.feature_downselect
pvdeg.geospatial.identify_mountains_radii
Expand Down Expand Up @@ -88,6 +89,13 @@ pvdeg.geospatial
.. minigallery:: pvdeg.geospatial.calc_gid
:add-heading:

.. autofunction:: can_auto_template

.. _sphx_glr_backref_pvdeg.geospatial.can_auto_template:

.. minigallery:: pvdeg.geospatial.can_auto_template
:add-heading:

.. autofunction:: elevation_stochastic_downselect

.. _sphx_glr_backref_pvdeg.geospatial.elevation_stochastic_downselect:
Expand Down
7 changes: 0 additions & 7 deletions docs/source/_autosummary/pvdeg.scenario.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@ pvdeg.scenario
-------


.. autoclass:: GeospatialScenario
:members:

.. _sphx_glr_backref_pvdeg.scenario.GeospatialScenario:

.. minigallery:: pvdeg.scenario.GeospatialScenario
:add-heading:
.. autoclass:: Scenario
:members:

Expand Down
4 changes: 3 additions & 1 deletion docs/source/whatsnew/releases/v0.4.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ v0.4.4 (2024-11-19)
Enhancements
------------
* Documenation overhaul. Significant ``User Guide`` improvements. Added geospatial information with visual aids, added meteorological data page and materials access page.
Suite of utility functions to facilitate accessing material parameter json files.
* Suite of utility functions to facilitate accessing material parameter json files.
* New Logo!
* Moved ``GeospatialScenario`` class definition to ``geospatialscenario.py``
* Remove kdtree as required argument from ``GeospatialScenario`` downselection methods, kdtree objects are now generated on the fly when required and saved to scenario object for future use.

Contributors
-----------
Expand Down
3 changes: 2 additions & 1 deletion pvdeg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
from . import design
from . import fatigue
from . import geospatial
from .geospatialscenario import GeospatialScenario
from . import humidity
from . import letid
from . import montecarlo
from .scenario import Scenario, GeospatialScenario
from .scenario import Scenario
from . import spectral
from . import symbolic
from . import standards
Expand Down
Loading