标签: python encoding coordinates z-order-curve space-filling-curve
我想知道如何交错浮动坐标。 This website描述了如何进行交织部分,但这仅适用于整数。
我尝试了以下方法:
lat = 5.01,lng = 6.01 newLat =(5.01 + 90)* 100 newLng =(6.01 + 180)* 100
lat = 5.01,lng = 6.01
newLat =(5.01 + 90)* 100
newLng =(6.01 + 180)* 100
但是它似乎没有正确的位序列。有人知道将lat和lng表示为32位序列的更好方法吗?