Unverified Commit 536b435b authored by Austin Sanders's avatar Austin Sanders Committed by GitHub
Browse files

Pointid prefix (#214)

* Fixed prefixes/suffixes for pointid

* Updated changelog
parent f1da73ca
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -34,6 +34,8 @@ release.
-->
-->


## [Unreleased]
## [Unreleased]
### Fixed
- Fixed a bug in which prefixes and suffixes were not properly prepended/appended to point_id [#213](https://github.com/DOI-USGS/plio/issues/213)


# [1.6.0]()
# [1.6.0]()


+2 −0
Original line number Original line Diff line number Diff line
@@ -351,6 +351,8 @@ class IsisStore(object):
                # Un-mangle common attribute names between points and measures
                # Un-mangle common attribute names between points and measures
                df_attr = self.point_field_map.get(attr, attr)
                df_attr = self.point_field_map.get(attr, attr)
                if df_attr in g.columns:
                if df_attr in g.columns:
                    if df_attr == 'id':
                        continue
                    if df_attr == 'pointLog':
                    if df_attr == 'pointLog':
                        # Currently pointLog is not supported.
                        # Currently pointLog is not supported.
                        warnings.warn('The pointLog field is currently unsupported. Any pointLog data will not be saved.')
                        warnings.warn('The pointLog field is currently unsupported. Any pointLog data will not be saved.')