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
Branches main
No related tags found
No related merge requests found
......@@ -34,6 +34,8 @@ release.
-->
## [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]()
......
......@@ -351,6 +351,8 @@ class IsisStore(object):
# Un-mangle common attribute names between points and measures
df_attr = self.point_field_map.get(attr, attr)
if df_attr in g.columns:
if df_attr == 'id':
continue
if df_attr == 'pointLog':
# Currently pointLog is not supported.
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