You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-5
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
# Weather Logger
2
2
3
3
## About
4
-
Simple Python script to log [METAR](https://en.wikipedia.org/wiki/METAR) and [TAF](https://en.wikipedia.org/wiki/Terminal_aerodrome_forecast) weather reports from [aviation.meteo.fr](https://aviation.meteo.fr) XML API to CSV files.
5
-
Since v2.0, can also download WINTEM, TEMSI FRANCE and TEMSI EUROC maps to PDF files. Enjoy !
4
+
Simple Python script to log [METAR](https://en.wikipedia.org/wiki/METAR) and [TAF](https://en.wikipedia.org/wiki/Terminal_aerodrome_forecast) weather reports from [aviation.meteo.fr](https://aviation.meteo.fr) XML API (AEROWEB) to CSV files.
5
+
Since v2.0, can also download WINTEM, TEMSI FRANCE and TEMSI EUROC maps to PDF files. Enjoy !
6
+
7
+
AEROWEB data are free and provided by [Météo-France](http://www.meteofrance.com/accueil). You need to complete and sign in triplicate the [AEROWEB Server agreement](docs/Convention type AEROWEB SERVEUR_2017) and send it by mail (**webmaster . aeroweb AT meteo . fr**) and then by post to receive your AEROWEB Server identifier.
6
8
7
9
## Usage
8
10
Run `weather_logger.py` with a `config.ini` file path as `-c` command line argument, for example from a [cron](https://en.wikipedia.org/wiki/Cron) job.
@@ -54,7 +56,7 @@ TEMSI_logging = True
54
56
EUROC_logging = True
55
57
; List of ICAO airport codes, comma separated
56
58
ICAO_airport_codes = LFPG,LFPO,PHTO,EGLL
57
-
; Your 10 digits aeronautical code
59
+
; Your AEROWEB server identifier
58
60
user_code = XXXXXXXXXX
59
61
60
62
[Directory]
@@ -65,7 +67,8 @@ pdf_directory = ./pdf/
65
67
```
66
68
67
69
## XML API overview
68
-
- For `LFPG` and `LFPO`[ICAO](https://en.wikipedia.org/wiki/ICAO_airport_code) airport codes for example, [aviation.meteo.fr](https://aviation.meteo.fr) XML API will output the following document :
70
+
See the [technical documentation](docs/Documentation serveur de données AEROWEB_5.6.0.pdf) for details.
71
+
- For `LFPG` and `LFPO`[ICAO](https://en.wikipedia.org/wiki/ICAO_airport_code) airport codes for example, AEROWEB XML API will output the following document :
69
72
70
73
```xml
71
74
<?xml version="1.0" encoding="ISO-8859-1"?>
@@ -119,7 +122,7 @@ pdf_directory = ./pdf/
119
122
</groupe>
120
123
```
121
124
122
-
- For `WINTEM`, `TEMSI FRANCE` and `TEMSI EUROC`, [aviation.meteo.fr](https://aviation.meteo.fr) XML API will output the following document structure :
125
+
- For `WINTEM`, `TEMSI FRANCE` and `TEMSI EUROC`, AEROWEB XML API will output the following document structure :
0 commit comments