Skip to content

Commit 1d304bd

Browse files
committed
Renaming to AromePiForecast
1 parent 6766369 commit 1d304bd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pip install meteole
4444

4545
### Step 1: Obtain an API token or key
4646

47-
Create an account on [the Météo-France API portal](https://portail-api.meteofrance.fr/). Next, subscribe to the desired APIs (Arome, Arpege, etc.). Retrieve the API token (or key) by going to “Mes APIs” and then “Générer token”.
47+
Create an account on [the Météo-France API portal](https://portail-api.meteofrance.fr/). Next, subscribe to the desired APIs (Arome, Arpege, Arome Instantané, etc.). Retrieve the API token (or key) by going to “Mes APIs” and then “Générer token”.
4848

4949
### Step 2: Fetch Forecasts from AROME and ARPEGE
5050

docs/pages/coverage_parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Weather forecasts from Météo-France APIs are based on key parameters that vary from indicator to indicator, which makes them complex to use.
22

3-
Understanding coverages is a must to have a comprehensive usage of Météo-France forecasting models like AROME or ARPEGE.
3+
Understanding coverages is a must to have a comprehensive usage of Météo-France forecasting models like AROME, AROME INSTANTANÉ or ARPEGE.
44

55
## Coverage_id
66

@@ -38,7 +38,7 @@ When no interval is specified, it means coverage returns a single datapoint inst
3838
## Others parameters
3939
### Forecast_horizons
4040
The time of day to which the prediction corresponds must be specified. For example, for a run of 12:00, in 1 hour's time, we have the weather indicator prediction of 13:00.
41-
The `get_coverage method` takes as (optional) parameter the list of desired forecast hours, named `forecast_horizons`.
41+
The `get_coverage method` takes as (optional) parameter the list of desired forecast hours (in `dt.timedelta` format), named `forecast_horizons`.
4242

4343
To get the list of available `forecast_horizons`, use the function `get_coverage_description` as described in the example below.
4444

src/meteole/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from importlib.metadata import version
22

33
from meteole._arome import AromeForecast
4-
from meteole._arome_instantane import AromeInstantaneForecast
4+
from meteole._arome_instantane import AromePIForecast
55
from meteole._arpege import ArpegeForecast
66
from meteole._vigilance import Vigilance
77

8-
__all__ = ["AromeForecast", "AromeInstantaneForecast", "ArpegeForecast", "Vigilance"]
8+
__all__ = ["AromeForecast", "AromePIForecast", "ArpegeForecast", "Vigilance"]
99

1010
__version__ = version("meteole")

src/meteole/_arome_instantane.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363

6464
@final
65-
class AromeInstantaneForecast(WeatherForecast):
65+
class AromePIForecast(WeatherForecast):
6666
"""Access the AROME numerical weather forecast data from Meteo-France API.
6767
6868
Doc:

0 commit comments

Comments
 (0)