DataONEorg / mnlite

Light weight read-only DataONE member node in Python Flask
Apache License 2.0
0 stars 0 forks source link

Some NSIDC datasets have `name` and `description` strings split into lists on `,` #52

Closed iannesbitt closed 10 months ago

iannesbitt commented 1 year ago

Example: https://tinyurl.com/whju6pkj

A quick fix is to concatenate these strings into a one-string list using the separator ", ". This would be done in sonormalizepipeline.

iannesbitt commented 1 year ago

This issue causes the indexer to misfire for a name string that looks like the following, and mistakenly title the object "Version 1":

"name": ["ABoVE LVIS L2 Geolocated Surface Elevation Product","Version 1"]

See the original document here: doi:10.5067/IA5WAX7K3YGY And the indexed object here: https://search-stage.test.dataone.org/view/doi%3A10.5067%2FIA5WAX7K3YGY

iannesbitt commented 10 months ago

Closing as this has been solved and tested.