Reputation: 11
I'm using ES/Kibana 7.5. and I have the following CSV file with 3 columns.; first_seen, last_seen and geom.
Type of the first 2 columns are date and the 3d column, "geom" is geo_point with valid POINT (lon lat) format according to the ES document.
Issue is, when I import this test.csv file into the Kibana, in Advanced tab, in the mapping section, Kibana recognizes the "geom" column as keyword.
Then I re-write/change the type to geo_point as shown below:
But upon import I get the following error and end up with empty fields:
0: failed to parse field [geom] of type [geo_point]
How can I get ES/Kibana to recognize/map "geom" column as geo_point?
Upvotes: 1
Views: 299