gbif / doc-openrefine-guide

Guía de Uso Básico de OpenRefine para la limpieza de datos sobre biodiversidad
https://doi.org/10.15468/doc-gzjg-af18
Other
2 stars 2 forks source link

Changes for Section "4.2 Georreferenciación usando GEOLocate" #45

Closed tucotuco closed 3 years ago

tucotuco commented 3 years ago

Below Método 2, the formula has a trailing .join("|") that doesn't do anything. For a cleaner formula, suggest

forEach(filter(value.parseJson().resultSet.features, v, isNonBlank(v.geometry)), w, w.geometry.coordinates[0]).join("; "))

in place of

forEach(filter(value.parseJson().resultSet.features, v, isNonBlank(v.geometry)), w, w.geometry.coordinates[0]).join("; ")).join("|")

pzermoglio commented 3 years ago

Changed.