airsmodel 0.6.24__tar.gz → 0.6.26__tar.gz
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.
Potentially problematic release.
This version of airsmodel might be problematic. Click here for more details.
- {airsmodel-0.6.24 → airsmodel-0.6.26}/PKG-INFO +1 -1
- {airsmodel-0.6.24 → airsmodel-0.6.26}/setup.py +1 -1
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airs/core/models/model.py +2 -1
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airsmodel.egg-info/PKG-INFO +1 -1
- {airsmodel-0.6.24 → airsmodel-0.6.26}/README.md +0 -0
- {airsmodel-0.6.24 → airsmodel-0.6.26}/setup.cfg +0 -0
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airs/core/models/__init__.py +0 -0
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airs/core/models/mapper.py +0 -0
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airsmodel.egg-info/SOURCES.txt +0 -0
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airsmodel.egg-info/dependency_links.txt +0 -0
- {airsmodel-0.6.24 → airsmodel-0.6.26}/src/airsmodel.egg-info/top_level.txt +0 -0
|
@@ -98,6 +98,7 @@ class MimeType(Enum):
|
|
|
98
98
|
KML = "application/vnd.google-earth.kml+xml"
|
|
99
99
|
ZARR = "application/vnd+zarr" # https://github.com/openMetadataInitiative/openMINDS_core/blob/v4/instances/data/contentTypes/zarr.jsonld
|
|
100
100
|
NETCDF = "application/netcdf" # https://github.com/Unidata/netcdf/issues/42#issuecomment-1007618822
|
|
101
|
+
ZIP = "application/zip"
|
|
101
102
|
|
|
102
103
|
|
|
103
104
|
class ProcessingLevel(Enum):
|
|
@@ -331,7 +332,7 @@ class Asset(BaseModel, extra=Extra.allow):
|
|
|
331
332
|
airs__object_store_key: str | None = Field(default=None, title="[ARLAS, extension AIRS] Object store key of the asset object.")
|
|
332
333
|
title: str | None = Field(default=None, title="[STAC] Optional displayed title for clients and users.", max_length=300)
|
|
333
334
|
description: str | None = Field(default=None, title="[STAC] A description of the Asset providing additional details, such as how it was processed or created. CommonMark 0.29 syntax MAY be used for rich text representation.", max_length=300)
|
|
334
|
-
type: str | None = Field(default=None, title="[STAC] Optional description of the media type. Registered Media Types are preferred. See
|
|
335
|
+
type: str | None = Field(default=None, title="[STAC] Optional description of the media type. Registered Media Types are preferred. See MimeType for common media types.", max_length=300)
|
|
335
336
|
roles: List[str] | None = Field(default=None, title="[STAC] Optional, Semantic roles (i.e. thumbnail, overview, data, metadata) of the asset.", min_length=1, max_length=300)
|
|
336
337
|
extra_fields: Dict[str, Any] | None = Field(default=None, title="[ARLAS] Optional, additional fields for this asset. This is used by extensions as a way to serialize and deserialize properties on asset object JSON.")
|
|
337
338
|
gsd: float | None = Field(default=None, title="[deprecated, use eo:gsd instead] Ground Sampling Distance (resolution) of the asset")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|