PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ordname2ordval()

static LWORD ordname2ordval ( char  n)
static

Definition at line 2687 of file lwgeom_functions_basic.c.

References LWORD_M, LWORD_X, LWORD_Y, LWORD_Z, PG_FUNCTION_INFO_V1(), and ST_SwapOrdinates().

Referenced by ST_SwapOrdinates().

2688 {
2689  if ( n == 'x' || n == 'X' ) return LWORD_X;
2690  if ( n == 'y' || n == 'Y' ) return LWORD_Y;
2691  if ( n == 'z' || n == 'Z' ) return LWORD_Z;
2692  if ( n == 'm' || n == 'M' ) return LWORD_M;
2693  lwpgerror("Invalid ordinate name '%c'. Expected x,y,z or m", n);
2694  return (LWORD)-1;
2695 }
enum LWORD_T LWORD
Ordinate names.
Here is the call graph for this function:
Here is the caller graph for this function: