├── .gitignore ├── CHANGES.txt ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.txt ├── bin ├── csv_to_gdx.py └── gdx_to_csv.py ├── dev ├── README.md ├── md_to_rst.py └── requirements.txt ├── doc ├── Makefile ├── make.bat └── source │ ├── _static │ └── style.css │ ├── _templates │ └── layout.html │ ├── api.rst │ ├── api │ ├── gdxpds.rst │ ├── gdxpds.test.rst │ └── modules.rst │ ├── conf.py │ ├── gdxpds.postfix │ ├── index.md │ ├── index.postfix │ ├── index.rst │ ├── md_files.txt │ └── overview.rst ├── gdxpds ├── __init__.py ├── _version.py ├── gdx.py ├── read_gdx.py ├── special.py ├── test │ ├── CONVqn.gdx │ ├── OptimalCSPConfig_In.gdx │ ├── OptimalCSPConfig_Out.gdx │ ├── __init__.py │ ├── all_generator_properties_input.gdx │ ├── annual_generation.csv │ ├── conftest.py │ ├── installed_capacity.csv │ ├── test_conversions.py │ ├── test_read.py │ ├── test_session.py │ ├── test_specials.py │ └── test_write.py ├── tools.py └── write_gdx.py ├── pytest.ini └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/README.txt -------------------------------------------------------------------------------- /bin/csv_to_gdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/bin/csv_to_gdx.py -------------------------------------------------------------------------------- /bin/gdx_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/bin/gdx_to_csv.py -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/md_to_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/dev/md_to_rst.py -------------------------------------------------------------------------------- /dev/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/dev/requirements.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/_static/style.css -------------------------------------------------------------------------------- /doc/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/_templates/layout.html -------------------------------------------------------------------------------- /doc/source/api.rst: -------------------------------------------------------------------------------- 1 | API 2 | ### 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | api/modules 8 | -------------------------------------------------------------------------------- /doc/source/api/gdxpds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/api/gdxpds.rst -------------------------------------------------------------------------------- /doc/source/api/gdxpds.test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/api/gdxpds.test.rst -------------------------------------------------------------------------------- /doc/source/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/api/modules.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/gdxpds.postfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/gdxpds.postfix -------------------------------------------------------------------------------- /doc/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/index.md -------------------------------------------------------------------------------- /doc/source/index.postfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/index.postfix -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/md_files.txt: -------------------------------------------------------------------------------- 1 | index 2 | -------------------------------------------------------------------------------- /doc/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/doc/source/overview.rst -------------------------------------------------------------------------------- /gdxpds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/__init__.py -------------------------------------------------------------------------------- /gdxpds/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/_version.py -------------------------------------------------------------------------------- /gdxpds/gdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/gdx.py -------------------------------------------------------------------------------- /gdxpds/read_gdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/read_gdx.py -------------------------------------------------------------------------------- /gdxpds/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/special.py -------------------------------------------------------------------------------- /gdxpds/test/CONVqn.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/CONVqn.gdx -------------------------------------------------------------------------------- /gdxpds/test/OptimalCSPConfig_In.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/OptimalCSPConfig_In.gdx -------------------------------------------------------------------------------- /gdxpds/test/OptimalCSPConfig_Out.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/OptimalCSPConfig_Out.gdx -------------------------------------------------------------------------------- /gdxpds/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/__init__.py -------------------------------------------------------------------------------- /gdxpds/test/all_generator_properties_input.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/all_generator_properties_input.gdx -------------------------------------------------------------------------------- /gdxpds/test/annual_generation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/annual_generation.csv -------------------------------------------------------------------------------- /gdxpds/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/conftest.py -------------------------------------------------------------------------------- /gdxpds/test/installed_capacity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/installed_capacity.csv -------------------------------------------------------------------------------- /gdxpds/test/test_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/test_conversions.py -------------------------------------------------------------------------------- /gdxpds/test/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/test_read.py -------------------------------------------------------------------------------- /gdxpds/test/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/test_session.py -------------------------------------------------------------------------------- /gdxpds/test/test_specials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/test_specials.py -------------------------------------------------------------------------------- /gdxpds/test/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/test/test_write.py -------------------------------------------------------------------------------- /gdxpds/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/tools.py -------------------------------------------------------------------------------- /gdxpds/write_gdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/gdxpds/write_gdx.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/gdx-pandas/HEAD/setup.py --------------------------------------------------------------------------------