Skip to content
pyautark (soon)

@urban-toolkit/autk-db


@urban-toolkit/autk-db / JsonLatLngGeometryColumns

Interface: JsonLatLngGeometryColumns

Defined in: use-cases/load-json/interfaces.ts:19

Describes how to build point geometry from explicit latitude and longitude JSON fields.

Example

ts
const columns: JsonLatLngGeometryColumns = { latColumnName: 'lat', longColumnName: 'lng' };

Properties

coordinateFormat?

optional coordinateFormat?: string

Defined in: use-cases/load-json/interfaces.ts:25

CRS of the source coordinate fields before they are transformed into the workspace CRS.


latColumnName

latColumnName: string

Defined in: use-cases/load-json/interfaces.ts:21

Name of the field that stores latitude values used to create point geometries.


longColumnName

longColumnName: string

Defined in: use-cases/load-json/interfaces.ts:23

Name of the field that stores longitude values used to create point geometries.

Released under the MIT License.