mortie.convert
Address-space conversions between geographic coordinates, packed morton words,
UNIQ cell numbers and HEALPix NESTED ids — plus mort2bbox / mort2polygon,
which turn a word into a bounding box or a ring. Split out of mortie.tools by
domain (issue #159) so the Python surface mirrors the Rust tree
(geo2mort.rs, morton.rs, cell_geom.rs); the names stay flat on the package
(mortie.geo2mort, mortie.mort2polygon).
Every geographic entry point here takes a keyword-only latitude= argument.
Its default, "authalic", maps WGS84 geodetic latitude to authalic latitude
on the way into the spherical kernel and back on the way out, so cells are
equal-area on the ellipsoid; latitude="geodetic-spherical" is the pre-0.10
escape. The two conventions are non-corresponding partitions — see
specification.md §9. The
geodetic_to_authalic / authalic_to_geodetic pair below exposes that
latitude→latitude mapping on its own.
Address-space conversions between geographic, morton, UNIQ and HEALPix.
The X2Y family: :func:geo2mort / :func:mort2geo and :func:geo2uniq /
:func:uniq2geo across the geographic boundary, :func:norm2mort /
:func:mort2norm and :func:norm2uniq / :func:unique2parent across the
normalized-address boundary, and :func:mort2healpix out to NESTED cell ids.
:func:mort2bbox and :func:mort2polygon belong here too: from the caller's
side they turn a word into a bounding box or a ring, which is a conversion --
even though their kernels live in src_rust/src/cell_geom.rs rather than in
geo2mort.rs / morton.rs with the rest of this module's twins.
Split out of mortie.tools (issue #159) so the Python surface mirrors the
Rust tree's own decomposition. The names stay flat on the package
(mortie.geo2mort, mortie.mort2polygon): this module is where they live,
not how they are spelled.
geo2mort(lats, lons, order=None, points=None, *, latitude='authalic')
Compute morton indices from geographic coordinates.
The entire pipeline runs in Rust via the healpix crate — no
Python HEALPix backend is needed.
lat/lon inputs are treated as points by default (indeterminate
resolution, encoded at max precision), so a bare geo2mort(lats, lons)
returns order-29 Kind::Point words. Passing an explicit order asks
for an area cell at that resolution instead (points inferred
False). The two flags resolve as:
order=None, points=None(bare call) -> order-29 point words;- an explicit
orderwithpointsunset -> area cell atorder; points=True-> order-29 point words (order-29-only; an explicitorder != 29raisesValueError, matching :meth:MortonIndexArray.from_latlon);points=False-> area cell atorder(order=None-> 29).
Non-finite lat/lon encode to the reserved empty word 0 (base
cell 0 is the null sentinel) on both the area and point routes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lats
|
array - like
|
Latitude(s) in degrees. |
required |
lons
|
array - like
|
Longitude(s) in degrees. |
required |
order
|
int
|
HEALPix order (0-29). Defaults to 29. An explicit value implies an area
cell unless |
None
|
points
|
bool
|
Encode |
None
|
latitude
|
str
|
Latitude convention of the input (issue #186): |
'authalic'
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Packed |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in mortie/convert.py
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 | |
mort2geo(morton, *, latitude='authalic')
Convert morton index to lat/lon of pixel center.
This is the inverse of geo2mort, returning the center coordinates of the HEALPix cell identified by the morton index.
Mixed-order arrays are supported (issue #116): elements are grouped by
order (:func:orders_of), each group runs the uniform kernel, and the
results scatter back to input positions. Point words (spec §4) are order
29 by definition and group with order 29 — a point's location is exactly
what mort2geo returns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
morton
|
int or array - like
|
Morton index (mixed orders allowed). |
required |
latitude
|
str
|
Latitude convention of the returned coordinates (issue #186):
|
'authalic'
|
Returns:
| Name | Type | Description |
|---|---|---|
lat |
float or array
|
Latitude in degrees |
lon |
float or array
|
Longitude in degrees |
Source code in mortie/convert.py
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 | |
mort2bbox(morton, *, latitude='authalic')
Convert morton index to bounding box of the pixel.
For pixels touching the antimeridian, vertex longitudes at ±180° are normalized to use consistent representation based on hemisphere voting, preventing bbox misinterpretation as spanning the entire globe.
Mixed-order arrays are supported (issue #116): elements are grouped by
order (:func:orders_of), each group runs the uniform kernel, and the
results scatter back to input positions. Point words (spec §4) are order
29 by definition and group with order 29 — a point yields the bounding box
of its containing order-29 cell (the cell that contains the point), which
is exactly the bbox of the order-29 area word at the same location. A
group of points therefore covers a well-defined area, element by element.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
morton
|
int or array - like
|
Morton index (mixed orders allowed). |
required |
latitude
|
str
|
Latitude convention of the returned box (issue #186):
|
'authalic'
|
Returns:
| Name | Type | Description |
|---|---|---|
bbox |
dict or list of dicts
|
Bounding box in format suitable for STAC/CMR: {"west": min_lon, "south": min_lat, "east": max_lon, "north": max_lat} |
Source code in mortie/convert.py
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 | |
mort2polygon(morton, step=1, *, latitude='authalic')
Convert morton index to polygon representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
morton
|
int or array - like
|
Morton index. |
required |
step
|
int
|
Points per side for the cell boundary (default 1 = 4 corners). Use step=32 for 128 boundary points that accurately trace curved cell edges, important for polar cells where 4-corner polygons poorly approximate the true HEALPix boundary. |
1
|
latitude
|
str
|
Latitude convention of the returned ring (issue #186):
|
'authalic'
|
Returns:
| Name | Type | Description |
|---|---|---|
polygon |
list or list of lists
|
Polygon coordinates as [[lat, lon], ...] in standard geographic order. The polygon is closed (first point repeated at end). Note: Returns [lat, lon] pairs, NOT [lon, lat]. This is the standard geographic coordinate order used by most spatial analysis libraries. |
Notes
Polygons that touch the antimeridian (±180° longitude) are automatically normalized to use consistent longitude representation (-180 or +180) based on which hemisphere contains the majority of vertices. This prevents spatial libraries from misinterpreting touching polygons as crossing polygons.
Mixed-order arrays are supported (issue #116): elements are grouped by
order (:func:orders_of), each group runs the uniform kernel, and the
results scatter back to input positions (rings are 4step+1 vertices at
every order, so mixed orders do not change the output shape). Point words
(spec §4) are order 29 by definition and group with order 29 — a point
yields the polygon ring of its containing order-29 cell, exactly the ring
of the order-29 area* word at the same location.
Source code in mortie/convert.py
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 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 | |
mort2healpix(morton)
Convert morton index to HEALPix cell ID and order.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
morton
|
int or array - like
|
Morton index. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
cell_ids |
int or ndarray
|
HEALPix cell ID(s) in NESTED scheme |
order |
int
|
HEALPix order (resolution level) |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the words are at mixed orders (propagated from :func: |
Notes
The function converts morton indices to HEALPix NESTED scheme cell IDs. All input morton indices must be at the same order.
Examples:
>>> import mortie
>>> m = mortie.geo2mort(-80.0, 120.0, order=6)[0]
>>> cell_id, order = mortie.mort2healpix(m)
>>> print(f"HEALPix cell {cell_id} at order {order}")
HEALPix cell 37010 at order 6
Source code in mortie/convert.py
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 | |
mort2norm(morton)
Convert morton index back to normalized address and parent cell.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
morton
|
int or array - like
|
Packed morton word(s) ( |
required |
Returns:
| Name | Type | Description |
|---|---|---|
normed |
int or array
|
Normalized HEALPix address |
parent |
int or array
|
Parent base cell (0-11) |
order |
int or array
|
HEALPix order inferred from morton index |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the words are at mixed orders — the return contract carries a single
scalar order, so use :func: |
Notes
Empty input returns two empty int64 arrays and order == 0.
Source code in mortie/convert.py
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 | |
norm2mort(normed, parent, order)
Convert a normalized HEALPix address + base cell to a packed morton word.
The exact inverse of :func:mort2norm: mort2norm(norm2mort(n, p, o))
returns (n, p, o). Born order-29-native (issue #48) — there is no order
cap beyond the kernel's MAX_ORDER of 29. The returned uint64 is the
packed decimal_morton word (issue #58; the prefix is base+1, so bit 63
is set — a large unsigned value — for base cells 7-11), not the retired
decimal encoding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
normed
|
int or array
|
Normalized HEALPix address (the in-base z-order, |
required |
parent
|
int or array
|
Parent base cell (0-11). |
required |
order
|
int
|
HEALPix order (0-29). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
morton |
uint64 or ndarray
|
Packed morton word(s). |
Source code in mortie/convert.py
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 | |
geodetic_to_authalic(lats)
Convert WGS84 geodetic latitude(s) to authalic latitude (degrees).
The forward half of the issue #186 convention change: authalic latitude
substituted into the spherical HEALPix formulas makes mortie's cells
equal-area on the WGS84 ellipsoid by construction. The conversion is a
5-harmonic trigonometric series with coefficients derived from the pinned
WGS84 constants (a = 6378137, 1/f = 298.257223563); it is exact to
<= 1e-13 rad (~0.6 um on the ground). The equator and poles are fixed
points; the divergence peaks in the +/-45-degree band, where the authalic
latitude is ~0.12830 degrees (~14.26 km of meridian arc) closer to the
equator. Longitude is unaffected by the convention, so there is no
lons argument.
Every mortie entry point applies this conversion internally under its
default latitude="authalic"; this function is the standalone spelling
for callers who need the raw latitude mapping (e.g. to reproduce a
binning decision or to label an external dataset).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lats
|
float or array - like
|
Geodetic latitude(s) in degrees. |
required |
Returns:
| Type | Description |
|---|---|
float or ndarray
|
Authalic latitude(s) in degrees (scalar in -> scalar out). |
See Also
authalic_to_geodetic : the exact inverse.
Source code in mortie/convert.py
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 | |
authalic_to_geodetic(lats)
Convert authalic latitude(s) back to WGS84 geodetic latitude (degrees).
The inverse of :func:geodetic_to_authalic, exact to the same
<= 1e-13 rad series bound — see there for the convention background
(issue #186).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lats
|
float or array - like
|
Authalic latitude(s) in degrees. |
required |
Returns:
| Type | Description |
|---|---|
float or ndarray
|
Geodetic latitude(s) in degrees (scalar in -> scalar out). |
See Also
geodetic_to_authalic : the forward direction.
Source code in mortie/convert.py
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 | |
!!! note "Not yet documented here"
The UNIQ helpers (`geo2uniq`, `norm2uniq`, `uniq2geo`, `unique2parent`) are
omitted while their signatures are in flux — see
[issue #136](https://github.com/espg/mortie/issues/136). `heal_norm` is
omitted because it is being removed under
[PR #130](https://github.com/espg/mortie/pull/130).