Changes between Initial Version and Version 1 of Ticket #631
- Timestamp:
- 01/23/10 16:25:48 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #631 – Description
initial v1 3 3 For example, inputting the projection info: 4 4 5 {{{ 5 6 Coordinate System=UTM 6 7 Datum=Nad27 - T04 (Transformation Parameters for Alaska) 7 8 Ellipse: Clark66 8 9 Zone=8 10 }}} 9 11 10 12 I get the following PROJ_INFO files created. … … 12 14 tcltk interface results: 13 15 16 {{{ 14 17 name: UTM 15 18 datum: nad27 … … 21 24 f: 294.9786982000 22 25 zone: 8 26 }}} 23 27 24 28 wxpython results: 25 29 30 {{{ 26 31 name: Universe Transverse Mercator 27 32 proj: utm … … 29 34 zone: 8 30 35 no_defs: defined 36 }}} 31 37 32 38 The summary at the end of the wxpython location wizard method says the proj.4 definition is: 39 40 {{{ 33 41 +proj=utm, +zone=8, +a= 6378206.4000000004, +rf=294.9786982000, +dx=-22, +dy=157.0, +dz=176.0, +no_defs, +nadgrids=alaska 42 }}} 43 34 44 but if I run g.proj -j -f, I get the following output (which matches the PROJ_INFO file): 35 +proj=utm +no_defs +zone=8 +a=6378206.4 +rf=294.9786982 +to_meter=1 45 46 {{{ 47 +proj=utm +no_defs +zone=8 +a=6378206.4 +rf=294.9786982 +to_meter=1 48 }}}