├── .gitattributes ├── .gitignore ├── .readthedocs.yml ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── SMARTS └── .gitignore ├── SMARTS_AAgreement_LICENSE.txt ├── docs ├── images │ ├── py-SMARTS.PNG │ └── silvana&christian.jpeg └── tutorials │ ├── 1 - Beginner - Plot ALBEDOs from Smarts.html │ ├── 1 - Beginner - Plot ALBEDOs from Smarts.ipynb │ ├── 1 - Beginner - Plot ALBEDOs from Smarts.py │ └── 2 - Beginner - Time Resolved Albedo.ipynb ├── pySMARTS ├── TEMP │ └── temp_folder.txt ├── __init__.py ├── data │ ├── astmg173.csv │ ├── cm11_dome_transmittance.csv │ ├── cm11_sensor_reflectivity.csv │ ├── cm11_sensor_relativeresponse_SmartWavs.csv │ ├── imt_Si-01_normalized_spectra_response.csv │ ├── imt_Si-01_normalized_spectra_response_SmartWavs.csv │ ├── licor_li-200R_relativeresponse.csv │ └── licor_li-200R_relativeresponse_SmartWavs.csv └── main.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- 1 | pySMARTS/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/README.md -------------------------------------------------------------------------------- /SMARTS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/SMARTS/.gitignore -------------------------------------------------------------------------------- /SMARTS_AAgreement_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/SMARTS_AAgreement_LICENSE.txt -------------------------------------------------------------------------------- /docs/images/py-SMARTS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/docs/images/py-SMARTS.PNG -------------------------------------------------------------------------------- /docs/images/silvana&christian.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/docs/images/silvana&christian.jpeg -------------------------------------------------------------------------------- /docs/tutorials/1 - Beginner - Plot ALBEDOs from Smarts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/docs/tutorials/1 - Beginner - Plot ALBEDOs from Smarts.html -------------------------------------------------------------------------------- /docs/tutorials/1 - Beginner - Plot ALBEDOs from Smarts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/docs/tutorials/1 - Beginner - Plot ALBEDOs from Smarts.ipynb -------------------------------------------------------------------------------- /docs/tutorials/1 - Beginner - Plot ALBEDOs from Smarts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/docs/tutorials/1 - Beginner - Plot ALBEDOs from Smarts.py -------------------------------------------------------------------------------- /docs/tutorials/2 - Beginner - Time Resolved Albedo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/docs/tutorials/2 - Beginner - Time Resolved Albedo.ipynb -------------------------------------------------------------------------------- /pySMARTS/TEMP/temp_folder.txt: -------------------------------------------------------------------------------- 1 | This is for saving figures and etc. -------------------------------------------------------------------------------- /pySMARTS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/__init__.py -------------------------------------------------------------------------------- /pySMARTS/data/astmg173.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/astmg173.csv -------------------------------------------------------------------------------- /pySMARTS/data/cm11_dome_transmittance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/cm11_dome_transmittance.csv -------------------------------------------------------------------------------- /pySMARTS/data/cm11_sensor_reflectivity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/cm11_sensor_reflectivity.csv -------------------------------------------------------------------------------- /pySMARTS/data/cm11_sensor_relativeresponse_SmartWavs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/cm11_sensor_relativeresponse_SmartWavs.csv -------------------------------------------------------------------------------- /pySMARTS/data/imt_Si-01_normalized_spectra_response.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/imt_Si-01_normalized_spectra_response.csv -------------------------------------------------------------------------------- /pySMARTS/data/imt_Si-01_normalized_spectra_response_SmartWavs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/imt_Si-01_normalized_spectra_response_SmartWavs.csv -------------------------------------------------------------------------------- /pySMARTS/data/licor_li-200R_relativeresponse.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/licor_li-200R_relativeresponse.csv -------------------------------------------------------------------------------- /pySMARTS/data/licor_li-200R_relativeresponse_SmartWavs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/data/licor_li-200R_relativeresponse_SmartWavs.csv -------------------------------------------------------------------------------- /pySMARTS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/pySMARTS/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/pySMARTS/HEAD/setup.py --------------------------------------------------------------------------------