.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Proj4 3pm" .TH Proj4 3pm "2023-06-17" "perl v5.36.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" PDL::Transform::Proj4 \- PDL::Transform interface to the Proj4 projection library .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 9 \& # Using the generalized proj interface: \& # Make an orthographic map of Earth \& use PDL::Transform::Cartography; \& use PDL::Transform::Proj4; \& $x = earth_coast(); \& $x = graticule(10,2)\->glue(1,$x); \& $t = t_proj( proj_params => "+proj=ortho +ellps=WGS84 +lon_0=\-90 +lat_0=40" ); \& $w = pgwin(xs); \& $w\->lines($t\->apply($x)\->clean_lines()); \& \& # Using the aliased functions: \& # Make an orthographic map of Earth \& use PDL::Transform::Cartography; \& use PDL::Transform::Proj4; \& $x = earth_coast(); \& $x = graticule(10,2)\->glue(1,$x); \& $t = t_proj_ortho( ellps => \*(AqWGS84\*(Aq, lon_0 => \-90, lat_0 => 40 ) \& $w = pgwin(xs); \& $w\->lines($t\->apply($x)\->clean_lines()); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" Works like PDL::Transform::Cartography, but using the proj library in the background. .PP Please see the proj library docs at for more information on proj, and how to use the library. .SH "GENERALIZED INTERFACE" .IX Header "GENERALIZED INTERFACE" The main object here is the PDL::Transform::Proj4 object, aliased to the \fBt_proj()\fR function. .PP This object accepts all of the standard options described below, but mainly is there to be called with just the \fBproj_params\fR option defined. .PP When options are used, they must be used with a '+' before them when placed in the proj_params string, but that is not required otherwise. See the \s-1SYNOPSIS\s0 above. .SS "\s-1ALIASED INTERFACE\s0" .IX Subsection "ALIASED INTERFACE" Other than \fBt_proj()\fR, all of the other transforms below have been autogenerated, and may not work properly. The main problem is determining the parameters a projection requires from the proj library itself. .PP Due to the difficulties in doing this, there may be times when the proj docs specify a parameter for a projection that won't work using the anon-hash type specification. In that case, just throw that parameter in the proj_params string, and everything should work fine. .SH "PARAMETERS AVAILABLE IN ALL PROJECTIONS" .IX Header "PARAMETERS AVAILABLE IN ALL PROJECTIONS" .SS "General Parameters" .IX Subsection "General Parameters" \fIproj_params\fR .IX Subsection "proj_params" .PP This is a string containing the proj \*(L"plus style\*(R" parameters. This would be similar to what you would put on the command line for the 'proj' tool. Like \*(L"+proj=ortho +ellps=WGS84 +lon_0=\-90 +lat_0=40\*(R". .PP This parameter overrides the others below when it contains parameters that are also specified explicitly. .PP \fIproj\fR .IX Subsection "proj" .PP The proj projection code to use (like ortho...) .PP \fIx_0\fR .IX Subsection "x_0" .PP Cartesian X offset for the output of the transformation .PP \fIy_0\fR .IX Subsection "y_0" .PP Cartesian Y offset for the output of the transformation .PP \fIlat_0\fR .IX Subsection "lat_0" .PP Central latitude for the projection. \&\s-1NOTE:\s0 This may mean other things depending on the projection selected, read the proj docs! .PP \fIlon_0\fR .IX Subsection "lon_0" .PP Central longitude for the projection. \&\s-1NOTE:\s0 This may mean other things depending on the projection selected, read the proj docs! .PP \fIunits\fR .IX Subsection "units" .PP Cartesian units used for the output of the projection. \&\s-1NOTE:\s0 Like most of the options here, this is likely useless in the current implementation of this library. .PP \fIinit\fR .IX Subsection "init" .PP Specify a file:unit for proj to use for its runtime defaults. See the proj docs. .PP \fIno_defs\fR .IX Subsection "no_defs" .PP Don't load any defaults. See the proj docs. .PP \fIover\fR .IX Subsection "over" .PP Normally, the transformation limits the output to between \-180 and 180 degrees (or the cartesian equivalent), but with this option that behavior is turned off. .PP \fIgeoc\fR .IX Subsection "geoc" .PP Input values are geocentric coordinates. .SS "Earth Figure Parameters" .IX Subsection "Earth Figure Parameters" \fIellps\fR .IX Subsection "ellps" .PP Ellipsoid datum to use. Ex: \s-1WGS72, WGS74.\s0 See the proj docs and command line tool for list of possibilities ('proj \-le'). .PP \fIR\fR .IX Subsection "R" .PP Radius of the Earth. .PP \fIR_A\fR .IX Subsection "R_A" .PP Radius of a sphere with equivalent surface area of specified ellipse. .PP \fIR_V\fR .IX Subsection "R_V" .PP Radius of a sphere with equivalent volume of specified ellipse. .PP \fIR_a\fR .IX Subsection "R_a" .PP Arithmetic mean of the major and minor axis, Ra = (a + b)/2. .PP \fIR_g\fR .IX Subsection "R_g" .PP Geometric mean of the major and minor axis, Rg = (ab)1/2. .PP \fIR_h\fR .IX Subsection "R_h" .PP Harmonic mean of the major and minor axis, Rh = 2ab/(a + b). .PP \fIR_lat_a=phi\fR .IX Subsection "R_lat_a=phi" .PP Arithmetic mean of the principle radii at latitude phi. .PP \fIR_lat_g=phi\fR .IX Subsection "R_lat_g=phi" .PP Geometric mean of the principle radii at latitude phi. .PP \fIb\fR .IX Subsection "b" .PP Semiminor axis or polar radius .PP \fIf\fR .IX Subsection "f" .PP Flattening .PP \fIrf\fR .IX Subsection "rf" .PP Reciprocal flattening, +rf=1/f .PP \fIe\fR .IX Subsection "e" .PP Eccentricity +e=e .PP \fIes\fR .IX Subsection "es" .PP Eccentricity squared +es=e2 .SH "FUNCTIONS" .IX Header "FUNCTIONS" .SS "t_proj" .IX Subsection "t_proj" This is the main entry point for the generalized interface. See above on its usage. .SS "t_proj_adams_hemi" .IX Subsection "t_proj_adams_hemi" Autogenerated transformation function for Proj4 projection code adams_hemi. .PP The full name for this projection is Adams Hemisphere in a Square. .SS "t_proj_adams_ws1" .IX Subsection "t_proj_adams_ws1" Autogenerated transformation function for Proj4 projection code adams_ws1. .PP The full name for this projection is Adams World in a Square I. .SS "t_proj_adams_ws2" .IX Subsection "t_proj_adams_ws2" Autogenerated transformation function for Proj4 projection code adams_ws2. .PP The full name for this projection is Adams World in a Square \s-1II.\s0 .SS "t_proj_aea" .IX Subsection "t_proj_aea" Autogenerated transformation function for Proj4 projection code aea. .PP The full name for this projection is Albers Equal Area. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_aeqd" .IX Subsection "t_proj_aeqd" Autogenerated transformation function for Proj4 projection code aeqd. .PP The full name for this projection is Azimuthal Equidistant. .PP Projection Parameters .IP "guam" 4 .IX Item "guam" .PD 0 .IP "lat_0" 4 .IX Item "lat_0" .PD .SS "t_proj_affine" .IX Subsection "t_proj_affine" Autogenerated transformation function for Proj4 projection code affine. .PP The full name for this projection is Affine transformation. .SS "t_proj_airy" .IX Subsection "t_proj_airy" Autogenerated transformation function for Proj4 projection code airy. .PP The full name for this projection is Airy. .PP Projection Parameters .IP "lat_b" 4 .IX Item "lat_b" .PD 0 .IP "no_cut" 4 .IX Item "no_cut" .PD .SS "t_proj_aitoff" .IX Subsection "t_proj_aitoff" Autogenerated transformation function for Proj4 projection code aitoff. .PP The full name for this projection is Aitoff. .SS "t_proj_alsk" .IX Subsection "t_proj_alsk" Autogenerated transformation function for Proj4 projection code alsk. .PP The full name for this projection is Modified Stereographic of Alaska. .SS "t_proj_apian" .IX Subsection "t_proj_apian" Autogenerated transformation function for Proj4 projection code apian. .PP The full name for this projection is Apian Globular I. .SS "t_proj_august" .IX Subsection "t_proj_august" Autogenerated transformation function for Proj4 projection code august. .PP The full name for this projection is August Epicycloidal. .SS "t_proj_axisswap" .IX Subsection "t_proj_axisswap" Autogenerated transformation function for Proj4 projection code axisswap. .PP The full name for this projection is Axis ordering. .SS "t_proj_bacon" .IX Subsection "t_proj_bacon" Autogenerated transformation function for Proj4 projection code bacon. .PP The full name for this projection is Bacon Globular. .SS "t_proj_bertin1953" .IX Subsection "t_proj_bertin1953" Autogenerated transformation function for Proj4 projection code bertin1953. .PP The full name for this projection is Bertin 1953. .SS "t_proj_bipc" .IX Subsection "t_proj_bipc" Autogenerated transformation function for Proj4 projection code bipc. .PP The full name for this projection is Bipolar conic of western hemisphere. .SS "t_proj_boggs" .IX Subsection "t_proj_boggs" Autogenerated transformation function for Proj4 projection code boggs. .PP The full name for this projection is Boggs Eumorphic. .SS "t_proj_bonne" .IX Subsection "t_proj_bonne" Autogenerated transformation function for Proj4 projection code bonne. .PP The full name for this projection is Bonne (Werner lat_1=90). .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .SS "t_proj_calcofi" .IX Subsection "t_proj_calcofi" Autogenerated transformation function for Proj4 projection code calcofi. .PP The full name for this projection is Cal Coop Ocean Fish Invest Lines/Stations. .SS "t_proj_cart" .IX Subsection "t_proj_cart" Autogenerated transformation function for Proj4 projection code cart. .PP The full name for this projection is Geodetic/cartesian conversions. .SS "t_proj_cass" .IX Subsection "t_proj_cass" Autogenerated transformation function for Proj4 projection code cass. .PP The full name for this projection is Cassini. .SS "t_proj_cc" .IX Subsection "t_proj_cc" Autogenerated transformation function for Proj4 projection code cc. .PP The full name for this projection is Central Cylindrical. .SS "t_proj_ccon" .IX Subsection "t_proj_ccon" Autogenerated transformation function for Proj4 projection code ccon. .PP The full name for this projection is Central Conic. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .SS "t_proj_cea" .IX Subsection "t_proj_cea" Autogenerated transformation function for Proj4 projection code cea. .PP The full name for this projection is Equal Area Cylindrical. .PP Projection Parameters .IP "lat_ts" 4 .IX Item "lat_ts" .SS "t_proj_chamb" .IX Subsection "t_proj_chamb" Autogenerated transformation function for Proj4 projection code chamb. .PP The full name for this projection is Chamberlin Trimetric. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .IP "lat_3" 4 .IX Item "lat_3" .IP "lon_1" 4 .IX Item "lon_1" .IP "lon_2" 4 .IX Item "lon_2" .IP "lon_3" 4 .IX Item "lon_3" .PD .SS "t_proj_col_urban" .IX Subsection "t_proj_col_urban" Autogenerated transformation function for Proj4 projection code col_urban. .PP The full name for this projection is Colombia Urban. .PP Projection Parameters .IP "h_0" 4 .IX Item "h_0" .SS "t_proj_collg" .IX Subsection "t_proj_collg" Autogenerated transformation function for Proj4 projection code collg. .PP The full name for this projection is Collignon. .SS "t_proj_comill" .IX Subsection "t_proj_comill" Autogenerated transformation function for Proj4 projection code comill. .PP The full name for this projection is Compact Miller. .SS "t_proj_crast" .IX Subsection "t_proj_crast" Autogenerated transformation function for Proj4 projection code crast. .PP The full name for this projection is Craster Parabolic (Putnins P4). .SS "t_proj_defmodel" .IX Subsection "t_proj_defmodel" Autogenerated transformation function for Proj4 projection code defmodel. .PP The full name for this projection is Deformation model. .SS "t_proj_deformation" .IX Subsection "t_proj_deformation" Autogenerated transformation function for Proj4 projection code deformation. .PP The full name for this projection is Kinematic grid shift. .SS "t_proj_denoy" .IX Subsection "t_proj_denoy" Autogenerated transformation function for Proj4 projection code denoy. .PP The full name for this projection is Denoyer Semi-Elliptical. .SS "t_proj_eck1" .IX Subsection "t_proj_eck1" Autogenerated transformation function for Proj4 projection code eck1. .PP The full name for this projection is Eckert I. .SS "t_proj_eck2" .IX Subsection "t_proj_eck2" Autogenerated transformation function for Proj4 projection code eck2. .PP The full name for this projection is Eckert \s-1II.\s0 .SS "t_proj_eck3" .IX Subsection "t_proj_eck3" Autogenerated transformation function for Proj4 projection code eck3. .PP The full name for this projection is Eckert \s-1III.\s0 .SS "t_proj_eck4" .IX Subsection "t_proj_eck4" Autogenerated transformation function for Proj4 projection code eck4. .PP The full name for this projection is Eckert \s-1IV.\s0 .SS "t_proj_eck5" .IX Subsection "t_proj_eck5" Autogenerated transformation function for Proj4 projection code eck5. .PP The full name for this projection is Eckert V. .SS "t_proj_eck6" .IX Subsection "t_proj_eck6" Autogenerated transformation function for Proj4 projection code eck6. .PP The full name for this projection is Eckert \s-1VI.\s0 .SS "t_proj_eqc" .IX Subsection "t_proj_eqc" Autogenerated transformation function for Proj4 projection code eqc. .PP The full name for this projection is Equidistant Cylindrical (Plate Carree). .PP Projection Parameters .IP "lat_00" 4 .IX Item "lat_00" .PD 0 .IP "lat_ts" 4 .IX Item "lat_ts" .PD .SS "t_proj_eqdc" .IX Subsection "t_proj_eqdc" Autogenerated transformation function for Proj4 projection code eqdc. .PP The full name for this projection is Equidistant Conic. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_eqearth" .IX Subsection "t_proj_eqearth" Autogenerated transformation function for Proj4 projection code eqearth. .PP The full name for this projection is Equal Earth. .SS "t_proj_etmerc" .IX Subsection "t_proj_etmerc" Autogenerated transformation function for Proj4 projection code etmerc. .PP The full name for this projection is Extended Transverse Mercator. .SS "t_proj_euler" .IX Subsection "t_proj_euler" Autogenerated transformation function for Proj4 projection code euler. .PP The full name for this projection is Euler. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_fahey" .IX Subsection "t_proj_fahey" Autogenerated transformation function for Proj4 projection code fahey. .PP The full name for this projection is Fahey. .SS "t_proj_fouc" .IX Subsection "t_proj_fouc" Autogenerated transformation function for Proj4 projection code fouc. .PP The full name for this projection is Foucaut. .SS "t_proj_fouc_s" .IX Subsection "t_proj_fouc_s" Autogenerated transformation function for Proj4 projection code fouc_s. .PP The full name for this projection is Foucaut Sinusoidal. .SS "t_proj_gall" .IX Subsection "t_proj_gall" Autogenerated transformation function for Proj4 projection code gall. .PP The full name for this projection is Gall (Gall Stereographic). .SS "t_proj_geoc" .IX Subsection "t_proj_geoc" Autogenerated transformation function for Proj4 projection code geoc. .PP The full name for this projection is Geocentric Latitude. .SS "t_proj_geocent" .IX Subsection "t_proj_geocent" Autogenerated transformation function for Proj4 projection code geocent. .PP The full name for this projection is Geocentric. .SS "t_proj_geogoffset" .IX Subsection "t_proj_geogoffset" Autogenerated transformation function for Proj4 projection code geogoffset. .PP The full name for this projection is Geographic Offset. .SS "t_proj_geos" .IX Subsection "t_proj_geos" Autogenerated transformation function for Proj4 projection code geos. .PP The full name for this projection is Geostationary Satellite View. .PP Projection Parameters .IP "h" 4 .IX Item "h" .SS "t_proj_gins8" .IX Subsection "t_proj_gins8" Autogenerated transformation function for Proj4 projection code gins8. .PP The full name for this projection is Ginsburg \s-1VIII\s0 (TsNIIGAiK). .SS "t_proj_gn_sinu" .IX Subsection "t_proj_gn_sinu" Autogenerated transformation function for Proj4 projection code gn_sinu. .PP The full name for this projection is General Sinusoidal Series. .PP Projection Parameters .IP "m" 4 .IX Item "m" .PD 0 .IP "n" 4 .IX Item "n" .PD .SS "t_proj_gnom" .IX Subsection "t_proj_gnom" Autogenerated transformation function for Proj4 projection code gnom. .PP The full name for this projection is Gnomonic. .SS "t_proj_goode" .IX Subsection "t_proj_goode" Autogenerated transformation function for Proj4 projection code goode. .PP The full name for this projection is Goode Homolosine. .SS "t_proj_gridshift" .IX Subsection "t_proj_gridshift" Autogenerated transformation function for Proj4 projection code gridshift. .PP The full name for this projection is Generic grid shift. .SS "t_proj_gs48" .IX Subsection "t_proj_gs48" Autogenerated transformation function for Proj4 projection code gs48. .PP The full name for this projection is Modified Stereographic of 48 U.S.. .SS "t_proj_gs50" .IX Subsection "t_proj_gs50" Autogenerated transformation function for Proj4 projection code gs50. .PP The full name for this projection is Modified Stereographic of 50 U.S.. .SS "t_proj_gstmerc" .IX Subsection "t_proj_gstmerc" Autogenerated transformation function for Proj4 projection code gstmerc. .PP The full name for this projection is Gauss-Schreiber Transverse Mercator (aka Gauss-Laborde Reunion). .PP Projection Parameters .IP "k_0" 4 .IX Item "k_0" .PD 0 .IP "lat_0" 4 .IX Item "lat_0" .IP "lon_0" 4 .IX Item "lon_0" .PD .SS "t_proj_guyou" .IX Subsection "t_proj_guyou" Autogenerated transformation function for Proj4 projection code guyou. .PP The full name for this projection is Guyou. .SS "t_proj_hammer" .IX Subsection "t_proj_hammer" Autogenerated transformation function for Proj4 projection code hammer. .PP The full name for this projection is Hammer & Eckert-Greifendorff. .PP Projection Parameters .IP "M" 4 .IX Item "M" .PD 0 .IP "W" 4 .IX Item "W" .PD .SS "t_proj_hatano" .IX Subsection "t_proj_hatano" Autogenerated transformation function for Proj4 projection code hatano. .PP The full name for this projection is Hatano Asymmetrical Equal Area. .SS "t_proj_healpix" .IX Subsection "t_proj_healpix" Autogenerated transformation function for Proj4 projection code healpix. .PP The full name for this projection is HEALPix. .PP Projection Parameters .IP "rot_xy" 4 .IX Item "rot_xy" .SS "t_proj_helmert" .IX Subsection "t_proj_helmert" Autogenerated transformation function for Proj4 projection code helmert. .PP The full name for this projection is 3(6)\-, 4(8)\- and 7(14)\-parameter Helmert shift. .SS "t_proj_hgridshift" .IX Subsection "t_proj_hgridshift" Autogenerated transformation function for Proj4 projection code hgridshift. .PP The full name for this projection is Horizontal grid shift. .SS "t_proj_horner" .IX Subsection "t_proj_horner" Autogenerated transformation function for Proj4 projection code horner. .PP The full name for this projection is Horner polynomial evaluation. .SS "t_proj_igh" .IX Subsection "t_proj_igh" Autogenerated transformation function for Proj4 projection code igh. .PP The full name for this projection is Interrupted Goode Homolosine. .SS "t_proj_igh_o" .IX Subsection "t_proj_igh_o" Autogenerated transformation function for Proj4 projection code igh_o. .PP The full name for this projection is Interrupted Goode Homolosine Oceanic View. .SS "t_proj_imoll" .IX Subsection "t_proj_imoll" Autogenerated transformation function for Proj4 projection code imoll. .PP The full name for this projection is Interrupted Mollweide. .SS "t_proj_imoll_o" .IX Subsection "t_proj_imoll_o" Autogenerated transformation function for Proj4 projection code imoll_o. .PP The full name for this projection is Interrupted Mollweide Oceanic View. .SS "t_proj_imw_p" .IX Subsection "t_proj_imw_p" Autogenerated transformation function for Proj4 projection code imw_p. .PP The full name for this projection is International Map of the World Polyconic. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .IP "lon_1" 4 .IX Item "lon_1" .PD .SS "t_proj_isea" .IX Subsection "t_proj_isea" Autogenerated transformation function for Proj4 projection code isea. .PP The full name for this projection is Icosahedral Snyder Equal Area. .SS "t_proj_kav5" .IX Subsection "t_proj_kav5" Autogenerated transformation function for Proj4 projection code kav5. .PP The full name for this projection is Kavrayskiy V. .SS "t_proj_kav7" .IX Subsection "t_proj_kav7" Autogenerated transformation function for Proj4 projection code kav7. .PP The full name for this projection is Kavrayskiy \s-1VII.\s0 .SS "t_proj_krovak" .IX Subsection "t_proj_krovak" Autogenerated transformation function for Proj4 projection code krovak. .PP The full name for this projection is Krovak. .SS "t_proj_labrd" .IX Subsection "t_proj_labrd" Autogenerated transformation function for Proj4 projection code labrd. .PP The full name for this projection is Laborde. .PP Projection Parameters .IP "lat_0" 4 .IX Item "lat_0" .SS "t_proj_laea" .IX Subsection "t_proj_laea" Autogenerated transformation function for Proj4 projection code laea. .PP The full name for this projection is Lambert Azimuthal Equal Area. .SS "t_proj_lagrng" .IX Subsection "t_proj_lagrng" Autogenerated transformation function for Proj4 projection code lagrng. .PP The full name for this projection is Lagrange. .PP Projection Parameters .IP "W" 4 .IX Item "W" .SS "t_proj_larr" .IX Subsection "t_proj_larr" Autogenerated transformation function for Proj4 projection code larr. .PP The full name for this projection is Larrivee. .SS "t_proj_lask" .IX Subsection "t_proj_lask" Autogenerated transformation function for Proj4 projection code lask. .PP The full name for this projection is Laskowski. .SS "t_proj_latlon" .IX Subsection "t_proj_latlon" Autogenerated transformation function for Proj4 projection code latlon. .PP The full name for this projection is Lat/long (Geodetic alias). .SS "t_proj_latlong" .IX Subsection "t_proj_latlong" Autogenerated transformation function for Proj4 projection code latlong. .PP The full name for this projection is Lat/long (Geodetic alias). .SS "t_proj_lcc" .IX Subsection "t_proj_lcc" Autogenerated transformation function for Proj4 projection code lcc. .PP The full name for this projection is Lambert Conformal Conic. .PP Projection Parameters .IP "k_0" 4 .IX Item "k_0" .PD 0 .IP "lat_0" 4 .IX Item "lat_0" .IP "lat_1" 4 .IX Item "lat_1" .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_lcca" .IX Subsection "t_proj_lcca" Autogenerated transformation function for Proj4 projection code lcca. .PP The full name for this projection is Lambert Conformal Conic Alternative. .PP Projection Parameters .IP "lat_0" 4 .IX Item "lat_0" .SS "t_proj_leac" .IX Subsection "t_proj_leac" Autogenerated transformation function for Proj4 projection code leac. .PP The full name for this projection is Lambert Equal Area Conic. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "south" 4 .IX Item "south" .PD .SS "t_proj_lee_os" .IX Subsection "t_proj_lee_os" Autogenerated transformation function for Proj4 projection code lee_os. .PP The full name for this projection is Lee Oblated Stereographic. .SS "t_proj_longlat" .IX Subsection "t_proj_longlat" Autogenerated transformation function for Proj4 projection code longlat. .PP The full name for this projection is Lat/long (Geodetic alias). .SS "t_proj_lonlat" .IX Subsection "t_proj_lonlat" Autogenerated transformation function for Proj4 projection code lonlat. .PP The full name for this projection is Lat/long (Geodetic). .SS "t_proj_loxim" .IX Subsection "t_proj_loxim" Autogenerated transformation function for Proj4 projection code loxim. .PP The full name for this projection is Loximuthal. .SS "t_proj_lsat" .IX Subsection "t_proj_lsat" Autogenerated transformation function for Proj4 projection code lsat. .PP The full name for this projection is Space oblique for \s-1LANDSAT.\s0 .PP Projection Parameters .IP "lsat" 4 .IX Item "lsat" .PD 0 .IP "path" 4 .IX Item "path" .PD .SS "t_proj_mbt_fps" .IX Subsection "t_proj_mbt_fps" Autogenerated transformation function for Proj4 projection code mbt_fps. .PP The full name for this projection is McBryde-Thomas Flat-Pole Sine (No. 2). .SS "t_proj_mbt_s" .IX Subsection "t_proj_mbt_s" Autogenerated transformation function for Proj4 projection code mbt_s. .PP The full name for this projection is McBryde-Thomas Flat-Polar Sine (No. 1). .SS "t_proj_mbtfpp" .IX Subsection "t_proj_mbtfpp" Autogenerated transformation function for Proj4 projection code mbtfpp. .PP The full name for this projection is McBride-Thomas Flat-Polar Parabolic. .SS "t_proj_mbtfpq" .IX Subsection "t_proj_mbtfpq" Autogenerated transformation function for Proj4 projection code mbtfpq. .PP The full name for this projection is McBryde-Thomas Flat-Polar Quartic. .SS "t_proj_mbtfps" .IX Subsection "t_proj_mbtfps" Autogenerated transformation function for Proj4 projection code mbtfps. .PP The full name for this projection is McBryde-Thomas Flat-Polar Sinusoidal. .SS "t_proj_merc" .IX Subsection "t_proj_merc" Autogenerated transformation function for Proj4 projection code merc. .PP The full name for this projection is Mercator. .PP Projection Parameters .IP "lat_ts" 4 .IX Item "lat_ts" .SS "t_proj_mil_os" .IX Subsection "t_proj_mil_os" Autogenerated transformation function for Proj4 projection code mil_os. .PP The full name for this projection is Miller Oblated Stereographic. .SS "t_proj_mill" .IX Subsection "t_proj_mill" Autogenerated transformation function for Proj4 projection code mill. .PP The full name for this projection is Miller Cylindrical. .SS "t_proj_misrsom" .IX Subsection "t_proj_misrsom" Autogenerated transformation function for Proj4 projection code misrsom. .PP The full name for this projection is Space oblique for \s-1MISR.\s0 .PP Projection Parameters .IP "path" 4 .IX Item "path" .SS "t_proj_moll" .IX Subsection "t_proj_moll" Autogenerated transformation function for Proj4 projection code moll. .PP The full name for this projection is Mollweide. .SS "t_proj_molobadekas" .IX Subsection "t_proj_molobadekas" Autogenerated transformation function for Proj4 projection code molobadekas. .PP The full name for this projection is Molodensky-Badekas transformation. .SS "t_proj_molodensky" .IX Subsection "t_proj_molodensky" Autogenerated transformation function for Proj4 projection code molodensky. .PP The full name for this projection is Molodensky transform. .SS "t_proj_murd1" .IX Subsection "t_proj_murd1" Autogenerated transformation function for Proj4 projection code murd1. .PP The full name for this projection is Murdoch I. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_murd2" .IX Subsection "t_proj_murd2" Autogenerated transformation function for Proj4 projection code murd2. .PP The full name for this projection is Murdoch \s-1II.\s0 .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_murd3" .IX Subsection "t_proj_murd3" Autogenerated transformation function for Proj4 projection code murd3. .PP The full name for this projection is Murdoch \s-1III.\s0 .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_natearth" .IX Subsection "t_proj_natearth" Autogenerated transformation function for Proj4 projection code natearth. .PP The full name for this projection is Natural Earth. .SS "t_proj_natearth2" .IX Subsection "t_proj_natearth2" Autogenerated transformation function for Proj4 projection code natearth2. .PP The full name for this projection is Natural Earth 2. .SS "t_proj_nell" .IX Subsection "t_proj_nell" Autogenerated transformation function for Proj4 projection code nell. .PP The full name for this projection is Nell. .SS "t_proj_nell_h" .IX Subsection "t_proj_nell_h" Autogenerated transformation function for Proj4 projection code nell_h. .PP The full name for this projection is Nell-Hammer. .SS "t_proj_nicol" .IX Subsection "t_proj_nicol" Autogenerated transformation function for Proj4 projection code nicol. .PP The full name for this projection is Nicolosi Globular. .SS "t_proj_noop" .IX Subsection "t_proj_noop" Autogenerated transformation function for Proj4 projection code noop. .PP The full name for this projection is No operation. .SS "t_proj_nsper" .IX Subsection "t_proj_nsper" Autogenerated transformation function for Proj4 projection code nsper. .PP The full name for this projection is Near-sided perspective. .PP Projection Parameters .IP "h" 4 .IX Item "h" .SS "t_proj_nzmg" .IX Subsection "t_proj_nzmg" Autogenerated transformation function for Proj4 projection code nzmg. .PP The full name for this projection is New Zealand Map Grid. .SS "t_proj_ob_tran" .IX Subsection "t_proj_ob_tran" Autogenerated transformation function for Proj4 projection code ob_tran. .PP The full name for this projection is General Oblique Transformation. .PP Projection Parameters .IP "o_alpha" 4 .IX Item "o_alpha" .PD 0 .IP "o_lat_1" 4 .IX Item "o_lat_1" .IP "o_lat_2" 4 .IX Item "o_lat_2" .IP "o_lat_c" 4 .IX Item "o_lat_c" .IP "o_lat_p" 4 .IX Item "o_lat_p" .IP "o_lon_1" 4 .IX Item "o_lon_1" .IP "o_lon_2" 4 .IX Item "o_lon_2" .IP "o_lon_c" 4 .IX Item "o_lon_c" .IP "o_lon_p" 4 .IX Item "o_lon_p" .IP "o_proj" 4 .IX Item "o_proj" .PD .SS "t_proj_ocea" .IX Subsection "t_proj_ocea" Autogenerated transformation function for Proj4 projection code ocea. .PP The full name for this projection is Oblique Cylindrical Equal Area. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .IP "lon_1" 4 .IX Item "lon_1" .IP "lon_2" 4 .IX Item "lon_2" .PD .SS "t_proj_oea" .IX Subsection "t_proj_oea" Autogenerated transformation function for Proj4 projection code oea. .PP The full name for this projection is Oblated Equal Area. .PP Projection Parameters .IP "m" 4 .IX Item "m" .PD 0 .IP "n" 4 .IX Item "n" .IP "theta" 4 .IX Item "theta" .PD .SS "t_proj_omerc" .IX Subsection "t_proj_omerc" Autogenerated transformation function for Proj4 projection code omerc. .PP The full name for this projection is Oblique Mercator. .PP Projection Parameters .IP "alpha" 4 .IX Item "alpha" .PD 0 .IP "gamma" 4 .IX Item "gamma" .IP "lat_1" 4 .IX Item "lat_1" .IP "lat_2" 4 .IX Item "lat_2" .IP "lon_1" 4 .IX Item "lon_1" .IP "lon_2" 4 .IX Item "lon_2" .IP "lonc" 4 .IX Item "lonc" .IP "no_off" 4 .IX Item "no_off" .PD .SS "t_proj_ortel" .IX Subsection "t_proj_ortel" Autogenerated transformation function for Proj4 projection code ortel. .PP The full name for this projection is Ortelius Oval. .SS "t_proj_ortho" .IX Subsection "t_proj_ortho" Autogenerated transformation function for Proj4 projection code ortho. .PP The full name for this projection is Orthographic. .SS "t_proj_patterson" .IX Subsection "t_proj_patterson" Autogenerated transformation function for Proj4 projection code patterson. .PP The full name for this projection is Patterson Cylindrical. .SS "t_proj_pconic" .IX Subsection "t_proj_pconic" Autogenerated transformation function for Proj4 projection code pconic. .PP The full name for this projection is Perspective Conic. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_peirce_q" .IX Subsection "t_proj_peirce_q" Autogenerated transformation function for Proj4 projection code peirce_q. .PP The full name for this projection is Peirce Quincuncial. .SS "t_proj_pipeline" .IX Subsection "t_proj_pipeline" Autogenerated transformation function for Proj4 projection code pipeline. .PP The full name for this projection is Transformation pipeline manager. .SS "t_proj_poly" .IX Subsection "t_proj_poly" Autogenerated transformation function for Proj4 projection code poly. .PP The full name for this projection is Polyconic (American). .SS "t_proj_pop" .IX Subsection "t_proj_pop" Autogenerated transformation function for Proj4 projection code pop. .PP The full name for this projection is Retrieve coordinate value from pipeline stack. .SS "t_proj_push" .IX Subsection "t_proj_push" Autogenerated transformation function for Proj4 projection code push. .PP The full name for this projection is Save coordinate value on pipeline stack. .SS "t_proj_putp1" .IX Subsection "t_proj_putp1" Autogenerated transformation function for Proj4 projection code putp1. .PP The full name for this projection is Putnins P1. .SS "t_proj_putp2" .IX Subsection "t_proj_putp2" Autogenerated transformation function for Proj4 projection code putp2. .PP The full name for this projection is Putnins P2. .SS "t_proj_putp3" .IX Subsection "t_proj_putp3" Autogenerated transformation function for Proj4 projection code putp3. .PP The full name for this projection is Putnins P3. .SS "t_proj_putp3p" .IX Subsection "t_proj_putp3p" Autogenerated transformation function for Proj4 projection code putp3p. .PP The full name for this projection is Putnins P3'. .SS "t_proj_putp4p" .IX Subsection "t_proj_putp4p" Autogenerated transformation function for Proj4 projection code putp4p. .PP The full name for this projection is Putnins P4'. .SS "t_proj_putp5" .IX Subsection "t_proj_putp5" Autogenerated transformation function for Proj4 projection code putp5. .PP The full name for this projection is Putnins P5. .SS "t_proj_putp5p" .IX Subsection "t_proj_putp5p" Autogenerated transformation function for Proj4 projection code putp5p. .PP The full name for this projection is Putnins P5'. .SS "t_proj_putp6" .IX Subsection "t_proj_putp6" Autogenerated transformation function for Proj4 projection code putp6. .PP The full name for this projection is Putnins P6. .SS "t_proj_putp6p" .IX Subsection "t_proj_putp6p" Autogenerated transformation function for Proj4 projection code putp6p. .PP The full name for this projection is Putnins P6'. .SS "t_proj_qsc" .IX Subsection "t_proj_qsc" Autogenerated transformation function for Proj4 projection code qsc. .PP The full name for this projection is Quadrilateralized Spherical Cube. .SS "t_proj_qua_aut" .IX Subsection "t_proj_qua_aut" Autogenerated transformation function for Proj4 projection code qua_aut. .PP The full name for this projection is Quartic Authalic. .SS "t_proj_rhealpix" .IX Subsection "t_proj_rhealpix" Autogenerated transformation function for Proj4 projection code rhealpix. .PP The full name for this projection is rHEALPix. .PP Projection Parameters .IP "north_square" 4 .IX Item "north_square" .PD 0 .IP "south_square" 4 .IX Item "south_square" .PD .SS "t_proj_robin" .IX Subsection "t_proj_robin" Autogenerated transformation function for Proj4 projection code robin. .PP The full name for this projection is Robinson. .SS "t_proj_rouss" .IX Subsection "t_proj_rouss" Autogenerated transformation function for Proj4 projection code rouss. .PP The full name for this projection is Roussilhe Stereographic. .SS "t_proj_rpoly" .IX Subsection "t_proj_rpoly" Autogenerated transformation function for Proj4 projection code rpoly. .PP The full name for this projection is Rectangular Polyconic. .PP Projection Parameters .IP "lat_ts" 4 .IX Item "lat_ts" .SS "t_proj_s2" .IX Subsection "t_proj_s2" Autogenerated transformation function for Proj4 projection code s2. .PP The full name for this projection is S2. .SS "t_proj_sch" .IX Subsection "t_proj_sch" Autogenerated transformation function for Proj4 projection code sch. .PP The full name for this projection is Spherical Cross-track Height. .PP Projection Parameters .IP "h_0" 4 .IX Item "h_0" .PD 0 .IP "phdg_0" 4 .IX Item "phdg_0" .IP "plat_0" 4 .IX Item "plat_0" .IP "plon_0" 4 .IX Item "plon_0" .PD .SS "t_proj_set" .IX Subsection "t_proj_set" Autogenerated transformation function for Proj4 projection code set. .PP The full name for this projection is Set coordinate value. .SS "t_proj_sinu" .IX Subsection "t_proj_sinu" Autogenerated transformation function for Proj4 projection code sinu. .PP The full name for this projection is Sinusoidal (Sanson-Flamsteed). .SS "t_proj_som" .IX Subsection "t_proj_som" Autogenerated transformation function for Proj4 projection code som. .PP The full name for this projection is Space Oblique Mercator. .PP Projection Parameters .IP "asc_lon" 4 .IX Item "asc_lon" .PD 0 .IP "inc_angle" 4 .IX Item "inc_angle" .IP "ps_rev" 4 .IX Item "ps_rev" .PD .SS "t_proj_somerc" .IX Subsection "t_proj_somerc" Autogenerated transformation function for Proj4 projection code somerc. .PP The full name for this projection is Swiss. Obl. Mercator. .SS "t_proj_stere" .IX Subsection "t_proj_stere" Autogenerated transformation function for Proj4 projection code stere. .PP The full name for this projection is Stereographic. .PP Projection Parameters .IP "lat_ts" 4 .IX Item "lat_ts" .SS "t_proj_sterea" .IX Subsection "t_proj_sterea" Autogenerated transformation function for Proj4 projection code sterea. .PP The full name for this projection is Oblique Stereographic Alternative. .SS "t_proj_tcc" .IX Subsection "t_proj_tcc" Autogenerated transformation function for Proj4 projection code tcc. .PP The full name for this projection is Transverse Central Cylindrical. .SS "t_proj_tcea" .IX Subsection "t_proj_tcea" Autogenerated transformation function for Proj4 projection code tcea. .PP The full name for this projection is Transverse Cylindrical Equal Area. .SS "t_proj_times" .IX Subsection "t_proj_times" Autogenerated transformation function for Proj4 projection code times. .PP The full name for this projection is Times. .SS "t_proj_tinshift" .IX Subsection "t_proj_tinshift" Autogenerated transformation function for Proj4 projection code tinshift. .PP The full name for this projection is Triangulation based transformation. .SS "t_proj_tissot" .IX Subsection "t_proj_tissot" Autogenerated transformation function for Proj4 projection code tissot. .PP The full name for this projection is Tissot. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_tmerc" .IX Subsection "t_proj_tmerc" Autogenerated transformation function for Proj4 projection code tmerc. .PP The full name for this projection is Transverse Mercator. .PP Projection Parameters .IP "approx" 4 .IX Item "approx" .SS "t_proj_tobmerc" .IX Subsection "t_proj_tobmerc" Autogenerated transformation function for Proj4 projection code tobmerc. .PP The full name for this projection is Tobler-Mercator. .SS "t_proj_topocentric" .IX Subsection "t_proj_topocentric" Autogenerated transformation function for Proj4 projection code topocentric. .PP The full name for this projection is Geocentric/Topocentric conversion. .SS "t_proj_tpeqd" .IX Subsection "t_proj_tpeqd" Autogenerated transformation function for Proj4 projection code tpeqd. .PP The full name for this projection is Two Point Equidistant. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .IP "lon_1" 4 .IX Item "lon_1" .IP "lon_2" 4 .IX Item "lon_2" .PD .SS "t_proj_tpers" .IX Subsection "t_proj_tpers" Autogenerated transformation function for Proj4 projection code tpers. .PP The full name for this projection is Tilted perspective. .PP Projection Parameters .IP "azi" 4 .IX Item "azi" .PD 0 .IP "h" 4 .IX Item "h" .IP "tilt" 4 .IX Item "tilt" .PD .SS "t_proj_unitconvert" .IX Subsection "t_proj_unitconvert" Autogenerated transformation function for Proj4 projection code unitconvert. .PP The full name for this projection is Unit conversion. .SS "t_proj_ups" .IX Subsection "t_proj_ups" Autogenerated transformation function for Proj4 projection code ups. .PP The full name for this projection is Universal Polar Stereographic. .PP Projection Parameters .IP "south" 4 .IX Item "south" .SS "t_proj_urm5" .IX Subsection "t_proj_urm5" Autogenerated transformation function for Proj4 projection code urm5. .PP The full name for this projection is Urmaev V. .PP Projection Parameters .IP "alpha" 4 .IX Item "alpha" .PD 0 .IP "n" 4 .IX Item "n" .IP "q" 4 .IX Item "q" .PD .SS "t_proj_urmfps" .IX Subsection "t_proj_urmfps" Autogenerated transformation function for Proj4 projection code urmfps. .PP The full name for this projection is Urmaev Flat-Polar Sinusoidal. .PP Projection Parameters .IP "n" 4 .IX Item "n" .SS "t_proj_utm" .IX Subsection "t_proj_utm" Autogenerated transformation function for Proj4 projection code utm. .PP The full name for this projection is Universal Transverse Mercator (\s-1UTM\s0). .PP Projection Parameters .IP "approx" 4 .IX Item "approx" .PD 0 .IP "south" 4 .IX Item "south" .IP "zone" 4 .IX Item "zone" .PD .SS "t_proj_vandg" .IX Subsection "t_proj_vandg" Autogenerated transformation function for Proj4 projection code vandg. .PP The full name for this projection is van der Grinten (I). .SS "t_proj_vandg2" .IX Subsection "t_proj_vandg2" Autogenerated transformation function for Proj4 projection code vandg2. .PP The full name for this projection is van der Grinten \s-1II.\s0 .SS "t_proj_vandg3" .IX Subsection "t_proj_vandg3" Autogenerated transformation function for Proj4 projection code vandg3. .PP The full name for this projection is van der Grinten \s-1III.\s0 .SS "t_proj_vandg4" .IX Subsection "t_proj_vandg4" Autogenerated transformation function for Proj4 projection code vandg4. .PP The full name for this projection is van der Grinten \s-1IV.\s0 .SS "t_proj_vertoffset" .IX Subsection "t_proj_vertoffset" Autogenerated transformation function for Proj4 projection code vertoffset. .PP The full name for this projection is Vertical Offset and Slope. .PP Projection Parameters .IP "dh" 4 .IX Item "dh" .PD 0 .IP "lat_0" 4 .IX Item "lat_0" .IP "lon_0" 4 .IX Item "lon_0" .IP "slope_lat" 4 .IX Item "slope_lat" .IP "slope_lon" 4 .IX Item "slope_lon" .PD .SS "t_proj_vgridshift" .IX Subsection "t_proj_vgridshift" Autogenerated transformation function for Proj4 projection code vgridshift. .PP The full name for this projection is Vertical grid shift. .SS "t_proj_vitk1" .IX Subsection "t_proj_vitk1" Autogenerated transformation function for Proj4 projection code vitk1. .PP The full name for this projection is Vitkovsky I. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .PD 0 .IP "lat_2" 4 .IX Item "lat_2" .PD .SS "t_proj_wag1" .IX Subsection "t_proj_wag1" Autogenerated transformation function for Proj4 projection code wag1. .PP The full name for this projection is Wagner I (Kavrayskiy \s-1VI\s0). .SS "t_proj_wag2" .IX Subsection "t_proj_wag2" Autogenerated transformation function for Proj4 projection code wag2. .PP The full name for this projection is Wagner \s-1II.\s0 .SS "t_proj_wag3" .IX Subsection "t_proj_wag3" Autogenerated transformation function for Proj4 projection code wag3. .PP The full name for this projection is Wagner \s-1III.\s0 .PP Projection Parameters .IP "lat_ts" 4 .IX Item "lat_ts" .SS "t_proj_wag4" .IX Subsection "t_proj_wag4" Autogenerated transformation function for Proj4 projection code wag4. .PP The full name for this projection is Wagner \s-1IV.\s0 .SS "t_proj_wag5" .IX Subsection "t_proj_wag5" Autogenerated transformation function for Proj4 projection code wag5. .PP The full name for this projection is Wagner V. .SS "t_proj_wag6" .IX Subsection "t_proj_wag6" Autogenerated transformation function for Proj4 projection code wag6. .PP The full name for this projection is Wagner \s-1VI.\s0 .SS "t_proj_wag7" .IX Subsection "t_proj_wag7" Autogenerated transformation function for Proj4 projection code wag7. .PP The full name for this projection is Wagner \s-1VII.\s0 .SS "t_proj_webmerc" .IX Subsection "t_proj_webmerc" Autogenerated transformation function for Proj4 projection code webmerc. .PP The full name for this projection is Web Mercator / Pseudo Mercator. .SS "t_proj_weren" .IX Subsection "t_proj_weren" Autogenerated transformation function for Proj4 projection code weren. .PP The full name for this projection is Werenskiold I. .SS "t_proj_wink1" .IX Subsection "t_proj_wink1" Autogenerated transformation function for Proj4 projection code wink1. .PP The full name for this projection is Winkel I. .PP Projection Parameters .IP "lat_ts" 4 .IX Item "lat_ts" .SS "t_proj_wink2" .IX Subsection "t_proj_wink2" Autogenerated transformation function for Proj4 projection code wink2. .PP The full name for this projection is Winkel \s-1II.\s0 .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .SS "t_proj_wintri" .IX Subsection "t_proj_wintri" Autogenerated transformation function for Proj4 projection code wintri. .PP The full name for this projection is Winkel Tripel. .PP Projection Parameters .IP "lat_1" 4 .IX Item "lat_1" .SS "t_proj_xyzgridshift" .IX Subsection "t_proj_xyzgridshift" Autogenerated transformation function for Proj4 projection code xyzgridshift. .PP The full name for this projection is Geocentric grid shift. .SH "AUTHOR & MAINTAINER" .IX Header "AUTHOR & MAINTAINER" Judd Taylor, Orbital Systems, Ltd. judd dot t at orbitalsystems dot com