Datasets:
Create mapping.py
Browse files- mapping.py +51 -0
mapping.py
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CORINE_TO_DW = {
|
2 |
+
# CORINE 'Artificial Surfaces' mapped to DW 'Built', 'Bare', or 'Grass'
|
3 |
+
"Continuous urban fabric": "Built",
|
4 |
+
"Discontinuous urban fabric": "Built",
|
5 |
+
"Industrial or commercial units": "Built",
|
6 |
+
"Road and rail networks and associated land": "Built",
|
7 |
+
"Port areas": "Built",
|
8 |
+
"Airports": "Built",
|
9 |
+
"Mineral extraction sites": "Bare",
|
10 |
+
"Dump sites": "Bare",
|
11 |
+
"Construction sites": "Bare",
|
12 |
+
"Green urban areas": "Grass",
|
13 |
+
"Sport and leisure facilities": "Grass",
|
14 |
+
# CORINE 'Agricultural Areas' mapped to DW 'Crops', 'Flooded vegetation', or 'Grass'
|
15 |
+
"Non-irrigated arable land": "Crops",
|
16 |
+
"Permanently irrigated land": "Crops",
|
17 |
+
"Rice fields": "Flooded vegetation", # Specific case of a crop that is flooded
|
18 |
+
"Vineyards": "Crops",
|
19 |
+
"Fruit trees and berry plantations": "Crops", # Cultivated trees are considered crops
|
20 |
+
"Olive groves": "Crops", # Cultivated trees are considered crops
|
21 |
+
"Pastures": "Grass",
|
22 |
+
"Annual crops associated with permanent crops": "Crops",
|
23 |
+
"Complex cultivation patterns": "Crops",
|
24 |
+
"Land principally occupied by agriculture, with significant areas of natural vegetation": "Crops",
|
25 |
+
"Agro-forestry areas": "Trees", # A mix, but 'Trees' is a strong component
|
26 |
+
# CORINE 'Forest and Semi-Natural Areas' mapped to DW 'Trees', 'Grass', 'Shrub and Scrub', 'Bare', or 'Snow and Ice'
|
27 |
+
"Broad-leaved forest": "Trees",
|
28 |
+
"Coniferous forest": "Trees",
|
29 |
+
"Mixed forest": "Trees",
|
30 |
+
"Natural grassland": "Grass",
|
31 |
+
"Moors and heathland": "Shrub and Scrub",
|
32 |
+
"Sclerophyllous vegetation": "Shrub and Scrub",
|
33 |
+
"Transitional woodland/shrub": "Shrub and Scrub",
|
34 |
+
"Beaches, dunes, sands": "Bare",
|
35 |
+
"Bare rock": "Bare",
|
36 |
+
"Sparsely vegetated areas": "Bare",
|
37 |
+
"Burnt areas": "Burned Area",
|
38 |
+
"Glaciers and perpetual snow": "Snow and Ice",
|
39 |
+
# CORINE 'Wetlands' mapped to DW 'Flooded vegetation', 'Bare', or 'Water'
|
40 |
+
"Inland marshes": "Flooded vegetation",
|
41 |
+
"Peatbogs": "Flooded vegetation",
|
42 |
+
"Salt marshes": "Flooded vegetation",
|
43 |
+
"Salines": "Bare", # Often bare ground for salt evaporation
|
44 |
+
"Intertidal flats": "Bare", # Bare when tide is out
|
45 |
+
# CORINE 'Water Bodies' mapped to DW 'Water'
|
46 |
+
"Water courses": "Water",
|
47 |
+
"Water bodies": "Water",
|
48 |
+
"Coastal lagoons": "Water",
|
49 |
+
"Estuaries": "Water",
|
50 |
+
"Sea and ocean": "Water",
|
51 |
+
}
|