Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,48 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
NAIP-S2 is a super-resolution dataset for remote sensing consisting of paired NAIP and Sentinel-2 images in the continental US.
|
6 |
+
|
7 |
+
Data is divided into tiles.
|
8 |
+
Each tile spans 512x512 pixels at 1.25 m/pixel in a UTM projection.
|
9 |
+
At each tile, the following data is available:
|
10 |
+
|
11 |
+
- NAIP: an image from 2019-2021 at 1.25 m/pixel (512x512).
|
12 |
+
- Sentinel-2: between 16 and 32 images captured within a few months of the NAIP image at 10 m/pixel (64x64).
|
13 |
+
- Sentinel-1: 4 images captured in the same year as the NAIP image at 10 m/pixel (64x64).
|
14 |
+
- Landsat: 4 images captured in the same year as the NAIP image at 10 m/pixel (64x64).
|
15 |
+
- OpenStreetMap: a GeoJSON containing buildings, roads, and 30 other categories. It uses pixel coordinates relative to the 512x512 NAIP image.
|
16 |
+
- WorldCover: the 2021 land cover image at 10 m/pixel (64x64).
|
17 |
+
|
18 |
+
|
19 |
+
Structure
|
20 |
+
---------
|
21 |
+
|
22 |
+
Once extracted, the dataset contains the different data types in different folders.
|
23 |
+
Each folder contains files named by a tile ID, which consists of the UTM projection, column, and row.
|
24 |
+
The column and row are based on tiles that are 512x512 pixels with pixel coordinates at 1.25 m/pixel, e.g. `32612_960_-6049.png` spans (614400, -3871360) to (615040, -3870720) in projection units.
|
25 |
+
|
26 |
+
Here is an example of NAIP data:
|
27 |
+
|
28 |
+
```
|
29 |
+
naip/
|
30 |
+
32612_960_-6049.png
|
31 |
+
32612_960_-6050.png
|
32 |
+
32612_960_-6051.png
|
33 |
+
...
|
34 |
+
```
|
35 |
+
|
36 |
+
And an example of Sentinel-2 data:
|
37 |
+
|
38 |
+
```
|
39 |
+
sentinel2/
|
40 |
+
32612_960_-6049_16.tif
|
41 |
+
32612_960_-6049_32.tif
|
42 |
+
32612_960_-6049_8.tif
|
43 |
+
32612_960_-6050_16.tif
|
44 |
+
...
|
45 |
+
```
|
46 |
+
|
47 |
+
Note that the Sentinel-2 images are GeoTIFFs so they contain georeference metadata.
|
48 |
+
Furthermore, the 10 m/pixel (`_8.tif`), 20 m/pixel (`_16.tif`), and 60 m/pixel (`_32.tif`) bands are stored separately.
|