1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/// Calculation of the centroid.
/// Checks if the geometry A is completely inside the B geometry.
/// Checks if the geometry A intersects the geometry B.
/// Returns the area of the surface of a geometry.
/// Returns the bearing to another Point in degrees.
/// Returns the length of a line.
/// Returns the Euclidean distance between two geometries.
/// Returns a new Point along a great circle between two points.
/// Returns a new Point using distance and bearing.
/// Returns the Haversine distance between two geometries.
/// Returns the Bbox of a geometry.
/// Simplifies geometries using the Ramer-Douglas-Peucker algorithm.
/// Simplifies geometries using the Visvalingam-Whyatt algorithm. Includes a topology-preserving variant.
/// Calculates the convex hull of a geometry.
/// Orients a Polygon's exterior and interior rings.
/// Returns the extreme indices of a `Polygon`, `MultiPolygon`, or `MultiPoint`.
/// Rotates a geometry around either its centroid or a point by an angle, given in degrees.
/// Translates a geometry along the given offsets.
/// Apply a function to all coordinates
/// Determine the closest point between two objects.
/// Produces geometry from PostGIS.
/// Converts geometry into PostGIS types.
/// Returns the Haversine length of a line.
/// Calculate, and work with, the winding order of Linestrings
/// Coordinate projections and transformations using [PROJ](http://proj4.org) v5.0.x
/// Helper functions for the "fast path" variant of the Polygon-Polygon distance method
pub