rslearn 0.0.6__py3-none-any.whl → 0.0.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rslearn/dataset/handler_summaries.py +130 -0
- rslearn/dataset/manage.py +157 -22
- rslearn/main.py +60 -8
- rslearn/models/anysat.py +207 -0
- rslearn/models/clay/clay.py +219 -0
- rslearn/models/clay/configs/metadata.yaml +295 -0
- rslearn/models/copernicusfm.py +37 -25
- rslearn/models/dinov3.py +165 -0
- rslearn/models/galileo/__init__.py +5 -0
- rslearn/models/galileo/galileo.py +517 -0
- rslearn/models/galileo/single_file_galileo.py +1672 -0
- rslearn/models/panopticon_data/sensors/drone.yaml +32 -0
- rslearn/models/panopticon_data/sensors/enmap.yaml +904 -0
- rslearn/models/panopticon_data/sensors/goes.yaml +9 -0
- rslearn/models/panopticon_data/sensors/himawari.yaml +9 -0
- rslearn/models/panopticon_data/sensors/intuition.yaml +606 -0
- rslearn/models/panopticon_data/sensors/landsat8.yaml +84 -0
- rslearn/models/panopticon_data/sensors/modis_terra.yaml +99 -0
- rslearn/models/panopticon_data/sensors/qb2_ge1.yaml +34 -0
- rslearn/models/panopticon_data/sensors/sentinel1.yaml +85 -0
- rslearn/models/panopticon_data/sensors/sentinel2.yaml +97 -0
- rslearn/models/panopticon_data/sensors/superdove.yaml +60 -0
- rslearn/models/panopticon_data/sensors/wv23.yaml +63 -0
- rslearn/models/presto/presto.py +10 -7
- rslearn/models/prithvi.py +1122 -0
- rslearn/models/resize_features.py +45 -0
- rslearn/models/simple_time_series.py +65 -10
- rslearn/models/unet.py +17 -11
- rslearn/models/upsample.py +2 -2
- rslearn/tile_stores/default.py +31 -6
- rslearn/train/transforms/normalize.py +34 -5
- rslearn/train/transforms/select_bands.py +67 -0
- rslearn/train/transforms/sentinel1.py +60 -0
- rslearn/utils/geometry.py +61 -1
- rslearn/utils/raster_format.py +7 -1
- rslearn/utils/vector_format.py +13 -10
- {rslearn-0.0.6.dist-info → rslearn-0.0.8.dist-info}/METADATA +144 -15
- {rslearn-0.0.6.dist-info → rslearn-0.0.8.dist-info}/RECORD +42 -18
- {rslearn-0.0.6.dist-info → rslearn-0.0.8.dist-info}/WHEEL +0 -0
- {rslearn-0.0.6.dist-info → rslearn-0.0.8.dist-info}/entry_points.txt +0 -0
- {rslearn-0.0.6.dist-info → rslearn-0.0.8.dist-info}/licenses/LICENSE +0 -0
- {rslearn-0.0.6.dist-info → rslearn-0.0.8.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
instrument: 'unknown'
|
|
2
|
+
processing_level: 'L1C'
|
|
3
|
+
source: https://www.dji.com/p4-multispectral/specs
|
|
4
|
+
|
|
5
|
+
bands:
|
|
6
|
+
B01:
|
|
7
|
+
name: 'NIR'
|
|
8
|
+
gaussian:
|
|
9
|
+
mu: 840
|
|
10
|
+
sigma: 26
|
|
11
|
+
GSD: 0.2
|
|
12
|
+
|
|
13
|
+
B02:
|
|
14
|
+
name: 'Red'
|
|
15
|
+
gaussian:
|
|
16
|
+
mu: 650
|
|
17
|
+
sigma: 16
|
|
18
|
+
GSD: 0.2
|
|
19
|
+
|
|
20
|
+
B03:
|
|
21
|
+
name: 'Green'
|
|
22
|
+
gaussian:
|
|
23
|
+
mu: 560
|
|
24
|
+
sigma: 16
|
|
25
|
+
GSD: 0.2
|
|
26
|
+
|
|
27
|
+
B04:
|
|
28
|
+
name: 'Blue'
|
|
29
|
+
gaussian:
|
|
30
|
+
mu: 450
|
|
31
|
+
sigma: 16
|
|
32
|
+
GSD: 0.2
|