Skip to content

Commit c3dedad

Browse files
committed
Update documentation
1 parent 4ac6c67 commit c3dedad

6 files changed

+9
-6
lines changed

README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Weather Logger
22

33
## 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.
68

79
## Usage
810
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
5456
EUROC_logging = True
5557
; List of ICAO airport codes, comma separated
5658
ICAO_airport_codes = LFPG,LFPO,PHTO,EGLL
57-
; Your 10 digits aeronautical code
59+
; Your AEROWEB server identifier
5860
user_code = XXXXXXXXXX
5961

6062
[Directory]
@@ -65,7 +67,8 @@ pdf_directory = ./pdf/
6567
```
6668

6769
## 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 :
6972

7073
```xml
7174
<?xml version="1.0" encoding="ISO-8859-1"?>
@@ -119,7 +122,7 @@ pdf_directory = ./pdf/
119122
</groupe>
120123
```
121124

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 :
123126

124127
```xml
125128
<?xml version="1.0" encoding="ISO-8859-1"?>

config.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ TEMSI_logging = True
4444
EUROC_logging = True
4545
; List of ICAO airport codes, comma separated
4646
ICAO_airport_codes = LFPG,LFPO,PHTO,EGLL
47-
; Your 10 digits aeronautical code
47+
; Your AEROWEB server identifier
4848
user_code = XXXXXXXXXX
4949

5050
[Directory]
51.9 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)