Skip to content

Commit

Permalink
Merge pull request #560 from pressler-vsc/fix/sidd-ded-coordsys-typo
Browse files Browse the repository at this point in the history
Typo in SIDD 2.0+ DigitalElevationData/Geoposition/CoordinateSystemType
  • Loading branch information
pressler-vsc authored Oct 10, 2024
2 parents 015cc4e + df12f1f commit 592b2ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion sarpy/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions sarpy/io/product/sidd2_elements/DigitalElevationData.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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

Expand Down

0 comments on commit 592b2ed

Please sign in to comment.