Skip to content

Commit 4ac6c67

Browse files
committed
Update README.md
1 parent 159eb3d commit 4ac6c67

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## About
44
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.
5+
Since v2.0, can also download WINTEM, TEMSI FRANCE and TEMSI EUROC maps to PDF files. Enjoy !
66

77
## Usage
88
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.
@@ -14,8 +14,7 @@ Crontab every 10 minutes ? There you go :
1414
:warning: The `cd /SCRIPT_PATH/` command from the example above is **MANDATORY** in a cron job if you want to use relative paths in your `config.ini` configuration file. You are welcome.
1515

1616
## Output
17-
1. CSV file(s) containing METAR / TAF reports in the following format : `YYYY-MM-DD HH:mm METAR_OR_TAF_REPORT`
18-
17+
#### 1. CSV file(s) containing METAR / TAF reports in the following format : `YYYY-MM-DD HH:mm METAR_OR_TAF_REPORT`
1918
For `LFPG` [ICAO](https://en.wikipedia.org/wiki/ICAO_airport_code) airport code, for example :
2019
- `METAR_LFPG.csv` :
2120
```
@@ -28,8 +27,7 @@ For `LFPG` [ICAO](https://en.wikipedia.org/wiki/ICAO_airport_code) airport code,
2827
2018-02-22 16:00 TAF AMD LFPG 220719Z 2207/2312 03010G20KT 5000 BR NSC TEMPO 2207/2210 3000 BR TEMPO 2210/2218 4500 HZ TX04/2215Z TNM03/2306Z=
2928
```
3029

31-
2. PDF file(s) for WINTEM, TEMSI FRANCE and TEMSI EUROC maps :
32-
30+
#### 2. PDF file(s) for WINTEM, TEMSI FRANCE and TEMSI EUROC maps :
3331
- `EUROC_0.pdf`
3432
- `EUROC_1.pdf`
3533
- `TEMSI_0.pdf`
@@ -50,9 +48,9 @@ TAF_logging = True
5048
METAR_logging = True
5149
; Should I save WINTEM maps to PDF? If True, yes. If False, nope
5250
WINTEM_logging = True
53-
; Should I save TEMSI maps to PDF? If True, yes. If False, nope
51+
; Should I save TEMSI FRANCE maps to PDF? If True, yes. If False, nope
5452
TEMSI_logging = True
55-
; Should I save EUROC maps to PDF? If True, yes. If False, nope
53+
; Should I save TEMSI EUROC maps to PDF? If True, yes. If False, nope
5654
EUROC_logging = True
5755
; List of ICAO airport codes, comma separated
5856
ICAO_airport_codes = LFPG,LFPO,PHTO,EGLL

config.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ TAF_logging = True
3838
METAR_logging = True
3939
; Should I save WINTEM maps to PDF? If True, yes. If False, nope
4040
WINTEM_logging = True
41-
; Should I save TEMSI maps to PDF? If True, yes. If False, nope
41+
; Should I save TEMSI FRANCE maps to PDF? If True, yes. If False, nope
4242
TEMSI_logging = True
43-
; Should I save EUROC maps to PDF? If True, yes. If False, nope
43+
; Should I save TEMSI EUROC maps to PDF? If True, yes. If False, nope
4444
EUROC_logging = True
4545
; List of ICAO airport codes, comma separated
4646
ICAO_airport_codes = LFPG,LFPO,PHTO,EGLL

0 commit comments

Comments
 (0)