Skip to content

Commit da62ab5

Browse files
committed
Merge branch 'ants2d' of https://github.com/kandersolar/pvlib-python into ants2d
2 parents fe8728f + 0f185ed commit da62ab5

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

docs/sphinx/source/whatsnew/v0.15.2.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Bug fixes
3535
``ValueError`` when ``tracker_theta`` was a 2-D (or higher rank) array.
3636
(:issue:`2747`, :pull:`2749`)
3737

38+
3839
Enhancements
3940
~~~~~~~~~~~~
4041
* Add the ``front_side_fraction`` parameter to
@@ -51,6 +52,9 @@ Enhancements
5152
* Accelerate :py:func:`~pvlib.bifacial.utils.vf_ground_sky_2d_integ` by one or
5253
two orders of magnitude. This also makes :py:mod:`pvlib.bifacial.infinite_sheds` faster.
5354
(:pull:`2740`)
55+
* Added mapping of the parameter ``"albedo"`` in
56+
:py:func:`~pvlib.iotools.get_nasa_power` when ``map_variables=True``
57+
(:pull:`2753`)
5458

5559

5660
Documentation

pvlib/bifacial/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,4 +708,5 @@ def _dist(p1, p2):
708708

709709

710710
def _angle(p1, p2):
711+
# polar angle of the ray from p1 to p2
711712
return np.arctan2(p2[1] - p1[1], p2[0] - p1[0])

0 commit comments

Comments
 (0)