airsmodel 0.6.15__tar.gz → 0.6.16__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.15 → airsmodel-0.6.16}/PKG-INFO +1 -1
- {airsmodel-0.6.15 → airsmodel-0.6.16}/setup.py +1 -1
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airs/core/models/model.py +10 -3
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airsmodel.egg-info/PKG-INFO +1 -1
- {airsmodel-0.6.15 → airsmodel-0.6.16}/README.md +0 -0
- {airsmodel-0.6.15 → airsmodel-0.6.16}/setup.cfg +0 -0
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airs/core/models/__init__.py +0 -0
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airs/core/models/mapper.py +0 -0
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airsmodel.egg-info/SOURCES.txt +0 -0
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airsmodel.egg-info/dependency_links.txt +0 -0
- {airsmodel-0.6.15 → airsmodel-0.6.16}/src/airsmodel.egg-info/top_level.txt +0 -0
|
@@ -140,6 +140,8 @@ class ItemFormat(Enum):
|
|
|
140
140
|
other = "OTHER"
|
|
141
141
|
terrasar = "TerraSAR-X"
|
|
142
142
|
csk = "COSMO-SkyMed"
|
|
143
|
+
umbra = "UMBRA"
|
|
144
|
+
bsg = "BlackSkyGlobal"
|
|
143
145
|
|
|
144
146
|
|
|
145
147
|
class AssetFormat(Enum):
|
|
@@ -168,6 +170,10 @@ class AssetFormat(Enum):
|
|
|
168
170
|
gif = "GIF"
|
|
169
171
|
|
|
170
172
|
|
|
173
|
+
class SensorType(str, Enum):
|
|
174
|
+
SAR = "SAR"
|
|
175
|
+
|
|
176
|
+
|
|
171
177
|
class Role(Enum):
|
|
172
178
|
airs_item = "airs_item"
|
|
173
179
|
thumbnail = "thumbnail"
|
|
@@ -208,6 +214,7 @@ class Role(Enum):
|
|
|
208
214
|
covmat = "covmat"
|
|
209
215
|
prd = "prd"
|
|
210
216
|
extent = "extent"
|
|
217
|
+
pan_sharpened = "pan-sharpened"
|
|
211
218
|
|
|
212
219
|
|
|
213
220
|
class CommonBandName(Enum):
|
|
@@ -333,7 +340,7 @@ class Asset(BaseModel, extra=Extra.allow):
|
|
|
333
340
|
sar__instrument_mode: str | None = Field(default=None, title="[STAC, extension sar] The name of the sensor acquisition mode that is commonly used. This should be the short name, if available. For example, WV for \"Wave mode\" of Sentinel-1 and Envisat ASAR satellites.")
|
|
334
341
|
sar__frequency_band: str | None = Field(default=None, title="[STAC, extension sar] The common name for the frequency band to make it easier to search for bands across instruments. See section \"Common Frequency Band Names\" for a list of accepted names.")
|
|
335
342
|
sar__center_frequency: float | None = Field(default=None, title="[STAC, extension sar] The center frequency of the instrument, in gigahertz (GHz).")
|
|
336
|
-
sar__polarizations: str | None = Field(default=None, title="[STAC, extension sar] Any combination of polarizations.")
|
|
343
|
+
sar__polarizations: list[str] | None = Field(default=None, title="[STAC, extension sar] Any combination of polarizations.")
|
|
337
344
|
sar__product_type: str | None = Field(default=None, title="[STAC, extension sar] The product type, for example SSC, MGD, or SGC")
|
|
338
345
|
sar__resolution_range: float | None = Field(default=None, title="[STAC, extension sar] The range resolution, which is the maximum ability to distinguish two adjacent targets perpendicular to the flight path, in meters (m).")
|
|
339
346
|
sar__resolution_azimuth: float | None = Field(default=None, title="[STAC, extension sar] The azimuth resolution, which is the maximum ability to distinguish two adjacent targets parallel to the flight path, in meters (m).")
|
|
@@ -373,7 +380,7 @@ class Properties(BaseModel, extra=Extra.allow):
|
|
|
373
380
|
item_type: str | None = Field(default=None, title="[ARLAS] Type of data (ResourceType)")
|
|
374
381
|
item_format: str | None = Field(default=None, title="[ARLAS] Data format (ItemFormat)")
|
|
375
382
|
main_asset_format: str | None = Field(default=None, title="[ARLAS] Data format of the main asset (AssetFormat)")
|
|
376
|
-
main_asset_name: str | None = Field(default=None, title="[ARLAS] Name of the main asset (
|
|
383
|
+
main_asset_name: str | None = Field(default=None, title="[ARLAS] Name of the main asset (Role)")
|
|
377
384
|
observation_type: str | None = Field(default=None, title="[ARLAS] Type of observation (ObservationType)")
|
|
378
385
|
data_coverage: float | None = Field(default=None, title="[ARLAS] Estimate of data cover")
|
|
379
386
|
water_coverage: float | None = Field(default=None, title="[ARLAS] Estimate of water cover")
|
|
@@ -424,7 +431,7 @@ class Properties(BaseModel, extra=Extra.allow):
|
|
|
424
431
|
sar__instrument_mode: str | None = Field(default=None, title="[STAC, extension sar] The name of the sensor acquisition mode that is commonly used. This should be the short name, if available. For example, WV for \"Wave mode\" of Sentinel-1 and Envisat ASAR satellites.")
|
|
425
432
|
sar__frequency_band: str | None = Field(default=None, title="[STAC, extension sar] The common name for the frequency band to make it easier to search for bands across instruments. See section \"Common Frequency Band Names\" for a list of accepted names.")
|
|
426
433
|
sar__center_frequency: float | None = Field(default=None, title="[STAC, extension sar] The center frequency of the instrument, in gigahertz (GHz).")
|
|
427
|
-
sar__polarizations: str | None = Field(default=None, title="[STAC, extension sar] Any combination of polarizations.")
|
|
434
|
+
sar__polarizations: list[str] | None = Field(default=None, title="[STAC, extension sar] Any combination of polarizations.")
|
|
428
435
|
sar__product_type: str | None = Field(default=None, title="[STAC, extension sar] The product type, for example SSC, MGD, or SGC")
|
|
429
436
|
sar__resolution_range: float | None = Field(default=None, title="[STAC, extension sar] The range resolution, which is the maximum ability to distinguish two adjacent targets perpendicular to the flight path, in meters (m).")
|
|
430
437
|
sar__resolution_azimuth: float | None = Field(default=None, title="[STAC, extension sar] The azimuth resolution, which is the maximum ability to distinguish two adjacent targets parallel to the flight path, in meters (m).")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|