Skip to content

Commit cec4819

Browse files
authored
Merge pull request #371 from allenai/favyen/20251118-dataset-config
Improve dataset configuration
2 parents b8a3bde + 06d0fc5 commit cec4819

63 files changed

Lines changed: 1508 additions & 1914 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rslearn"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
description = "A library for developing remote sensing datasets and models"
55
authors = [
66
{ name = "OlmoEarth Team" },

rslearn/config/__init__.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,25 @@
33
from .dataset import (
44
BandSetConfig,
55
CompositingMethod,
6+
DatasetConfig,
67
DataSourceConfig,
78
DType,
89
LayerConfig,
910
LayerType,
1011
QueryConfig,
11-
RasterFormatConfig,
12-
RasterLayerConfig,
1312
SpaceMode,
1413
TimeMode,
15-
VectorFormatConfig,
16-
VectorLayerConfig,
17-
load_layer_config,
1814
)
1915

2016
__all__ = [
2117
"BandSetConfig",
2218
"CompositingMethod",
19+
"DatasetConfig",
2320
"DataSourceConfig",
2421
"DType",
2522
"LayerConfig",
2623
"LayerType",
2724
"QueryConfig",
28-
"RasterFormatConfig",
29-
"RasterLayerConfig",
3025
"SpaceMode",
3126
"TimeMode",
32-
"VectorFormatConfig",
33-
"VectorLayerConfig",
34-
"load_layer_config",
3527
]

0 commit comments

Comments
 (0)