The Geocode tool is part of the geospatial utilities, alongside Directions, Polygon, and Point-in-Polygon. Use it when you need a consistent GeoJSON Point (and related fields) for downstream geospatial tools. It supports three modes:Documentation Index
Fetch the complete documentation index at: https://docs.less.tech/llms.txt
Use this file to discover all available pages before exploring further.
- 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)
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).