├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── nordic44_script.py ├── examples ├── N44_20160101 │ ├── Consumption_FI.xlsx │ ├── Consumption_NO.xlsx │ ├── Consumption_SE.xlsx │ ├── Exchange_FI.xlsx │ ├── Exchange_NO.xlsx │ ├── Exchange_SE.xlsx │ ├── PSSE_in_out.xlsx │ ├── Procution_FI.xlsx │ ├── Procution_NO.xlsx │ └── Procution_SE.xlsx ├── __init__.py ├── data_set_from_excel.py ├── data_set_from_nordpool.py └── multiple_data_sets_from_nordpool.py ├── nordic44 ├── N44_Geo_Coordinates_20151015.xlsx ├── PSSE_to_CIM14_batch.py ├── __init__.py ├── models │ ├── N44_BC.dyr │ ├── N44_BC.raw │ ├── N44_BC.sav │ └── N44_BC.sld ├── n44.py ├── nordpool.py ├── readraw.py ├── torecord.py └── utilities.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/README.md -------------------------------------------------------------------------------- /bin/nordic44_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/bin/nordic44_script.py -------------------------------------------------------------------------------- /examples/N44_20160101/Consumption_FI.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Consumption_FI.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Consumption_NO.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Consumption_NO.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Consumption_SE.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Consumption_SE.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Exchange_FI.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Exchange_FI.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Exchange_NO.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Exchange_NO.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Exchange_SE.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Exchange_SE.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/PSSE_in_out.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/PSSE_in_out.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Procution_FI.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Procution_FI.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Procution_NO.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Procution_NO.xlsx -------------------------------------------------------------------------------- /examples/N44_20160101/Procution_SE.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/N44_20160101/Procution_SE.xlsx -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/data_set_from_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/data_set_from_excel.py -------------------------------------------------------------------------------- /examples/data_set_from_nordpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/data_set_from_nordpool.py -------------------------------------------------------------------------------- /examples/multiple_data_sets_from_nordpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/examples/multiple_data_sets_from_nordpool.py -------------------------------------------------------------------------------- /nordic44/N44_Geo_Coordinates_20151015.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/N44_Geo_Coordinates_20151015.xlsx -------------------------------------------------------------------------------- /nordic44/PSSE_to_CIM14_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/PSSE_to_CIM14_batch.py -------------------------------------------------------------------------------- /nordic44/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nordic44/models/N44_BC.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/models/N44_BC.dyr -------------------------------------------------------------------------------- /nordic44/models/N44_BC.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/models/N44_BC.raw -------------------------------------------------------------------------------- /nordic44/models/N44_BC.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/models/N44_BC.sav -------------------------------------------------------------------------------- /nordic44/models/N44_BC.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/models/N44_BC.sld -------------------------------------------------------------------------------- /nordic44/n44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/n44.py -------------------------------------------------------------------------------- /nordic44/nordpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/nordpool.py -------------------------------------------------------------------------------- /nordic44/readraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/readraw.py -------------------------------------------------------------------------------- /nordic44/torecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/torecord.py -------------------------------------------------------------------------------- /nordic44/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/nordic44/utilities.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openpyxl 2 | pandas 3 | 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSETLab/Nordic44-Nordpool/HEAD/setup.py --------------------------------------------------------------------------------