cosuleabianca commited on
Commit
91abaa7
·
verified ·
1 Parent(s): 6498b75

Upload config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +69 -0
config.yaml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # EEA Air Quality Data Pipeline Configuration
2
+
3
+ # Cities to download (exact names as they appear in EEA API)
4
+ cities:
5
+ - country: AT
6
+ city: Wien
7
+ - country: FR
8
+ city: Paris (greater city)
9
+ - country: ES
10
+ city: Madrid
11
+ - country: BE
12
+ city: Antwerpen
13
+ - country: FI
14
+ city: Helsinki / Helsingfors (greater city)
15
+
16
+ # Date range for downloads
17
+ date_range:
18
+ start: "2018-01-01"
19
+ end: "2024-12-31"
20
+
21
+ # Pollutants to download and process
22
+ # Format: name, code, uri, required
23
+ pollutants:
24
+ - name: PM2.5
25
+ code: 6001
26
+ uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/6001
27
+ required: true # PM2.5 is always required for filtering
28
+ - name: NO2
29
+ code: 8
30
+ uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/8
31
+ required: false
32
+ # - name: O3
33
+ # code: 7
34
+ # uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/7
35
+ # required: false
36
+ - name: PM10
37
+ code: 5
38
+ uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/5
39
+ required: false
40
+ # - name: SO2
41
+ # code: 1
42
+ # uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/1
43
+ # required: false
44
+ # - name: CO
45
+ # code: 10
46
+ # uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/10
47
+ # required: false
48
+ # - name: NH3
49
+ # code: 35
50
+ # uri: http://dd.eionet.europa.eu/vocabulary/aq/pollutant/35
51
+ # required: false
52
+
53
+ # API configuration
54
+ api:
55
+ base_url: https://eeadmz1-downloads-api-appservice.azurewebsites.net/
56
+ dataset: 2 # E1a (real-time verified data)
57
+ aggregation_type: hour
58
+ chunk_months: 6 # Download in 6-month chunks to avoid API limits
59
+
60
+ # File paths
61
+ paths:
62
+ data_dir: data # Directory for per-pollutant raw files
63
+ output_dir: dataset_build # Directory for processed output files
64
+ processed_file: processed_air_quality_data.csv
65
+
66
+ # Processing options
67
+ processing:
68
+ skip_existing_downloads: true # Skip re-downloading if file exists
69
+ datetime_format: "%Y-%m-%d %H:%M:%S"