PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ geography_azimuth()

Datum geography_azimuth ( PG_FUNCTION_ARGS  )

Definition at line 1054 of file geography_measurement.c.

1055{
1056 LWGEOM *lwgeom1 = NULL;
1057 LWGEOM *lwgeom2 = NULL;
1058 GSERIALIZED *g1 = NULL;
1059 GSERIALIZED *g2 = NULL;
1060 double azimuth;
1061 SPHEROID s;
1062 uint32_t type1, type2;
1063
1064 /* Get our geometry object loaded into memory. */
1065 g1 = PG_GETARG_GSERIALIZED_P(0);
1066 g2 = PG_GETARG_GSERIALIZED_P(1);
1067
1068 /* Only return for points. */
1069 type1 = gserialized_get_type(g1);
1070 type2 = gserialized_get_type(g2);
1071 if ( type1 != POINTTYPE || type2 != POINTTYPE )
1072 {
1073 elog(ERROR, "ST_Azimuth(geography, geography) is only valid for point inputs");
1074 PG_RETURN_NULL();
1075 }
1076
1077 lwgeom1 = lwgeom_from_gserialized(g1);
1078 lwgeom2 = lwgeom_from_gserialized(g2);
1079
1080 /* EMPTY things cannot be used */
1081 if ( lwgeom_is_empty(lwgeom1) || lwgeom_is_empty(lwgeom2) )
1082 {
1083 lwgeom_free(lwgeom1);
1084 lwgeom_free(lwgeom2);
1085 elog(ERROR, "ST_Azimuth(geography, geography) cannot work with empty points");
1086 PG_RETURN_NULL();
1087 }
1088
1089 /* Initialize spheroid */
1090 spheroid_init_from_srid(fcinfo, gserialized_get_srid(g1), &s);
1091
1092 /* Calculate the direction */
1093 azimuth = lwgeom_azumith_spheroid(lwgeom_as_lwpoint(lwgeom1), lwgeom_as_lwpoint(lwgeom2), &s);
1094
1095 /* Clean up */
1096 lwgeom_free(lwgeom1);
1097 lwgeom_free(lwgeom2);
1098
1099 PG_FREE_IF_COPY(g1, 0);
1100 PG_FREE_IF_COPY(g2, 1);
1101
1102 /* Return NULL for unknown (same point) azimuth */
1103 if( isnan(azimuth) )
1104 {
1105 PG_RETURN_NULL();
1106 }
1107
1108 PG_RETURN_FLOAT8(azimuth);
1109}
char * s
Definition cu_in_wkt.c:23
int32_t gserialized_get_srid(const GSERIALIZED *g)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
uint32_t gserialized_get_type(const GSERIALIZED *g)
Extract the geometry type from the serialized form (it hides in the anonymous data area,...
Definition gserialized.c:89
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1138
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition liblwgeom.h:116
double lwgeom_azumith_spheroid(const LWPOINT *r, const LWPOINT *s, const SPHEROID *spheroid)
Calculate the bearing between two points on a spheroid.
static LWPOINT * lwgeom_as_lwpoint(const LWGEOM *lwgeom)
Definition lwinline.h:121
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition lwinline.h:193

References gserialized_get_srid(), gserialized_get_type(), lwgeom_as_lwpoint(), lwgeom_azumith_spheroid(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_is_empty(), POINTTYPE, and s.

Here is the call graph for this function: