Geometric data types
Last updated
Last updated
All feature types are presented in British National Grid (BNG) as one of the four data types specified below:
A point is used to specify a single x,y location by a coordinate pair in a given spatial reference system.
A point defined in the BNG reference system has easting and northing ordinates in units of metres, where the easting is in the range of 0 to 700000 and the northing is in the range of 0 to 1300000. Coordinates are output to millimetre precision and are output in the data as float64 real types.
A polyline is an ordered set of points that are interpolated linearly. A polyline may not intersect itself or contain repeated points.
Example class model
A multiline is a collection of polyline geometries. There are no specific semantics or rules applied to the collection.
Example class model
A polygon is a single closed region on the spatial reference system projection plane, defined by a set of geometric rings that represent the boundaries. A polygon has one outer boundary and zero or more inner boundaries (holes in the polygon). The inner boundaries must not cross each other or contain other inner boundaries. Coordinates in outer boundaries are oriented in an anticlockwise direction; coordinates in inner boundaries are oriented in a clockwise direction.
Example class model