I used the following code to combine two columns into a geopoint however the end result is type unknown. When I go to investigate the columns some of the fields are “” empty and/or null. What is the expect behavior of this code when a lat and/or lon is null (null or “’”)?
Also, when I run the transform/ingest how does siren know to make this type geo_point?
{ "description": "Create geo point field", "processors": [ { "set": { "field": "geo_location", "value": { "lat": "{{latitude_field}}", "lon": "{{longitude_field}}" } } } ] }