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 lat_2
189
190 t_proj_aeqd
191 Autogenerated transformation function for Proj4 projection code aeqd.
192
193 The full name for this projection is Azimuthal Equidistant.
194
195 Projection Parameters
196
197 guam
198 lat_0
199
200 t_proj_airy
201 Autogenerated transformation function for Proj4 projection code airy.
202
203 The full name for this projection is Airy.
204
205 Projection Parameters
206
207 lat_b
208 no_cut
209
210 t_proj_aitoff
211 Autogenerated transformation function for Proj4 projection code aitoff.
212
213 The full name for this projection is Aitoff.
214
215 t_proj_alsk
216 Autogenerated transformation function for Proj4 projection code alsk.
217
218 The full name for this projection is Mod. Stereographic of Alaska.
219
220 t_proj_apian
221 Autogenerated transformation function for Proj4 projection code apian.
222
223 The full name for this projection is Apian Globular I.
224
225 t_proj_august
226 Autogenerated transformation function for Proj4 projection code august.
227
228 The full name for this projection is August Epicycloidal.
229
230 t_proj_axisswap
231 Autogenerated transformation function for Proj4 projection code
232 axisswap.
233
234 The full name for this projection is Axis ordering.
235
236 t_proj_bacon
237 Autogenerated transformation function for Proj4 projection code bacon.
238
239 The full name for this projection is Bacon Globular.
240
241 t_proj_bipc
242 Autogenerated transformation function for Proj4 projection code bipc.
243
244 The full name for this projection is Bipolar conic of western
245 hemisphere.
246
247 t_proj_boggs
248 Autogenerated transformation function for Proj4 projection code boggs.
249
250 The full name for this projection is Boggs Eumorphic.
251
252 t_proj_bonne
253 Autogenerated transformation function for Proj4 projection code bonne.
254
255 The full name for this projection is Bonne (Werner lat_1=90).
256
257 Projection Parameters
258
259 lat_1
260
261 t_proj_calcofi
262 Autogenerated transformation function for Proj4 projection code
263 calcofi.
264
265 The full name for this projection is Cal Coop Ocean Fish Invest
266 Lines/Stations.
267
268 t_proj_cart
269 Autogenerated transformation function for Proj4 projection code cart.
270
271 The full name for this projection is Geodetic/cartesian conversions.
272
273 t_proj_cass
274 Autogenerated transformation function for Proj4 projection code cass.
275
276 The full name for this projection is Cassini.
277
278 t_proj_cc
279 Autogenerated transformation function for Proj4 projection code cc.
280
281 The full name for this projection is Central Cylindrical.
282
283 t_proj_ccon
284 Autogenerated transformation function for Proj4 projection code ccon.
285
286 The full name for this projection is Central Conic.
287
288 Projection Parameters
289
290 lat_1
291
292 t_proj_cea
293 Autogenerated transformation function for Proj4 projection code cea.
294
295 The full name for this projection is Equal Area Cylindrical.
296
297 Projection Parameters
298
299 lat_ts
300
301 t_proj_chamb
302 Autogenerated transformation function for Proj4 projection code chamb.
303
304 The full name for this projection is Chamberlin Trimetric.
305
306 Projection Parameters
307
308 lat_1
309 lat_2
310 lat_3
311 lon_1
312 lon_2
313 lon_3
314
315 t_proj_collg
316 Autogenerated transformation function for Proj4 projection code collg.
317
318 The full name for this projection is Collignon.
319
320 t_proj_comill
321 Autogenerated transformation function for Proj4 projection code comill.
322
323 The full name for this projection is Compact Miller.
324
325 t_proj_crast
326 Autogenerated transformation function for Proj4 projection code crast.
327
328 The full name for this projection is Craster Parabolic (Putnins P4).
329
330 t_proj_deformation
331 Autogenerated transformation function for Proj4 projection code
332 deformation.
333
334 The full name for this projection is Kinematic grid shift.
335
336 t_proj_denoy
337 Autogenerated transformation function for Proj4 projection code denoy.
338
339 The full name for this projection is Denoyer Semi-Elliptical.
340
341 t_proj_eck1
342 Autogenerated transformation function for Proj4 projection code eck1.
343
344 The full name for this projection is Eckert I.
345
346 t_proj_eck2
347 Autogenerated transformation function for Proj4 projection code eck2.
348
349 The full name for this projection is Eckert II.
350
351 t_proj_eck3
352 Autogenerated transformation function for Proj4 projection code eck3.
353
354 The full name for this projection is Eckert III.
355
356 t_proj_eck4
357 Autogenerated transformation function for Proj4 projection code eck4.
358
359 The full name for this projection is Eckert IV.
360
361 t_proj_eck5
362 Autogenerated transformation function for Proj4 projection code eck5.
363
364 The full name for this projection is Eckert V.
365
366 t_proj_eck6
367 Autogenerated transformation function for Proj4 projection code eck6.
368
369 The full name for this projection is Eckert VI.
370
371 t_proj_eqc
372 Autogenerated transformation function for Proj4 projection code eqc.
373
374 The full name for this projection is Equidistant Cylindrical (Plate
375 Caree).
376
377 Projection Parameters
378
379 lat_00
380 lat_ts
381
382 t_proj_eqdc
383 Autogenerated transformation function for Proj4 projection code eqdc.
384
385 The full name for this projection is Equidistant Conic.
386
387 Projection Parameters
388
389 lat_1
390 lat_2
391
392 t_proj_eqearth
393 Autogenerated transformation function for Proj4 projection code
394 eqearth.
395
396 The full name for this projection is Equal Earth.
397
398 t_proj_etmerc
399 Autogenerated transformation function for Proj4 projection code etmerc.
400
401 The full name for this projection is Extended Transverse Mercator.
402
403 Projection Parameters
404
405 lat_0(0)
406 lat_ts(0)
407
408 t_proj_euler
409 Autogenerated transformation function for Proj4 projection code euler.
410
411 The full name for this projection is Euler.
412
413 Projection Parameters
414
415 lat_1
416 lat_2
417
418 t_proj_fahey
419 Autogenerated transformation function for Proj4 projection code fahey.
420
421 The full name for this projection is Fahey.
422
423 t_proj_fouc
424 Autogenerated transformation function for Proj4 projection code fouc.
425
426 The full name for this projection is Foucaut.
427
428 t_proj_fouc_s
429 Autogenerated transformation function for Proj4 projection code fouc_s.
430
431 The full name for this projection is Foucaut Sinusoidal.
432
433 t_proj_gall
434 Autogenerated transformation function for Proj4 projection code gall.
435
436 The full name for this projection is Gall (Gall Stereographic).
437
438 t_proj_geoc
439 Autogenerated transformation function for Proj4 projection code geoc.
440
441 The full name for this projection is Geocentric Latitude.
442
443 t_proj_geocent
444 Autogenerated transformation function for Proj4 projection code
445 geocent.
446
447 The full name for this projection is Geocentric.
448
449 t_proj_geos
450 Autogenerated transformation function for Proj4 projection code geos.
451
452 The full name for this projection is Geostationary Satellite View.
453
454 Projection Parameters
455
456 h
457
458 t_proj_gins8
459 Autogenerated transformation function for Proj4 projection code gins8.
460
461 The full name for this projection is Ginsburg VIII (TsNIIGAiK).
462
463 t_proj_gn_sinu
464 Autogenerated transformation function for Proj4 projection code
465 gn_sinu.
466
467 The full name for this projection is General Sinusoidal Series.
468
469 Projection Parameters
470
471 m
472 n
473
474 t_proj_gnom
475 Autogenerated transformation function for Proj4 projection code gnom.
476
477 The full name for this projection is Gnomonic.
478
479 t_proj_goode
480 Autogenerated transformation function for Proj4 projection code goode.
481
482 The full name for this projection is Goode Homolosine.
483
484 t_proj_gs48
485 Autogenerated transformation function for Proj4 projection code gs48.
486
487 The full name for this projection is Mod. Stereographic of 48 U.S..
488
489 t_proj_gs50
490 Autogenerated transformation function for Proj4 projection code gs50.
491
492 The full name for this projection is Mod. Stereographic of 50 U.S..
493
494 t_proj_gstmerc
495 Autogenerated transformation function for Proj4 projection code
496 gstmerc.
497
498 The full name for this projection is Gauss-Schreiber Transverse
499 Mercator (aka Gauss-Laborde Reunion).
500
501 Projection Parameters
502
503 k_0
504 lat_0
505 lon_0
506
507 t_proj_hammer
508 Autogenerated transformation function for Proj4 projection code hammer.
509
510 The full name for this projection is Hammer & Eckert-Greifendorff.
511
512 Projection Parameters
513
514 M
515 W
516
517 t_proj_hatano
518 Autogenerated transformation function for Proj4 projection code hatano.
519
520 The full name for this projection is Hatano Asymmetrical Equal Area.
521
522 t_proj_healpix
523 Autogenerated transformation function for Proj4 projection code
524 healpix.
525
526 The full name for this projection is HEALPix.
527
528 t_proj_helmert
529 Autogenerated transformation function for Proj4 projection code
530 helmert.
531
532 The full name for this projection is 3(6)-, 4(8)- and 7(14)-parameter
533 Helmert shift.
534
535 t_proj_hgridshift
536 Autogenerated transformation function for Proj4 projection code
537 hgridshift.
538
539 The full name for this projection is Horizontal grid shift.
540
541 t_proj_horner
542 Autogenerated transformation function for Proj4 projection code horner.
543
544 The full name for this projection is Horner polynomial evaluation.
545
546 t_proj_igh
547 Autogenerated transformation function for Proj4 projection code igh.
548
549 The full name for this projection is Interrupted Goode Homolosine.
550
551 t_proj_imw_p
552 Autogenerated transformation function for Proj4 projection code imw_p.
553
554 The full name for this projection is International Map of the World
555 Polyconic.
556
557 Projection Parameters
558
559 lat_1
560 lat_2
561 lon_1
562
563 t_proj_isea
564 Autogenerated transformation function for Proj4 projection code isea.
565
566 The full name for this projection is Icosahedral Snyder Equal Area.
567
568 t_proj_kav5
569 Autogenerated transformation function for Proj4 projection code kav5.
570
571 The full name for this projection is Kavraisky V.
572
573 t_proj_kav7
574 Autogenerated transformation function for Proj4 projection code kav7.
575
576 The full name for this projection is Kavraisky VII.
577
578 t_proj_krovak
579 Autogenerated transformation function for Proj4 projection code krovak.
580
581 The full name for this projection is Krovak.
582
583 t_proj_labrd
584 Autogenerated transformation function for Proj4 projection code labrd.
585
586 The full name for this projection is Laborde.
587
588 t_proj_laea
589 Autogenerated transformation function for Proj4 projection code laea.
590
591 The full name for this projection is Lambert Azimuthal Equal Area.
592
593 t_proj_lagrng
594 Autogenerated transformation function for Proj4 projection code lagrng.
595
596 The full name for this projection is Lagrange.
597
598 Projection Parameters
599
600 W
601
602 t_proj_larr
603 Autogenerated transformation function for Proj4 projection code larr.
604
605 The full name for this projection is Larrivee.
606
607 t_proj_lask
608 Autogenerated transformation function for Proj4 projection code lask.
609
610 The full name for this projection is Laskowski.
611
612 t_proj_latlon
613 Autogenerated transformation function for Proj4 projection code latlon.
614
615 The full name for this projection is Lat/long (Geodetic alias).
616
617 t_proj_latlong
618 Autogenerated transformation function for Proj4 projection code
619 latlong.
620
621 The full name for this projection is Lat/long (Geodetic alias).
622
623 t_proj_lcc
624 Autogenerated transformation function for Proj4 projection code lcc.
625
626 The full name for this projection is Lambert Conformal Conic.
627
628 Projection Parameters
629
630 lat_0
631 lat_1
632 lat_2
633
634 t_proj_lcca
635 Autogenerated transformation function for Proj4 projection code lcca.
636
637 The full name for this projection is Lambert Conformal Conic
638 Alternative.
639
640 Projection Parameters
641
642 lat_0
643
644 t_proj_leac
645 Autogenerated transformation function for Proj4 projection code leac.
646
647 The full name for this projection is Lambert Equal Area Conic.
648
649 Projection Parameters
650
651 lat_1
652 south
653
654 t_proj_lee_os
655 Autogenerated transformation function for Proj4 projection code lee_os.
656
657 The full name for this projection is Lee Oblated Stereographic.
658
659 t_proj_longlat
660 Autogenerated transformation function for Proj4 projection code
661 longlat.
662
663 The full name for this projection is Lat/long (Geodetic alias).
664
665 t_proj_lonlat
666 Autogenerated transformation function for Proj4 projection code lonlat.
667
668 The full name for this projection is Lat/long (Geodetic).
669
670 t_proj_loxim
671 Autogenerated transformation function for Proj4 projection code loxim.
672
673 The full name for this projection is Loximuthal.
674
675 t_proj_lsat
676 Autogenerated transformation function for Proj4 projection code lsat.
677
678 The full name for this projection is Space oblique for LANDSAT.
679
680 Projection Parameters
681
682 lsat
683 path
684
685 t_proj_mbt_fps
686 Autogenerated transformation function for Proj4 projection code
687 mbt_fps.
688
689 The full name for this projection is McBryde-Thomas Flat-Pole Sine (No.
690 2).
691
692 t_proj_mbt_s
693 Autogenerated transformation function for Proj4 projection code mbt_s.
694
695 The full name for this projection is McBryde-Thomas Flat-Polar Sine
696 (No. 1).
697
698 t_proj_mbtfpp
699 Autogenerated transformation function for Proj4 projection code mbtfpp.
700
701 The full name for this projection is McBride-Thomas Flat-Polar
702 Parabolic.
703
704 t_proj_mbtfpq
705 Autogenerated transformation function for Proj4 projection code mbtfpq.
706
707 The full name for this projection is McBryde-Thomas Flat-Polar Quartic.
708
709 t_proj_mbtfps
710 Autogenerated transformation function for Proj4 projection code mbtfps.
711
712 The full name for this projection is McBryde-Thomas Flat-Polar
713 Sinusoidal.
714
715 t_proj_merc
716 Autogenerated transformation function for Proj4 projection code merc.
717
718 The full name for this projection is Mercator.
719
720 Projection Parameters
721
722 lat_ts
723
724 t_proj_mil_os
725 Autogenerated transformation function for Proj4 projection code mil_os.
726
727 The full name for this projection is Miller Oblated Stereographic.
728
729 t_proj_mill
730 Autogenerated transformation function for Proj4 projection code mill.
731
732 The full name for this projection is Miller Cylindrical.
733
734 t_proj_misrsom
735 Autogenerated transformation function for Proj4 projection code
736 misrsom.
737
738 The full name for this projection is Space oblique for MISR.
739
740 Projection Parameters
741
742 path
743
744 t_proj_moll
745 Autogenerated transformation function for Proj4 projection code moll.
746
747 The full name for this projection is Mollweide.
748
749 t_proj_molodensky
750 Autogenerated transformation function for Proj4 projection code
751 molodensky.
752
753 The full name for this projection is Molodensky transform.
754
755 t_proj_murd1
756 Autogenerated transformation function for Proj4 projection code murd1.
757
758 The full name for this projection is Murdoch I.
759
760 Projection Parameters
761
762 lat_1
763 lat_2
764
765 t_proj_murd2
766 Autogenerated transformation function for Proj4 projection code murd2.
767
768 The full name for this projection is Murdoch II.
769
770 Projection Parameters
771
772 lat_1
773 lat_2
774
775 t_proj_murd3
776 Autogenerated transformation function for Proj4 projection code murd3.
777
778 The full name for this projection is Murdoch III.
779
780 Projection Parameters
781
782 lat_1
783 lat_2
784
785 t_proj_natearth
786 Autogenerated transformation function for Proj4 projection code
787 natearth.
788
789 The full name for this projection is Natural Earth.
790
791 t_proj_natearth2
792 Autogenerated transformation function for Proj4 projection code
793 natearth2.
794
795 The full name for this projection is Natural Earth 2.
796
797 t_proj_nell
798 Autogenerated transformation function for Proj4 projection code nell.
799
800 The full name for this projection is Nell.
801
802 t_proj_nell_h
803 Autogenerated transformation function for Proj4 projection code nell_h.
804
805 The full name for this projection is Nell-Hammer.
806
807 t_proj_nicol
808 Autogenerated transformation function for Proj4 projection code nicol.
809
810 The full name for this projection is Nicolosi Globular.
811
812 t_proj_nsper
813 Autogenerated transformation function for Proj4 projection code nsper.
814
815 The full name for this projection is Near-sided perspective.
816
817 Projection Parameters
818
819 h
820
821 t_proj_nzmg
822 Autogenerated transformation function for Proj4 projection code nzmg.
823
824 The full name for this projection is New Zealand Map Grid.
825
826 t_proj_ob_tran
827 Autogenerated transformation function for Proj4 projection code
828 ob_tran.
829
830 The full name for this projection is General Oblique Transformation.
831
832 Projection Parameters
833
834 o_alpha
835 o_lat_1
836 o_lat_2
837 o_lat_c
838 o_lat_p
839 o_lon_1
840 o_lon_2
841 o_lon_c
842 o_lon_p
843 o_proj
844
845 t_proj_ocea
846 Autogenerated transformation function for Proj4 projection code ocea.
847
848 The full name for this projection is Oblique Cylindrical Equal Area.
849
850 Projection Parameters
851
852 lat_1
853 lat_2
854 lon_1
855 lon_2
856
857 t_proj_oea
858 Autogenerated transformation function for Proj4 projection code oea.
859
860 The full name for this projection is Oblated Equal Area.
861
862 Projection Parameters
863
864 m
865 n
866 theta
867
868 t_proj_omerc
869 Autogenerated transformation function for Proj4 projection code omerc.
870
871 The full name for this projection is Oblique Mercator.
872
873 Projection Parameters
874
875 alpha
876 gamma
877 lat_1
878 lat_2
879 lon_1
880 lon_2
881 lonc
882 no_off
883
884 t_proj_ortel
885 Autogenerated transformation function for Proj4 projection code ortel.
886
887 The full name for this projection is Ortelius Oval.
888
889 t_proj_ortho
890 Autogenerated transformation function for Proj4 projection code ortho.
891
892 The full name for this projection is Orthographic.
893
894 t_proj_patterson
895 Autogenerated transformation function for Proj4 projection code
896 patterson.
897
898 The full name for this projection is Patterson Cylindrical.
899
900 t_proj_pconic
901 Autogenerated transformation function for Proj4 projection code pconic.
902
903 The full name for this projection is Perspective Conic.
904
905 Projection Parameters
906
907 lat_1
908 lat_2
909
910 t_proj_pipeline
911 Autogenerated transformation function for Proj4 projection code
912 pipeline.
913
914 The full name for this projection is Transformation pipeline manager.
915
916 t_proj_poly
917 Autogenerated transformation function for Proj4 projection code poly.
918
919 The full name for this projection is Polyconic (American).
920
921 t_proj_putp1
922 Autogenerated transformation function for Proj4 projection code putp1.
923
924 The full name for this projection is Putnins P1.
925
926 t_proj_putp2
927 Autogenerated transformation function for Proj4 projection code putp2.
928
929 The full name for this projection is Putnins P2.
930
931 t_proj_putp3
932 Autogenerated transformation function for Proj4 projection code putp3.
933
934 The full name for this projection is Putnins P3.
935
936 t_proj_putp3p
937 Autogenerated transformation function for Proj4 projection code putp3p.
938
939 The full name for this projection is Putnins P3'.
940
941 t_proj_putp4p
942 Autogenerated transformation function for Proj4 projection code putp4p.
943
944 The full name for this projection is Putnins P4'.
945
946 t_proj_putp5
947 Autogenerated transformation function for Proj4 projection code putp5.
948
949 The full name for this projection is Putnins P5.
950
951 t_proj_putp5p
952 Autogenerated transformation function for Proj4 projection code putp5p.
953
954 The full name for this projection is Putnins P5'.
955
956 t_proj_putp6
957 Autogenerated transformation function for Proj4 projection code putp6.
958
959 The full name for this projection is Putnins P6.
960
961 t_proj_putp6p
962 Autogenerated transformation function for Proj4 projection code putp6p.
963
964 The full name for this projection is Putnins P6'.
965
966 t_proj_qsc
967 Autogenerated transformation function for Proj4 projection code qsc.
968
969 The full name for this projection is Quadrilateralized Spherical Cube.
970
971 t_proj_qua_aut
972 Autogenerated transformation function for Proj4 projection code
973 qua_aut.
974
975 The full name for this projection is Quartic Authalic.
976
977 t_proj_rhealpix
978 Autogenerated transformation function for Proj4 projection code
979 rhealpix.
980
981 The full name for this projection is rHEALPix.
982
983 Projection Parameters
984
985 south_square
986
987 t_proj_robin
988 Autogenerated transformation function for Proj4 projection code robin.
989
990 The full name for this projection is Robinson.
991
992 t_proj_rouss
993 Autogenerated transformation function for Proj4 projection code rouss.
994
995 The full name for this projection is Roussilhe Stereographic.
996
997 t_proj_rpoly
998 Autogenerated transformation function for Proj4 projection code rpoly.
999
1000 The full name for this projection is Rectangular Polyconic.
1001
1002 Projection Parameters
1003
1004 lat_ts
1005
1006 t_proj_sch
1007 Autogenerated transformation function for Proj4 projection code sch.
1008
1009 The full name for this projection is Spherical Cross-track Height.
1010
1011 Projection Parameters
1012
1013 h_0
1014 phdg_0
1015 plat_0
1016 plon_0
1017
1018 t_proj_sinu
1019 Autogenerated transformation function for Proj4 projection code sinu.
1020
1021 The full name for this projection is Sinusoidal (Sanson-Flamsteed).
1022
1023 t_proj_somerc
1024 Autogenerated transformation function for Proj4 projection code somerc.
1025
1026 The full name for this projection is Swiss. Obl. Mercator.
1027
1028 t_proj_stere
1029 Autogenerated transformation function for Proj4 projection code stere.
1030
1031 The full name for this projection is Stereographic.
1032
1033 Projection Parameters
1034
1035 lat_ts
1036
1037 t_proj_sterea
1038 Autogenerated transformation function for Proj4 projection code sterea.
1039
1040 The full name for this projection is Oblique Stereographic Alternative.
1041
1042 t_proj_tcc
1043 Autogenerated transformation function for Proj4 projection code tcc.
1044
1045 The full name for this projection is Transverse Central Cylindrical.
1046
1047 t_proj_tcea
1048 Autogenerated transformation function for Proj4 projection code tcea.
1049
1050 The full name for this projection is Transverse Cylindrical Equal Area.
1051
1052 t_proj_times
1053 Autogenerated transformation function for Proj4 projection code times.
1054
1055 The full name for this projection is Times.
1056
1057 t_proj_tissot
1058 Autogenerated transformation function for Proj4 projection code tissot.
1059
1060 The full name for this projection is Tissot.
1061
1062 Projection Parameters
1063
1064 lat_1
1065 lat_2
1066
1067 t_proj_tmerc
1068 Autogenerated transformation function for Proj4 projection code tmerc.
1069
1070 The full name for this projection is Transverse Mercator.
1071
1072 t_proj_tpeqd
1073 Autogenerated transformation function for Proj4 projection code tpeqd.
1074
1075 The full name for this projection is Two Point Equidistant.
1076
1077 Projection Parameters
1078
1079 lat_1
1080 lat_2
1081 lon_1
1082 lon_2
1083
1084 t_proj_tpers
1085 Autogenerated transformation function for Proj4 projection code tpers.
1086
1087 The full name for this projection is Tilted perspective.
1088
1089 Projection Parameters
1090
1091 azi
1092 h
1093 tilt
1094
1095 t_proj_unitconvert
1096 Autogenerated transformation function for Proj4 projection code
1097 unitconvert.
1098
1099 The full name for this projection is Unit conversion.
1100
1101 t_proj_ups
1102 Autogenerated transformation function for Proj4 projection code ups.
1103
1104 The full name for this projection is Universal Polar Stereographic.
1105
1106 Projection Parameters
1107
1108 south
1109
1110 t_proj_urm5
1111 Autogenerated transformation function for Proj4 projection code urm5.
1112
1113 The full name for this projection is Urmaev V.
1114
1115 Projection Parameters
1116
1117 alpha
1118 n
1119 q
1120
1121 t_proj_urmfps
1122 Autogenerated transformation function for Proj4 projection code urmfps.
1123
1124 The full name for this projection is Urmaev Flat-Polar Sinusoidal.
1125
1126 Projection Parameters
1127
1128 n
1129
1130 t_proj_utm
1131 Autogenerated transformation function for Proj4 projection code utm.
1132
1133 The full name for this projection is Universal Transverse Mercator
1134 (UTM).
1135
1136 Projection Parameters
1137
1138 south
1139 zone
1140
1141 t_proj_vandg
1142 Autogenerated transformation function for Proj4 projection code vandg.
1143
1144 The full name for this projection is van der Grinten (I).
1145
1146 t_proj_vandg2
1147 Autogenerated transformation function for Proj4 projection code vandg2.
1148
1149 The full name for this projection is van der Grinten II.
1150
1151 t_proj_vandg3
1152 Autogenerated transformation function for Proj4 projection code vandg3.
1153
1154 The full name for this projection is van der Grinten III.
1155
1156 t_proj_vandg4
1157 Autogenerated transformation function for Proj4 projection code vandg4.
1158
1159 The full name for this projection is van der Grinten IV.
1160
1161 t_proj_vgridshift
1162 Autogenerated transformation function for Proj4 projection code
1163 vgridshift.
1164
1165 The full name for this projection is Vertical grid shift.
1166
1167 t_proj_vitk1
1168 Autogenerated transformation function for Proj4 projection code vitk1.
1169
1170 The full name for this projection is Vitkovsky I.
1171
1172 Projection Parameters
1173
1174 lat_1
1175 lat_2
1176
1177 t_proj_wag1
1178 Autogenerated transformation function for Proj4 projection code wag1.
1179
1180 The full name for this projection is Wagner I (Kavraisky VI).
1181
1182 t_proj_wag2
1183 Autogenerated transformation function for Proj4 projection code wag2.
1184
1185 The full name for this projection is Wagner II.
1186
1187 t_proj_wag3
1188 Autogenerated transformation function for Proj4 projection code wag3.
1189
1190 The full name for this projection is Wagner III.
1191
1192 Projection Parameters
1193
1194 lat_ts
1195
1196 t_proj_wag4
1197 Autogenerated transformation function for Proj4 projection code wag4.
1198
1199 The full name for this projection is Wagner IV.
1200
1201 t_proj_wag5
1202 Autogenerated transformation function for Proj4 projection code wag5.
1203
1204 The full name for this projection is Wagner V.
1205
1206 t_proj_wag6
1207 Autogenerated transformation function for Proj4 projection code wag6.
1208
1209 The full name for this projection is Wagner VI.
1210
1211 t_proj_wag7
1212 Autogenerated transformation function for Proj4 projection code wag7.
1213
1214 The full name for this projection is Wagner VII.
1215
1216 t_proj_webmerc
1217 Autogenerated transformation function for Proj4 projection code
1218 webmerc.
1219
1220 The full name for this projection is Web Mercator / Pseudo Mercator.
1221
1222 t_proj_weren
1223 Autogenerated transformation function for Proj4 projection code weren.
1224
1225 The full name for this projection is Werenskiold I.
1226
1227 t_proj_wink1
1228 Autogenerated transformation function for Proj4 projection code wink1.
1229
1230 The full name for this projection is Winkel I.
1231
1232 Projection Parameters
1233
1234 lat_ts
1235
1236 t_proj_wink2
1237 Autogenerated transformation function for Proj4 projection code wink2.
1238
1239 The full name for this projection is Winkel II.
1240
1241 Projection Parameters
1242
1243 lat_1
1244
1245 t_proj_wintri
1246 Autogenerated transformation function for Proj4 projection code wintri.
1247
1248 The full name for this projection is Winkel Tripel.
1249
1250 Projection Parameters
1251
1252 lat_1
1253
1255 Judd Taylor, Orbital Systems, Ltd. judd dot t at orbitalsystems dot
1256 com
1257
1258
1259
1260perl v5.28.1 2019-02-14 Proj4(3)