Skip to content

Commit

Permalink
fix(parsers):Remove geothermal from NL parser (#7394)
Browse files Browse the repository at this point in the history
Co-authored-by: Electricity Maps <[email protected]>
  • Loading branch information
annaib00 and Electricity Maps authored Nov 11, 2024
1 parent 662bd0d commit 56a2b3f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions parsers/NED.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
1: "wind",
51: "wind",
2: "solar",
9: "geothermal",
10: "unknown",
26: "unknown",
18: "gas",
Expand All @@ -39,7 +38,6 @@
class NedType(Enum):
WIND = 1
SOLAR = 2
GEOTHERMAL = 9
OTHER = 10
FOSSILGASPOWER = 18
FOSSILHARDCOAL = 19
Expand Down Expand Up @@ -100,7 +98,6 @@ def call_api(target_datetime: datetime, forecast: bool = False):
"type[]": [
NedType.WIND.value,
NedType.SOLAR.value,
NedType.GEOTHERMAL.value,
NedType.OTHER.value,
NedType.FOSSILGASPOWER.value,
NedType.FOSSILHARDCOAL.value,
Expand Down

0 comments on commit 56a2b3f

Please sign in to comment.