tangram-weather 0.2.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "@open-aviation/tangram-weather",
3
+ "main": "index.js",
4
+ "style": "index.css"
5
+ }
@@ -0,0 +1,6 @@
1
+ import type { TangramApi } from "@open-aviation/tangram-core/api";
2
+ import WindFieldLayer from "./WindFieldLayer.vue";
3
+
4
+ export function install(api: TangramApi) {
5
+ api.ui.registerWidget("wind-field-layer", "MapOverlay", WindFieldLayer);
6
+ }
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: tangram_weather
3
+ Version: 0.2.0
4
+ Author-email: Xavier Olive <git@xoolive.org>
5
+ Requires-Dist: cfgrib>=0.9.15.0
6
+ Requires-Dist: numpy>=2
7
+ Requires-Dist: orjson>=3.10.18
8
+ Requires-Dist: pandas
9
+ Requires-Dist: pillow>=10
10
+ Requires-Dist: tangram-core>=0.2.0
11
+ Requires-Dist: tqdm>=4.67.1
12
+ Requires-Dist: xarray>=2025.6.1
13
+ Description-Content-Type: text/markdown
14
+
15
+ # Weather plugin
16
+
17
+ This plugin provides an API endpoint to fetch weather data from a third-party service. For now, files with predictions from the Meteo-France Arpege weather service are used, but it is also possible to use any weather service that provides an API.
18
+
19
+ Grib files are downloaded in the system temporary directory and then processed to extract the relevant data. The plugin provides an endpoint to fetch the weather data for specific spatio-temporal coordinates.
@@ -0,0 +1,14 @@
1
+ tangram_weather/WindFieldLayer.vue,sha256=zf6pPP9I5vB7H0o8xqV5In6spy8x7P5FlltJGxfkKYA,4282
2
+ tangram_weather/__init__.py,sha256=Ufo13rR6GN4S8uF_CHmbguo3J_NqMIAx7tCvO-V4Rw4,2298
3
+ tangram_weather/arpege.py,sha256=y93G57szy5mzyXZgqCtY6C3fRtsH1kpBseVcGHCbIEE,4701
4
+ tangram_weather/index.ts,sha256=lwnHXsbcw9F0uroe2Z-GWwA7GCj4tbYTeGAG0hnLPyk,239
5
+ tangram_weather/dist-frontend/__vite-optional-peer-dep_geotiff_weatherlayers-gl_false-Cjw5BclT.js,sha256=lNXmEimxJ89DKAW9FC8UCVcUIfGMrlVZ9KrEZHHTDXc,214
6
+ tangram_weather/dist-frontend/__vite-optional-peer-dep_geotiff_weatherlayers-gl_false-Cjw5BclT.js.map,sha256=w9dhfeEmTOJJaAbwEGtq8A3NzG_Kfh0W974_G6t1VH4,411
7
+ tangram_weather/dist-frontend/index.css,sha256=a71q2nkfXI44u-FIqpyzlWbLbB85thGjg6R7Vn0_Czc,356
8
+ tangram_weather/dist-frontend/index.js,sha256=Jzhu4LwtrxBe2F5BNqnnBH7TENG218N6PPNg3L2Z1d4,559244
9
+ tangram_weather/dist-frontend/index.js.map,sha256=kdjZUJg1KUNf0FsNfWIaIS9epd-_EN4qurcr4xDd9y8,1214118
10
+ tangram_weather/dist-frontend/plugin.json,sha256=DJBB023ARUsrbZtrCXEYzh18clVJKS1buN46dP9TZO4,92
11
+ tangram_weather-0.2.0.dist-info/METADATA,sha256=AniVN8nngJ8AXww6L6cOgnpcNMgg2KJcmU2VCNLkU_A,850
12
+ tangram_weather-0.2.0.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
13
+ tangram_weather-0.2.0.dist-info/entry_points.txt,sha256=C2qGVwPNHC6O8vYPx8EeyAjCgHtNzpEolgI64O4ZQeY,64
14
+ tangram_weather-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [tangram_core.plugins]
2
+ tangram_weather = tangram_weather:plugin