Datasets:

Modalities:
Geospatial
License:
wangyi111 commited on
Commit
cb3a321
·
verified ·
1 Parent(s): 2a2d14d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -3
README.md CHANGED
@@ -1,3 +1,73 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-classification
5
+ tags:
6
+ - climate
7
+ - remote-sensing
8
+ ---
9
+
10
+ # So2Sat-LCZ42
11
+
12
+ A copy of the [Fourth version](https://mediatum.ub.tum.de/1836598) of the So2Sat-LCZ42 dataset, pairing the [second version](https://mediatum.ub.tum.de/1459256?show_id=1483140) (culture-10) with geolocation:
13
+
14
+ Training: 42 cities around the world
15
+ Validation: western half of 10 other cities covering 10 cultural zones
16
+ Testing: eastern half of the 10 other cities
17
+
18
+ ## Description of the files
19
+ training.h5: training data containing SEN1, SEN2 patches and label
20
+
21
+ sen1: N*32*32*8
22
+ sen2: N*32*32*10
23
+ label: N*17 (one-hot coding)
24
+
25
+ validation.h5: validation data containing similar SEN1, SEN2, and label
26
+
27
+ sen1: M*32*32*8
28
+ sen2: M*32*32*10
29
+ label: M*17 (one-hot coding)
30
+
31
+ testing.h5: testing data containing SEN1 and SEN2 patches and label
32
+
33
+ sen1: L*32*32*8
34
+ sen2: L*32*32*10
35
+ label: L*17 (one-hot coding)
36
+
37
+ training_geo.h5: geolocation for the training data
38
+
39
+ coord: N*6 # UTM X, UTM Y, SEN1 row number, SEN1 col number, SEN2 row number, SEN2 col number
40
+ epsg: N*1 # EPSG code
41
+ tfw: N*6 # six parameters used to generate a TFW file
42
+
43
+ validation_geo.h5: geolocation for the validation data
44
+
45
+ coord: M*6
46
+ epsg: M*1
47
+ tfw: M*6
48
+
49
+ testing_geo.h5: geolocation for the testing data
50
+
51
+ coord: L*6
52
+ epsg: L*1
53
+ tfw: L*6
54
+
55
+ read_file.py: a demo python script to read in the files, and visualize a pair of patches
56
+ Required python packages: h5py, numpy, and matplotlib.
57
+
58
+ Please visit https://github.com/zhu-xlab/So2Sat-LCZ42 for more details, including a demo notebook to generate geotiffs from h5 files.
59
+
60
+
61
+ ## Citation
62
+ ```bibtex
63
+ @ARTICLE{Zhu2020So2Sat,
64
+ author={Zhu, Xiao Xiang and Hu, Jingliang and Qiu, Chunping and Shi, Yilei and Kang, Jian and Mou, Lichao and Bagheri, Hossein and Haberle, Matthias and Hua, Yuansheng and Huang, Rong and Hughes, Lloyd and Li, Hao and Sun, Yao and Zhang, Guichen and Han, Shiyao and Schmitt, Michael and Wang, Yuanyuan},
65
+ journal={IEEE Geoscience and Remote Sensing Magazine},
66
+ title={So2Sat LCZ42: A Benchmark Data Set for the Classification of Global Local Climate Zones [Software and Data Sets]},
67
+ year={2020},
68
+ volume={8},
69
+ number={3},
70
+ pages={76-89},
71
+ doi={10.1109/MGRS.2020.2964708}}
72
+ ```
73
+