Changeset 6075
- Timestamp:
- May 2, 2007, 2:04:18 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/mapserver/mapproject.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mapserver/mapproject.c
r5215 r6075 118 118 119 119 /* -------------------------------------------------------------------- */ 120 /* If the source and destination are simple and equal, then do */ 121 /* nothing. */ 122 /* -------------------------------------------------------------------- */ 123 if( in && in->numargs == 1 && out && out->numargs == 1 124 && strcmp(in->args[0],out->args[0]) == 0 ) 125 { 126 /* do nothing, no transformation required */ 127 } 128 129 /* -------------------------------------------------------------------- */ 120 130 /* If we have a fully defined input coordinate system and */ 121 131 /* output coordinate system, then we will use pj_transform. */ 122 132 /* -------------------------------------------------------------------- */ 123 if( in && in->proj && out && out->proj )133 else if( in && in->proj && out && out->proj ) 124 134 { 125 135 double z = 0.0;
Note:
See TracChangeset
for help on using the changeset viewer.
