Skip to content

Commit

Permalink
Update DO.py (#1717)
Browse files Browse the repository at this point in the history
- activate solar
- add new gas power plant to mapping
  • Loading branch information
alixunderplatz authored and corradio committed Dec 26, 2018
1 parent ccb31e9 commit 88372d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion parsers/DO.py
Expand Up @@ -51,6 +51,7 @@
u'ESTRELLA DEL MAR 2 CGN': 'gas',
u'ESTRELLA DEL MAR 2 SFO': 'oil',
u'ESTRELLA DEL MAR 2 SGN': 'gas',
u'GENERACI\xD3N DE EMERGENCIA AES ANDR\xC9S': 'gas',
u'HAINA TG': 'oil',
u'INCA KM22': 'oil',
u'ITABO 1': 'coal',
Expand Down Expand Up @@ -332,7 +333,7 @@ def fetch_production(zone_key='DO', session=None, target_datetime=None, logger=l
'hydro': hour.get('hydro', 0.0),
'nuclear': 0.0,
'oil': hour.get('oil', 0.0),
'solar': None,
'solar': hour.get('solar', 0.0),
'wind': hour.get('wind', 0.0),
'geothermal': 0.0,
'unknown': hour.get('unknown', 0.0)
Expand Down

0 comments on commit 88372d6

Please sign in to comment.