Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
GratienDSX committed Jan 31, 2025
1 parent 774d5e8 commit c9f9600
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/meteole/_arome_instantane.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"FRANCE",
]

AROME_INSTANT_INDICATORS: list[str] = [
AROMEPI_INSTANT_INDICATORS: list[str] = [
"TPW_27315_HEIGHT__LEVEL_OF_ADIABATIC_CONDESATION",
"TPW_27415_HEIGHT__LEVEL_OF_ADIABATIC_CONDESATION ",
"TPW_27415_HEIGHT__LEVEL_OF_ADIABATIC_CONDESATION ", # with a space at the end (cf API...)
"TPW_27465_HEIGHT__LEVEL_OF_ADIABATIC_CONDESATION",
"BRIGHTNESS_TEMPERATURE__GROUND_OR_WATER_SURFACE",
"CONVECTIVE_AVAILABLE_POTENTIAL_ENERGY__GROUND_OR_WATER_SURFACE",
Expand All @@ -41,7 +41,7 @@
]


AROME_OTHER_INDICATORS: list[str] = [
AROMEPI_OTHER_INDICATORS: list[str] = [
"TOTAL_WATER_PRECIPITATION__GROUND_OR_WATER_SURFACE",
"TOTAL_SNOW_PRECIPITATION__GROUND_OR_WATER_SURFACE",
"TOTAL_PRECIPITATION__GROUND_OR_WATER_SURFACE",
Expand All @@ -68,8 +68,8 @@ class AromePIForecast(WeatherForecast):

# Model constants
MODEL_NAME: str = "aromepi"
INDICATORS: list[str] = AROME_INSTANT_INDICATORS + AROME_OTHER_INDICATORS
INSTANT_INDICATORS: list[str] = AROME_INSTANT_INDICATORS
INDICATORS: list[str] = AROMEPI_INSTANT_INDICATORS + AROMEPI_OTHER_INDICATORS
INSTANT_INDICATORS: list[str] = AROMEPI_INSTANT_INDICATORS
BASE_ENTRY_POINT: str = "wcs/MF-NWP-HIGHRES-AROMEPI"
DEFAULT_TERRITORY: str = "FRANCE"
DEFAULT_PRECISION: float = 0.01
Expand Down

0 comments on commit c9f9600

Please sign in to comment.