pymeteofr

Python wrapper for the meteo-france web services.


Keywords
pymeteofr
License
MIT
Install
pip install pymeteofr==0.1.0

Documentation

Build Status Documentation Status License: MIT Python 3.6 Code style: black

PyMeteoFr

Python wrapper of the Météo-France web services (WCS only).

from IPython.display import Image
from pymeteofr import Fetcher

fetcher = Fetcher(token="__xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx__")
fetcher.select_product(dataset='arome', area='polynésie')
fetcher.select_coverage_id("Temperature at specified height level above ground")
fetcher.check_run_time(horizon=24)
fetcher.set_bbox_of_interest(208, -18.5, 212, -16)
fetcher.create_3D_array()
fetcher.make_movie(root_name="tahiti")
Image(filename="./data/tahiti.gif")

tahiti.gif

Requirements

gifsicle is required for the gif file optimization.

Free software: MIT License Copyright (c) 2020, Architecture & Performance