diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2016-12-18 23:46:18 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2016-12-18 23:46:18 +0100 |
| commit | d8d7f8c7e40a484a665d2b1c3db7f18e3aa96800 (patch) | |
| tree | f1e3f99313b6294e7a17c562f94f9ba42691b601 /src/PJ_mod_ster.c | |
| parent | 4cc53290ec16915fc0ae6d2952d80c55e113284e (diff) | |
| download | PROJ-d8d7f8c7e40a484a665d2b1c3db7f18e3aa96800.tar.gz PROJ-d8d7f8c7e40a484a665d2b1c3db7f18e3aa96800.zip | |
Not using proper spherical earth in tests that use a spherical projection. +a replaced with +R
Diffstat (limited to 'src/PJ_mod_ster.c')
| -rw-r--r-- | src/PJ_mod_ster.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/PJ_mod_ster.c b/src/PJ_mod_ster.c index 9d34aa73..5d66fb41 100644 --- a/src/PJ_mod_ster.c +++ b/src/PJ_mod_ster.c @@ -299,7 +299,7 @@ int pj_mil_os_selftest (void) { double tolerance_lp = 1e-10; double tolerance_xy = 1e-7; - char s_args[] = {"+proj=mil_os +a=6400000 +lat_1=0.5 +lat_2=2"}; + char s_args[] = {"+proj=mil_os +R=6400000 +lat_1=0.5 +lat_2=2"}; LP fwd_in[] = { { 2, 1}, @@ -343,7 +343,7 @@ int pj_lee_os_selftest (void) { double tolerance_lp = 1e-10; double tolerance_xy = 1e-7; - char s_args[] = {"+proj=lee_os +a=6400000 +lat_1=0.5 +lat_2=2"}; + char s_args[] = {"+proj=lee_os +R=6400000 +lat_1=0.5 +lat_2=2"}; LP fwd_in[] = { { 2, 1}, @@ -387,7 +387,7 @@ int pj_gs48_selftest (void) { double tolerance_lp = 1e-12; double tolerance_xy = 1e-8; - char s_args[] = {"+proj=gs48 +a=6370997"}; + char s_args[] = {"+proj=gs48 +R=6370997"}; /* All latitudes and longitudes within the continental US */ LP fwd_in[] = { @@ -435,7 +435,7 @@ int pj_alsk_selftest (void) { double tolerance_xy = 1e-8; char e_args[] = {"+proj=alsk +ellps=clrk66"}; - char s_args[] = {"+proj=alsk +a=6370997"}; + char s_args[] = {"+proj=alsk +R=6370997"}; LP fwd_in[] = { {-160.0, 55.0}, @@ -494,7 +494,7 @@ int pj_gs50_selftest (void) { double tolerance_xy = 1e-8; char e_args[] = {"+proj=gs50 +ellps=clrk66"}; - char s_args[] = {"+proj=gs50 +a=6370997"}; + char s_args[] = {"+proj=gs50 +R=6370997"}; LP fwd_in[] = { {-160.0, 65.0}, |
