system_design
¶
Functions:
-
location_to_tilt–Simple system tilt estimator based off latitude and longitude coordinates
location_to_tilt
¶
location_to_tilt(locs, convention='Ryberg2020', **kwargs)
Simple system tilt estimator based off latitude and longitude coordinates
Parameters:
-
(locs¶geokit.LocationSet or iterable of (lon,lat) pairs) –The locations at which to estimate system tilt angle
-
(convention¶str, default:'Ryberg2020') –The calculation method used to suggest system tilts Options are: * "Ryberg2020" * A string consumable by 'eval' - Can use the variable 'latitude' - Ex. "latitude*0.76" * A path to a raster file -
–kwargs¶Only applies when `convention` is a path to a raster file
Returns:
-
ndarray–Suggested tilt angle at each of the provided
locs. Has the same length as the number oflocs.
Notes
"Ryberg2020"
When convention equals "Ryberg2020", the following equation is followed:
.. math:: 42.327719357601396 * arctan( 1.5 * abs(latitude) )
.. [1] TODO: Cite future Ryberg2020 publication