-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get solpos8760 - and version 0.3 (Carpenters) (#14)
* ENH: loop inside solar_utils * ENH:TST: test 8760 method * ENH: return angles and airmass separately * ENH: collapse reassignments, use inplace * TST:ENH: test errors, output all error codes * ENH: any size datetime array * combine get_solposAM with get_solpos8760, add get specified year function
- Loading branch information
Showing
8 changed files
with
233 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# content of setup.cfg | ||
[pytest] | ||
[tool:pytest] | ||
norecursedirs = .git build dist venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,14 @@ | |
""" | ||
This is the solar utilities package. | ||
2013 SunPower Corp. | ||
Confidential & Proprietary | ||
Do Not Distribute | ||
2013, 2019 SunPower Corp. | ||
""" | ||
|
||
from solar_utils.core import solposAM, spectrl2 | ||
from solar_utils.core import solposAM, spectrl2, get_solpos8760, get_solposAM | ||
|
||
__version__ = '0.2.4' | ||
__release__ = 'Beetroot' | ||
__version__ = '0.3' | ||
__release__ = 'Carpenters' | ||
__author__ = 'Mark Mikofski' | ||
__email__ = '[email protected]' | ||
__url__ = 'https://github.com/SunPower/SolarUtils' | ||
__all__ = ['solposAM', 'spectrl2'] | ||
__all__ = ['solposAM', 'spectrl2', 'get_solpos8760', 'get_solposAM'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters