1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
|
/******************************************************************************
*
* Project: PROJ
* Purpose: Experimental C API
* Author: Even Rouault <even dot rouault at spatialys dot com>
*
******************************************************************************
* Copyright (c) 2018, Even Rouault <even dot rouault at spatialys dot com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "proj.h"
#ifndef PROJ_EXPERIMENTAL_H
#define PROJ_EXPERIMENTAL_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* \file proj_experimental.h
*
* Experimental C API.
*
* \warning
* This API has been considered now to be experimental, and may change or
* be removed in the future. It addresses for now the needs of the GDAL
* project to be able to construct CRS objects in a programmatic way, piece
* by piece, instead of whole conversion from PROJ string or WKT string.
*/
/* ------------------------------------------------------------------------- */
/* Binding in C of advanced methods from the C++ API */
/* */
/* Manual construction of CRS objects. */
/* ------------------------------------------------------------------------- */
/**
* \defgroup advanced_cpp_binding Binding in C of advanced methods from the C++ API
* @{
*/
/** Type of unit of measure. */
typedef enum
{
/** Angular unit of measure */
PJ_UT_ANGULAR,
/** Linear unit of measure */
PJ_UT_LINEAR,
/** Scale unit of measure */
PJ_UT_SCALE,
/** Time unit of measure */
PJ_UT_TIME,
/** Parametric unit of measure */
PJ_UT_PARAMETRIC
} PJ_UNIT_TYPE;
/** Axis description. */
typedef struct
{
/** Axis name. */
char* name;
/** Axis abbreviation. */
char* abbreviation;
/** Axis direction. */
char* direction;
/** Axis unit name. */
char* unit_name;
/** Conversion factor to SI of the unit. */
double unit_conv_factor;
/** Type of unit */
PJ_UNIT_TYPE unit_type;
} PJ_AXIS_DESCRIPTION;
PJ_OBJ PROJ_DLL *proj_obj_create_cs(PJ_CONTEXT *ctx,
PJ_COORDINATE_SYSTEM_TYPE type,
int axis_count,
const PJ_AXIS_DESCRIPTION* axis);
/** Type of Cartesian 2D coordinate system. */
typedef enum
{
/* Easting-Norting */
PJ_CART2D_EASTING_NORTHING,
/* Northing-Easting */
PJ_CART2D_NORTHING_EASTING,
/* North Pole Easting/SOUTH-Norting/SOUTH */
PJ_CART2D_NORTH_POLE_EASTING_SOUTH_NORTHING_SOUTH,
/* South Pole Easting/NORTH-Norting/NORTH */
PJ_CART2D_SOUTH_POLE_EASTING_NORTH_NORTHING_NORTH,
/* Westing-southing */
PJ_CART2D_WESTING_SOUTHING,
} PJ_CARTESIAN_CS_2D_TYPE;
PJ_OBJ PROJ_DLL *proj_obj_create_cartesian_2D_cs(PJ_CONTEXT *ctx,
PJ_CARTESIAN_CS_2D_TYPE type,
const char* unit_name,
double unit_conv_factor);
/** Type of Cartesian 2D coordinate system. */
typedef enum
{
/* Longitude-Latitude */
PJ_ELLPS2D_LONGITUDE_LATITUDE,
/* Latitude-Longitude */
PJ_ELLPS2D_LATITUDE_LONGITUDE,
} PJ_ELLIPSOIDAL_CS_2D_TYPE;
PJ_OBJ PROJ_DLL *proj_obj_create_ellipsoidal_2D_cs(PJ_CONTEXT *ctx,
PJ_ELLIPSOIDAL_CS_2D_TYPE type,
const char* unit_name,
double unit_conv_factor);
PJ_OBJ_LIST PROJ_DLL *proj_obj_query_geodetic_crs_from_datum(
PJ_CONTEXT *ctx,
const char *crs_auth_name,
const char *datum_auth_name,
const char *datum_code,
const char *crs_type);
PJ_OBJ PROJ_DLL *proj_obj_create_geographic_crs(
PJ_CONTEXT *ctx,
const char *crs_name,
const char *datum_name,
const char *ellps_name,
double semi_major_metre, double inv_flattening,
const char *prime_meridian_name,
double prime_meridian_offset,
const char *pm_angular_units,
double pm_units_conv,
PJ_OBJ* ellipsoidal_cs);
PJ_OBJ PROJ_DLL *proj_obj_create_geographic_crs_from_datum(
PJ_CONTEXT *ctx,
const char *crs_name,
PJ_OBJ* datum,
PJ_OBJ* ellipsoidal_cs);
PJ_OBJ PROJ_DLL *proj_obj_create_geocentric_crs(
PJ_CONTEXT *ctx,
const char *crs_name,
const char *datum_name,
const char *ellps_name,
double semi_major_metre, double inv_flattening,
const char *prime_meridian_name,
double prime_meridian_offset,
const char *angular_units,
double angular_units_conv,
const char *linear_units,
double linear_units_conv);
PJ_OBJ PROJ_DLL *proj_obj_create_geocentric_crs_from_datum(
PJ_CONTEXT *ctx,
const char *crs_name,
const PJ_OBJ* datum,
const char *linear_units,
double linear_units_conv);
PJ_OBJ PROJ_DLL *proj_obj_alter_name(PJ_CONTEXT *ctx,
const PJ_OBJ* obj, const char* name);
PJ_OBJ PROJ_DLL *proj_obj_crs_alter_geodetic_crs(PJ_CONTEXT *ctx,
const PJ_OBJ* obj,
const PJ_OBJ* new_geod_crs);
PJ_OBJ PROJ_DLL *proj_obj_crs_alter_cs_angular_unit(PJ_CONTEXT *ctx,
const PJ_OBJ* obj,
const char *angular_units,
double angular_units_conv);
PJ_OBJ PROJ_DLL *proj_obj_crs_alter_cs_linear_unit(PJ_CONTEXT *ctx,
const PJ_OBJ* obj,
const char *linear_units,
double linear_units_conv);
PJ_OBJ PROJ_DLL *proj_obj_crs_alter_parameters_linear_unit(PJ_CONTEXT *ctx,
const PJ_OBJ* obj,
const char *linear_units,
double linear_units_conv,
int convert_to_new_unit);
PJ_OBJ PROJ_DLL *proj_obj_create_engineering_crs(PJ_CONTEXT *ctx,
const char *crsName);
PJ_OBJ PROJ_DLL *proj_obj_create_vertical_crs(PJ_CONTEXT *ctx,
const char *crs_name,
const char *datum_name,
const char *linear_units,
double linear_units_conv);
PJ_OBJ PROJ_DLL *proj_obj_create_compound_crs(PJ_CONTEXT *ctx,
const char *crs_name,
PJ_OBJ* horiz_crs,
PJ_OBJ* vert_crs);
/** Description of a parameter value for a Conversion. */
typedef struct
{
/** Parameter name. */
const char* name;
/** Parameter authority name. */
const char* auth_name;
/** Parameter code. */
const char* code;
/** Parameter value. */
double value;
/** Name of unit in which parameter value is expressed. */
const char* unit_name;
/** Conversion factor to SI of the unit. */
double unit_conv_factor;
/** Type of unit */
PJ_UNIT_TYPE unit_type;
} PJ_PARAM_DESCRIPTION;
PJ_OBJ PROJ_DLL *proj_obj_create_conversion(PJ_CONTEXT *ctx,
const char* name,
const char* auth_name,
const char* code,
const char* method_name,
const char* method_auth_name,
const char* method_code,
int param_count,
const PJ_PARAM_DESCRIPTION* params);
PJ_OBJ PROJ_DLL *proj_obj_convert_conversion_to_other_method(PJ_CONTEXT *ctx,
const PJ_OBJ *conversion,
int new_method_epsg_code,
const char *new_method_name);
PJ_OBJ PROJ_DLL *proj_obj_create_projected_crs(PJ_CONTEXT *ctx,
const char* crs_name,
const PJ_OBJ* geodetic_crs,
const PJ_OBJ* conversion,
const PJ_OBJ* coordinate_system);
PJ_OBJ PROJ_DLL *proj_obj_crs_create_bound_crs(PJ_CONTEXT *ctx,
const PJ_OBJ *base_crs,
const PJ_OBJ *hub_crs,
const PJ_OBJ *transformation);
PJ_OBJ PROJ_DLL *proj_obj_crs_create_bound_crs_to_WGS84(PJ_CONTEXT *ctx,
const PJ_OBJ *crs,
const char *const *options);
/* BEGIN: Generated by scripts/create_c_api_projections.py*/
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_utm(
PJ_CONTEXT *ctx,
int zone,
int north);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_transverse_mercator(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_gauss_schreiber_transverse_mercator(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_transverse_mercator_south_oriented(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_two_point_equidistant(
PJ_CONTEXT *ctx,
double latitude_first_point,
double longitude_first_point,
double latitude_second_point,
double longitude_secon_point,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_tunisia_mapping_grid(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_albers_equal_area(
PJ_CONTEXT *ctx,
double latitude_false_origin,
double longitude_false_origin,
double latitude_first_parallel,
double latitude_second_parallel,
double easting_false_origin,
double northing_false_origin,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_conic_conformal_1sp(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_conic_conformal_2sp(
PJ_CONTEXT *ctx,
double latitude_false_origin,
double longitude_false_origin,
double latitude_first_parallel,
double latitude_second_parallel,
double easting_false_origin,
double northing_false_origin,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_conic_conformal_2sp_michigan(
PJ_CONTEXT *ctx,
double latitude_false_origin,
double longitude_false_origin,
double latitude_first_parallel,
double latitude_second_parallel,
double easting_false_origin,
double northing_false_origin,
double ellipsoid_scaling_factor,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_conic_conformal_2sp_belgium(
PJ_CONTEXT *ctx,
double latitude_false_origin,
double longitude_false_origin,
double latitude_first_parallel,
double latitude_second_parallel,
double easting_false_origin,
double northing_false_origin,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_azimuthal_equidistant(
PJ_CONTEXT *ctx,
double latitude_nat_origin,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_guam_projection(
PJ_CONTEXT *ctx,
double latitude_nat_origin,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_bonne(
PJ_CONTEXT *ctx,
double latitude_nat_origin,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_cylindrical_equal_area_spherical(
PJ_CONTEXT *ctx,
double latitude_first_parallel,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_cylindrical_equal_area(
PJ_CONTEXT *ctx,
double latitude_first_parallel,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_cassini_soldner(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_equidistant_conic(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double latitude_first_parallel,
double latitude_second_parallel,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_eckert_i(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_eckert_ii(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_eckert_iii(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_eckert_iv(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_eckert_v(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_eckert_vi(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_equidistant_cylindrical(
PJ_CONTEXT *ctx,
double latitude_first_parallel,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_equidistant_cylindrical_spherical(
PJ_CONTEXT *ctx,
double latitude_first_parallel,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_gall(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_goode_homolosine(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_interrupted_goode_homolosine(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_geostationary_satellite_sweep_x(
PJ_CONTEXT *ctx,
double center_long,
double height,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_geostationary_satellite_sweep_y(
PJ_CONTEXT *ctx,
double center_long,
double height,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_gnomonic(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_hotine_oblique_mercator_variant_a(
PJ_CONTEXT *ctx,
double latitude_projection_centre,
double longitude_projection_centre,
double azimuth_initial_line,
double angle_from_rectified_to_skrew_grid,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_hotine_oblique_mercator_variant_b(
PJ_CONTEXT *ctx,
double latitude_projection_centre,
double longitude_projection_centre,
double azimuth_initial_line,
double angle_from_rectified_to_skrew_grid,
double scale,
double easting_projection_centre,
double northing_projection_centre,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_hotine_oblique_mercator_two_point_natural_origin(
PJ_CONTEXT *ctx,
double latitude_projection_centre,
double latitude_point1,
double longitude_point1,
double latitude_point2,
double longitude_point2,
double scale,
double easting_projection_centre,
double northing_projection_centre,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_laborde_oblique_mercator(
PJ_CONTEXT *ctx,
double latitude_projection_centre,
double longitude_projection_centre,
double azimuth_initial_line,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_international_map_world_polyconic(
PJ_CONTEXT *ctx,
double center_long,
double latitude_first_parallel,
double latitude_second_parallel,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_krovak_north_oriented(
PJ_CONTEXT *ctx,
double latitude_projection_centre,
double longitude_of_origin,
double colatitude_cone_axis,
double latitude_pseudo_standard_parallel,
double scale_factor_pseudo_standard_parallel,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_krovak(
PJ_CONTEXT *ctx,
double latitude_projection_centre,
double longitude_of_origin,
double colatitude_cone_axis,
double latitude_pseudo_standard_parallel,
double scale_factor_pseudo_standard_parallel,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_lambert_azimuthal_equal_area(
PJ_CONTEXT *ctx,
double latitude_nat_origin,
double longitude_nat_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_miller_cylindrical(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_mercator_variant_a(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_mercator_variant_b(
PJ_CONTEXT *ctx,
double latitude_first_parallel,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_popular_visualisation_pseudo_mercator(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_mollweide(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_new_zealand_mapping_grid(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_oblique_stereographic(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_orthographic(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_american_polyconic(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_polar_stereographic_variant_a(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_polar_stereographic_variant_b(
PJ_CONTEXT *ctx,
double latitude_standard_parallel,
double longitude_of_origin,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_robinson(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_sinusoidal(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_stereographic(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double scale,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_van_der_grinten(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_i(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_ii(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_iii(
PJ_CONTEXT *ctx,
double latitude_true_scale,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_iv(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_v(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_vi(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_wagner_vii(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_quadrilateralized_spherical_cube(
PJ_CONTEXT *ctx,
double center_lat,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_spherical_cross_track_height(
PJ_CONTEXT *ctx,
double peg_point_lat,
double peg_point_long,
double peg_point_heading,
double peg_point_height,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
PJ_OBJ PROJ_DLL *proj_obj_create_conversion_equal_earth(
PJ_CONTEXT *ctx,
double center_long,
double false_easting,
double false_northing,
const char* ang_unit_name, double ang_unit_conv_factor,
const char* linear_unit_name, double linear_unit_conv_factor);
/* END: Generated by scripts/create_c_api_projections.py*/
/**@}*/
#ifdef __cplusplus
}
#endif
#endif /* ndef PROJ_EXPERIMENTAL_H */
|