MCPcopy Index your code
hub / github.com/MapServer/MapServer / msIsAxisInverted

Function msIsAxisInverted

mapfile.c:78–90  ·  view source on GitHub ↗

/ int msIsAxisInverted */ check to see if we shoudl invert the axis. */ / /

Source from the content-addressed store, hash-verified

76/* */
77/************************************************************************/
78static int msIsAxisInverted(int epsg_code)
79{
80 int i;
81 /*check the static table*/
82 for (i=0; i<AXIS_ORIENTATION_TABLE_SIZE; i++)
83 {
84 if (axisOrientationEpsgCodes[i].code == epsg_code)
85 return MS_TRUE;
86 }
87
88 return MS_FALSE;
89
90}
91
92/*
93** Symbol to string static arrays needed for writing map files.

Callers 2

msLoadProjectionStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected