Skip to content

Commit

Permalink
Fix name for GCS_WGS_72 per gdal bug #1715.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.osgeo.org/metacrs/geotiff/trunk@749 4e78687f-474d-0410-85f9-8d5e500ac6b2
  • Loading branch information
warmerdam committed Jul 28, 2007
1 parent 6eb3e01 commit e1039df
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 6 additions & 2 deletions geotiff/libgeotiff/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
2007-07-20 Frank Warmerdam <[email protected]>
2007-07-28 Frank Warmerdam <[email protected]>

* Issue libgeotiff 1.2.4 release.

* Prepare libgeotiff 1.2.4 release.
* geo_normalize.c: Fix name for GCS_WGS_72 per gdal bug #1715.

2007-07-20 Frank Warmerdam <[email protected]>

* csv/*.csv,*.c: Upgrade to EPSG 6.13. Avoid applying pcs.override.csv
and gcs.override.csv to pcs.csv and gcs.csv as this sort of dataset
Expand Down
5 changes: 4 additions & 1 deletion geotiff/libgeotiff/geo_normalize.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
******************************************************************************
*
* $Log$
* Revision 1.50 2007/07/28 13:55:21 fwarmerdam
* Fix name for GCS_WGS_72 per gdal bug #1715.
*
* Revision 1.49 2007/07/20 18:10:41 fwarmerdam
* Pre-search pcs.override.csv and gcs.override.csv.
*
Expand Down Expand Up @@ -505,7 +508,7 @@ int GTIFGetGCSInfo( int nGCSCode, char ** ppszName,
else if( nGCSCode == GCS_WGS_72 )
{
nDatum = Datum_WGS72;
pszName = "WGS 82";
pszName = "WGS 72";
}
else
return FALSE;
Expand Down

0 comments on commit e1039df

Please sign in to comment.