Crate geo [] [src]

Re-exports

pub use algorithm::*;

Modules

algorithm

This module includes all the functions of geometric calculations

prelude

A prelude which re-exports the traits for manipulating objects in this crate. Typically imported with use geo::prelude::*.

Structs

Bbox

A container for the bounding box of a Geometry

Coordinate

A primitive type which holds x and y position information

ExtremePoint

A container for the coordinates of the minimum and maximum points of a Geometry

Extremes

A container for indices of the minimum and maximum points of a Geometry

GeometryCollection

A collection of Geometry types

Line

A line segment made up of exactly two Points

LineString

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

MultiLineString

A collection of LineStrings

MultiPoint

A collection of Points

MultiPolygon

A collection of Polygons

Point

A single Point in 2D space.

Polygon

A representation of an area. Its outer boundary is represented by a LineString that is both closed and simple

Enums

Closest

The result of trying to find the closest spot on an object to a point.

Geometry

An enum representing any possible geometry type.

Statics

COORD_PRECISION

Traits

CoordinateType

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

ToGeo