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 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
|
use v5.14;
use warnings;
# ABSTRACT: Foreign function interface to PROJ coordinate transformation software
package Geo::LibProj::FFI 1.01;
use FFI::Platypus 1.50;
use FFI::C 0.08;
use Convert::Binary::C 0.04;
use Exporter::Easy (TAGS => [
context => [qw(
proj_context_create
proj_context_destroy
proj_context_use_proj4_init_rules
)],
setup => [qw(
proj_create
proj_create_argv
proj_create_crs_to_crs
proj_create_crs_to_crs_from_pj
proj_normalize_for_visualization
proj_destroy
)],
area => [qw(
proj_area_create
proj_area_set_bbox
proj_area_destroy
)],
transform => [qw(
proj_trans
)],
error => [qw(
proj_context_errno
proj_errno
proj_errno_set
proj_errno_reset
proj_errno_restore
proj_errno_string
proj_context_errno_string
)],
logging => [qw(
proj_log_level
proj_log_func
)],
info => [qw(
proj_info
proj_pj_info
proj_grid_info
proj_init_info
)],
lists => [qw(
proj_list_operations
proj_list_ellps
proj_list_units
proj_list_angular_units
proj_list_prime_meridians
)],
distance => [qw(
proj_lp_dist
proj_lpz_dist
proj_xy_dist
proj_xyz_dist
proj_geod
)],
misc => [qw(
proj_coord
)],
const => [qw(
PJ_DEFAULT_CTX
PJ_LOG_NONE PJ_LOG_ERROR PJ_LOG_DEBUG PJ_LOG_TRACE PJ_LOG_TELL
PJ_FWD PJ_IDENT PJ_INV
)],
all => [qw(
:context
:setup
:area
:transform
:error
:logging
:info
:lists
:distance
:misc
:const
proj_cleanup
)],
]);
my $ffi = FFI::Platypus->new(
api => 2,
lang => 'C',
lib => [glob "/usr/lib/*/libproj.so.*"],
);
FFI::C->ffi($ffi);
my $c = Convert::Binary::C->new(Alignment => 0);
$ffi->load_custom_type('::StringPointer' => 'string_pointer');
# string* should also work, but doesn't in $ffi->cast
$ffi->load_custom_type('::StringArray' => 'string_array');
# string[] should also work, but causes strlen in proj_create_crs_to_crs_from_pj to segfault
# based on proj.h version 8.0.0
# ***************************************************************************
# Copyright (c) 2016, 2017, Thomas Knudsen / SDFE
# Copyright (c) 2018, Even Rouault
#
# 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 COORD 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.
# ***************************************************************************
# C API new generation
$ffi->type('opaque' => 'PJ_AREA');
# Data type for projection/transformation information
$ffi->type('opaque' => 'PJ'); # the PJ object herself
# Data types for list of operations, ellipsoids, datums and units used in PROJ.4
$c->parse(<<ENDC);
struct PJ_LIST {
const char *id; /* projection keyword */
void *(*proj)(void *); /* projection entry point */
const char * const *descr; /* description text */
};
ENDC
$ffi->custom_type( 'PJ_OPERATIONS' => {
native_to_perl => sub {
my ($ptr) = @_;
my $size = $c->sizeof('PJ_LIST');
my @list;
while () {
$ptr += $size;
my $item = $c->unpack('PJ_LIST', $ffi->cast( 'opaque' => "record($size)*", $ptr ));
last unless $item->{id};
$item->{id} = $ffi->cast( 'opaque' => 'string', $item->{id} );
$item->{descr} = $ffi->cast( 'opaque' => 'string_pointer', $item->{descr} );
push @list, $item;
}
return \@list;
},
});
sub _unpack_list {
my ($type, $ptr) = @_;
my $size = $c->sizeof($type);
my @list;
while () {
my $item = $c->unpack($type, $ffi->cast( 'opaque' => "record($size)*", $ptr ));
last unless $item->{id};
$item->{$_} = $ffi->cast( 'opaque' => 'string', $item->{$_} )
for grep { $c->typeof("$type.$_") eq 'char *' } keys %$item;
push @list, $item;
$ptr += $size;
}
return \@list;
}
$c->parse(<<ENDC);
struct PJ_ELLPS {
const char *id; /* ellipse keyword name */
const char *major; /* a= value */
const char *ell; /* elliptical parameter */
const char *name; /* comments */
};
ENDC
$ffi->custom_type( 'PJ_ELLPS' => {
native_to_perl => sub { _unpack_list(PJ_ELLPS => @_) },
});
$c->parse(<<ENDC);
struct PJ_UNITS {
const char *id; /* units keyword */
const char *to_meter; /* multiply by value to get meters */
const char *name; /* comments */
double factor; /* to_meter factor in actual numbers */
};
ENDC
$ffi->custom_type( 'PJ_UNITS' => {
native_to_perl => sub { _unpack_list(PJ_UNITS => @_) },
});
$c->parse(<<ENDC);
struct PJ_PRIME_MERIDIANS {
const char *id; /* prime meridian keyword */
const char *defn; /* offset from greenwich in DMS format. */
};
ENDC
$ffi->custom_type( 'PJ_PRIME_MERIDIANS' => {
native_to_perl => sub { _unpack_list(PJ_PRIME_MERIDIANS => @_) },
});
# Geodetic, mostly spatiotemporal coordinate types
{
package Geo::LibProj::FFI::PJ_XYZT 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ x y z t }) }
package Geo::LibProj::FFI::PJ_UVWT 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ u v w t })->uvwt }
package Geo::LibProj::FFI::PJ_LPZT 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ lam phi z t }) }
package Geo::LibProj::FFI::PJ_OPK 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ o p k 0 }) }
# Rotations: omega, phi, kappa
package Geo::LibProj::FFI::PJ_ENU 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ e n u 0 }) }
# East, North, Up
package Geo::LibProj::FFI::PJ_GEOD 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ s a1 a2 0 }) }
# Geodesic length, fwd azi, rev azi
}
# Classic proj.4 pair/triplet types - moved into the PJ_ name space
{
package Geo::LibProj::FFI::PJ_UV 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ u v 0 0 })->uv }
package Geo::LibProj::FFI::PJ_XY 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ x y 0 0 }) }
package Geo::LibProj::FFI::PJ_LP 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ lam phi 0 0 }) }
package Geo::LibProj::FFI::PJ_XYZ 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ x y z 0 }) }
package Geo::LibProj::FFI::PJ_UVW 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ u v w 0 })->uvw }
package Geo::LibProj::FFI::PJ_LPZ 1.01;
sub new { Geo::LibProj::FFI::PJ_COORD->_new($_[1], qw{ lam phi z 0 }) }
}
# Data type for generic geodetic 3D data plus epoch information
# Avoid preprocessor renaming and implicit type-punning: Use a union to make it explicit
{
# FFI::C::Union can't be passed by value due to limitations within
# FFI::Platypus. Workaround: Use a Record with some additional Perl
# glue. The performance may not be perfect, but seems satisfactory.
package Geo::LibProj::FFI::PJ_COORD 1.01;
use FFI::Platypus::Record;
record_layout_1(qw{ double[4] v });
# First and foremost, it really is "just 4 numbers in a vector"
# union members:
sub xyzt_x { shift->v(0, @_) }
sub xyzt_y { shift->v(1, @_) }
sub xyzt_z { shift->v(2, @_) }
sub xyzt_t { shift->v(3, @_) }
sub uvwt_u { shift->v(0, @_) }
sub uvwt_v { shift->v(1, @_) }
sub uvwt_w { shift->v(2, @_) }
sub uvwt_t { shift->v(3, @_) }
sub lpzt_lam { shift->v(0, @_) }
sub lpzt_phi { shift->v(1, @_) }
sub lpzt_z { shift->v(2, @_) }
sub lpzt_t { shift->v(3, @_) }
sub geod_s { shift->v(0, @_) }
sub geod_a1 { shift->v(1, @_) }
sub geod_a2 { shift->v(2, @_) }
sub opk_o { shift->v(0, @_) }
sub opk_p { shift->v(1, @_) }
sub opk_k { shift->v(2, @_) }
sub enu_e { shift->v(0, @_) }
sub enu_n { shift->v(1, @_) }
sub enu_u { shift->v(2, @_) }
sub xyz_x { shift->v(0, @_) }
sub xyz_y { shift->v(1, @_) }
sub xyz_z { shift->v(2, @_) }
sub uvw_u { shift->v(0, @_) }
sub uvw_v { shift->v(1, @_) }
sub uvw_w { shift->v(2, @_) }
sub lpz_lam { shift->v(0, @_) }
sub lpz_phi { shift->v(1, @_) }
sub lpz_z { shift->v(2, @_) }
sub xy_x { shift->v(0, @_) }
sub xy_y { shift->v(1, @_) }
sub uv_u { shift->v(0, @_) }
sub uv_v { shift->v(1, @_) }
sub lp_lam { shift->v(0, @_) }
sub lp_phi { shift->v(1, @_) }
# legacy support:
sub _new {
my ($class, $values, @params) = @_;
warnings::warnif_at_level( 'deprecated', 1, sprintf 'Creating %s values with new() is deprecated; use proj_coords() instead', caller =~ s/^.*://r );
$values //= {};
@params = map { $values->{$_} // 0 } @params;
return $class->new({ 'v' => \@params });
}
sub _set {
my ($self, $values, @params) = @_;
warnings::warnif_at_level( 'deprecated', 2, 'Setting PJ_COORD union members is deprecated; use proj_coords() instead' );
if (ref $values eq 'HASH') {
@params = map { $values->{$_} } @params;
}
else {
@params = map { eval "\$values->$_" } grep !/^0$/, @params; ## no critic (ProhibitStringyEval)
}
$self->v(\@params);
}
*warnings::warnif_at_level = sub { warnings::warnif(shift, pop) } if $^V lt v5.27;
# union members:
sub xyzt { $_[1] ? $_[0]->_set($_[1], qw{ x y z t }) : shift }
sub uvwt { $_[1] ? $_[0]->_set($_[1], qw{ u v w t }) : Geo::LibProj::FFI::PJ_UVWT->_new(shift) }
sub lpzt { $_[1] ? $_[0]->_set($_[1], qw{ lam phi z t }) : shift }
sub geod { $_[1] ? $_[0]->_set($_[1], qw{ s a1 a2 0 }) : shift }
sub opk { $_[1] ? $_[0]->_set($_[1], qw{ o p k 0 }) : shift }
sub enu { $_[1] ? $_[0]->_set($_[1], qw{ e n u 0 }) : shift }
sub xyz { $_[1] ? $_[0]->_set($_[1], qw{ x y z 0 }) : shift }
sub uvw { $_[1] ? $_[0]->_set($_[1], qw{ u v w 0 }) : Geo::LibProj::FFI::PJ_UVWT->_new(shift) }
sub lpz { $_[1] ? $_[0]->_set($_[1], qw{ lam phi z 0 }) : shift }
sub xy { $_[1] ? $_[0]->_set($_[1], qw{ x y 0 0 }) : shift }
sub uv { $_[1] ? $_[0]->_set($_[1], qw{ u v 0 0 }) : Geo::LibProj::FFI::PJ_UVWT->_new(shift) }
sub lp { $_[1] ? $_[0]->_set($_[1], qw{ lam phi 0 0 }) : shift }
# struct members:
# PJ_UV* need their own package due to name collisions.
# The other types are implemented by the PJ_COORD package.
sub x { shift->v(0, @_) }
sub lam { shift->v(0, @_) }
sub o { shift->v(0, @_) }
sub e { shift->v(0, @_) }
sub s { shift->v(0, @_) }
sub y { shift->v(1, @_) }
sub phi { shift->v(1, @_) }
sub p { shift->v(1, @_) }
sub n { shift->v(1, @_) }
sub a1 { shift->v(1, @_) }
sub z { shift->v(2, @_) }
sub k { shift->v(2, @_) }
sub u { shift->v(2, @_) }
sub a2 { shift->v(2, @_) }
sub t { shift->v(3, @_) }
package Geo::LibProj::FFI::PJ_UVWT;
sub _new { bless \$_[1], $_[0] }
sub u { ${shift()}->v( 0, @_ ) }
sub v { ${shift()}->v( 1, @_ ) }
sub w { ${shift()}->v( 2, @_ ) }
sub t { ${shift()}->v( 3, @_ ) }
}
$ffi->type('record(Geo::LibProj::FFI::PJ_COORD)' => 'PJ_COORD');
{
package Geo::LibProj::FFI::PJ_INFO 1.01;
use FFI::Platypus::Record;
record_layout_1(
int => 'major', # Major release number
int => 'minor', # Minor release number
int => 'patch', # Patch level
string => 'release', # Release info. Version + date
string => 'version', # Full version number
string => 'searchpath', # Paths where init and grid files are
# looked for. Paths are separated by
# semi-colons on Windows, and colons
# on non-Windows platforms.
opaque => 'paths',
size_t => 'path_count',
);
}
$ffi->type('record(Geo::LibProj::FFI::PJ_INFO)' => 'PJ_INFO');
{
package Geo::LibProj::FFI::PJ_PROJ_INFO 1.01;
use FFI::Platypus::Record;
record_layout_1(
string => 'id', # Name of the projection in question
string => 'description', # Description of the projection
string => 'definition', # Projection definition
int => 'has_inverse', # 1 if an inverse mapping exists, 0 otherwise
double => 'accuracy', # Expected accuracy of the transformation. -1 if unknown.
);
}
$ffi->type('record(Geo::LibProj::FFI::PJ_PROJ_INFO)' => 'PJ_PROJ_INFO');
{
package Geo::LibProj::FFI::PJ_GRID_INFO 1.01;
use FFI::Platypus::Record;
record_layout_1(
'string(32)' => 'gridname_NUL', # name of grid
'string(260)' => 'filename_NUL', # full path to grid
'string(8)' => 'format_NUL', # file format of grid
double => 'left', double => 'lower', # Coordinates of lower left corner
double => 'right', double => 'upper', # Coordinates of upper right corner
int => 'n_lon', int => 'n_lat', # Grid size
double => 'cs_lon', double => 'cs_lat', # Cell size of grid
);
sub gridname { my $s = shift->gridname_NUL; $s =~ s/\0+$//; $s }
sub filename { my $s = shift->filename_NUL; $s =~ s/\0+$//; $s }
sub format { my $s = shift->format_NUL; $s =~ s/\0+$//; $s }
sub lowerleft { Geo::LibProj::FFI::PJ_COORD->new({ v => [$_[0]->left, $_[0]->lower] }) }
sub upperright { Geo::LibProj::FFI::PJ_COORD->new({ v => [$_[0]->right, $_[0]->upper] }) }
}
$ffi->type('record(Geo::LibProj::FFI::PJ_GRID_INFO)' => 'PJ_GRID_INFO');
{
package Geo::LibProj::FFI::PJ_INIT_INFO 1.01;
use FFI::Platypus::Record;
record_layout_1(
'string(32)' => 'name_NUL', # name of init file
'string(260)' => 'filename_NUL', # full path to the init file.
'string(32)' => 'version_NUL', # version of the init file
'string(32)' => 'origin_NUL', # origin of the file, e.g. EPSG
'string(16)' => 'lastupdate_NUL', # Date of last update in YYYY-MM-DD format
);
sub name { my $s = shift->name_NUL; $s =~ s/\0+$//; $s }
sub filename { my $s = shift->filename_NUL; $s =~ s/\0+$//; $s }
sub version { my $s = shift->version_NUL; $s =~ s/\0+$//; $s }
sub origin { my $s = shift->origin_NUL; $s =~ s/\0+$//; $s }
sub lastupdate { my $s = shift->lastupdate_NUL; $s =~ s/\0+$//; $s }
}
$ffi->type('record(Geo::LibProj::FFI::PJ_INIT_INFO)' => 'PJ_INIT_INFO');
FFI::C->enum('PJ_LOG_LEVEL', [
[PJ_LOG_NONE => 0],
[PJ_LOG_ERROR => 1],
[PJ_LOG_DEBUG => 2],
[PJ_LOG_TRACE => 3],
[PJ_LOG_TELL => 4],
[PJ_LOG_DEBUG_MAJOR => 2], # for proj_api.h compatibility
[PJ_LOG_DEBUG_MINOR => 3], # for proj_api.h compatibility
], {rev => 'int'});
# The context type - properly namespaced synonym for pj_ctx
$ffi->type('opaque' => 'PJ_CONTEXT');
# A P I
# The objects returned by the functions defined in this section have minimal
# interaction with the functions of the
# iso19111_functions section, and vice versa. See its introduction
# paragraph for more details.
# Functionality for handling thread contexts
use constant PJ_DEFAULT_CTX => 0;
$ffi->attach( proj_context_create => [] => 'PJ_CONTEXT');
$ffi->attach( proj_context_destroy => ['PJ_CONTEXT'] => 'void');
$ffi->attach( proj_context_use_proj4_init_rules => [qw( PJ_CONTEXT int )] => 'void' );
# Manage the transformation definition object PJ
$ffi->attach( proj_create => [qw( PJ_CONTEXT string )] => 'PJ' );
$ffi->attach( proj_create_argv => [qw( PJ_CONTEXT int string_array )] => 'PJ');
$ffi->attach( proj_create_crs_to_crs => [qw( PJ_CONTEXT string string PJ_AREA )] => 'PJ');
$ffi->attach( proj_create_crs_to_crs_from_pj => [qw( PJ_CONTEXT PJ PJ PJ_AREA string_array )] => 'PJ', sub{
$_[0]->( @_[1..4], $_[5] || [] ); # StringArray won't accept NULL
});
$ffi->attach( proj_normalize_for_visualization => ['PJ_CONTEXT', 'PJ'] => 'PJ');
$ffi->attach( proj_destroy => ['PJ'] => 'void');
$ffi->attach( proj_area_create => [] => 'PJ_AREA');
$ffi->attach( proj_area_set_bbox => [qw( PJ_AREA double double double double )] => 'void');
$ffi->attach( proj_area_destroy => [qw( PJ_AREA )] => 'void');
# Apply transformation to observation - in forward or inverse direction
FFI::C->enum('PJ_DIRECTION', [
[PJ_FWD => 1], # Forward
[PJ_IDENT => 0], # Do nothing
[PJ_INV => -1], # Inverse
]);
$ffi->attach( proj_trans => ['PJ', 'PJ_DIRECTION', 'PJ_COORD'] => 'PJ_COORD');
# non-standard method (now discouraged; originally used by Perl cs2cs)
# (expects and returns a single point as array ref)
$ffi->attach( [proj_trans => '_trans'] => ['PJ', 'PJ_DIRECTION', 'PJ_COORD'] => 'PJ_COORD', sub {
my ($sub, $pj, $dir, $coord) = @_;
$sub->( $pj, $dir, proj_coord($coord->[0] // 0, $coord->[1] // 0, $coord->[2] // 0, $coord->[3] // 0) )->v;
});
# Initializers
$ffi->attach( proj_coord => [qw( double double double double )] => 'PJ_COORD');
# Geodesic distance between two points with angular 2D coordinates
$ffi->attach( proj_lp_dist => [qw( PJ PJ_COORD PJ_COORD )] => 'double');
# The geodesic distance AND the vertical offset
$ffi->attach( proj_lpz_dist => [qw( PJ PJ_COORD PJ_COORD )] => 'double');
# Euclidean distance between two points with linear 2D coordinates
$ffi->attach( proj_xy_dist => [qw( PJ_COORD PJ_COORD )] => 'double');
# Euclidean distance between two points with linear 3D coordinates
$ffi->attach( proj_xyz_dist => [qw( PJ_COORD PJ_COORD )] => 'double');
# Geodesic distance (in meter) + fwd and rev azimuth between two points on the ellipsoid
$ffi->attach( proj_geod => [qw( PJ PJ_COORD PJ_COORD )] => 'PJ_COORD');
# Set or read error level
$ffi->attach( proj_context_errno => ['PJ_CONTEXT'] => 'int');
$ffi->attach( proj_errno => ['PJ_CONTEXT'] => 'int');
$ffi->attach( proj_errno_set => ['PJ_CONTEXT', 'int'] => 'int');
$ffi->attach( proj_errno_reset => ['PJ_CONTEXT'] => 'int');
$ffi->attach( proj_errno_restore => ['PJ_CONTEXT', 'int'] => 'int');
$ffi->attach( proj_errno_string => ['int'] => 'string'); # deprecated. use proj_context_errno_string()
eval { $ffi->attach( proj_context_errno_string => ['PJ_CONTEXT', 'int'] => 'string'); 1 }
or do { *proj_context_errno_string = sub { proj_errno_string($_[1]); } };
$ffi->attach( proj_log_level => ['PJ_CONTEXT', 'PJ_LOG_LEVEL'] => 'PJ_LOG_LEVEL');
$ffi->attach( proj_log_func => ['PJ_CONTEXT', 'opaque', '(opaque,int,string)->void'] => 'void', sub {
my ($sub, $ctx, $app_data, $logf) = @_;
my $closure = $ffi->closure( $app_data ? sub {
my (undef, $level, $msg) = @_;
$logf->($app_data, $level, $msg);
} : $logf );
$closure->sticky;
$sub->($ctx, 0, $closure);
});
# Info functions - get information about various PROJ.4 entities
$ffi->attach( proj_info => [] => 'PJ_INFO');
$ffi->attach( proj_pj_info => ['PJ'] => 'PJ_PROJ_INFO');
$ffi->attach( proj_grid_info => ['string'] => 'PJ_GRID_INFO');
$ffi->attach( proj_init_info => ['string'] => 'PJ_INIT_INFO');
# List functions:
# Get lists of operations, ellipsoids, units and prime meridians.
$ffi->attach( proj_list_operations => [] => 'PJ_OPERATIONS');
$ffi->attach( proj_list_ellps => [] => 'PJ_ELLPS');
$ffi->attach( proj_list_units => [] => 'PJ_UNITS');
$ffi->attach( proj_list_angular_units => [] => 'PJ_UNITS');
$ffi->attach( proj_list_prime_meridians => [] => 'PJ_PRIME_MERIDIANS');
$ffi->attach( proj_cleanup => [] => 'void');
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Geo::LibProj::FFI - Foreign function interface to PROJ coordinate transformation software
=head1 VERSION
version 1.01
=head1 SYNOPSIS
use Geo::LibProj::FFI 0.05 qw(:all);
use Feature::Compat::Defer;
my $ctx = proj_context_create()
or die "Cannot create threading context";
defer { proj_context_destroy($ctx); }
my $pj = proj_create_crs_to_crs($ctx, "EPSG:25833", "EPSG:2198", undef)
or die "Cannot create proj";
defer { proj_destroy($pj); }
($easting, $northing) = ( 500_000, 6094_800 );
$a = proj_coord( $easting, $northing, 0, 'Inf' );
$b = proj_trans( $pj, PJ_FWD, $a );
printf "Target: easting %.2f, northing %.2f\n",
$b->enu_e, $b->enu_n;
See also the example script F<eg/pj_obs_api_mini_demo.pl>
in this distribution.
=head1 DESCRIPTION
This module is a foreign function interface to the
L<PROJ|https://proj.org/> coordinate transformation / projection library.
Please see the PROJ library's
L<C function reference|https://proj.org/development/reference/functions.html>
for further documentation. You should be able to use those
S<C functions> as if they were Perl.
L<Geo::LibProj::FFI> offers a large portion of the most commonly
used PROJ functions, but more could be added later.
If you need a function that isn't yet available in this module,
please open a GitHub issue with a description of your use case.
This module was originally written for PROJ S<version 8>.
It works with PROJ versions as old as 6.2.0, and up to and
including the most recent version.
=head1 FUNCTIONS
L<Geo::LibProj::FFI> currently offers the following functions.
Import all functions and constants by using the tag C<:all>.
=over
=item L<Threading contexts|https://proj.org/development/reference/functions.html#threading-contexts>
=over
=item * C<proj_context_create>
=item * C<proj_context_destroy>
=item * C<proj_context_use_proj4_init_rules>
=back
=item L<Transformation setup|https://proj.org/development/reference/functions.html#transformation-setup>
=over
=item * C<proj_create>
=item * C<proj_create_argv>
=item * C<proj_create_crs_to_crs>
=item * C<proj_create_crs_to_crs_from_pj>
=item * C<proj_normalize_for_visualization>
=item * C<proj_destroy>
=back
=item L<Area of interest|https://proj.org/development/reference/functions.html#area-of-interest>
=over
=item * C<proj_area_create>
=item * C<proj_area_set_bbox>
=item * C<proj_area_destroy>
=back
=item L<Coordinate transformation|https://proj.org/development/reference/functions.html#coordinate-transformation>
=over
=item * C<proj_trans>
=back
=item L<Error reporting|https://proj.org/development/reference/functions.html#error-reporting>
=over
=item * C<proj_context_errno>
=item * C<proj_errno>
=item * C<proj_errno_set>
=item * C<proj_errno_reset>
=item * C<proj_errno_restore>
=item * C<proj_errno_string>
=item * C<proj_context_errno_string>
=back
=item L<Logging|https://proj.org/development/reference/functions.html#logging>
=over
=item * C<proj_log_level>
=item * C<proj_log_func>
=back
=item L<Info functions|https://proj.org/development/reference/functions.html#info-functions>
=over
=item * C<proj_info>
=item * C<proj_pj_info>
=item * C<proj_grid_info>
=item * C<proj_init_info>
=back
=item L<Lists|https://proj.org/development/reference/functions.html#lists>
=over
=item * C<proj_list_operations>
=item * C<proj_list_ellps>
=item * C<proj_list_units>
=item * C<proj_list_angular_units>
=item * C<proj_list_prime_meridians>
=back
=item L<Distances|https://proj.org/development/reference/functions.html#distances>
=over
=item * C<proj_lp_dist>
=item * C<proj_lpz_dist>
=item * C<proj_xy_dist>
=item * C<proj_xyz_dist>
=item * C<proj_geod>
=back
=item L<Various|https://proj.org/development/reference/functions.html#various>
=over
=item * C<proj_coord>
=back
=item L<Cleanup|https://proj.org/development/reference/functions.html#cleanup>
=over
=item * C<proj_cleanup>
=back
=back
=head1 DATA TYPES
The PROJ library uses numerous composite data types to represent
coordinate tuples. The primary coordinate type,
L<C<PJ_COORD>|https://proj.org/en/9.3/development/reference/datatypes.html#c.PJ_COORD>,
is a C union that gets passed by value. This construct is
not well supported by L<FFI::Platypus>, which this module
relies on to make the PROJ library API available in Perl.
The workaround implemented here is to just use the array
C<v> internally and only model the union semantics using
object methods, which is slightly slower than direct member
access in C would be.
The method names are the combination of the names of the
C<PJ_COORD> union member and the individual struct member,
joined with an underscore. However, these methods will in
turn access the coordinate array by calling the C<v()>
method with the array index as argument. This extra method
call may cost performance if called in a tight loop.
So if speed is more important to you than readable code,
you should consider just calling C<v()> directly rather
than using the other named union/struct member methods.
$pj_coord = proj_coord( @coords );
@coords = $pj_coord->v->@*;
# Fast access to individual coordinate numbers:
$x = $pj_coord->v(0);
$y = $pj_coord->v(1);
# Access generic coordinates by named member methods:
($u, $v) = ( $c->uv_u, $c->uv_v );
($u, $v, $w) = ( $c->uvw_u, $c->uvw_v, $c->uvw_w );
($u, $v, $w, $t) = ( $c->uvwt_u, $c->uvwt_v, $c->uvwt_w, $c->uvwt_t );
# Access cartesian coordinates by named member methods:
($x, $y) = ( $c->xy_x, $c->xy_y );
($x, $y, $z) = ( $c->xyz_x, $c->xyz_y, $c->xyz_z );
($x, $y, $z, $t) = ( $c->xyzt_x, $c->xyzt_y, $c->xyzt_z, $c->xyzt_t );
# Access geodetic coordinates by named member methods:
($lamda, $phi) = ( $c->lp_lam, $c->lp_phi );
($lamda, $phi, $z) = ( $c->lpz_lam, $c->lpz_phi, $c->lpz_z );
($lamda, $phi, $z, $t) = ( $c->lpzt_lam, $c->lpzt_phi, $c->lpzt_z, $c->lpzt_t );
# Access ancillary data by named member methods:
($s, $az_fwd, $az_rev) = ( $c->geod_s, $c->geod_a1, $c->geod_a2 );
($omega, $phi, $kappa) = ( $c->opk_o, $c->opk_p, $c->opk_k );
($east, $north, $up) = ( $c->enu_e, $c->enu_n, $c->enu_u );
Modifying C<PJ_COORD> values is possible. All methods shown
above act as mutators if a new value is passed as an argument.
In the case of C<v()>, you can pass either an array reference
or two arguments representing the array index and the new
value, respectively.
$c = proj_coord( 0, 0, 0, 0 );
$c->v( [12, 34, 56] );
$c->v(1, 78);
$c->xy_x(99);
say join ' ', $c->v->@*; # 99 78 56 0
Creating new C<PJ_COORD> values should only be done with the
C<proj_coord()> function. Other ways to construct such values
may exist, but these must be considered implementation details
that are subject to change. The C<proj_coord()> function is
the only supported way to create C<PJ_COORD> values.
Before version 0.05 of L<Geo::LibProj::FFI>, C<PJ_COORD>
method names were joined with the arrow operator instead of
an underscore (C<< $c->xyz->x >> etc.). The old syntax is now
discouraged, but there are no immediate plans to remove it.
Data types other than C<PJ_COORD> are available as well.
Please see the
L<PROJ data type reference|https://proj.org/development/reference/datatypes.html>
for further documentation.
=head1 SEE ALSO
=over
=item * L<Geo::LibProj::cs2cs>
=item * L<Geo::Proj4>
=item * L<PDL::Transform::Proj4>
=item * PROJ C API Reference:
L<Data types|https://proj.org/development/reference/datatypes.html>,
L<Functions|https://proj.org/development/reference/functions.html>
=back
=head1 API LICENSE
The API this module gives access to is the C<proj.h> API,
which is available under the terms of the Expat MIT license.
Copyright (c) 2016, 2017, Thomas Knudsen / SDFE
Copyright (c) 2018, Even Rouault
The API designers didn't write this Perl module,
and the module author didn't design the API.
=head1 AUTHOR
Arne Johannessen (L<AJNN|https://metacpan.org/author/AJNN>)
=head1 CONTRIBUTOR
=for stopwords Andreas Vögele
Andreas Vögele <andreas@andreasvoegele.com>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2021-2025 by Arne Johannessen.
This is free software; you can redistribute it and/or modify it under
the terms of the Artistic License 2.0 or (at your option) the same terms
as the Perl 5 programming language system itself.
=cut
|