aws.osml.formats.sidd.models

This file was generated by xsdata, v23.8, on 2023-10-05 09:59:45

Generator: DataclassGenerator See: https://xsdata.readthedocs.io/

class aws.osml.formats.sidd.models.AbstractReferenceSystemType(projected_coordinate_system: aws.osml.formats.sidd.models.sfa.ProjectedCoordinateSystemType | None = None, geographic_coordinate_system: aws.osml.formats.sidd.models.sfa.GeographicCoordinateSystemType | None = None, geocentric_coordinate_system: aws.osml.formats.sidd.models.sfa.GeocentricCoordinateSystemType | None = None)[source]

Bases: object

projected_coordinate_system: ProjectedCoordinateSystemType | None = None
geographic_coordinate_system: GeographicCoordinateSystemType | None = None
geocentric_coordinate_system: GeocentricCoordinateSystemType | None = None
class aws.osml.formats.sidd.models.CurveType[source]

Bases: GeometryType

class aws.osml.formats.sidd.models.DatumType(spheroid: aws.osml.formats.sidd.models.sfa.SpheriodType | None = None)[source]

Bases: object

spheroid: SpheriodType | None = None
class aws.osml.formats.sidd.models.GeocentricCoordinateSystemType(csname: str | None = None, datum: aws.osml.formats.sidd.models.sfa.DatumType | None = None, prime_meridian: aws.osml.formats.sidd.models.sfa.PrimeMeridianType | None = None, linear_unit: str | None = None)[source]

Bases: object

csname: str | None = None
datum: DatumType | None = None
prime_meridian: PrimeMeridianType | None = None
linear_unit: str | None = None
class aws.osml.formats.sidd.models.GeographicCoordinateSystemType(csname: str | None = None, datum: aws.osml.formats.sidd.models.sfa.DatumType | None = None, prime_meridian: aws.osml.formats.sidd.models.sfa.PrimeMeridianType | None = None, angular_unit: str | None = None, linear_unit: str | None = None)[source]

Bases: object

csname: str | None = None
datum: DatumType | None = None
prime_meridian: PrimeMeridianType | None = None
angular_unit: str | None = None
linear_unit: str | None = None
class aws.osml.formats.sidd.models.GeometryCollectionType[source]

Bases: GeometryType

class aws.osml.formats.sidd.models.GeometryType[source]

Bases: object

class aws.osml.formats.sidd.models.LineStringType(vertex: List[aws.osml.formats.sidd.models.sfa.PointType] = <factory>)[source]

Bases: CurveType

vertex: List[PointType]
aws.osml.formats.sidd.models.SfaLineType

alias of LineType

class aws.osml.formats.sidd.models.LinearRingType(vertex: List[aws.osml.formats.sidd.models.sfa.PointType] = <factory>)[source]

Bases: LineStringType

class aws.osml.formats.sidd.models.MultiCurveType[source]

Bases: GeometryCollectionType

class aws.osml.formats.sidd.models.MultiLineStringType(element: List[aws.osml.formats.sidd.models.sfa.LineType] = <factory>)[source]

Bases: MultiCurveType

element: List[LineType]
class aws.osml.formats.sidd.models.MultiPointType(vertex: List[aws.osml.formats.sidd.models.sfa.PointType] = <factory>)[source]

Bases: GeometryCollectionType

vertex: List[PointType]
class aws.osml.formats.sidd.models.MultiPolygonType(element: List[aws.osml.formats.sidd.models.sfa.PolygonType] = <factory>)[source]

Bases: MultiSurfaceType

element: List[PolygonType]
class aws.osml.formats.sidd.models.MultiSurfaceType[source]

Bases: GeometryCollectionType

aws.osml.formats.sidd.models.SfaParameterType

alias of ParameterType

class aws.osml.formats.sidd.models.PointType(x: float | None = None, y: float | None = None, z: float | None = None, m: float | None = None)[source]

Bases: GeometryType

x: float | None = None
y: float | None = None
z: float | None = None
m: float | None = None
aws.osml.formats.sidd.models.SfaPolygonType

alias of PolygonType

class aws.osml.formats.sidd.models.PolyhedralSurfaceType(patch: List[aws.osml.formats.sidd.models.sfa.PolygonType] = <factory>)[source]

Bases: SurfaceType

patch: List[PolygonType]
class aws.osml.formats.sidd.models.PrimeMeridianType(name: str | None = None, longitude: float | None = None)[source]

Bases: object

name: str | None = None
longitude: float | None = None
class aws.osml.formats.sidd.models.ProjectedCoordinateSystemType(csname: str | None = None, geographic_coordinate_system: aws.osml.formats.sidd.models.sfa.GeographicCoordinateSystemType | None = None, projection: aws.osml.formats.sidd.models.sfa.ProjectionType | None = None, parameter: aws.osml.formats.sidd.models.sfa.ParameterType | None = None, linear_unit: str | None = None)[source]

Bases: object

csname: str | None = None
geographic_coordinate_system: GeographicCoordinateSystemType | None = None
projection: ProjectionType | None = None
parameter: ParameterType | None = None
linear_unit: str | None = None
class aws.osml.formats.sidd.models.ProjectionType(projection_name: str | None = None)[source]

Bases: object

projection_name: str | None = None
class aws.osml.formats.sidd.models.ReferenceSystemType(projected_coordinate_system: Optional[aws.osml.formats.sidd.models.sfa.ProjectedCoordinateSystemType] = None, geographic_coordinate_system: Optional[aws.osml.formats.sidd.models.sfa.GeographicCoordinateSystemType] = None, geocentric_coordinate_system: Optional[aws.osml.formats.sidd.models.sfa.GeocentricCoordinateSystemType] = None, axis_name: List[str] = <factory>)[source]

Bases: AbstractReferenceSystemType

axis_name: List[str]
class aws.osml.formats.sidd.models.SpheriodType(spheriod_name: str | None = None, semi_major_axis: float | None = None, inverse_flattening: float | None = None)[source]

Bases: object

spheriod_name: str | None = None
semi_major_axis: float | None = None
inverse_flattening: float | None = None
class aws.osml.formats.sidd.models.SurfaceType[source]

Bases: GeometryType

class aws.osml.formats.sidd.models.TriangleType(ring: List[aws.osml.formats.sidd.models.sfa.LinearRingType] = <factory>)[source]

Bases: PolygonType

class aws.osml.formats.sidd.models.TriangulatedIrregularNetworkType(patch: List[aws.osml.formats.sidd.models.sfa.PolygonType] = <factory>, triangular_patch: List[aws.osml.formats.sidd.models.sfa.TriangleType] = <factory>)[source]

Bases: PolyhedralSurfaceType

triangular_patch: List[TriangleType]
class aws.osml.formats.sidd.models.UNITType(unit_name: str | None = None, conversion_factor: float | None = None)[source]

Bases: object

unit_name: str | None = None
conversion_factor: float | None = None
class aws.osml.formats.sidd.models.AngleMagnitudeType(angle: float | None = None, magnitude: float | None = None)[source]

Bases: object

angle: float | None = None
magnitude: float | None = None
class aws.osml.formats.sidd.models.ArrayDoubleType(value: float | None = None, index: int | None = None)[source]

