Skip to content
Snippets Groups Projects
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
No related branches found
Tags 1.6.0
No related merge requests found
...@@ -34,6 +34,8 @@ release. ...@@ -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]()
......
...@@ -351,6 +351,8 @@ class IsisStore(object): ...@@ -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.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment