mjf-su commited on
Commit
0d98e95
·
verified ·
1 Parent(s): fa662d3

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +58 -0
  2. index.parquet +3 -0
  3. manifest.parquet +3 -0
  4. shards/shard-t00_000000.tar +3 -0
  5. shards/shard-t00_000001.tar +3 -0
  6. shards/shard-t00_000002.tar +3 -0
  7. shards/shard-t00_000003.tar +3 -0
  8. shards/shard-t00_000004.tar +3 -0
  9. shards/shard-t00_000005.tar +3 -0
  10. shards/shard-t00_000006.tar +3 -0
  11. shards/shard-t00_000007.tar +3 -0
  12. shards/shard-t00_000008.tar +3 -0
  13. shards/shard-t00_000009.tar +3 -0
  14. shards/shard-t00_000010.tar +3 -0
  15. shards/shard-t00_000011.tar +3 -0
  16. shards/shard-t00_000012.tar +3 -0
  17. shards/shard-t00_000013.tar +3 -0
  18. shards/shard-t00_000014.tar +3 -0
  19. shards/shard-t00_000015.tar +3 -0
  20. shards/shard-t00_000016.tar +3 -0
  21. shards/shard-t00_000017.tar +3 -0
  22. shards/shard-t00_000018.tar +3 -0
  23. shards/shard-t00_000019.tar +3 -0
  24. shards/shard-t00_000020.tar +3 -0
  25. shards/shard-t00_000021.tar +3 -0
  26. shards/shard-t00_000022.tar +3 -0
  27. shards/shard-t00_000023.tar +3 -0
  28. shards/shard-t00_000024.tar +3 -0
  29. shards/shard-t00_000025.tar +3 -0
  30. shards/shard-t00_000026.tar +3 -0
  31. shards/shard-t00_000027.tar +3 -0
  32. shards/shard-t00_000028.tar +3 -0
  33. shards/shard-t00_000029.tar +3 -0
  34. shards/shard-t00_000030.tar +3 -0
  35. shards/shard-t00_000031.tar +3 -0
  36. shards/shard-t00_000032.tar +3 -0
  37. shards/shard-t00_000033.tar +3 -0
  38. shards/shard-t00_000034.tar +3 -0
  39. shards/shard-t00_000035.tar +3 -0
  40. shards/shard-t00_000036.tar +3 -0
  41. shards/shard-t00_000037.tar +3 -0
  42. shards/shard-t00_000038.tar +3 -0
  43. shards/shard-t00_000039.tar +3 -0
  44. shards/shard-t00_000040.tar +3 -0
  45. shards/shard-t00_000041.tar +3 -0
  46. shards/shard-t00_000042.tar +3 -0
  47. shards/shard-t00_000043.tar +3 -0
  48. shards/shard-t00_000044.tar +3 -0
  49. shards/shard-t00_000045.tar +3 -0
  50. shards/shard-t00_000047.tar +3 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-feature-extraction
