logo
Expand description

The geo-types library provides geospatial primitive types for the GeoRust ecosystem.

In most cases, you will only need to use this crate if you’re a crate author and want compatibility with other GeoRust crates. Otherwise, the geo crate re-exports these types and provides geospatial algorithms.

Types

Semantics

The geospatial types provided here aim to adhere to the OpenGIS Simple feature access standards. Thus, the types here are inter-operable with other implementations of the standards: JTS, GEOS, etc.

Features

The following optional Cargo features are available:

  • approx: Allows geometry types to be checked for approximate equality with approx
  • arbitrary: Allows geometry types to be created from unstructured input with arbitrary
  • serde: Allows geometry types to be serialized and deserialized with Serde
  • use-rstar_0_8: Allows geometry types to be inserted into rstar R*-trees (rstar v0.8)
  • use-rstar_0_9: Allows geometry types to be inserted into rstar R*-trees (rstar v0.9)

Macros

Creates a Coordinate from the given scalars.

Creates a LineString containing the given coordinates.

Creates a Point from the given coordinates.

Creates a Polygon containing the given coordinates.

Structs

A lightweight struct used to store coordinates on the 2-dimensional Cartesian plane.

A collection of Geometry types.

A line segment made up of exactly two Coordinates.

An ordered collection of two or more Coordinates, representing a path between locations.

A collection of LineStrings. Can be created from a Vec of LineStrings or from an Iterator which yields LineStrings. Iterating over this object yields the component LineStrings.

A collection of Points. Can be created from a Vec of Points, or from an Iterator which yields Points. Iterating over this object yields the component Points.

A collection of Polygons. Can be created from a Vec of Polygons, or from an Iterator which yields Polygons. Iterating over this object yields the component Polygons.

A single point in 2D space.

A Point iterator returned by the points method

A bounded two-dimensional area.

An axis-aligned bounded 2D rectangle whose area is defined by minimum and maximum Coordinates.

A bounded 2D area whose three vertices are defined by Coordinates. The semantics and validity are that of the equivalent Polygon; in addition, the three vertices must not be collinear and they must be distinct.

Enums

An enum representing any possible geometry type.

Traits

The type of an x or y value of a point/coordinate.

CoordinateTypeDeprecated