Bases: object

value: float | None = None
index: int | None = None
class aws.osml.formats.sidd.models.CollectIdentifierType(value)[source]

Bases: Enum

An enumeration.

MONOSTATIC = 'MONOSTATIC'
BISTATIC = 'BISTATIC'
class aws.osml.formats.sidd.models.CollectionInfoType(collector_name: Optional[str] = None, illuminator_name: Optional[str] = None, core_name: Optional[str] = None, collect_type: Optional[aws.osml.formats.sidd.models.sicommon_types.CollectIdentifierType] = None, radar_mode: Optional[aws.osml.formats.sidd.models.sicommon_types.RadarModeType] = None, classification: Optional[str] = None, country_code: List[str] = <factory>, parameter: List[aws.osml.formats.sidd.models.sicommon_types.ParameterType] = <factory>)[source]

Bases: object

collector_name: str | None = None
illuminator_name: str | None = None
core_name: str | None = None
collect_type: CollectIdentifierType | None = None
radar_mode: RadarModeType | None = None
classification: str | None = None
country_code: List[str]
parameter: List[ParameterType]
class aws.osml.formats.sidd.models.ComplexType(real: float | None = None, imag: float | None = None)[source]

Bases: object

real: float | None = None
imag: float | None = None
class aws.osml.formats.sidd.models.CornerStringType(value)[source]

Bases: Enum

An enumeration.

VALUE_1_FRFC = '1:FRFC'
VALUE_2_FRLC = '2:FRLC'
VALUE_3_LRLC = '3:LRLC'
VALUE_4_LRFC = '4:LRFC'
class aws.osml.formats.sidd.models.ErrorFrameType(value)[source]

Bases: Enum

An enumeration.

ECF = 'ECF'
RIC_ECF = 'RIC_ECF'
RIC_ECI = 'RIC_ECI'
class aws.osml.formats.sidd.models.ErrorStatisticsType(composite_scp: ForwardRef('ErrorStatisticsType.CompositeSCP') | None = None, components: ForwardRef('ErrorStatisticsType.Components') | None = None, additional_parms: ForwardRef('ErrorStatisticsType.AdditionalParms') | None = None)[source]

Bases: object

composite_scp: CompositeSCP | None = None
components: Components | None = None
additional_parms: AdditionalParms | None = None
class CompositeSCP(rg_az_err: ForwardRef('ErrorStatisticsType.CompositeSCP.RgAzErr') | None = None, row_col_err: ForwardRef('ErrorStatisticsType.CompositeSCP.RowColErr') | None = None)[source]

Bases: object

rg_az_err: RgAzErr | None = None
row_col_err: RowColErr | None = None
class RgAzErr(rg: float | None = None, az: float | None = None, rg_az: float | None = None)[source]

Bases: object

rg: float | None = None
az: float | None = None
rg_az: float | None = None
class RowColErr(row: float | None = None, col: float | None = None, row_col: float | None = None)[source]

Bases: object

row: float | None = None
col: float | None = None
row_col: float | None = None
class Components(pos_vel_err: ForwardRef('ErrorStatisticsType.Components.PosVelErr') | None = None, radar_sensor: ForwardRef('ErrorStatisticsType.Components.RadarSensor') | None = None, tropo_error: ForwardRef('ErrorStatisticsType.Components.TropoError') | None = None, iono_error: ForwardRef('ErrorStatisticsType.Components.IonoError') | None = None)[source]

Bases: object

pos_vel_err: PosVelErr | None = None
radar_sensor: RadarSensor | None = None
tropo_error: TropoError | None = None
iono_error: IonoError | None = None
class PosVelErr(frame: aws.osml.formats.sidd.models.sicommon_types.ErrorFrameType | None = None, p1: float | None = None, p2: float | None = None, p3: float | None = None, v1: float | None = None, v2: float | None = None, v3: float | None = None, corr_coefs: ForwardRef('ErrorStatisticsType.Components.PosVelErr.CorrCoefs') | None = None, position_decorr: ForwardRef('ErrorStatisticsType.Components.PosVelErr.PositionDecorr') | None = None)[source]

Bases: object

frame: ErrorFrameType | None = None
p1: float | None = None
p2: float | None = None
p3: float | None = None
v1: float | None = None
v2: float | None = None
v3: float | None = None
corr_coefs: CorrCoefs | None = None
position_decorr: PositionDecorr | None = None
class CorrCoefs(p1_p2: float | None = None, p1_p3: float | None = None, p1_v1: float | None = None, p1_v2: float | None = None, p1_v3: float | None = None, p2_p3: float | None = None, p2_v1: float | None = None, p2_v2: float | None = None, p2_v3: float | None = None, p3_v1: float | None = None, p3_v2: float | None = None, p3_v3: float | None = None, v1_v2: float | None = None, v1_v3: float | None = None, v2_v3: float | None = None)[source]

Bases: object

p1_p2: float | None = None
p1_p3: float | None = None
p1_v1: float | None = None
p1_v2: float | None = None
p1_v3: float | None = None
p2_p3: float | None = None
p2_v1: float | None = None
p2_v2: float | None = None
p2_v3: float | None = None
p3_v1: float | None = None
p3_v2: float | None = None
p3_v3: float | None = None
v1_v2: float | None = None
v1_v3: float | None = None
v2_v3: float | None = None
class PositionDecorr(corr_coef_zero: float | None = None, decorr_rate: float | None = None)[source]

Bases: object

corr_coef_zero: float | None = None
decorr_rate: float | None = None
class RadarSensor(range_bias: float | None = None, clock_freq_sf: float | None = None, transmit_freq_sf: float | None = None, range_bias_decorr: ForwardRef('ErrorStatisticsType.Components.RadarSensor.RangeBiasDecorr') | None = None)[source]

Bases: object

range_bias: float | None = None
clock_freq_sf: float | None = None
transmit_freq_sf: float | None = None
range_bias_decorr: RangeBiasDecorr | None = None
class RangeBiasDecorr(corr_coef_zero: float | None = None, decorr_rate: float | None = None)[source]

Bases: object

corr_coef_zero: float | None = None
decorr_rate: float | None = None
class TropoError(tropo_range_vertical: float | None = None, tropo_range_slant: float | None = None, tropo_range_decorr: ForwardRef('ErrorStatisticsType.Components.TropoError.TropoRangeDecorr') | None = None)[source]

Bases: object

tropo_range_vertical: float | None = None
tropo_range_slant: float | None = None
tropo_range_decorr: TropoRangeDecorr | None = None
class TropoRangeDecorr(corr_coef_zero: float | None = None, decorr_rate: float | None = None)[source]

Bases: object

corr_coef_zero: float | None = None
decorr_rate: float | None = None
class IonoError(iono_range_vertical: float | None = None, iono_range_rate_vertical: float | None = None, iono_rg_rg_rate_cc: float | None = None, iono_range_vert_decorr: ForwardRef('ErrorStatisticsType.Components.IonoError.IonoRangeVertDecorr') | None = None)[source]

Bases: object

