aboutsummaryrefslogtreecommitdiff
path: root/docs/source/development
diff options
context:
space:
mode:
authorKai Pastor <dg0yt@darc.de>2019-09-11 08:57:34 +0200
committerKai Pastor <dg0yt@darc.de>2019-09-11 08:57:34 +0200
commit235f778333cd809071bdc502c9a001d0cc8a4666 (patch)
tree2070856d1014e53d7140e1801ce933c032d2a3ff /docs/source/development
parenta1518badde3fe18785fefe046ed909c05f86615e (diff)
downloadPROJ-235f778333cd809071bdc502c9a001d0cc8a4666.tar.gz
PROJ-235f778333cd809071bdc502c9a001d0cc8a4666.zip
Make migration code examples compile
Diffstat (limited to 'docs/source/development')
-rw-r--r--docs/source/development/migration.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/development/migration.rst b/docs/source/development/migration.rst
index df622ecb..98dbe570 100644
--- a/docs/source/development/migration.rst
+++ b/docs/source/development/migration.rst
@@ -22,7 +22,7 @@ We start by writing the program for PROJ 4:
#include <proj_api.h>
main(int argc, char **argv) {
- projPJ pj_merc, pj_latlong;
+ projPJ pj_merc, pj_longlat;
double x, y;
if (!(pj_longlat = pj_init_plus("+proj=longlat +ellps=clrk66")) )
@@ -33,7 +33,7 @@ We start by writing the program for PROJ 4:
while (scanf("%lf %lf", &x, &y) == 2) {
x *= DEG_TO_RAD; /* longitude */
y *= DEG_TO_RAD; /* latitude */
- p = pj_transform(pj_longlat, pj_merc, 1, 1, &x, &y, NULL );
+ int p = pj_transform(pj_longlat, pj_merc, 1, 1, &x, &y, NULL);
printf("%.2f\t%.2f\n", x, y);
}
@@ -74,7 +74,7 @@ The same program implemented using PROJ 6:
/* latitude for geographic CRS, and easting, northing for projected */
/* CRS. If instead of using PROJ strings as above, "EPSG:XXXX" codes */
/* had been used, this might had been necessary. */
- PJ* P_for_GIS = proj_normalize_for_visualization(C, P);
+ PJ* P_for_GIS = proj_normalize_for_visualization(PJ_DEFAULT_CTX, P);
if( 0 == P_for_GIS ) {
proj_destroy(P);
return 1;