diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-05-06 09:02:14 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-06 09:02:14 +0300 |
| commit | a751fcc49b6542245e57707488fcbeff7a22fb6a (patch) | |
| tree | 7c2312088c9723e80d501889038c6cd7a7ea63b0 | |
| parent | ee3412199916b74b5579f3d1c5aa10bd407c06d5 (diff) | |
| parent | f739c12ae93701c652ff6e1cefa7f8fc29437c01 (diff) | |
| download | PROJ-a751fcc49b6542245e57707488fcbeff7a22fb6a.tar.gz PROJ-a751fcc49b6542245e57707488fcbeff7a22fb6a.zip | |
Merge pull request #984 from schwehr/quickstart
pj_obs_api_mini_demo.c: fix typo: en -> enu for PJ_COORD
| -rw-r--r-- | examples/pj_obs_api_mini_demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pj_obs_api_mini_demo.c b/examples/pj_obs_api_mini_demo.c index 83a13db1..94520490 100644 --- a/examples/pj_obs_api_mini_demo.c +++ b/examples/pj_obs_api_mini_demo.c @@ -58,7 +58,7 @@ int main (void) { /* transform to UTM zone 32, then back to geographical */ b = proj_trans (P, PJ_FWD, a); - printf ("easting: %g, northing: %g\n", b.enu.e, b.en.n); + printf ("easting: %g, northing: %g\n", b.enu.e, b.enu.n); b = proj_trans (P, PJ_INV, b); printf ("longitude: %g, latitude: %g\n", b.lp.lam, b.lp.phi); |
