This view is limited to 50 files because it contains too many changes. See the raw diff here.
README.md CHANGED
@@ -22,8 +22,6 @@ tags:
22
 
23
  SpaceSense-Bench is a high-fidelity simulation-based multi-modal (RGB, Depth, LiDAR Point Cloud) dataset for spacecraft component-level semantic understanding, containing **136 satellite models** with synchronized multi-modal data.
24
 
25
- > **Update (2026-05-19).** Following [issue #5](https://github.com/wuaodi/SpaceSense-Bench/issues/5), the `pose_ground_truth.csv` for all 136 spacecraft has been regenerated to fix a frame-timing misalignment with the rendered sensor data. The RGB / depth / segmentation / lidar files themselves are unchanged. All `raw/<sat>.tar.gz` archives have been re-uploaded with the corrected pose CSVs. Thanks to @zstar239 for the original report.
26
-
27
  ![teaser](https://cdn-uploads.huggingface.co/production/uploads/65a5e3a86145ebc6e7fefb20/e8ehYJXlWgR7vhq7LDLwM.png)
28
 
29
  ## Dataset Overview
@@ -67,34 +65,33 @@ python SpaceSense-Toolkit/convert/airsim_to_yolo.py --raw-data data_example --ou
67
 
68
  | Modality | Format | Unit / Range | Description |
69
  |----------|--------|-------------|-------------|
70
- | RGB | PNG (1024x1024) | 8-bit color | Scene rendering from `cam0` |
71
- | Depth | NPZ (compressed) | int32, millimeters (`depth` key); background = 10,000 m | Per-pixel metric depth exported from AirSim `DepthPerspective` |
72
- | Semantic Segmentation | PNG (1024x1024, RGB color mask) | color-coded part labels | Component-level segmentation mask; toolkit maps colors to 7 semantic classes |
73
- | LiDAR Point Cloud | ASC (x,y,z per line) | meters, 3 decimal places | Sparse 3D point cloud |
74
- | 6-DoF Pose | CSV | meters + Hamilton quaternion (w,x,y,z) | Target-spacecraft pose in camera frame, plus service/camera pose in world frame |
75
 
76
  ## Coordinate System & Units
77
 
78
  | Item | Convention |
79
  |------|-----------|
80
- | Camera Frame | X-forward, Y-right, Z-down (FRD, right-handed) |
81
  | World Frame | AirSim NED, target spacecraft fixed at origin |
82
  | Quaternion | Hamilton convention: w + xi + yj + zk |
83
  | Euler Angles | ZYX intrinsic (Yaw-Pitch-Roll) |
84
  | Position | meters (m), 6 decimal places |
85
- | Depth Map | millimeters (mm), stored as compressed `.npz`; deep-space background = 10,000 m |
86
- | LiDAR | meters (m), `.asc` format (`x,y,z`), 3 decimal places |
87
- | Timestamp | `YYYYMMDDHHMMSSmmm` |
88
 
89
  ## Sensor Configuration
90
 
91
- ### Camera (`cam0`)
92
 
93
  - Resolution: 1024 x 1024
94
  - FOV: 50 degrees
95
- - Image types captured: RGB (`Scene`, type 0), Segmentation (type 5), Depth (`DepthPerspective`, type 2)
96
  - TargetGamma: 1.0
97
- - Mounting offset: 1 m in front of the service spacecraft body origin
98
 
99
  ### LiDAR
100
 
@@ -102,7 +99,7 @@ python SpaceSense-Toolkit/convert/airsim_to_yolo.py --raw-data data_example --ou
102
  - Channels: 256
103
  - Vertical FOV: -20 to +20 degrees
104
  - Horizontal FOV: -20 to +20 degrees
105
- - Data frame: `SensorLocalFrame`
106
 
107
  ## Data Split (Zero-shot / OOD)
108
 
@@ -116,34 +113,21 @@ The training and validation sets contain **completely non-overlapping satellite
116
 
117
  ## Data Organization
118
 
119
- Each `.tar.gz` file in the `raw/` folder contains data for one satellite. The toolkit expects trajectory folders containing `image/`, `seg/`, `depth/`, `lidar/`, and `pose_ground_truth.csv`.
120
-
121
- Typical layout:
122
 
123
- ```text
124
- <satellite_name>/ or <timestamp>_<satellite_name>/
125
  ├── approach_front/
126
- │ ├── image/ # RGB images (.png)
127
- │ ├── depth/ # Depth maps (.npz, int32, mm, key = depth)
128
- │ ├── seg/ # Semantic masks (.png, RGB color encoding)
129
- │ ├── lidar/ # Point clouds (.asc)
130
- │ └── pose_ground_truth.csv
131
  ├── approach_back/
132
  ├── orbit_xy/
133
  └── ...
134
  ```
135
 
136
- Some HuggingFace exports may contain one additional nesting level:
137
-
138
- ```text
139
- <satellite_name>/
140
- └── <satellite_name>/
141
- ├── approach_front/
142
- ├── approach_back/
143
- ├── orbit_xy/
144
- └── ...
145
- ```
146
-
147
  ## Semantic Class Definitions
148
 
149
  | Class ID | Name | Description |
@@ -170,4 +154,4 @@ This dataset is released under the [CC-BY-NC-4.0](https://creativecommons.org/li
170
  year={2026},
171
  url={https://arxiv.org/abs/2603.09320}
172
  }
173
- ```
 
22
 
23
  SpaceSense-Bench is a high-fidelity simulation-based multi-modal (RGB, Depth, LiDAR Point Cloud) dataset for spacecraft component-level semantic understanding, containing **136 satellite models** with synchronized multi-modal data.
24
 
 
 
25
  ![teaser](https://cdn-uploads.huggingface.co/production/uploads/65a5e3a86145ebc6e7fefb20/e8ehYJXlWgR7vhq7LDLwM.png)
26
 
27
  ## Dataset Overview
 
65
 
66
  | Modality | Format | Unit / Range | Description |
67
  |----------|--------|-------------|-------------|
68
+ | RGB | PNG (1024x1024) | 8-bit color | Scene rendering |
69
+ | Depth | PNG (1024x1024) | int32, millimeters (0 ~ 10,000,000 mm, background = 10,000 m) | Per-pixel depth map |
70
+ | Semantic Segmentation | PNG (1024x1024) | uint8, class ID per pixel (0 = background) | Component-level segmentation mask |
71
+ | LiDAR Point Cloud | ASC (x y z per line) | meters, 3 decimal places | Sparse 3D point cloud |
72
+ | 6-DoF Pose | CSV | meters + Hamilton quaternion (w,x,y,z) | Camera-to-target relative pose |
73
 
74
  ## Coordinate System & Units
75
 
76
  | Item | Convention |
77
  |------|-----------|
78
+ | Camera Frame | X-forward, Y-right, Z-down (right-hand system) |
79
  | World Frame | AirSim NED, target spacecraft fixed at origin |
80
  | Quaternion | Hamilton convention: w + xi + yj + zk |
81
  | Euler Angles | ZYX intrinsic (Yaw-Pitch-Roll) |
82
  | Position | meters (m), 6 decimal places |
83
+ | Depth Map | millimeters (mm), int32; deep space background = 10,000 m |
84
+ | LiDAR | meters (m), .asc format (x y z), 3 decimal places |
85
+ | Timestamp | YYYYMMDDHHMMSSmmm |
86
 
87
  ## Sensor Configuration
88
 
89
+ ### Camera (cam0)
90
 
91
  - Resolution: 1024 x 1024
92
  - FOV: 50 degrees
93
+ - Image types captured: RGB (type 0), Segmentation (type 5), Depth (type 2)
94
  - TargetGamma: 1.0
 
95
 
96
  ### LiDAR
97
 
 
99
  - Channels: 256
100
  - Vertical FOV: -20 to +20 degrees
101
  - Horizontal FOV: -20 to +20 degrees
102
+ - Data frame: SensorLocalFrame
103
 
104
  ## Data Split (Zero-shot / OOD)
105
 
 
113
 
114
  ## Data Organization
115
 
116
+ Each `.tar.gz` file in the `raw/` folder contains data for one satellite:
 
 
117
 
118
+ ```
119
+ <timestamp>_<satellite_name>/
120
  ├── approach_front/
121
+ │ ├── rgb/ # RGB images (.png)
122
+ │ ├── depth/ # Depth maps (.png, int32, mm)
123
+ │ ├── segmentation/ # Semantic masks (.png, uint8)
124
+ │ ├── lidar/ # Point clouds (.asc)
125
+ │ └── poses.csv # 6-DoF poses
126
  ├── approach_back/
127
  ├── orbit_xy/
128
  └── ...
129
  ```
130
 
 
 
 
 
 
 
 
 
 
 
 
131
  ## Semantic Class Definitions
132
 
133
  | Class ID | Name | Description |
 
154
  year={2026},
155
  url={https://arxiv.org/abs/2603.09320}
156
  }
157
+ ```
raw/ACE.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8dd56f11e0aeb26c0adbe4c6f04bf923292abd9f3a2e3b3493fdf03bc571ffbb
3
- size 510933895
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc4715b89d93e8f01d626616a8563d7433ba2c2c5f34c9040281a3695dc9cc92
3
+ size 510825580
raw/ACRIMSAT.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d4e41df83a12dea10988f984ee4681f785fc098c495f491741d6fddcd78bf958
3
- size 572237756
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1507ee077a5e51bbcb544f418a152e1a15617f0e7acaa57bab34532f43d39ef
3
+ size 570717744
raw/ACS3.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dd10e3dd4756e0dd363e17b7251ae5d880d5660fb6cd5e41548426a155623105
3
- size 580932883
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fab10a4cfa90194c55364c69da7cfa73900c77d49b1864cf909c3b76095e063
3
+ size 580589238
raw/AIM.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5ee1c81189209bc8cd2fc04ca576d472d78ddc18beaf88d89bd14bfdf887cb99
3
- size 656412650
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d1fe2379bc2e97669d186f4f4e1b5da6f92150fe1a145caa635166ecbb56a47
3
+ size 655331425
raw/Aqua.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2b56ddae7db9c5a31ae9a980e001337d9efcf7fd74bcf02709bdd8b8084f71ce
3
- size 534542608
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82bc4ffe499e40bd0d5caea5f45dcb3ea0da08242bd60dce99811c44e1f3233c
3
+ size 534422797
raw/Aquarius.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7a8508ea547395c56c4e994382d50776804d117c207324ac3f4b00db86811bdc
3
- size 593158082
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64262147e607b103a23ac2f7c31cafbc616a9eb829ef00df3ae335e32687446c
3
+ size 592550140
raw/Artemis.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b397156c1450db880ee0cd58d305d0ec83b20de5726c60cf73f5a7d40c7b1386
3
- size 552222170
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38163b704ef0446ef21bea593fadbaff023c1b185e364dc99772158b0370c6c4
3
+ size 551927561
raw/Aura.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:00e4472eabe2440d5da105e929814d2f8ed8ac98f1bba14f43fedf3a08dbcebf
3
- size 534929626
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc3b8d64773f0e71c3f4174bdae4a9acb9c8f7350c41433bc1d891ab8a2dc124
3
+ size 534813823
raw/BepiColombo.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0a478e35f7823191f61371a08356e54158614458f7e83ce266417b6f4eddd36d
3
- size 505967128
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdb486f05e46972622f66951e55cd02aee030bcc08dfd55e6ee5e6dee5af7920
3
+ size 505914019
raw/BioSentinel.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6388bb3490f44f17c5ced1a206a78f453611f7c5b5c222fbfdbc3757517f08c2
3
- size 558594968
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ad6d22d38b844852725af7e9db4b62a96f1e27ee36185b501b8840f08b3cdea
3
+ size 556404844
raw/CALIPSO.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:80f9962329a564d253841f548e124866c584ea4ce157c0096d7faee14571157b
3
- size 511914048
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:affa9be327b9592d87bc31cb3dc949503cd8ee2c27c6a723811057bb33bf688c
3
+ size 511737311
raw/CAPSTONE.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0e7684993245dc05a0cf6574f4a1539f668d21eec920921f326405bb8dd32b2a
3
- size 512149837
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57ed399ad9a3f985da12e8ebd302b6f8553385a8c314e32b3c58ea1c66967f71
3
+ size 511884474
raw/CYGNSS.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ddf553a80ea6354c0b80a65745051a7114f6b3127f626aab861ccba277fad343
3
- size 522949309
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9000d8dd8ab10853fd5acfb7aa959bcd8d3865e133d867cb983ff992cbcef5e
3
+ size 522556007
raw/Cassini_Huygens.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:318a77a27da1f71ed984f11c551e3fd964f5399afe1dde313621d17f9c0e94cc
3
- size 516490455
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09dccf4cd3a1cddc0af646e1b5ceb9454c9ce394df4d0a460cc77a920bd57cf3
3
+ size 516379499
raw/Chandra.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:75624446c90396a3eea74a579b580ab3605c6adb5f9ce5ccc834d39e39dce1dc
3
- size 520598436
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47d685b672de196c1ac75b6a2a5eac6932d4f270873552179e3770f0957a26ec
3
+ size 520461521
raw/Cheops.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:af46a6f406eda133ad4d4007e2ef4034f26303e45b00a449fbe8bc7ad8e630bd
3
- size 707501183
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8268519b2baf6a1429c2596cb7f079cf7b229ff5dfa48bcc07c2876fdb56f8e
3
+ size 706318570
raw/Clementine.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ab602fa6b613baaa3168aa8312a4f34b17c354853e8ae3b9f24e3dd99549ca91
3
- size 521070801
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:728e678266275eda5b68c217c67f1f8115d8ae814d0310352cc762752f9f253a
3
+ size 520824390
raw/CloudSat.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3e409411fb4973950e84b407e8389a4da7f969644f170da0ed14137687c77a9a
3
- size 548931400
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:467aeedfc728dbd8b3a6cd2470de170be0baf82c37309bb3a1f74a7602bc0b43
3
+ size 548551994
raw/Cluster.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:60b7bf8775123aa215269d20cbc9715e8dc17b69227d3fc82dc3e817dc33e98c
3
- size 482416678
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d20007addf7e0d8e3db5fff6c17737342870e53be6bd2f1439f29f7727bc099c
3
+ size 482383732
raw/DART.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:be633dcf5d8d8e4a8e803ee99b0131cce6573d7e494f117aaad9484853ee230a
3
- size 506561590
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f264523aa9f7c7a6fa993ab90fa9a52da349afba6e341d54e46a9ea81ec2000
3
+ size 506511876
raw/DSCOVR.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0c937117b90cb8421c3007e915ce5ff606dc21819587dd2884135e37e7bb3dd1
3
- size 530640273
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adc28dbdcee2a70d169d8d8e0a542cf69c96e2138994f7515d4d4a588131a1ac
3
+ size 530441172
raw/Dawn.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ada104ec7c3e1c44a7da783566265cd4817833e371f31a8754dcbc397a827c4
3
- size 488180246
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a2985b54620f461e7e287cfff793984d42dfbcce04a535769692b5da0d36b37
3
+ size 488088645
raw/Deep_Impact.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:636c5a1c4910a84394e6791d60501d4ced5c377fdb94c1d56d64ac07ab152436
3
- size 567971528
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3ceb2bdcbcb696a6f90eb890f987c3695f716cffe40eed149af16efe7b9bd9a
3
+ size 566864663
raw/Deep_Impact_Impactor.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9a10790f9d5f3b4b833e46c0dbc6937953a123e1cca856d343ecfcf94ca837f0
3
- size 581928462
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa31642a7163fb8047a53a7a69d62fef4d491571a878940d4a3c2d623f1da921
3
+ size 580577107
raw/Deep_Space_1.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a12ce6efbf86abf16e8b1174e78757b7e8d38375e93779c84003478c85795f54
3
- size 500401543
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8dbb3d230ac8072d2719e09a024d0038e3f2fd1c292779b4cb40d17651aac69
3
+ size 500297731
raw/Desdyni.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c36e75fb93774c6b3391cec76cae917fdc9c72a7e42ce9159cfb8185d50ab209
3
- size 550967242
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9bcc2b149847bce6680fa05a46281c3e40b66069f8f8a0be8fba5a3cde8bbd4
3
+ size 550654402
raw/Double_Star.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7b6f00ca3a3fdcc94e300c6c8cc88a088e02a1e691fa3c27fce0bd13dbd7128c
3
- size 509002950
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c20ab837e4dca3f78352dbf20c4e1a99aedee57539fce8e81f9ac20366cd4067
3
+ size 508870189
raw/EO-1.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:073c19d7b40d7241dcb670bf148b35afc43687a8c45c7219de620e28ff99c02b
3
- size 525738809
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c673baec3d989166ae0881bd805f7e91968bb501de971b7331154c2bdc0215df
3
+ size 525551774
raw/Euclid.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:991954168f004205756e23debe3894aa11a97d67953dc7e7f60612b18d2a186e
3
- size 590319360
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67c64dd3971962ebbc56ee82fabb2501a1774daca7e2df9fdce602b71066f7d9
3
+ size 589612357
raw/Europa_Clipper.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4df87d28fcb893362c7094a87c4c8a4384dc7489428e9212238d2271e8b04165
3
- size 502592741
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74ffb7a75afa1a5eb80dd78d830bde764d4610ae2f99dcd0e4db405e767b5f1b
3
+ size 502506179
raw/ExoMars_TGO.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:41b86e4c551c7951af825a34b07fb9d55aa6defa288365f2f097dd9035caaf08
3
- size 509906367
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7de9ef6823fbf2e9b2f9a53db3d09351d2d2a7bcc8279bd111f9b3f30c03deb8
3
+ size 509818356
raw/Explorer_1.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:72a3793b887f90d7c1392d7b3d9924cbeae5858e4a5222091fee7b59bcc58b11
3
- size 491441800
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d26dacdd36bbc46d116244b8259ad0ee756de0239ca410b30cb6a2aaa5f7aa9c
3
+ size 491386724
raw/GPM.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4e959710726d6055b62eadc873de89e366f6282ed9ac684f3d0d88766d1e6f51
3
- size 545741984
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b21334255cf68a90a2810a4a608e9935272ef3fca4aca1f30b7886ad9f3a97be
3
+ size 545544110
raw/GRACE.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:57860e16313d4d9f171b02e9cab5896cb5d1d19ea98253062787889c54e5e057
3
- size 563709451
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6f28fa047f287acfa7d482785ce9b396a98055b36ead8ece30b18a6e892303b
3
+ size 563030790
raw/GRACE_FO.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:741c2c9fcd2aa5b6126ed207bc96e7684300e8b55a512571eaef3e9dc1955c3a
3
- size 558707246
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e548847e0f540bfc3c2538f6d1b7e8c72bf94968961cc807b8ce672bffcce1c0
3
+ size 557996352
raw/GRAIL.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:67aa0b6610c13f217ed579c589f92d21022953535fb4a6d3ec01216530c0d7e5
3
- size 534682930
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5aa8812a68d57decd266e5344fa8ef3a3388a72b47c86b752e7abe3ece5c4f78
3
+ size 534197896
raw/GRIFEX.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e4863566af2fff594b17357c52f35fc4d82207b148b63c6aa3a8dc59eb457f38
3
- size 495039031
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1193db40ac64ee1e66f3b475bca6e13bdc578bd9fbf629f512ff797b40d6a67
3
+ size 494144592
raw/Gaia.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2c2343f5343e76a4f5ee0d2631340f3afdf8632ced226b55994907c9141503f7
3
- size 601032683
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9c24e7425e3b41935e91a560171f076a5499ed1cdf744b950997969e217d225
3
+ size 600115897
raw/Galileo.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9dec73721d84ea5165862f983331a47d35eb84bd4a3fbcfe7927e1e47b71347f
3
- size 526260959
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12f68593fc63f80b68ce2ac6f3373f9ba89b331e2beeda5db22af979a49e4e99
3
+ size 526116131
raw/Galileo_Probe.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2e1eb357c8b95b0621bd93c88ae71bee12bb88584214c76ceaf6d20dc1c9149
3
- size 559134771
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93c7c15a066c097ab811fbdc6e22d278b84743b501c4e8cb820992685eea30cd
3
+ size 556970647
raw/Geotail.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:994ae5453c721e836429a7eb861ccb753d7aae33a976853878e988a2d213c79c
3
- size 487597773
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f6a06be0586f86a9533d370ecb69692fb8bda7f139f876940fd9986c5923259
3
+ size 487526566
raw/Giotto.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:602f5de876a6cde7d22abc0cb1f93a46c46508d59051f0f33ff991b14ddd2531
3
- size 593491738
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cb26a644fac80b9a00413cb0125380aec996a62355bfbffe3658a774f557e8b
3
+ size 592545510
raw/HESSI_RHESSI.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b9cdc54928b97afa3cbd66afc3921341d8c491174e1cfd1ecbfcb3cb88edb8c1
3
- size 523400155
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da0d4d0396418d99d8abbe920d27cad21c80e916818b3ce88096787408be70c3
3
+ size 523258224
raw/Herschel.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:baebb72ed4b8dcb54359d435fb2741a5e875d8c05f94ebb9c72e201a10866a65
3
- size 607925258
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4cd6458d9f4ededeb5c6bc2626c977b16fa5ba097763f9bd091a0cc18c53fe6
3
+ size 607157692
raw/Hubble_Space_Telescope.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b8fb3dc69df4dbea62e4d6f6b5fc99929d86f58a4fd51ec9cae823fda73f7204
3
- size 582453305
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbaf307ea24e37e51cd4fc6857ede58edeb87b24c2b7634a1a19bffcfece13d1
3
+ size 582004670
raw/Huygens.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e40f85772c60808aefc904c3ed16d04dbaf0e83f97bb4ae744c53b627e9ab6fa
3
- size 586277362
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:621cf211bf461c11faf19812fceadc0b2dfa9f4bbe06bcba03ba1df992900052
3
+ size 584781933
raw/IBEX.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dfee0772c7fc767d15815ab78e825043108bd2a170e19aacc7c04ffc16a05f02
3
- size 566117546
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6213bc87ca13ce1a7b5da9366a738f8d420aff39ced4e6e78e03e9cd0f970d2d
3
+ size 564837107
raw/ICESat_2.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4aa5ecfde8756e658276a2713bab170e29eeed96813a65cae9aeecd1d96a917c
3
- size 532023760
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac9ea670512ecea15f0f349c9025ce3b9cc0c63f713748755740cebe009b8f87
3
+ size 531788462
raw/IMAGE.tar.gz CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:46171bdeb1d8a17da9657ef0338a6f7ad0ff4f020f287eb492a440b0a002e84e
3
- size 487524454
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ea506fe38072a72ad0f5165ce20a52e4b259a56592fc307ff64d48f9d4a67c5
3
+ size 487482701