Skip to content

Commit ce068ff

Browse files
committed
Fix wrong comment
1 parent eb56fae commit ce068ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ows/ows_srs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ bool ows_srs_set(ows * o, ows_srs * c, const buffer * auth_name, int auth_srid)
161161
else
162162
c->is_degree = false;
163163

164-
/* Is northing-easting SRID ? */
164+
/* Is easting-northing SRID ? */
165165
if (atoi(PQgetvalue(res, 0, 2)) != 0)
166166
c->is_eastern_axis = true;
167167

@@ -240,7 +240,7 @@ bool ows_srs_set_from_srid(ows * o, ows_srs * s, int srid)
240240
else
241241
s->is_degree = false;
242242

243-
/* Is northing-easting SRID ? */
243+
/* Is easting-northing SRID ? */
244244
if (atoi(PQgetvalue(res, 0, 3)) != 0)
245245
s->is_eastern_axis = true;
246246

0 commit comments

Comments
 (0)