iono_range_vertical: float | None = None
iono_range_rate_vertical: float | None = None
iono_rg_rg_rate_cc: float | None = None
iono_range_vert_decorr: IonoRangeVertDecorr | None = None
class IonoRangeVertDecorr(corr_coef_zero: float | None = None, decorr_rate: float | None = None)[source]

Bases: object

corr_coef_zero: float | None = None
decorr_rate: float | None = None
class AdditionalParms(parameter: List[aws.osml.formats.sidd.models.sicommon_types.ParameterType] = <factory>)[source]

Bases: object

parameter: List[ParameterType]
class aws.osml.formats.sidd.models.GammaZeroSFIncidenceMapType(value)[source]

Bases: Enum

An enumeration.

APPILED = 'APPILED'
NOT_APPLIED = 'NOT_APPLIED'
class aws.osml.formats.sidd.models.ImageCreationType(application: str | None = None, date_time: xsdata.models.datatype.XmlDateTime | None = None, site: str | None = None, profile: str | None = None)[source]

Bases: object

application: str | None = None
date_time: XmlDateTime | None = None
site: str | None = None
profile: str | None = None
class aws.osml.formats.sidd.models.LLHCornerStringType(lat: float | None = None, lon: float | None = None, hae: float | None = None, index: aws.osml.formats.sidd.models.sicommon_types.CornerStringType | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
hae: float | None = None
index: CornerStringType | None = None
class aws.osml.formats.sidd.models.LLHType(lat: float | None = None, lon: float | None = None, hae: float | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
hae: float | None = None
class aws.osml.formats.sidd.models.LatLonCornerStringType(lat: float | None = None, lon: float | None = None, index: aws.osml.formats.sidd.models.sicommon_types.CornerStringType | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
index: CornerStringType | None = None
class aws.osml.formats.sidd.models.LatLonCornerType(lat: float | None = None, lon: float | None = None, index: int | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
index: int | None = None
class aws.osml.formats.sidd.models.LatLonHAECornerType(lat: float | None = None, lon: float | None = None, hae: float | None = None, index: int | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
hae: float | None = None
index: int | None = None
class aws.osml.formats.sidd.models.LatLonType(lat: float | None = None, lon: float | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
class aws.osml.formats.sidd.models.LatLonVertexType(lat: float | None = None, lon: float | None = None, index: int | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
index: int | None = None
aws.osml.formats.sidd.models.SicommontypesLineType

alias of LineType

class aws.osml.formats.sidd.models.ModeIdentifierType(value)[source]

Bases: Enum

An enumeration.

SPOTLIGHT = 'SPOTLIGHT'
STRIPMAP = 'STRIPMAP'
DYNAMIC_STRIPMAP = 'DYNAMIC STRIPMAP'
SCANSAR = 'SCANSAR'
aws.osml.formats.sidd.models.SicommontypesParameterType

alias of ParameterType

class aws.osml.formats.sidd.models.PolarizationType(value)[source]

Bases: Enum

An enumeration.

V = 'V'
H = 'H'
RHC = 'RHC'
LHC = 'LHC'
OTHER = 'OTHER'
class aws.osml.formats.sidd.models.Poly1DType(coef: List[aws.osml.formats.sidd.models.sicommon_types.PolyCoef1DType] = <factory>, order1: Optional[int] = None)[source]

Bases: object

coef: List[PolyCoef1DType]
order1: int | None = None
class aws.osml.formats.sidd.models.Poly2DType(coef: List[aws.osml.formats.sidd.models.sicommon_types.PolyCoef2DType] = <factory>, order1: Optional[int] = None, order2: Optional[int] = None)[source]

Bases: object

coef: List[PolyCoef2DType]
order1: int | None = None
order2: int | None = None
class aws.osml.formats.sidd.models.PolyCoef1DType(value: float | None = None, exponent1: int | None = None)[source]

Bases: object

value: float | None = None
exponent1: int | None = None
class aws.osml.formats.sidd.models.PolyCoef2DType(value: float | None = None, exponent1: int | None = None, exponent2: int | None = None)[source]

Bases: object

value: float | None = None
exponent1: int | None = None
exponent2: int | None = None
aws.osml.formats.sidd.models.SicommontypesPolygonType

alias of PolygonType

class aws.osml.formats.sidd.models.RadarModeType(mode_type: aws.osml.formats.sidd.models.sicommon_types.ModeIdentifierType | None = None, mode_id: str | None = None)[source]

Bases: object

mode_type: ModeIdentifierType | None = None
mode_id: str | None = None
class aws.osml.formats.sidd.models.RadiometricType(noise_poly: aws.osml.formats.sidd.models.sicommon_types.Poly2DType | None = None, rcssfpoly: aws.osml.formats.sidd.models.sicommon_types.Poly2DType | None = None, beta_zero_sfpoly: aws.osml.formats.sidd.models.sicommon_types.Poly2DType | None = None, sigma_zero_sfpoly: aws.osml.formats.sidd.models.sicommon_types.Poly2DType | None = None, sigma_zero_sfincidence_map: aws.osml.formats.sidd.models.sicommon_types.SigmaZeroSFIncidenceMapType | None = None, gamma_zero_sfpoly: aws.osml.formats.sidd.models.sicommon_types.Poly2DType | None = None, gamma_zero_sfincidence_map: aws.osml.formats.sidd.models.sicommon_types.GammaZeroSFIncidenceMapType | None = None)[source]

Bases: object

noise_poly: Poly2DType | None = None
rcssfpoly: Poly2DType | None = None
beta_zero_sfpoly: Poly2DType | None = None
sigma_zero_sfpoly: Poly2DType | None = None
sigma_zero_sfincidence_map: SigmaZeroSFIncidenceMapType | None = None
gamma_zero_sfpoly: Poly2DType | None = None
gamma_zero_sfincidence_map: GammaZeroSFIncidenceMapType | None = None
class aws.osml.formats.sidd.models.RangeAzimuthType(range: float | None = None, azimuth: float | None = None)[source]

Bases: object

Represents range and azimuth.

Variables:
  • range – Range dimension.

  • azimuth – Azimuth dimension.

range: float | None = None
azimuth: float | None = None
class aws.osml.formats.sidd.models.ReferencePointType(ecef: XYZType | None = None, point: RowColDoubleType | None = None, name: str | None = None)[source]

Bases: object

The reference point.

Variables:
  • ecef – The XYZ ECEF (units = m) reference point.

  • point – The row and column (units = pixels) which maps to the ECEF point.

  • name – Used for implementation specific signifier for the reference point.

ecef: XYZType | None = None
point: RowColDoubleType | None = None
name: str | None = None
class aws.osml.formats.sidd.models.RowColDoubleType(row: float | None = None, col: float | None = None)[source]

Bases: object

row: float | None = None
col: float | None = None
class aws.osml.formats.sidd.models.RowColIntType(row: int | None = None, col: int | None = None)[source]

Bases: object

row: int | None = None
col: int | None = None
class aws.osml.formats.sidd.models.RowColVertexType(row: int | None = None, col: int | None = None, index: int | None = None)[source]

Bases: object

row: int | None = None
col: int | None = None
index: int | None = None
class aws.osml.formats.sidd.models.SigmaZeroSFIncidenceMapType(value)[source]

Bases: Enum

An enumeration.

APPLIED = 'APPLIED'
NOT_APPLIED = 'NOT_APPLIED'
class aws.osml.formats.sidd.models.ValidDataType(vertex: List[aws.osml.formats.sidd.models.sicommon_types.RowColVertexType] = <factory>, size: Optional[int] = None)[source]

Bases: object

vertex: List[RowColVertexType]
size: int | None = None
class aws.osml.formats.sidd.models.XYZAttributeType(x: float | None = None, y: float | None = None, z: float | None = None, name: str | None = None)[source]

Bases: XYZType

name: str | None = None
class aws.osml.formats.sidd.models.XYZPolyAttributeType(x: aws.osml.formats.sidd.models.sicommon_types.Poly1DType | None = None, y: aws.osml.formats.sidd.models.sicommon_types.Poly1DType | None = None, z: aws.osml.formats.sidd.models.sicommon_types.Poly1DType | None = None, index: int | None = None)[source]

Bases: XYZPolyType

index: int | None = None
class aws.osml.formats.sidd.models.XYZPolyType(x: aws.osml.formats.sidd.models.sicommon_types.Poly1DType | None = None, y: aws.osml.formats.sidd.models.sicommon_types.Poly1DType | None = None, z: aws.osml.formats.sidd.models.sicommon_types.Poly1DType | None = None)[source]

Bases: object

x: Poly1DType | None = None
y: Poly1DType | None = None
z: Poly1DType | None = None
class aws.osml.formats.sidd.models.XYZType(x: float | None = None, y: float | None = None, z: float | None = None)[source]

Bases: object

x: float | None = None
y: float | None = None
z: float | None = None
aws.osml.formats.sidd.models.V10AngleMagnitudeType

alias of AngleMagnitudeType

class aws.osml.formats.sidd.models.AngleZeroToExclusive360MagnitudeType(angle: float | None = None, magnitude: float | None = None)[source]

Bases: object

angle: float | None = None
magnitude: float | None = None
aws.osml.formats.sidd.models.V10ArrayDoubleType

alias of ArrayDoubleType

aws.osml.formats.sidd.models.V10CollectIdentifierType

alias of CollectIdentifierType

aws.osml.formats.sidd.models.V10CollectionInfoType

alias of CollectionInfoType

aws.osml.formats.sidd.models.V10ComplexType

alias of ComplexType

aws.osml.formats.sidd.models.V10CornerStringType

alias of CornerStringType

aws.osml.formats.sidd.models.V10ErrorFrameType

alias of ErrorFrameType

aws.osml.formats.sidd.models.V10ErrorStatisticsType

alias of ErrorStatisticsType

class aws.osml.formats.sidd.models.GeoInfo(desc: List[aws.osml.formats.sidd.models.sicommon_types_v1_0.ParameterType] = <factory>, point: Optional[aws.osml.formats.sidd.models.sicommon_types_v1_0.LatLonRestrictionType] = None, line: Optional[aws.osml.formats.sidd.models.sicommon_types_v1_0.LineType] = None, polygon: Optional[aws.osml.formats.sidd.models.sicommon_types_v1_0.PolygonType] = None, geo_info: List[ForwardRef('GeoInfoType')] = <factory>, name: Optional[str] = None)[source]

Bases: GeoInfoType

class Meta[source]

Bases: object

namespace = 'urn:SICommon:1.0'
class aws.osml.formats.sidd.models.GeoInfoType(desc: List[aws.osml.formats.sidd.models.sicommon_types_v1_0.ParameterType] = <factory>, point: Optional[aws.osml.formats.sidd.models.sicommon_types_v1_0.LatLonRestrictionType] = None, line: Optional[aws.osml.formats.sidd.models.sicommon_types_v1_0.LineType] = None, polygon: Optional[aws.osml.formats.sidd.models.sicommon_types_v1_0.PolygonType] = None, geo_info: List[ForwardRef('GeoInfoType')] = <factory>, name: Optional[str] = None)[source]

Bases: object

desc: List[ParameterType]
point: LatLonRestrictionType | None = None
line: LineType | None = None
polygon: PolygonType | None = None
geo_info: List[GeoInfoType]
name: str | None = None
aws.osml.formats.sidd.models.V10ImageCreationType

alias of ImageCreationType

aws.osml.formats.sidd.models.V10LLHCornerStringType

alias of LLHCornerStringType

aws.osml.formats.sidd.models.V10LLHType

alias of LLHType

aws.osml.formats.sidd.models.V10LatLonCornerStringType

alias of LatLonCornerStringType

aws.osml.formats.sidd.models.V10LatLonCornerType

alias of LatLonCornerType

aws.osml.formats.sidd.models.V10LatLonHAECornerType

alias of LatLonHAECornerType

class aws.osml.formats.sidd.models.LatLonRestrictionType(lat: float | None = None, lon: float | None = None)[source]

Bases: object

lat: float | None = None
lon: float | None = None
aws.osml.formats.sidd.models.V10LatLonType

alias of LatLonType

aws.osml.formats.sidd.models.V10LatLonVertexType

alias of LatLonVertexType

aws.osml.formats.sidd.models.V10LineType

alias of LineType

class aws.osml.formats.sidd.models.MatchInfoType(num_match_types: Optional[int] = None, match_type: List[ForwardRef('MatchInfoType.MatchType')] = <factory>)[source]

Bases: object

num_match_types: int | None = None
match_type: List[MatchType]
class MatchType(type_id: Optional[str] = None, current_index: Optional[int] = None, num_match_collections: Optional[int] = None, match_collection: List[ForwardRef('MatchInfoType.MatchType.MatchCollection')] = <factory>, index: Optional[int] = None)[source]

Bases: object

type_id: str | None = None
current_index: int | None = None
num_match_collections: int | None = None
match_collection: List[MatchCollection]
index: int | None = None
class MatchCollection(core_name: Optional[str] = None, match_index: Optional[int] = None, parameter: List[aws.osml.formats.sidd.models.sicommon_types_v1_0.ParameterType] = <factory>, index: Optional[int] = None)[source]

Bases: object

core_name: str | None = None
match_index: int | None = None
parameter: List[ParameterType]
index: int | None = None
aws.osml.formats.sidd.models.V10ModeIdentifierType

alias of ModeIdentifierType

class aws.osml.formats.sidd.models.NoiseLevelNoiseLevelType(value)[source]

Bases: Enum

An enumeration.

ABSOLUTE = 'ABSOLUTE'
RELATIVE = 'RELATIVE'
aws.osml.formats.sidd.models.V10ParameterType

alias of ParameterType

class aws.osml.formats.sidd.models.Polarization1Typevalue(value)[source]

Bases: Enum

An enumeration.

V = 'V'
H = 'H'
X = 'X'
Y = 'Y'
S = 'S'
E = 'E'
RHC = 'RHC'
LHC = 'LHC'
OTHER = 'OTHER'
UNKNOWN = 'UNKNOWN'
SEQUENCE = 'SEQUENCE'
aws.osml.formats.sidd.models.V10Poly1DType

alias of Poly1DType

aws.osml.formats.sidd.models.V10Poly2DType

alias of Poly2DType

aws.osml.formats.sidd.models.V10PolyCoef1DType

alias of PolyCoef1DType

aws.osml.formats.sidd.models.V10PolyCoef2DType

alias of PolyCoef2DType

aws.osml.formats.sidd.models.V10PolygonType

alias of PolygonType

aws.osml.formats.sidd.models.V10RadarModeType

alias of RadarModeType

aws.osml.formats.sidd.models.V10RadiometricType

alias of RadiometricType

class aws.osml.formats.sidd.models.RadiometricTypeSigmaZeroSFIncidenceMap(value)[source]

Bases: Enum

An enumeration.

APPLIED = 'APPLIED'
NOT_APPLIED = 'NOT_APPLIED'
aws.osml.formats.sidd.models.V10RangeAzimuthType

alias of RangeAzimuthType

aws.osml.formats.sidd.models.V10ReferencePointType

alias of ReferencePointType

aws.osml.formats.sidd.models.V10RowColDoubleType

alias of RowColDoubleType

aws.osml.formats.sidd.models.V10RowColIntType

alias of RowColIntType

aws.osml.formats.sidd.models.V10RowColVertexType

alias of RowColVertexType

aws.osml.formats.sidd.models.V10ValidDataType

alias of ValidDataType

aws.osml.formats.sidd.models.V10XYZAttributeType

alias of XYZAttributeType

aws.osml.formats.sidd.models.V10XYZPolyAttributeType

alias of XYZPolyAttributeType

aws.osml.formats.sidd.models.V10XYZPolyType

alias of XYZPolyType

aws.osml.formats.sidd.models.V10XYZType

alias of XYZType

aws.osml.formats.sidd.models.V1AcheivedResolutionType

alias of AcheivedResolutionType

aws.osml.formats.sidd.models.V1AnnotationObjectType

alias of AnnotationObjectType

aws.osml.formats.sidd.models.V1AnnotationType

alias of AnnotationType

aws.osml.formats.sidd.models.V1AnnotationsType

alias of AnnotationsType

aws.osml.formats.sidd.models.V1BaseProjectionType

alias of BaseProjectionType

aws.osml.formats.sidd.models.V1ClassificationGuidanceType

alias of ClassificationGuidanceType

aws.osml.formats.sidd.models.V1ColorDisplayRemapType

alias of ColorDisplayRemapType

aws.osml.formats.sidd.models.V1CylindricalProjectionType

alias of CylindricalProjectionType

aws.osml.formats.sidd.models.V1DRAHistogramOverridesType

alias of DRAHistogramOverridesType

class aws.osml.formats.sidd.models.DecimationMethodType(value)[source]

Bases: Enum

Default ELT decimation method for this data.

Also used as default for reduced resolution dataset generation (if applicable).

NEAREST_NEIGHBOR = 'NEAREST_NEIGHBOR'
BILINEAR = 'BILINEAR'
BRIGHTEST_PIXEL = 'BRIGHTEST_PIXEL'
LAGRANGE = 'LAGRANGE'
aws.osml.formats.sidd.models.V1DownstreamReprocessingType

alias of DownstreamReprocessingType

aws.osml.formats.sidd.models.V1ExploitationFeaturesCollectionGeometryType

alias of ExploitationFeaturesCollectionGeometryType

aws.osml.formats.sidd.models.V1ExploitationFeaturesCollectionInformationType

alias of ExploitationFeaturesCollectionInformationType

aws.osml.formats.sidd.models.V1ExploitationFeaturesCollectionPhenomenologyType

alias of ExploitationFeaturesCollectionPhenomenologyType

aws.osml.formats.sidd.models.V1ExploitationFeaturesCollectionType

alias of ExploitationFeaturesCollectionType

aws.osml.formats.sidd.models.V1ExploitationFeaturesProductType

alias of ExploitationFeaturesProductType

aws.osml.formats.sidd.models.V1ExploitationFeaturesType

alias of ExploitationFeaturesType

class aws.osml.formats.sidd.models.FootprintType(vertex: List[aws.osml.formats.sidd.models.sicommon_types.LatLonVertexType] = <factory>, size: Optional[int] = None)[source]

Bases: object

vertex: List[LatLonVertexType]
size: int | None = None
class aws.osml.formats.sidd.models.GeographicAndTargetType(geographic_coverage: ~aws.osml.formats.sidd.models.sidd_v1_0_0.GeographicCoverageType | None = None, target_information: ~typing.List[~aws.osml.formats.sidd.models.sidd_v1_0_0.TargetInformationType] = <factory>)[source]

Bases: object

Variables:
  • geographic_coverage – Provides geographic coverage information.

  • target_information – Provides target specific geographic information.

geographic_coverage: GeographicCoverageType | None = None
target_information: List[TargetInformationType]
class aws.osml.formats.sidd.models.GeographicCoverageType(georegion_identifier: ~typing.List[~aws.osml.formats.sidd.models.sicommon_types.ParameterType] = <factory>, footprint: ~aws.osml.formats.sidd.models.sidd_v1_0_0.FootprintType | None = None, sub_region: ~typing.List[~aws.osml.formats.sidd.models.sidd_v1_0_0.GeographicCoverageType] = <factory>, geographic_info: ~aws.osml.formats.sidd.models.sidd_v1_0_0.GeographicInformationType | None = None)[source]

Bases: object

Variables:
  • georegion_identifier – Identifier for the georegion.

  • footprint – Estimated ground footprint of the product.

  • sub_region – Used to represent hierarchical decomposition into sub-regions.

  • geographic_info – Specifics about the georegion.

georegion_identifier: List[ParameterType]
footprint: FootprintType | None = None
sub_region: List[GeographicCoverageType]
geographic_info: GeographicInformationType | None = None
class aws.osml.formats.sidd.models.GeographicInformationType(country_code: ~typing.List[str] = <factory>, security_info: str | None = None, geographic_info_extension: ~typing.List[~aws.osml.formats.sidd.models.sicommon_types.ParameterType] = <factory>)[source]

Bases: object

Variables:
  • country_code – Country identifier for this geographic region.

  • security_info – Specifies classification level or special handling designators for this geographic region

  • geographic_info_extension – Implementation specific geographic information.

country_code: List[str]
security_info: str | None = None
geographic_info_extension: List[ParameterType]
aws.osml.formats.sidd.models.V1GeographicProjectionType

alias of GeographicProjectionType

aws.osml.formats.sidd.models.V1GeometricChipType

alias of GeometricChipType

aws.osml.formats.sidd.models.V1InputROIType

alias of InputROIType

aws.osml.formats.sidd.models.V1Lookup3TableType

alias of Lookup3TableType

aws.osml.formats.sidd.models.V1LookupTableType

alias of LookupTableType

class aws.osml.formats.sidd.models.MagnificationMethodType(value)[source]

Bases: Enum

Default ELT magnification method for this data.

NEAREST_NEIGHBOR = 'NEAREST_NEIGHBOR'
BILINEAR = 'BILINEAR'
LAGRANGE = 'LAGRANGE'
aws.osml.formats.sidd.models.V1MeasurableProjectionType

alias of MeasurableProjectionType

aws.osml.formats.sidd.models.V1MeasurementType

alias of MeasurementType

class aws.osml.formats.sidd.models.MonitorCompensationAppliedType(gamma: float | None = None, xmin: float | None = None)[source]

Bases: object

Describes monitor compensation that may have been applied to the product during processing.

Variables:
  • gamma – Gamma value for monitor compensation pre-applied to the image.

  • xmin – Xmin value for monitor compensation pre-applied to the image.

gamma: float | None = None
xmin: float | None = None
aws.osml.formats.sidd.models.V1MonochromeDisplayRemapType

alias of MonochromeDisplayRemapType

aws.osml.formats.sidd.models.V1PixelType

alias of PixelType

aws.osml.formats.sidd.models.V1PlaneProjectionType

alias of PlaneProjectionType

aws.osml.formats.sidd.models.V1PolynomialProjectionType

alias of PolynomialProjectionType

aws.osml.formats.sidd.models.V1ProcessingEventType

alias of ProcessingEventType

aws.osml.formats.sidd.models.V1ProcessingModuleType

alias of ProcessingModuleType

aws.osml.formats.sidd.models.V1ProcessorInformationType

alias of ProcessorInformationType

aws.osml.formats.sidd.models.V1ProductClassificationType

alias of ProductClassificationType

aws.osml.formats.sidd.models.V1ProductCreationType

alias of ProductCreationType

aws.osml.formats.sidd.models.V1ProductDisplayType

alias of ProductDisplayType

aws.osml.formats.sidd.models.V1ProductPlaneType

alias of ProductPlaneType

aws.osml.formats.sidd.models.V1ProductProcessingType

alias of ProductProcessingType

aws.osml.formats.sidd.models.V1RemapChoiceType

alias of RemapChoiceType

aws.osml.formats.sidd.models.V1SIDD

alias of SIDD

class aws.osml.formats.sidd.models.TargetInformationType(identifier: ~typing.List[~aws.osml.formats.sidd.models.sicommon_types.ParameterType] = <factory>, footprint: ~aws.osml.formats.sidd.models.sidd_v1_0_0.FootprintType | None = None, target_information_extension: ~typing.List[~aws.osml.formats.sidd.models.sicommon_types.ParameterType] = <factory>)[source]

Bases: object

Variables:
  • identifier – Target may have one or more identifiers. Examples: names, BE numbers, etc. Use the “name” attribute to describe what this is.

  • footprint – Target footprint as defined by polygonal shape.

  • target_information_extension – Generic extension. Could be used to indicate type of target, terrain, etc.

identifier: List[ParameterType]
footprint: FootprintType | None = None
target_information_extension: List[ParameterType]
aws.osml.formats.sidd.models.V1TxRcvPolarizationType

alias of TxRcvPolarizationType

aws.osml.formats.sidd.models.V2AccuracyType

alias of AccuracyType

aws.osml.formats.sidd.models.V2AcheivedResolutionType

alias of AcheivedResolutionType

aws.osml.formats.sidd.models.V2AnnotationObjectType

alias of AnnotationObjectType

aws.osml.formats.sidd.models.V2AnnotationType

alias of AnnotationType

aws.osml.formats.sidd.models.V2AnnotationsType

alias of AnnotationsType

aws.osml.formats.sidd.models.V2BandEqualizationType

alias of BandEqualizationType

aws.osml.formats.sidd.models.V2BankCustomType

alias of BankCustomType

aws.osml.formats.sidd.models.V2BaseProjectionType

alias of BaseProjectionType

aws.osml.formats.sidd.models.V2ClassificationGuidanceType

alias of ClassificationGuidanceType

aws.osml.formats.sidd.models.V2ColorDisplayRemapType

alias of ColorDisplayRemapType

aws.osml.formats.sidd.models.V2ColorManagementModuleType

alias of ColorManagementModuleType

aws.osml.formats.sidd.models.V2ColorSpaceTransformType

alias of ColorSpaceTransformType

aws.osml.formats.sidd.models.V2CompressionType

alias of CompressionType

aws.osml.formats.sidd.models.V2CustomLookupType

alias of CustomLookupType

aws.osml.formats.sidd.models.V2CylindricalProjectionType

alias of CylindricalProjectionType

aws.osml.formats.sidd.models.V2DRAHistogramOverridesType

alias of DRAHistogramOverridesType

aws.osml.formats.sidd.models.V2DRAOverrides

alias of DRAOverrides

aws.osml.formats.sidd.models.V2DRAParameters

alias of DRAParameters

aws.osml.formats.sidd.models.V2DigitalElevationDataType

alias of DigitalElevationDataType

aws.osml.formats.sidd.models.V2DownsamplingMethodType

alias of DownsamplingMethodType

aws.osml.formats.sidd.models.V2DownstreamReprocessingType

alias of DownstreamReprocessingType

aws.osml.formats.sidd.models.V2DynamicRangeAdjustmentType

alias of DynamicRangeAdjustmentType

aws.osml.formats.sidd.models.V2EarthModelType

alias of EarthModelType

aws.osml.formats.sidd.models.V2EqualizationAlgorithmType

alias of EqualizationAlgorithmType

aws.osml.formats.sidd.models.V2ExploitationFeaturesCollectionGeometryType

alias of ExploitationFeaturesCollectionGeometryType

aws.osml.formats.sidd.models.V2ExploitationFeaturesCollectionInformationType

alias of ExploitationFeaturesCollectionInformationType

aws.osml.formats.sidd.models.V2ExploitationFeaturesCollectionPhenomenologyType

alias of ExploitationFeaturesCollectionPhenomenologyType

aws.osml.formats.sidd.models.V2ExploitationFeaturesCollectionType

alias of ExploitationFeaturesCollectionType

aws.osml.formats.sidd.models.V2ExploitationFeaturesProductType

alias of ExploitationFeaturesProductType

aws.osml.formats.sidd.models.V2ExploitationFeaturesType

alias of ExploitationFeaturesType

aws.osml.formats.sidd.models.V2FilterBankCoefType

alias of FilterBankCoefType

aws.osml.formats.sidd.models.V2FilterBankType

alias of FilterBankType

aws.osml.formats.sidd.models.V2FilterDatabaseNameType

alias of FilterDatabaseNameType

aws.osml.formats.sidd.models.V2FilterKernelCoefType

alias of FilterKernelCoefType

aws.osml.formats.sidd.models.V2FilterKernelType

alias of FilterKernelType

aws.osml.formats.sidd.models.V2FilterOperationType

alias of FilterOperationType

aws.osml.formats.sidd.models.V2FilterType

alias of FilterType

aws.osml.formats.sidd.models.V2GeoDataType

alias of GeoDataType

aws.osml.formats.sidd.models.V2GeographicCoordinatesType

alias of GeographicCoordinatesType

aws.osml.formats.sidd.models.V2GeographicProjectionType

alias of GeographicProjectionType

aws.osml.formats.sidd.models.V2GeometricChipType

alias of GeometricChipType

aws.osml.formats.sidd.models.V2GeometricTransformType

alias of GeometricTransformType

aws.osml.formats.sidd.models.V2GeopositioningType

alias of GeopositioningType

aws.osml.formats.sidd.models.V2GeopositioningTypeCoordinateSystemType

alias of GeopositioningTypeCoordinateSystemType

aws.osml.formats.sidd.models.V2GeopositioningTypeGeodeticDatum

alias of GeopositioningTypeGeodeticDatum

aws.osml.formats.sidd.models.V2GeopositioningTypeReferenceEllipsoid

alias of GeopositioningTypeReferenceEllipsoid

aws.osml.formats.sidd.models.V2GeopositioningTypeSoundingDatum

alias of GeopositioningTypeSoundingDatum

aws.osml.formats.sidd.models.V2GeopositioningTypeVerticalDatum

alias of GeopositioningTypeVerticalDatum

aws.osml.formats.sidd.models.V2ImageCornersType

alias of ImageCornersType

aws.osml.formats.sidd.models.V2InputROIType

alias of InputROIType

aws.osml.formats.sidd.models.V2InteractiveProcessingType

alias of InteractiveProcessingType

aws.osml.formats.sidd.models.V2J2KSubtype

alias of J2KSubtype

aws.osml.formats.sidd.models.V2J2KType

alias of J2KType

aws.osml.formats.sidd.models.V2KernelCustomType

alias of KernelCustomType

aws.osml.formats.sidd.models.V2LUTInfoType

alias of LUTInfoType

aws.osml.formats.sidd.models.V2LayerInfoType

alias of LayerInfoType

aws.osml.formats.sidd.models.V2LayerType

alias of LayerType

aws.osml.formats.sidd.models.V2Lookup3TableType

alias of Lookup3TableType

aws.osml.formats.sidd.models.V2LookupTableType

alias of LookupTableType

aws.osml.formats.sidd.models.V2MeasurableProjectionType

alias of MeasurableProjectionType

aws.osml.formats.sidd.models.V2MeasurementType

alias of MeasurementType

aws.osml.formats.sidd.models.V2MeasurementTypeARPFlag

alias of MeasurementTypeARPFlag

aws.osml.formats.sidd.models.V2MonochromeDisplayRemapType

alias of MonochromeDisplayRemapType

aws.osml.formats.sidd.models.V2NewLookupTableType

alias of NewLookupTableType

aws.osml.formats.sidd.models.V2NonInteractiveProcessingType

alias of NonInteractiveProcessingType

aws.osml.formats.sidd.models.V2Orientation

alias of Orientation

aws.osml.formats.sidd.models.V2PixelType

alias of PixelType

aws.osml.formats.sidd.models.V2PlaneProjectionType

alias of PlaneProjectionType

aws.osml.formats.sidd.models.V2PolygonType

alias of PolygonType

aws.osml.formats.sidd.models.V2PolynomialProjectionType

alias of PolynomialProjectionType

aws.osml.formats.sidd.models.V2PositionalAccuracyType

alias of PositionalAccuracyType

aws.osml.formats.sidd.models.V2PredefinedFilterType

alias of PredefinedFilterType

aws.osml.formats.sidd.models.V2PredefinedLookupType

alias of PredefinedLookupType

aws.osml.formats.sidd.models.V2ProcTxRcvPolarizationType

alias of ProcTxRcvPolarizationType

aws.osml.formats.sidd.models.V2ProcessingEventType

alias of ProcessingEventType

aws.osml.formats.sidd.models.V2ProcessingModuleType

alias of ProcessingModuleType

aws.osml.formats.sidd.models.V2ProcessorInformationType

alias of ProcessorInformationType

aws.osml.formats.sidd.models.V2ProductClassificationType

alias of ProductClassificationType

aws.osml.formats.sidd.models.V2ProductCreationType

alias of ProductCreationType

aws.osml.formats.sidd.models.V2ProductDisplayType

alias of ProductDisplayType

aws.osml.formats.sidd.models.V2ProductGenerationOptionsType

alias of ProductGenerationOptionsType

aws.osml.formats.sidd.models.V2ProductPlaneType

alias of ProductPlaneType

aws.osml.formats.sidd.models.V2ProductProcessingType

alias of ProductProcessingType

aws.osml.formats.sidd.models.V2RRDSType

alias of RRDSType

aws.osml.formats.sidd.models.V2RangeAdjustmentAlgorithmType

alias of RangeAdjustmentAlgorithmType

aws.osml.formats.sidd.models.V2RemapChoiceType

alias of RemapChoiceType

aws.osml.formats.sidd.models.V2RenderingIntentType

alias of RenderingIntentType

aws.osml.formats.sidd.models.V2SIDD

alias of SIDD

aws.osml.formats.sidd.models.V2ScalingType

alias of ScalingType

aws.osml.formats.sidd.models.V2ShadowDirectionType

alias of ShadowDirectionType

aws.osml.formats.sidd.models.V2SharpnessEnhancementType

alias of SharpnessEnhancementType

aws.osml.formats.sidd.models.V2TxRcvPolarizationType

alias of TxRcvPolarizationType

aws.osml.formats.sidd.models.V2ValidDataType

alias of ValidDataType

aws.osml.formats.sidd.models.V3AccuracyType

alias of AccuracyType

aws.osml.formats.sidd.models.V3AcheivedResolutionType

alias of AcheivedResolutionType

aws.osml.formats.sidd.models.V3AnnotationObjectType

alias of AnnotationObjectType

aws.osml.formats.sidd.models.V3AnnotationType

alias of AnnotationType

aws.osml.formats.sidd.models.V3AnnotationsType

alias of AnnotationsType

aws.osml.formats.sidd.models.V3BandEqualizationType

alias of BandEqualizationType

aws.osml.formats.sidd.models.V3BankCustomType

alias of BankCustomType

aws.osml.formats.sidd.models.V3BaseProjectionType

alias of BaseProjectionType

aws.osml.formats.sidd.models.V3ClassificationGuidanceType

alias of ClassificationGuidanceType

aws.osml.formats.sidd.models.V3ColorDisplayRemapType

alias of ColorDisplayRemapType

aws.osml.formats.sidd.models.V3ColorManagementModuleType

alias of ColorManagementModuleType

aws.osml.formats.sidd.models.V3ColorSpaceTransformType

alias of ColorSpaceTransformType

aws.osml.formats.sidd.models.V3CompressionType

alias of CompressionType

aws.osml.formats.sidd.models.V3CustomLookupType

alias of CustomLookupType

aws.osml.formats.sidd.models.V3CylindricalProjectionType

alias of CylindricalProjectionType

aws.osml.formats.sidd.models.V3DRAHistogramOverridesType

alias of DRAHistogramOverridesType

aws.osml.formats.sidd.models.V3DRAOverrides

alias of DRAOverrides

aws.osml.formats.sidd.models.V3DRAParameters

alias of DRAParameters

aws.osml.formats.sidd.models.V3DigitalElevationDataType

alias of DigitalElevationDataType

aws.osml.formats.sidd.models.V3DownsamplingMethodType

alias of DownsamplingMethodType

aws.osml.formats.sidd.models.V3DownstreamReprocessingType

alias of DownstreamReprocessingType

aws.osml.formats.sidd.models.V3DynamicRangeAdjustmentType

alias of DynamicRangeAdjustmentType

aws.osml.formats.sidd.models.V3EarthModelType

alias of EarthModelType

aws.osml.formats.sidd.models.V3EqualizationAlgorithmType

alias of EqualizationAlgorithmType

aws.osml.formats.sidd.models.V3ExploitationFeaturesCollectionGeometryType

alias of ExploitationFeaturesCollectionGeometryType

aws.osml.formats.sidd.models.V3ExploitationFeaturesCollectionInformationType

alias of ExploitationFeaturesCollectionInformationType

aws.osml.formats.sidd.models.V3ExploitationFeaturesCollectionPhenomenologyType

alias of ExploitationFeaturesCollectionPhenomenologyType

aws.osml.formats.sidd.models.V3ExploitationFeaturesCollectionType

alias of ExploitationFeaturesCollectionType

aws.osml.formats.sidd.models.V3ExploitationFeaturesProductType

alias of ExploitationFeaturesProductType

aws.osml.formats.sidd.models.V3ExploitationFeaturesType

alias of ExploitationFeaturesType

aws.osml.formats.sidd.models.V3FilterBankCoefType

alias of FilterBankCoefType

aws.osml.formats.sidd.models.V3FilterBankType

alias of FilterBankType

aws.osml.formats.sidd.models.V3FilterDatabaseNameType

alias of FilterDatabaseNameType

aws.osml.formats.sidd.models.V3FilterKernelCoefType

alias of FilterKernelCoefType

aws.osml.formats.sidd.models.V3FilterKernelType

alias of FilterKernelType

aws.osml.formats.sidd.models.V3FilterOperationType

alias of FilterOperationType

aws.osml.formats.sidd.models.V3FilterType

alias of FilterType

aws.osml.formats.sidd.models.V3GeoDataType

alias of GeoDataType

aws.osml.formats.sidd.models.V3GeographicCoordinatesType

alias of GeographicCoordinatesType

aws.osml.formats.sidd.models.V3GeographicProjectionType

alias of GeographicProjectionType

aws.osml.formats.sidd.models.V3GeometricChipType

alias of GeometricChipType

aws.osml.formats.sidd.models.V3GeometricTransformType

alias of GeometricTransformType

aws.osml.formats.sidd.models.V3GeopositioningType

alias of GeopositioningType

aws.osml.formats.sidd.models.V3GeopositioningTypeCoordinateSystemType

alias of GeopositioningTypeCoordinateSystemType

aws.osml.formats.sidd.models.V3GeopositioningTypeGeodeticDatum

alias of GeopositioningTypeGeodeticDatum

aws.osml.formats.sidd.models.V3GeopositioningTypeReferenceEllipsoid

alias of GeopositioningTypeReferenceEllipsoid

aws.osml.formats.sidd.models.V3GeopositioningTypeSoundingDatum

alias of GeopositioningTypeSoundingDatum

aws.osml.formats.sidd.models.V3GeopositioningTypeVerticalDatum

alias of GeopositioningTypeVerticalDatum

aws.osml.formats.sidd.models.V3ImageCornersType

alias of ImageCornersType

aws.osml.formats.sidd.models.V3InputROIType

alias of InputROIType

aws.osml.formats.sidd.models.V3InteractiveProcessingType

alias of InteractiveProcessingType

aws.osml.formats.sidd.models.V3J2KSubtype

alias of J2KSubtype

aws.osml.formats.sidd.models.V3J2KType

alias of J2KType

aws.osml.formats.sidd.models.V3KernelCustomType

alias of KernelCustomType

aws.osml.formats.sidd.models.V3LUTInfoType

alias of LUTInfoType

aws.osml.formats.sidd.models.V3LayerInfoType

alias of LayerInfoType

aws.osml.formats.sidd.models.V3LayerType

alias of LayerType

aws.osml.formats.sidd.models.V3Lookup3TableType

alias of Lookup3TableType

aws.osml.formats.sidd.models.V3LookupTableType

alias of LookupTableType

aws.osml.formats.sidd.models.V3MeasurableProjectionType

alias of MeasurableProjectionType

aws.osml.formats.sidd.models.V3MeasurementType

alias of MeasurementType

aws.osml.formats.sidd.models.V3MeasurementTypeARPFlag

alias of MeasurementTypeARPFlag

aws.osml.formats.sidd.models.V3MonochromeDisplayRemapType

alias of MonochromeDisplayRemapType

aws.osml.formats.sidd.models.V3NewLookupTableType

alias of NewLookupTableType

aws.osml.formats.sidd.models.V3NonInteractiveProcessingType

alias of NonInteractiveProcessingType

aws.osml.formats.sidd.models.V3Orientation

alias of Orientation

aws.osml.formats.sidd.models.V3PixelType

alias of PixelType

aws.osml.formats.sidd.models.V3PlaneProjectionType

alias of PlaneProjectionType

aws.osml.formats.sidd.models.V3PolygonType

alias of PolygonType

aws.osml.formats.sidd.models.V3PolynomialProjectionType

alias of PolynomialProjectionType

aws.osml.formats.sidd.models.V3PositionalAccuracyType

alias of PositionalAccuracyType

aws.osml.formats.sidd.models.V3PredefinedFilterType

alias of PredefinedFilterType

aws.osml.formats.sidd.models.V3PredefinedLookupType

alias of PredefinedLookupType

aws.osml.formats.sidd.models.V3ProcTxRcvPolarizationType

alias of ProcTxRcvPolarizationType

aws.osml.formats.sidd.models.V3ProcessingEventType

alias of ProcessingEventType

aws.osml.formats.sidd.models.V3ProcessingModuleType

alias of ProcessingModuleType

aws.osml.formats.sidd.models.V3ProcessorInformationType

alias of ProcessorInformationType

aws.osml.formats.sidd.models.V3ProductClassificationType

alias of ProductClassificationType

aws.osml.formats.sidd.models.V3ProductCreationType

alias of ProductCreationType

aws.osml.formats.sidd.models.V3ProductDisplayType

alias of ProductDisplayType

aws.osml.formats.sidd.models.V3ProductGenerationOptionsType

alias of ProductGenerationOptionsType

aws.osml.formats.sidd.models.V3ProductPlaneType

alias of ProductPlaneType

aws.osml.formats.sidd.models.V3ProductProcessingType

alias of ProductProcessingType

aws.osml.formats.sidd.models.V3RRDSType

alias of RRDSType

aws.osml.formats.sidd.models.V3RangeAdjustmentAlgorithmType

alias of RangeAdjustmentAlgorithmType

aws.osml.formats.sidd.models.V3RemapChoiceType

alias of RemapChoiceType

aws.osml.formats.sidd.models.V3RenderingIntentType

alias of RenderingIntentType

aws.osml.formats.sidd.models.V3SIDD

alias of SIDD

aws.osml.formats.sidd.models.V3ScalingType

alias of ScalingType

aws.osml.formats.sidd.models.V3ShadowDirectionType

alias of ShadowDirectionType

aws.osml.formats.sidd.models.V3SharpnessEnhancementType

alias of SharpnessEnhancementType

aws.osml.formats.sidd.models.V3TxRcvPolarizationType

alias of TxRcvPolarizationType

aws.osml.formats.sidd.models.V3ValidDataType

alias of ValidDataType

Subpackages