We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 442ee6a commit 7b7f667Copy full SHA for 7b7f667
1 file changed
pvlib/modelchain.py
@@ -18,6 +18,8 @@
18
from pvlib.pvsystem import _DC_MODEL_PARAMS
19
from pvlib.tools import _build_kwargs
20
21
+from pvlib._deprecation import deprecated
22
+
23
# keys that are used to detect input data and assign data to appropriate
24
# ModelChain attribute
25
# for ModelChain.weather
@@ -59,6 +61,13 @@
59
61
)
60
62
63
64
+@deprecated(
65
+ since="0.13",
66
+ removal="0.14",
67
+ name="pvlib.modelchain.get_orientation",
68
+ alternative=None,
69
+ addendum=None,
70
+)
71
def get_orientation(strategy, **kwargs):
72
"""
73
Determine a PV system's surface tilt and surface azimuth
0 commit comments