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.
Data -Required
Output
Output Type | Structure |
---|
Data | List of records with an additional GeoPoint column |
Configuration Fields
Field Name | Required | Description |
---|
Latitude column | Yes | Name of the column containing latitude values |
Longitude column | Yes | Name of the column containing longitude values |
Geo point column name | Yes | Name of the new column to hold the generated point |
Id | Latitude | Longitude |
---|
1 | 12.9716 | 77.5946 |
2 | 28.6139 | 77.2090 |
3 | Invalid | 85.3240 |
Sample Configuration
Field | Value |
---|
Latitude column | [Latitude] |
Longitude column | [Longitude] |
Geo point column name | Location_WKT |
Sample Output
Id | Latitude | Longitude | Location_WKT |
---|
1 | 12.9716 | 77.5946 | POINT(77.5946 12.9716) |
2 | 28.6139 | 77.2090 | POINT(77.209 28.6139) |
3 | Invalid | 85.3240 | |