Skip to content

Create GeoPoint from Latitude/Longitude

Description

Generates a new GeoPoint column for each record in the dataset using provided latitude and longitude columns.
The GeoPoint is generated in POINT(longitude latitude) format.

Use Case:
Standardizes geolocation data for downstream geospatial processing or mapping using compatible formats.


Input

Data -Required

Output

Output TypeStructure
DataList of records with an additional GeoPoint column

Configuration Fields

Field NameRequiredDescription
Latitude columnYesName of the column containing latitude values
Longitude columnYesName of the column containing longitude values
Geo point column nameYesName of the new column to hold the generated point

Sample Input

IdLatitudeLongitude
112.971677.5946
228.613977.2090
3Invalid85.3240

Sample Configuration

FieldValue
Latitude column[Latitude]
Longitude column[Longitude]
Geo point column nameLocation_WKT

Sample Output

IdLatitudeLongitudeLocation_WKT
112.971677.5946POINT(77.5946 12.9716)
228.613977.2090POINT(77.209 28.6139)
3Invalid85.3240