1Proj4(3) User Contributed Perl Documentation Proj4(3)
2
3
4
6 PDL::Transform::Proj4 - PDL::Transform interface to the Proj4
7 projection library
8
10 # Using the generalized proj interface:
11 # Make an orthographic map of Earth
12 use PDL::Transform::Cartography;
13 use PDL::Transform::Proj4;
14 $a = earth_coast();
15 $a = graticule(10,2)->glue(1,$a);
16 $t = t_proj( proj_params => "+proj=ortho +ellps=WGS84 +lon_0=-90 +lat_0=40" );
17 $w = pgwin(xs);
18 $w->lines($t->apply($a)->clean_lines());
19
20 # Using the aliased functions:
21 # Make an orthographic map of Earth
22 use PDL::Transform::Cartography;
23 use PDL::Transform::Proj4;
24 $a = earth_coast();
25 $a = graticule(10,2)->glue(1,$a);
26 $t = t_proj_ortho( ellps => 'WGS84', lon_0 => -90, lat_0 => 40 )
27 $w = pgwin(xs);
28 $w->lines($t->apply($a)->clean_lines());
29
31 Works like PDL::Transform::Cartography, but using the proj library in
32 the background.
33
34 Please see the proj library docs at <http://www.remotesensing.org/proj>
35 for more information on proj, and how to use the library.
36
38 The main object here is the PDL::Transform::Proj4 object, aliased to
39 the t_proj() function.
40
41 This object accepts all of the standard options described below, but
42 mainly is there to be called with just the proj_params option defined.
43
44 When options are used, they must be used with a '+' before them when
45 placed in the proj_params string, but that is not required otherwise.
46 See the SYNOPSIS above.
47
48 ALIASED INTERFACE
49 Other than t_proj(), all of the other transforms below have been
50 autogenerated, and may not work properly. The main problem is
51 determining the parameters a projection requires from the proj library
52 itself.
53
54 Due to the difficulties in doing this, there may be times when the proj
55 docs specify a parameter for a projection that won't work using the
56 anon-hash type specification. In that case, just throw that parameter
57 in the proj_params string, and everything should work fine.
58
60 General Parameters
61 proj_params
62
63 This is a string containing the proj "plus style" parameters. This
64 would be similar to what you would put on the command line for the
65 'proj' tool. Like "+proj=ortho +ellps=WGS84 +lon_0=-90 +lat_0=40".
66
67 This parameter overrides the others below when it contains parameters
68 that are also specified explicitly.
69
70 proj
71
72 The proj projection code to use (like ortho...)
73
74 x_0
75
76 Cartesian X offset for the output of the transformation
77
78 y_0
79
80 Cartesian Y offset for the output of the transformation
81
82 lat_0
83
84 Central latitude for the projection. NOTE: This may mean other things
85 depending on the projection selected, read the proj docs!
86
87 lon_0
88
89 Central longitude for the projection. NOTE: This may mean other things
90 depending on the projection selected, read the proj docs!
91
92 units
93
94 Cartesian units used for the output of the projection. NOTE: Like most
95 of the options here, this is likely useless in the current
96 implementation of this library.
97
98 init
99
100 Specify a file:unit for proj to use for its runtime defaults. See the
101 proj docs.
102
103 no_defs
104
105 Don't load any defaults. See the proj docs.
106
107 over
108
109 Normally, the transformation limits the output to between -180 and 180
110 degrees (or the cartesian equivalent), but with this option that
111 behavior is turned off.
112
113 geoc
114
115 Input values are geocentric coordinates.
116
117 Earth Figure Parameters
118 ellps
119
120 Ellipsoid datum to use. Ex: WGS72, WGS74. See the proj docs and
121 command line tool for list of possibilities ('proj -le').
122
123 R
124
125 Radius of the Earth.
126
127 R_A
128
129 Radius of a sphere with equivalent surface area of specified ellipse.
130
131 R_V
132
133 Radius of a sphere with equivalent volume of specified ellipse.
134
135 R_a
136
137 Arithmetic mean of the major and minor axis, Ra = (a + b)/2.
138
139 R_g
140
141 Geometric mean of the major and minor axis, Rg = (ab)1/2.
142
143 R_h
144
145 Harmonic mean of the major and minor axis, Rh = 2ab/(a + b).
146
147 R_lat_a=phi
148
149 Arithmetic mean of the principle radii at latitude phi.
150
151 R_lat_g=phi
152
153 Geometric mean of the principle radii at latitude phi.
154
155 b
156
157 Semiminor axis or polar radius
158
159 f
160
161 Flattening
162
163 rf
164
165 Reciprocal flattening, +rf=1/f
166
167 e
168
169 Eccentricity +e=e
170
171 es
172
173 Eccentricity squared +es=e2
174
176 t_proj
177 This is the main entry point for the generalized interface. See above
178 on its usage.
179
180 t_proj_aea
181 Autogenerated transformation function for Proj4 projection code aea.
182
183 The full name for this projection is Albers Equal Area.
184
185 Projection Parameters
186
187 lat_1
188
189 lat_2
190
191 t_proj_aeqd
192 Autogenerated transformation function for Proj4 projection code aeqd.
193
194 The full name for this projection is Azimuthal Equidistant.
195
196 Projection Parameters
197
198 guam
199
200 lat_0
201
202 t_proj_airy
203 Autogenerated transformation function for Proj4 projection code airy.
204
205 The full name for this projection is Airy.
206
207 Projection Parameters
208
209 lat_b
210
211 no_cut
212
213 t_proj_aitoff
214 Autogenerated transformation function for Proj4 projection code aitoff.
215
216 The full name for this projection is Aitoff.
217
218 t_proj_alsk
219 Autogenerated transformation function for Proj4 projection code alsk.
220
221 The full name for this projection is Mod. Stererographics of Alaska.
222
223 t_proj_apian
224 Autogenerated transformation function for Proj4 projection code apian.
225
226 The full name for this projection is Apian Globular I.
227
228 t_proj_august
229 Autogenerated transformation function for Proj4 projection code august.
230
231 The full name for this projection is August Epicycloidal.
232
233 t_proj_bacon
234 Autogenerated transformation function for Proj4 projection code bacon.
235
236 The full name for this projection is Bacon Globular.
237
238 t_proj_bipc
239 Autogenerated transformation function for Proj4 projection code bipc.
240
241 The full name for this projection is Bipolar conic of western
242 hemisphere.
243
244 t_proj_boggs
245 Autogenerated transformation function for Proj4 projection code boggs.
246
247 The full name for this projection is Boggs Eumorphic.
248
249 t_proj_bonne
250 Autogenerated transformation function for Proj4 projection code bonne.
251
252 The full name for this projection is Bonne (Werner lat_1=90).
253
254 Projection Parameters
255
256 lat_1
257
258 t_proj_cass
259 Autogenerated transformation function for Proj4 projection code cass.
260
261 The full name for this projection is Cassini.
262
263 t_proj_cc
264 Autogenerated transformation function for Proj4 projection code cc.
265
266 The full name for this projection is Central Cylindrical.
267
268 t_proj_cea
269 Autogenerated transformation function for Proj4 projection code cea.
270
271 The full name for this projection is Equal Area Cylindrical.
272
273 Projection Parameters
274
275 lat_ts
276
277 t_proj_chamb
278 Autogenerated transformation function for Proj4 projection code chamb.
279
280 The full name for this projection is Chamberlin Trimetric.
281
282 Projection Parameters
283
284 lat_1
285
286 lat_2
287
288 lat_3
289
290 lon_1
291
292 lon_2
293
294 lon_3
295
296 t_proj_collg
297 Autogenerated transformation function for Proj4 projection code collg.
298
299 The full name for this projection is Collignon.
300
301 t_proj_crast
302 Autogenerated transformation function for Proj4 projection code crast.
303
304 The full name for this projection is Craster Parabolic (Putnins P4).
305
306 t_proj_denoy
307 Autogenerated transformation function for Proj4 projection code denoy.
308
309 The full name for this projection is Denoyer Semi-Elliptical.
310
311 t_proj_eck1
312 Autogenerated transformation function for Proj4 projection code eck1.
313
314 The full name for this projection is Eckert I.
315
316 t_proj_eck2
317 Autogenerated transformation function for Proj4 projection code eck2.
318
319 The full name for this projection is Eckert II.
320
321 t_proj_eck3
322 Autogenerated transformation function for Proj4 projection code eck3.
323
324 The full name for this projection is Eckert III.
325
326 t_proj_eck4
327 Autogenerated transformation function for Proj4 projection code eck4.
328
329 The full name for this projection is Eckert IV.
330
331 t_proj_eck5
332 Autogenerated transformation function for Proj4 projection code eck5.
333
334 The full name for this projection is Eckert V.
335
336 t_proj_eck6
337 Autogenerated transformation function for Proj4 projection code eck6.
338
339 The full name for this projection is Eckert VI.
340
341 t_proj_eqc
342 Autogenerated transformation function for Proj4 projection code eqc.
343
344 The full name for this projection is Equidistant Cylindrical (Plate
345 Caree).
346
347 Projection Parameters
348
349 lat_00
350
351 lat_ts
352
353 t_proj_eqdc
354 Autogenerated transformation function for Proj4 projection code eqdc.
355
356 The full name for this projection is Equidistant Conic.
357
358 Projection Parameters
359
360 lat_1
361
362 lat_2
363
364 t_proj_euler
365 Autogenerated transformation function for Proj4 projection code euler.
366
367 The full name for this projection is Euler.
368
369 Projection Parameters
370
371 lat_1
372
373 lat_2
374
375 t_proj_fahey
376 Autogenerated transformation function for Proj4 projection code fahey.
377
378 The full name for this projection is Fahey.
379
380 t_proj_fouc
381 Autogenerated transformation function for Proj4 projection code fouc.
382
383 The full name for this projection is Foucaut.
384
385 t_proj_fouc_s
386 Autogenerated transformation function for Proj4 projection code fouc_s.
387
388 The full name for this projection is Foucaut Sinusoidal.
389
390 t_proj_gall
391 Autogenerated transformation function for Proj4 projection code gall.
392
393 The full name for this projection is Gall (Gall Stereographic).
394
395 t_proj_geocent
396 Autogenerated transformation function for Proj4 projection code
397 geocent.
398
399 The full name for this projection is Geocentric.
400
401 t_proj_geos
402 Autogenerated transformation function for Proj4 projection code geos.
403
404 The full name for this projection is Geostationary Satellite View.
405
406 Projection Parameters
407
408 h
409
410 t_proj_gins8
411 Autogenerated transformation function for Proj4 projection code gins8.
412
413 The full name for this projection is Ginsburg VIII (TsNIIGAiK).
414
415 t_proj_gn_sinu
416 Autogenerated transformation function for Proj4 projection code
417 gn_sinu.
418
419 The full name for this projection is General Sinusoidal Series.
420
421 Projection Parameters
422
423 m
424
425 n
426
427 t_proj_gnom
428 Autogenerated transformation function for Proj4 projection code gnom.
429
430 The full name for this projection is Gnomonic.
431
432 t_proj_goode
433 Autogenerated transformation function for Proj4 projection code goode.
434
435 The full name for this projection is Goode Homolosine.
436
437 t_proj_gs48
438 Autogenerated transformation function for Proj4 projection code gs48.
439
440 The full name for this projection is Mod. Stererographics of 48 U.S..
441
442 t_proj_gs50
443 Autogenerated transformation function for Proj4 projection code gs50.
444
445 The full name for this projection is Mod. Stererographics of 50 U.S..
446
447 t_proj_gstmerc
448 Autogenerated transformation function for Proj4 projection code
449 gstmerc.
450
451 The full name for this projection is Gauss-Schreiber Transverse
452 Mercator (aka Gauss-Laborde Reunion).
453
454 Projection Parameters
455
456 k_0
457
458 lat_0
459
460 lon_0
461
462 t_proj_hammer
463 Autogenerated transformation function for Proj4 projection code hammer.
464
465 The full name for this projection is Hammer & Eckert-Greifendorff.
466
467 Projection Parameters
468
469 M
470
471 W
472
473 t_proj_hatano
474 Autogenerated transformation function for Proj4 projection code hatano.
475
476 The full name for this projection is Hatano Asymmetrical Equal Area.
477
478 t_proj_imw_p
479 Autogenerated transformation function for Proj4 projection code imw_p.
480
481 The full name for this projection is International Map of the World
482 Polyconic.
483
484 Projection Parameters
485
486 lat_1
487
488 lat_2
489
490 lon_1
491
492 t_proj_kav5
493 Autogenerated transformation function for Proj4 projection code kav5.
494
495 The full name for this projection is Kavraisky V.
496
497 t_proj_kav7
498 Autogenerated transformation function for Proj4 projection code kav7.
499
500 The full name for this projection is Kavraisky VII.
501
502 t_proj_krovak
503 Autogenerated transformation function for Proj4 projection code krovak.
504
505 The full name for this projection is Krovak.
506
507 t_proj_labrd
508 Autogenerated transformation function for Proj4 projection code labrd.
509
510 The full name for this projection is Laborde.
511
512 t_proj_laea
513 Autogenerated transformation function for Proj4 projection code laea.
514
515 The full name for this projection is Lambert Azimuthal Equal Area.
516
517 t_proj_lagrng
518 Autogenerated transformation function for Proj4 projection code lagrng.
519
520 The full name for this projection is Lagrange.
521
522 Projection Parameters
523
524 W
525
526 t_proj_larr
527 Autogenerated transformation function for Proj4 projection code larr.
528
529 The full name for this projection is Larrivee.
530
531 t_proj_lask
532 Autogenerated transformation function for Proj4 projection code lask.
533
534 The full name for this projection is Laskowski.
535
536 t_proj_latlon
537 Autogenerated transformation function for Proj4 projection code latlon.
538
539 The full name for this projection is Lat/long (Geodetic alias).
540
541 t_proj_latlong
542 Autogenerated transformation function for Proj4 projection code
543 latlong.
544
545 The full name for this projection is Lat/long (Geodetic alias).
546
547 t_proj_lcc
548 Autogenerated transformation function for Proj4 projection code lcc.
549
550 The full name for this projection is Lambert Conformal Conic.
551
552 Projection Parameters
553
554 lat_0
555
556 lat_1
557
558 lat_2
559
560 t_proj_lcca
561 Autogenerated transformation function for Proj4 projection code lcca.
562
563 The full name for this projection is Lambert Conformal Conic
564 Alternative.
565
566 Projection Parameters
567
568 lat_0
569
570 t_proj_leac
571 Autogenerated transformation function for Proj4 projection code leac.
572
573 The full name for this projection is Lambert Equal Area Conic.
574
575 Projection Parameters
576
577 lat_1
578
579 south
580
581 t_proj_lee_os
582 Autogenerated transformation function for Proj4 projection code lee_os.
583
584 The full name for this projection is Lee Oblated Stereographic.
585
586 t_proj_longlat
587 Autogenerated transformation function for Proj4 projection code
588 longlat.
589
590 The full name for this projection is Lat/long (Geodetic alias).
591
592 t_proj_lonlat
593 Autogenerated transformation function for Proj4 projection code lonlat.
594
595 The full name for this projection is Lat/long (Geodetic).
596
597 t_proj_loxim
598 Autogenerated transformation function for Proj4 projection code loxim.
599
600 The full name for this projection is Loximuthal.
601
602 t_proj_lsat
603 Autogenerated transformation function for Proj4 projection code lsat.
604
605 The full name for this projection is Space oblique for LANDSAT.
606
607 Projection Parameters
608
609 lsat
610
611 path
612
613 t_proj_mbt_fps
614 Autogenerated transformation function for Proj4 projection code
615 mbt_fps.
616
617 The full name for this projection is McBryde-Thomas Flat-Pole Sine (No.
618 2).
619
620 t_proj_mbt_s
621 Autogenerated transformation function for Proj4 projection code mbt_s.
622
623 The full name for this projection is McBryde-Thomas Flat-Polar Sine
624 (No. 1).
625
626 t_proj_mbtfpp
627 Autogenerated transformation function for Proj4 projection code mbtfpp.
628
629 The full name for this projection is McBride-Thomas Flat-Polar
630 Parabolic.
631
632 t_proj_mbtfpq
633 Autogenerated transformation function for Proj4 projection code mbtfpq.
634
635 The full name for this projection is McBryde-Thomas Flat-Polar Quartic.
636
637 t_proj_mbtfps
638 Autogenerated transformation function for Proj4 projection code mbtfps.
639
640 The full name for this projection is McBryde-Thomas Flat-Polar
641 Sinusoidal.
642
643 t_proj_merc
644 Autogenerated transformation function for Proj4 projection code merc.
645
646 The full name for this projection is Mercator.
647
648 Projection Parameters
649
650 lat_ts
651
652 t_proj_mil_os
653 Autogenerated transformation function for Proj4 projection code mil_os.
654
655 The full name for this projection is Miller Oblated Stereographic.
656
657 t_proj_mill
658 Autogenerated transformation function for Proj4 projection code mill.
659
660 The full name for this projection is Miller Cylindrical.
661
662 t_proj_moll
663 Autogenerated transformation function for Proj4 projection code moll.
664
665 The full name for this projection is Mollweide.
666
667 t_proj_murd1
668 Autogenerated transformation function for Proj4 projection code murd1.
669
670 The full name for this projection is Murdoch I.
671
672 Projection Parameters
673
674 lat_1
675
676 lat_2
677
678 t_proj_murd2
679 Autogenerated transformation function for Proj4 projection code murd2.
680
681 The full name for this projection is Murdoch II.
682
683 Projection Parameters
684
685 lat_1
686
687 lat_2
688
689 t_proj_murd3
690 Autogenerated transformation function for Proj4 projection code murd3.
691
692 The full name for this projection is Murdoch III.
693
694 Projection Parameters
695
696 lat_1
697
698 lat_2
699
700 t_proj_nell
701 Autogenerated transformation function for Proj4 projection code nell.
702
703 The full name for this projection is Nell.
704
705 t_proj_nell_h
706 Autogenerated transformation function for Proj4 projection code nell_h.
707
708 The full name for this projection is Nell-Hammer.
709
710 t_proj_nicol
711 Autogenerated transformation function for Proj4 projection code nicol.
712
713 The full name for this projection is Nicolosi Globular.
714
715 t_proj_nsper
716 Autogenerated transformation function for Proj4 projection code nsper.
717
718 The full name for this projection is Near-sided perspective.
719
720 Projection Parameters
721
722 h
723
724 t_proj_nzmg
725 Autogenerated transformation function for Proj4 projection code nzmg.
726
727 The full name for this projection is New Zealand Map Grid.
728
729 t_proj_ob_tran
730 Autogenerated transformation function for Proj4 projection code
731 ob_tran.
732
733 The full name for this projection is General Oblique Transformation.
734
735 Projection Parameters
736
737 o_alpha
738
739 o_lat_1
740
741 o_lat_2
742
743 o_lat_c
744
745 o_lat_p
746
747 o_lon_1
748
749 o_lon_2
750
751 o_lon_c
752
753 o_lon_p
754
755 o_proj
756
757 t_proj_ocea
758 Autogenerated transformation function for Proj4 projection code ocea.
759
760 The full name for this projection is Oblique Cylindrical Equal Area.
761
762 Projection Parameters
763
764 lat_1
765
766 lat_2
767
768 lon_1
769
770 lon_2
771
772 t_proj_oea
773 Autogenerated transformation function for Proj4 projection code oea.
774
775 The full name for this projection is Oblated Equal Area.
776
777 Projection Parameters
778
779 m
780
781 n
782
783 theta
784
785 t_proj_omerc
786 Autogenerated transformation function for Proj4 projection code omerc.
787
788 The full name for this projection is Oblique Mercator.
789
790 Projection Parameters
791
792 alpha
793
794 lat_1
795
796 lat_2
797
798 lon_1
799
800 lon_2
801
802 lonc
803
804 no_rot
805
806 no_uoff
807
808 rot_conv
809
810 t_proj_ortel
811 Autogenerated transformation function for Proj4 projection code ortel.
812
813 The full name for this projection is Ortelius Oval.
814
815 t_proj_ortho
816 Autogenerated transformation function for Proj4 projection code ortho.
817
818 The full name for this projection is Orthographic.
819
820 t_proj_pconic
821 Autogenerated transformation function for Proj4 projection code pconic.
822
823 The full name for this projection is Perspective Conic.
824
825 Projection Parameters
826
827 lat_1
828
829 lat_2
830
831 t_proj_poly
832 Autogenerated transformation function for Proj4 projection code poly.
833
834 The full name for this projection is Polyconic (American).
835
836 t_proj_putp1
837 Autogenerated transformation function for Proj4 projection code putp1.
838
839 The full name for this projection is Putnins P1.
840
841 t_proj_putp2
842 Autogenerated transformation function for Proj4 projection code putp2.
843
844 The full name for this projection is Putnins P2.
845
846 t_proj_putp3
847 Autogenerated transformation function for Proj4 projection code putp3.
848
849 The full name for this projection is Putnins P3.
850
851 t_proj_putp3p
852 Autogenerated transformation function for Proj4 projection code putp3p.
853
854 The full name for this projection is Putnins P3'.
855
856 t_proj_putp4p
857 Autogenerated transformation function for Proj4 projection code putp4p.
858
859 The full name for this projection is Putnins P4'.
860
861 t_proj_putp5
862 Autogenerated transformation function for Proj4 projection code putp5.
863
864 The full name for this projection is Putnins P5.
865
866 t_proj_putp5p
867 Autogenerated transformation function for Proj4 projection code putp5p.
868
869 The full name for this projection is Putnins P5'.
870
871 t_proj_putp6
872 Autogenerated transformation function for Proj4 projection code putp6.
873
874 The full name for this projection is Putnins P6.
875
876 t_proj_putp6p
877 Autogenerated transformation function for Proj4 projection code putp6p.
878
879 The full name for this projection is Putnins P6'.
880
881 t_proj_qua_aut
882 Autogenerated transformation function for Proj4 projection code
883 qua_aut.
884
885 The full name for this projection is Quartic Authalic.
886
887 t_proj_robin
888 Autogenerated transformation function for Proj4 projection code robin.
889
890 The full name for this projection is Robinson.
891
892 t_proj_rouss
893 Autogenerated transformation function for Proj4 projection code rouss.
894
895 The full name for this projection is Roussilhe Stereographic.
896
897 t_proj_rpoly
898 Autogenerated transformation function for Proj4 projection code rpoly.
899
900 The full name for this projection is Rectangular Polyconic.
901
902 Projection Parameters
903
904 lat_ts
905
906 t_proj_sinu
907 Autogenerated transformation function for Proj4 projection code sinu.
908
909 The full name for this projection is Sinusoidal (Sanson-Flamsteed).
910
911 t_proj_somerc
912 Autogenerated transformation function for Proj4 projection code somerc.
913
914 The full name for this projection is Swiss. Obl. Mercator.
915
916 t_proj_stere
917 Autogenerated transformation function for Proj4 projection code stere.
918
919 The full name for this projection is Stereographic.
920
921 Projection Parameters
922
923 lat_ts
924
925 t_proj_sterea
926 Autogenerated transformation function for Proj4 projection code sterea.
927
928 The full name for this projection is Oblique Stereographic Alternative.
929
930 t_proj_tcc
931 Autogenerated transformation function for Proj4 projection code tcc.
932
933 The full name for this projection is Transverse Central Cylindrical.
934
935 t_proj_tcea
936 Autogenerated transformation function for Proj4 projection code tcea.
937
938 The full name for this projection is Transverse Cylindrical Equal Area.
939
940 t_proj_tissot
941 Autogenerated transformation function for Proj4 projection code tissot.
942
943 The full name for this projection is Tissot.
944
945 Projection Parameters
946
947 lat_1
948
949 lat_2
950
951 t_proj_tmerc
952 Autogenerated transformation function for Proj4 projection code tmerc.
953
954 The full name for this projection is Transverse Mercator.
955
956 t_proj_tpeqd
957 Autogenerated transformation function for Proj4 projection code tpeqd.
958
959 The full name for this projection is Two Point Equidistant.
960
961 Projection Parameters
962
963 lat_1
964
965 lat_2
966
967 lon_1
968
969 lon_2
970
971 t_proj_tpers
972 Autogenerated transformation function for Proj4 projection code tpers.
973
974 The full name for this projection is Tilted perspective.
975
976 Projection Parameters
977
978 azi
979
980 h
981
982 tilt
983
984 t_proj_ups
985 Autogenerated transformation function for Proj4 projection code ups.
986
987 The full name for this projection is Universal Polar Stereographic.
988
989 Projection Parameters
990
991 south
992
993 t_proj_urm5
994 Autogenerated transformation function for Proj4 projection code urm5.
995
996 The full name for this projection is Urmaev V.
997
998 Projection Parameters
999
1000 alphi
1001
1002 n
1003
1004 q
1005
1006 t_proj_urmfps
1007 Autogenerated transformation function for Proj4 projection code urmfps.
1008
1009 The full name for this projection is Urmaev Flat-Polar Sinusoidal.
1010
1011 Projection Parameters
1012
1013 n
1014
1015 t_proj_utm
1016 Autogenerated transformation function for Proj4 projection code utm.
1017
1018 The full name for this projection is Universal Transverse Mercator
1019 (UTM).
1020
1021 Projection Parameters
1022
1023 south
1024
1025 zone
1026
1027 t_proj_vandg
1028 Autogenerated transformation function for Proj4 projection code vandg.
1029
1030 The full name for this projection is van der Grinten (I).
1031
1032 t_proj_vandg2
1033 Autogenerated transformation function for Proj4 projection code vandg2.
1034
1035 The full name for this projection is van der Grinten II.
1036
1037 t_proj_vandg3
1038 Autogenerated transformation function for Proj4 projection code vandg3.
1039
1040 The full name for this projection is van der Grinten III.
1041
1042 t_proj_vandg4
1043 Autogenerated transformation function for Proj4 projection code vandg4.
1044
1045 The full name for this projection is van der Grinten IV.
1046
1047 t_proj_vitk1
1048 Autogenerated transformation function for Proj4 projection code vitk1.
1049
1050 The full name for this projection is Vitkovsky I.
1051
1052 Projection Parameters
1053
1054 lat_1
1055
1056 lat_2
1057
1058 t_proj_wag1
1059 Autogenerated transformation function for Proj4 projection code wag1.
1060
1061 The full name for this projection is Wagner I (Kavraisky VI).
1062
1063 t_proj_wag2
1064 Autogenerated transformation function for Proj4 projection code wag2.
1065
1066 The full name for this projection is Wagner II.
1067
1068 t_proj_wag3
1069 Autogenerated transformation function for Proj4 projection code wag3.
1070
1071 The full name for this projection is Wagner III.
1072
1073 Projection Parameters
1074
1075 lat_ts
1076
1077 t_proj_wag4
1078 Autogenerated transformation function for Proj4 projection code wag4.
1079
1080 The full name for this projection is Wagner IV.
1081
1082 t_proj_wag5
1083 Autogenerated transformation function for Proj4 projection code wag5.
1084
1085 The full name for this projection is Wagner V.
1086
1087 t_proj_wag6
1088 Autogenerated transformation function for Proj4 projection code wag6.
1089
1090 The full name for this projection is Wagner VI.
1091
1092 t_proj_wag7
1093 Autogenerated transformation function for Proj4 projection code wag7.
1094
1095 The full name for this projection is Wagner VII.
1096
1097 t_proj_weren
1098 Autogenerated transformation function for Proj4 projection code weren.
1099
1100 The full name for this projection is Werenskiold I.
1101
1102 t_proj_wink1
1103 Autogenerated transformation function for Proj4 projection code wink1.
1104
1105 The full name for this projection is Winkel I.
1106
1107 Projection Parameters
1108
1109 lat_ts
1110
1111 t_proj_wink2
1112 Autogenerated transformation function for Proj4 projection code wink2.
1113
1114 The full name for this projection is Winkel II.
1115
1116 Projection Parameters
1117
1118 lat_1
1119
1120 t_proj_wintri
1121 Autogenerated transformation function for Proj4 projection code wintri.
1122
1123 The full name for this projection is Winkel Tripel.
1124
1125 Projection Parameters
1126
1127 lat_1
1128
1130 Judd Taylor, Orbital Systems, Ltd. judd dot t at orbitalsystems dot
1131 com
1132
1133
1134
1135perl v5.12.3 2011-03-31 Proj4(3)