- Forward geocoding — text address plus country → coordinates and structured place fields.
- Reverse geocoding — latitude and longitude → address-style properties and coordinates.
- Coordinates to GeoJSON — numeric lat/lon columns → a
geometrycolumn with a Point struct only (no external geocoding call).
Outputs (summary)
- Forward and Reverse append geocoding columns such as
geometry(the GeoJSON point),latitude,longitude, structured fields (for examplestreet,locality,country), andgeocode_errorwhen a row could not be resolved. With max results greater than 1, one input row can produce multiple output rows (one per matching feature). - Coordinates to GeoJSON keeps your input columns and adds a
geometrycolumn: a GeoJSON Point[longitude, latitude].
- Forward (address → coordinates)
- Reverse (coordinates → address)
- Coordinates to GeoJSON (point)
1
Geocode mode
Choose Address to coordinates (forward).
2
Address column
Select the string column that contains the free-text address to geocode.
3
Country column
Select the string column used to bias the search. Values must be ISO 3166-1 alpha-3 country codes (for example
USA, GBR).4
Max results
Use the slider to choose between 1 and 10 matches to return per row. Higher values return more candidate features when the geocoder finds several matches.