/ int msIsAxisInverted */ check to see if we shoudl invert the axis. */ / /
| 76 | /* */ |
| 77 | /************************************************************************/ |
| 78 | static 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. |
no outgoing calls
no test coverage detected