Takes a FeatureCollection of points and computes the median center. The median center is understood as the point that requires the least total travel from all other points.
geog: GEOMETRY for which to compute the center.
Return type
GEOMETRY
Example
ST_CENTEROFMASS
Description
Takes any Feature or a FeatureCollection and returns its center of mass. It is equivalent to ST_CENTROID.
geom: GEOMETRY for which to compute the center of mass.
Return type
GEOMETRY
Example
ST_CENTROID
Description
Takes any Feature or a FeatureCollection as input and returns its centroid. It is equivalent to ST_CENTEROFMASS.
geom: GEOMETRY for which to compute the centroid.
Return type
GEOMETRY
Example
ST_DESTINATION
Description
Takes a Point and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and a bearing in degrees. This uses the Haversine formula to account for global curvature.
geom: GEOMETRY starting point.
distance: FLOAT8 distance from the origin point in the units specified.
bearing: FLOAT8 ranging from -180 to 180 (e.g. 0 is North, 90 is East, 180 is South, -90 is West).
units (optional): VARCHAR(15) units of length. The supported options are: miles, kilometers, degrees or radians. If NULLthe default value kilometers is used.
Return type
GEOMETRY
Examples
ST_GREATCIRCLE
Description
Calculates a great circle route as a LineString.
start_point: GEOMETRY source point feature.
end_point: GEOMETRY destination point feature.
n_points (optional): INT number of points. Defaults to 100.