Geospatial Data Types
Tamr supports the following GeoJSON data types.
Tamr supports the Simple Features ISO 19125 standard with a single, heterogeneous layer. This standard is used by geographic information systems and specifies a common storage and access model of the geometry types.
Tamr supports the following geospatial data types in GeoJSON:
point
is a longitude/latitude pair, where both of the geographic coordinates are specified in WGS84.point
is anarray<double>
.lineString
is an array of point coordinates, such as[100.0, 0.0], [101.0, 1.0]
.lineString
is anarray<array<double>>
.polygon
is a linear ring representing the exterior, and zero or more interior linear rings representing holes. Each linear ring is defined as an array of points where the first and the last points are the same.polygon
is anarray<array<array<double>>>
.
Updated over 5 years ago