5
+ tags:
6
+ - remote-sensing
7
+ - sar
8
+ - optical
9
+ - multimodal
10
+ - contrastive-learning
11
+ - sentinel-1
12
+ - landsat
13
+ size_categories:
14
+ - 1M<n<10M
15
+ ---
16
+
17
+ # VIS–SAR Satellite Dataset
18
+
19
+ Spatially- and temporally-aligned **visible (optical) ↔ SAR** satellite image patches
20
+ for cross-modal representation learning (CLIP-style SAR↔visible alignment).
21
+
22
+ ## Contents
23
+
24
+ - **~3.68M paired patches** (this is a snapshot of an in-progress 10M build).
25
+ - **`shards/`** — WebDataset `.tar` shards. Each sample key `K` has three members:
26
+ - `K.vis.npy` — visible/optical, **`uint8 [3, 224, 224]`** (3 bands)
27
+ - `K.sar.npy` — SAR, **`uint8 [2, 224, 224]`** (VV, VH)
28
+ - `K.json` — per-sample metadata (AOI, biome, region, lat/lon, acquisition times, CRS, transform, SAR scaling, cloud cover, Δt hours)
29
+ - **`index.parquet`** — random-access offset index, one row per sample:
30
+ `key, shard, vis_offset, vis_size, sar_offset, sar_size, ground_tile_id, aoi_id, biome, region`.
31
+ A worker can `seek`+read a single sample without scanning the shard.
32
+ - **`manifests/`** — per-shard metadata sidecars. **`manifest.parquet`** — consolidated metadata.
33
+
34
+ ## Decoding (uint8 → physical)
35
+
36
+ Values are quantized from normalized ranges to `uint8` (4× smaller than float32, retrieval-neutral):
37
+
38
+ - **Visible**: physical reflectance clipped to `[0, 30000]` → `[0,1]` → `uint8`. Decode: `x/255.0` gives normalized [0,1].
39
+ - **SAR**: linear amplitude → dB, clipped to `[-40, 5]` → `[0,1]` → `uint8`. Decode: `x/255.0` gives normalized [0,1]; `dB = x/255*45 - 40`.
40
+
41
+ ## Training
42
+
43
+ Directly consumable by the multi-modal CLIP training pipeline: point it at the
44
+ shard directory and the offset index —
45
+
46
+ ```
47
+ --shards_dir <download>/shards
48
+ --index_path <download>/index.parquet
49
+ ```
50
+
51
+ The loader (`tar_dataset`) auto-detects the `uint8` dtype and rescales to `[0,1]`
52
+ on read (no re-normalization needed). Use `ground_tile_id` for **leak-free
53
+ train/val splits** (group by tile so the same ground location never spans splits).
54
+
55
+ ## Notes
56
+
57
+ - Patches are 224×224 at a common spatial grid (VIS and SAR resampled to the same grid).
58
+ - SAR penetrates cloud/night, so VIS↔SAR pairs are matched within a Δt tolerance (see `dt_hours` in metadata).
index.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:814ef70ddc3b621a9378e96e5cbae9707be75cc33496cf000af3cb1f81e34489
3
+ size 22175031
manifest.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e303d161537e90efc916eb79271ca26c76219b35788626bf775c3bf3e4a63be
3
+ size 16666873
shards/shard-t00_000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ad0ebd7de6ed4ef7c3065cf9e61d79d0938d09c108f773cc935771e957bebe3
3
+ size 254474240
shards/shard-t00_000001.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:280eccb9876e6aabc175a91148fe830d25a0d7d7053dc598b9b2eba5a2d8b94e
3
+ size 254474240
shards/shard-t00_000002.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0772e51fca4afb5cf01386bee45d044dd6dec4e41f2b0ff78f04942c8012357f
3
+ size 254474240
shards/shard-t00_000003.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c405f2a936ffb5e54d50d67ee9efb700c3a7ed2c81394958eff40c7050e19802
3
+ size 254474240
shards/shard-t00_000004.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0d3e7c4db06c05520a7baba38adf5642cf8d50c25659b47e537be9e58c823d6
3
+ size 254474240
shards/shard-t00_000005.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9080482c3a968ed6907fc472a419724002bcaef7a30a78d56f3be8cd0e7946d4
3
+ size 254474240
shards/shard-t00_000006.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b7e2208505cf06cab7f2cf2afd08cf7b7bc66d236f633184c634ef42b2ba0dc
3
+ size 254474240
shards/shard-t00_000007.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5aeceb725b6d3fcdb7c78770f9963def4efe0adbe4b9bc517d20b656a19409c9
3
+ size 254474240
shards/shard-t00_000008.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8319f3cd83dc419557c44e9588fc19b2062a3ef4b10e8134c1acba9de7635723
3
+ size 254474240
shards/shard-t00_000009.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c6db9ef864f743d2d0bb98a93674494dce2c808c0f26b32a5856b8a86bb5dbb
3
+ size 254474240
shards/shard-t00_000010.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04631bd0c042f736b92fd947637b4ce5704905f0c400fff232a4ca955b540bab
3
+ size 254474240
shards/shard-t00_000011.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b65a2f2ca618831a9044655d660d9308a53947bccf1c806768591c768307b55
3
+ size 254474240
shards/shard-t00_000012.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cb64c43eb20b34169459fcfdc021d0219d5310fc3b945180ef4f99012763528
3
+ size 254474240
shards/shard-t00_000013.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd3337fc54eae1a5186e51701b26ffbd325c4db7530916cc1b04beb1e6afa134
3
+ size 254474240
shards/shard-t00_000014.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fa37d55f27eff9d485269ffb3eadb74a127c0c6d8ba92e16181bf57bc1e047c
3
+ size 254474240
shards/shard-t00_000015.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fa71c3986fd4d233a9f5b80e22cf6649415863c780801d4850cbbca8010aaa8
3
+ size 254474240
shards/shard-t00_000016.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a42d0c1a84bf903451c1b8768aa5edc903e6b1373660fe7aad8bfd0ea8e5dfc4
3
+ size 254474240
shards/shard-t00_000017.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8032b16fcf84be908c8b2a49e320341f418657fd0c80b659cc43c8681b04528b
3
+ size 254474240
shards/shard-t00_000018.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d07e21d08cadf47dda4c07dd1f206346a280a9de5bccfb4e20c8ce3d66a5df4
3
+ size 254474240
shards/shard-t00_000019.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f09bf03b16a166912988ac4c55acdd4d31430df62c99cda4e0bf0dce542e033
3
+ size 254474240
shards/shard-t00_000020.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43e82aaba7b96270e4a6f79494031b070b719d4f66cccc4f256328e7bd2bc829
3
+ size 254474240
shards/shard-t00_000021.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4302d4c8fff4fc9f2beb2782ded400079bd82bba9a39b3edb5134b8b25ff3f3
3
+ size 254474240
shards/shard-t00_000022.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:468c1a39e6636cf19cdd0ce0040eb8cbef39a2e691e181184a4772b8150b578b
3
+ size 254474240
shards/shard-t00_000023.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebe4b4ef4d642605d2cc277c415a695071a8e7d86e695d5d9c4ff8c8cc2af0d9
3
+ size 254474240
shards/shard-t00_000024.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef9a7ffd7a9b5999c51970c8ca01ac469fbb09730bb99bc92243c42837ba21d5
3
+ size 254474240
shards/shard-t00_000025.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d6a782ba828a877d715ed6c8153492ea81ab380accfa700628ba9ec14cba371
3
+ size 254474240
shards/shard-t00_000026.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37f871d848ddd0ca35743eef29a1a89be983f600af415ef8cffb8abf6bfcf381
3
+ size 254474240
shards/shard-t00_000027.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8a625aaf340e07e43a7fe5f290f594318fc97ef971bd1053557768d167dd0bc
3
+ size 254474240
shards/shard-t00_000028.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c1b093fe510fe8c0062e8857983631ccfb925a8b1bb3013b6af834bfc888a64
3
+ size 254474240
shards/shard-t00_000029.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afd475e1b558475444ff1554f4e11160cf18486615e2ea2b7b2a763c9bf2960a
3
+ size 254474240
shards/shard-t00_000030.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a47b6aea38d4aebdb36bd4dcd1c22a89316a1e6222799aa8882cacaecf3db97
3
+ size 254474240
shards/shard-t00_000031.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd2fd69e0b7ad630283de1ef5d1f1af63396578722d955d9f9867d90fae1a9a1
3
+ size 254474240
shards/shard-t00_000032.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b93ec39e625d0d4a5af09585267ac27504ab0347a9394b36892f74ca486a1aa3
3
+ size 254474240
shards/shard-t00_000033.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9ffde679e4b879860f07ba1f9c6ad88a3dd262c7bbb1e16c08b0fac9988dc05
3
+ size 254474240
shards/shard-t00_000034.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd4acebf41c1593ffbcdf9b51c6e038bdff73db61ae0e2d6bd5f6d1815303b34
3
+ size 254474240
shards/shard-t00_000035.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13ceb2449be09a0432c38b31bbf919023fc83a26aaf07350b86466b83a6752c8
3
+ size 254474240
shards/shard-t00_000036.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edac4e13fa236b5d738ca74b39cc0c12bee90d2a207e8c2d9dbd514aab1081d3
3
+ size 254474240
shards/shard-t00_000037.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b2bd375a6b85fc241562d862d4d9c6fef3e910f417de2e48235d1ace04b2315
3
+ size 254474240
shards/shard-t00_000038.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df2ec99d307b8c1dabdab38b62b6a1bed6202443ef33799a733b5a5bb066effc
3
+ size 254474240
shards/shard-t00_000039.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03bd77fcd66e1d1f863f388311ebd4e73c5afa89764700ff749dfb4f3d005d1d
3
+ size 254474240
shards/shard-t00_000040.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6295a1fdde066bc64a1a7cd83fa56aaa378c0f05f34e6453e6e7959e4b4e5b1
3
+ size 254474240
shards/shard-t00_000041.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0daa11f7538747cd8d269c7921a0ffc9f2671a35592620d194039f2144269d8f
3
+ size 254474240
shards/shard-t00_000042.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcc3dfe0d97b27d4783d4579fa170af4d182f699d3913ee1e426870dff34f60d
3
+ size 254474240
shards/shard-t00_000043.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f53deffdae6d3ccd168ea8da6f60b80727967ff2eec969e96b06d941d9bd4905
3
+ size 254474240
shards/shard-t00_000044.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2a7f893b4abd7c9127b4f43a64e94117d90a509b2d9bcc2c537a22039baabe4
3
+ size 254474240
shards/shard-t00_000045.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ccb4aa8a8f38c8ca34b869b72de4ef73590936bdcc9054cacb7bbcbfa7a0dcc
3
+ size 254474240
shards/shard-t00_000047.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43c5d50782378ac61f5dfe58413bad85348b79a24549f6e1f7e8dd6ff21ddea1
3
+ size 254474240