Skip to content

Commit

Permalink
Fix wrong comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 28, 2014
1 parent eb56fae commit ce068ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ows/ows_srs.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ bool ows_srs_set(ows * o, ows_srs * c, const buffer * auth_name, int auth_srid)
else
c->is_degree = false;

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

Expand Down Expand Up @@ -240,7 +240,7 @@ bool ows_srs_set_from_srid(ows * o, ows_srs * s, int srid)
else
s->is_degree = false;

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

Expand Down

0 comments on commit ce068ff

Please sign in to comment.