Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in SIDD 2.0+ DigitalElevationData/Geoposition/CoordinateSystemType #560

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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