Skip to main content

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.

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:
  1. Forward geocoding — text address plus country → coordinates and structured place fields.
  2. Reverse geocoding — latitude and longitude → address-style properties and coordinates.
  3. Coordinates to GeoJSON — numeric lat/lon columns → a geometry column 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 example street, locality, country), and geocode_error when 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 geometry column: a GeoJSON Point [longitude, latitude].
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.