Initial upload of GeoLLM dataset via HfApi.upload_folder
Browse files
README
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This dataset consists of 85066 train, 515 validation, and 1018 test samples, each containing images from NAIP, Sentinel-1, and Sentinel-2. The folder of train images is split into three parts due to its size; you will need to combine them after downloading. The format of each sample is as follows:
|
| 2 |
+
|
| 3 |
+
train_dataset/
|
| 4 |
+
[latitude]_[longitude]/
|
| 5 |
+
naip.png
|
| 6 |
+
sentinel-1.npy
|
| 7 |
+
sentinel-2-10m.npy
|
| 8 |
+
sentinel-2-20m.npy
|
| 9 |
+
sentinel-2-60m.npy
|
| 10 |
+
|
| 11 |
+
The NAIP image is stored as a 4-channel PNG image with the NIR band in the alpha channel. The other images are stored directly as NumPy arrays. The channels in each image are in the following order:
|
| 12 |
+
|
| 13 |
+
sentinel-1: VV, VH
|
| 14 |
+
sentinel-2-10m: red, green, blue, NIR
|
| 15 |
+
sentinel-2-20m: RE1, RE2, RE3, RE4, SWIR1, SWIR2
|
| 16 |
+
sentinel-2-60m: coastal aerosol, water vapor, cirrus
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
The labels are found in the corresponding GeoJSON file for each dataset, which contains the following columns:
|
| 20 |
+
|
| 21 |
+
Latitude: latitude coordinate of the image center
|
| 22 |
+
Longitude: longitude coordinate of the image center
|
| 23 |
+
Type: label of facility or facilities present in the image
|
| 24 |
+
Source: data source the coordinates originally came from
|
| 25 |
+
Image_Folder: folder in the dataset where the image can be found
|
| 26 |
+
geometry: bounding box for the area covered by the image
|
| 27 |
+
|