annotate config.fetch_weather.example @ 446:ba559d5d44db

fetch_weather: Rename the Tiehallinto static metadata cache filename setting.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 28 Sep 2017 15:17:39 +0300
parents bc7746ca622e
children 11124f9bf994
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
187
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1 ###
188
1487659d4f26 Typofix.
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
2 ### Example configuration for weather.tcl data fetcher
1487659d4f26 Typofix.
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
3 ### script fetch_weather.pl.
187
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
4 ###
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
5
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
6 ##
373
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
7 ## Purge time threshold for old/obsolete records.
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
8 ## Fetch_weather stores data into a cache file, which
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
9 ## also keeps older records as sometimes weather stations
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
10 ## do not report reliably. However, too old records
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
11 ## need to be purged. This setting sets the threshold
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
12 ## time in MINUTES (default is 60 minutes)
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
13 ##
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
14 purge_threshold = 60
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
15
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
16
bc7746ca622e fetch_weather: Implement purge_threshold setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 348
diff changeset
17 ##
187
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
18 ## Enable/disable data scraping from Tiehallinto's WWW-pages
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
19 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
20 opt_tiehallinto = 1
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
21
348
9f64f54c2fb3 Update example configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 275
diff changeset
22 ## Tiehallinto static meta data file + path
446
ba559d5d44db fetch_weather: Rename the Tiehallinto static metadata cache filename setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 373
diff changeset
23 tiehallinto_meta = "/some/path/weather.tiehallinto.meta"
348
9f64f54c2fb3 Update example configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 275
diff changeset
24
187
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
25 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
26 ## Enable/disable open data access from FMI
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
27 ## You will need to obtain an API key, refer to
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
28 ## https://ilmatieteenlaitos.fi/avoin-data
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
29 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
30 opt_fmi = 0
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
31 fmi_api_key = ""
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
32
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
33 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
34 ## Debug mode, outputs some stuff sometimes maybe
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
35 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
36 debug = 1
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
37
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
38 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
39 ## Path to the output file, should be same as set in weather.tcl
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
40 ## If NOT set, the script will output to stdout.
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
41 ##
348
9f64f54c2fb3 Update example configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 275
diff changeset
42 outfile = "/some/path/weather.data"
187
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
43
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
44 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
45 ## HTTP user agent. If not set here, default will be used.
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
46 ##
8b0a9315c69e Permissions.
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
47 #http_user_agent = "Mozilla/5.0 (foobar)"