Filipstrozik commited on
Commit
6eaee02
·
verified ·
1 Parent(s): a3e8422

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +158 -1
README.md CHANGED
@@ -30,7 +30,7 @@ dataset_info:
30
  dtype: int64
31
  - name: x
32
  dtype: int64
33
- - name: y
34
  dtype: int64
35
  - name: trees
36
  list:
@@ -59,4 +59,161 @@ configs:
59
  data_files:
60
  - split: train
61
  path: data/train-*
 
 
 
 
 
 
 
 
 
62
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  dtype: int64
31
  - name: x
32
  dtype: int64
33
+ - name: 'y'
34
  dtype: int64
35
  - name: trees
36
  list:
 
59
  data_files:
60
  - split: train
61
  path: data/train-*
62
+ tags:
63
+ - geography
64
+ - trees
65
+ - tree
66
+ - satellite
67
+ - spacial
68
+ - geospatial
69
+ size_categories:
70
+ - 10K<n<100K
71
  ---
72
+ # Dataset Card for Satellite Trees Wroclaw 2022
73
+
74
+
75
+
76
+
77
+ The Satellite Trees Wroclaw 2022 dataset contains high-resolution satellite imagery and metadata of trees in Wroclaw, Poland, collected in 2022. The dataset is organized into three main directories: `images`, `metadata`, and `results`.
78
+
79
+ - `images/`: Contains orthophotomaps of different regions in Wroclaw.
80
+ - `metadata/`: Contains JSON files with metadata for each tile, including information about the trees in the corresponding satellite images.
81
+ - `results/`: Contains examples of results with trees painted on each image. (using the center of tree and radius derived from area)
82
+
83
+ This dataset can be used for various tasks such as tree detection, classification, and other geospatial tasks!
84
+
85
+ ## Dataset Details
86
+
87
+ ### Dataset Description
88
+
89
+
90
+
91
+
92
+ ### Metadata Description
93
+
94
+ Each JSON file in the `metadata/` directory contains information about the trees in the corresponding satellite image tile.
95
+ Structure of json object:
96
+
97
+ - `tile_coords`: list of x, y, z of tile from specified orthophotomaps.
98
+ - `tile_metadata`:
99
+ - `bbox`: bounding box of a tile "bbox = left,bottom,right,top"
100
+ - `resolution`: resulution in pixels of image
101
+ - `crs`: coordinate reference system
102
+ - `edge_in_meters`: how many meters does the edge of tile has.
103
+ - `corners`: list of corners of a tile in order: left-bottom, left-top, right-top, right-bottom. [Longitute, Latitude]
104
+ - `trees`: list of tree details from specified source
105
+ - `height`: Height of the tree.
106
+ - `e`: Eccentricity of the tree. (not confirmed!)
107
+ - `volume`: Volume of the tree. m^3
108
+ - `area`: Area covered by the tree. m^2
109
+ - `latitude`: Latitude coordinate of the tree.
110
+ - `longitude`: Longitude coordinate of the tree.
111
+ - `transformed_trees`: list of trees after transformation to image space in pixels with radius calculated from area.
112
+ - `latitude`: Latitude coordinate of the tree.
113
+ - `longitude`: Longitude coordinate of the tree.
114
+ - `x`: X-coordinate in the image space.
115
+ - `y`: Y-coordinate in the image space.
116
+ - `radius`: Radius of the tree in pixels, calculated from the area.
117
+
118
+
119
+
120
+ ```json
121
+ {
122
+ "tile_coords": [
123
+ 143378,
124
+ 87608,
125
+ 18
126
+ ],
127
+ "tile_metadata": {
128
+ "bbox": [
129
+ 16.89971923828125,
130
+ 51.13024583390033,
131
+ 16.901092529296875,
132
+ 51.131107637580136
133
+ ],
134
+ "resolution": 1024,
135
+ "crs": "CRS:84",
136
+ "edge_in_meters": 96
137
+ },
138
+ "corners": [
139
+ [
140
+ 16.89971923828125,
141
+ 51.13024583390033
142
+ ],
143
+ [
144
+ 16.901092529296875,
145
+ 51.13024583390033
146
+ ],
147
+ [
148
+ 16.901092529296875,
149
+ 51.131107637580136
150
+ ],
151
+ [
152
+ 16.89971923828125,
153
+ 51.131107637580136
154
+ ]
155
+ ],
156
+ "trees": [
157
+ {
158
+ "height": 8.05,
159
+ "e": 1.2,
160
+ "volume": 239.54,
161
+ "area": 27,
162
+ "latitude": 51.13105191475769,
163
+ "longitude": 16.89974462238265
164
+ },
165
+ {
166
+ "height": 9.49,
167
+ "e": 1.27,
168
+ "volume": 311.35,
169
+ "area": 62,
170
+ "latitude": 51.13101159452683,
171
+ "longitude": 16.899798270669734
172
+ },
173
+ ...
174
+ ],
175
+ "transformed_trees": [
176
+ {
177
+ "latitude": 51.13105191475769,
178
+ "longitude": 16.89974462238265,
179
+ "x": 18,
180
+ "y": 66,
181
+ "radius": 31
182
+ },
183
+ {
184
+ "latitude": 51.13101159452683,
185
+ "longitude": 16.899798270669734,
186
+ "x": 58,
187
+ "y": 114,
188
+ "radius": 47
189
+ },
190
+ ...
191
+ ]
192
+ }
193
+ ```
194
+
195
+ Of course you can extract more info about trees and place them into the image by iterating through the original trees list and modifying the transformed one.
196
+
197
+
198
+ ### Dataset Sources
199
+
200
+ <!-- Provide the basic links for the dataset. -->
201
+
202
+ - **Repository:** [github](https://github.com/Filipstrozik/spatial-data)
203
+ <!-- - **Paper [optional]:** [More Information Needed]
204
+ - **Demo [optional]:** [More Information Needed] -->
205
+
206
+
207
+ ## Dataset Creation
208
+
209
+ Dataset was generated by iterating the maximum possible zoom of tile for chosen orthophotomaps (zoom: 18) in x and y directions.
210
+ We downloaded each tile as an image with 1024x1024 resolution. We calculated the lat long coordinates for futher calculations.
211
+ After having corners of tile we could get trees details from public api. We had to make some transformations to be able to draw trees on the images.
212
+
213
+
214
+ #### Annotation process
215
+
216
+ We believe that ground truth annotations are legit.
217
+ **Trees**: [Trees data](https://mapadrzew.com/)
218
+
219
+ **Orthophotomaps**: [GIS Wroclaw](https://geoportal.wroclaw.pl/mapy/ortofoto/)