diff --git a/CHANGELOG.md b/CHANGELOG.md index aa11abf0..75454db8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ release points are not being annotated in GitHub. ## [1.3.60] ### Fixed +- Typo in SIDD 2.0+ DigitalElevationData/Geoposition/CoordinateSystemType enum (GGS -> GCS) - Account for timezones in generated datetimes - SIDD ProductProcessing handling diff --git a/sarpy/__about__.py b/sarpy/__about__.py index b8967d7c..e6d227d6 100644 --- a/sarpy/__about__.py +++ b/sarpy/__about__.py @@ -27,7 +27,7 @@ '__license__', '__copyright__'] from sarpy.__details__ import __classification__, _post_identifier -_version_number = '1.3.60.dev2' +_version_number = '1.3.60.dev3' __version__ = _version_number + _post_identifier diff --git a/sarpy/io/product/sidd2_elements/DigitalElevationData.py b/sarpy/io/product/sidd2_elements/DigitalElevationData.py index 71f7cdfa..396536d6 100644 --- a/sarpy/io/product/sidd2_elements/DigitalElevationData.py +++ b/sarpy/io/product/sidd2_elements/DigitalElevationData.py @@ -70,7 +70,7 @@ class GeopositioningType(Serializable): 'VerticalDatum', 'SoundingDatum', 'FalseOrigin') # Descriptor CoordinateSystemType = StringEnumDescriptor( - 'CoordinateSystemType', ('GGS', 'UTM'), _required, strict=DEFAULT_STRICT, + 'CoordinateSystemType', ('GCS', 'UTM'), _required, strict=DEFAULT_STRICT, docstring='') # type: str GeodeticDatum = StringEnumDescriptor( 'GeodeticDatum', ('World Geodetic System 1984', ), _required, strict=DEFAULT_STRICT, @@ -93,7 +93,7 @@ class GeopositioningType(Serializable): docstring='Z values false origin.') # type: int UTMGridZoneNumber = IntegerDescriptor( 'UTMGridZoneNumber', _required, strict=DEFAULT_STRICT, - docstring='Gride zone number, required for UTM, not include for GCS. ' + docstring='Grid zone number, required for UTM, not include for GCS. ' '**Values -** `+001` to `+060` (northern hemisphere) and `-001` to `-060` ' '(southern hemisphere)') # type: int