Skip to main content

coordTransform

coordTransform 坐标转换模块用于百度坐标系(bd09)、火星坐标系(国测局坐标系、gcj02)、WGS84坐标系的相互转换。

主流地图使用坐标系

  • 百度地图:bd09
  • 高德地图、谷歌地图(国内):gcj02
  • 高德地图、谷歌地图(国外):wgs84
  • GPS原始坐标:wgs84

安装说明

pip install coordTransform

使用说明

import coordTransform as ct

lng = 128.543
lat = 37.065

#火星坐标系->百度坐标系
result1 = ct.gcj02_to_bd09(lng, lat)
#百度坐标系->火星坐标系
result2 = ct.bd09_to_gcj02(lng, lat)
#WGS84坐标系->火星坐标系
result3 = ct.wgs84_to_gcj02(lng, lat)
#火星坐标系->WGS84坐标系
result4 = ct.gcj02_to_wgs84(lng, lat)
#百度坐标系->WGS84坐标系
result5 = ct.bd09_to_wgs84(lng, lat)
#WGS84坐标系->百度坐标系
result6 = ct.wgs84_to_bd09(lng, lat)

print (result1, result2, result3, result4, result5, result6)

批量调用

当输入为批量数据时,Python 侧会自动调用 C 批量实现(若已编译),单点调用仍走纯 Python 版本。

# lngs/lats 并行列表或 numpy 数组
lngs = [116.404, 117.2]
lats = [39.915, 31.23]
out_lngs, out_lats = ct.wgs84_to_gcj02(lngs, lats)

# 点对列表 (lng, lat)
points = [(116.404, 39.915), (117.2, 31.23)]
out_points = ct.wgs84_to_gcj02(points)

坐标系简介

  • WGS-84原始坐标系,一般用国际GPS纪录仪记录下来的经纬度,通过GPS定位拿到的原始经纬度,Google和高德地图定位的的经纬度(国外)都是基于WGS-84坐标系的;但是在国内是不允许直接用WGS84坐标系标注的,必须经过加密后才能使用。
  • GCJ-02坐标系,又名“火星坐标系”,是我国国测局独创的坐标体系,由WGS-84加密而成,在国内,必须至少使用GCJ-02坐标系,或者使用在GCJ-02加密后再进行加密的坐标系,如百度坐标系。高德和Google在国内都是使用GCJ-02坐标系,可以说,GCJ-02是国内最广泛使用的坐标系。
  • 百度坐标系:bd-09,百度坐标系是在GCJ-02坐标系的基础上再次加密偏移后形成的坐标系,只适用于百度地图。

Release files for coordTransform 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for coordTransform 0.2.1
File Size Uploaded
coordtransform-0.2.1.tar.gz 11.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for coordTransform 0.2.1
File
coordtransform-0.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
coordtransform-0.2.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
coordtransform-0.2.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
coordtransform-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
coordtransform-0.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
coordtransform-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
coordtransform-0.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
coordtransform-0.2.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
coordtransform-0.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
coordtransform-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
coordtransform-0.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
coordtransform-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
coordtransform-0.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
coordtransform-0.2.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
coordtransform-0.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
coordtransform-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
coordtransform-0.2.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
coordtransform-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
coordtransform-0.2.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
coordtransform-0.2.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
coordtransform-0.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
coordtransform-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
coordtransform-0.2.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
coordtransform-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
coordtransform-0.2.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
coordtransform-0.2.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
coordtransform-0.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
coordtransform-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
coordtransform-0.2.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
coordtransform-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 793.8 kB

Release files / coordtransform-0.2.1.tar.gz

Download URL coordtransform-0.2.1.tar.gz
Size 11.0 kB
Tags Source
SHA-256 checksum
How to use checksums
0c89eb027f2b3d8b8e462ddb6d8ac95de873757ef9b99b187d49dec9342b9a9d
BLAKE2b-256 checksum
How to use checksums
30c9c8409b5de4cd090aaf03a044c18d0421bdb90d2caf2a90fdeca51101eada
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp312-cp312-win_amd64.whl

Download URL coordtransform-0.2.1-cp312-cp312-win_amd64.whl
Size 20.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3a7767285c512d00c7cd2fe1466002c61328f92a65e3cb583971ab21cb257134
BLAKE2b-256 checksum
How to use checksums
50675b3a64785070d37bcf2e7084e04ab3e91d4887d2abd5ff10628d426706b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp312-cp312-win32.whl

Download URL coordtransform-0.2.1-cp312-cp312-win32.whl
Size 18.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
2630e24777d041ee1ee09b46915f43887b0009376dd7c59d05ab46565ffeb2ca
BLAKE2b-256 checksum
How to use checksums
99a2b34b6d84b38f0d650d3a0d79f801d9a7e18f0abb3ed87ee70fc623c04aaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL coordtransform-0.2.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 44.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
df19a68e4830f3dfad397350c69d3213ec26fdc9a4be08640220dd6d8d8aa9a6
BLAKE2b-256 checksum
How to use checksums
a2359e7e1b1e6363e516a6bbc1aacb1610553c1906a153d2f82c63f18edcb08b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL coordtransform-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 40.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
290c128bbf5b84197ef3a49091dc8f1dfcd785b966d4251c87fc2d3e76ca3510
BLAKE2b-256 checksum
How to use checksums
1df7ae885c0ce785b28282c30ae4ead2c2d4054b4c7290b336eed1ae50b9d159
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL coordtransform-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 17.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
42fc4b8fb46870c34b6a58fb1591328b2588124800d54b64ca865efc21964f61
BLAKE2b-256 checksum
How to use checksums
526720e7738aabd17aa900454a4e68cc88609488ebd2eba8a67f4dae744db8d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL coordtransform-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 17.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5f83888428451aa4035f545f187d77c449467df25dd74fcd9249e303137e9b6d
BLAKE2b-256 checksum
How to use checksums
1abecffb00a2172470a82f489df967a1a6979149ab4bd39cebe011ca06c1ade6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp311-cp311-win_amd64.whl

Download URL coordtransform-0.2.1-cp311-cp311-win_amd64.whl
Size 20.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
822b604869ad91fe201645afe4fb00d09063caca4a757957ba7c0fbee244e69b
BLAKE2b-256 checksum
How to use checksums
d4b1f4a0ee1cf0964d070d971fdb0f73524af80eb0237d93a2916a6e7eb55c7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp311-cp311-win32.whl

Download URL coordtransform-0.2.1-cp311-cp311-win32.whl
Size 18.7 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
189657b96b5830526d3a4c27f484f539ebb9a4b607b36c9a4a9ea0b1e4ce2a5a
BLAKE2b-256 checksum
How to use checksums
41e07a101932e4fc94e730988221e217c9c307dc7d674660e79fe6caceb175a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL coordtransform-0.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 44.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
149f003556c5cb921053673f0cd23f4c75ca89044e9e2df753dfcd884413d9df
BLAKE2b-256 checksum
How to use checksums
4cbe462f3239b22cefea45df0fea0d0c550ddda2b7f8c27b7c91fbf53489a025
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL coordtransform-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 40.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4195227af9baa690a53ed291b591df45b3f148a8a1e9ee3b6ce38f6c17629895
BLAKE2b-256 checksum
How to use checksums
ef92f7f22e90cb0c2b319d411a347a4b4c10f4981cbc1d91771e3972af5faead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL coordtransform-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 17.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6b906b3014ad7bc6478c8cac9d4519083ec9d3464e98f083f55774ee8669508c
BLAKE2b-256 checksum
How to use checksums
4e6e676a8c9f870da590b875e1f77bf705e00867b1edde7a72dfb5381e00819b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL coordtransform-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 17.1 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ba6f9327e056c68d4a476d5a8908a4cdb2032742c429703de0a37719975978f3
BLAKE2b-256 checksum
How to use checksums
6399209da88a78cd80c5be4a09e9561d4e14a89e578c710e8a62ee6b4edd3dee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp310-cp310-win_amd64.whl

Download URL coordtransform-0.2.1-cp310-cp310-win_amd64.whl
Size 20.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c03d0e88ab398864a84695d1edad286511180e57d988b6ec4651416b493435fd
BLAKE2b-256 checksum
How to use checksums
cff6ce3b48e0989feb0196e1cae829c9b99fe640337f2c413622f51eab9a2b79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp310-cp310-win32.whl

Download URL coordtransform-0.2.1-cp310-cp310-win32.whl
Size 18.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
4f88bc024aa696f204308cf4b56baea05c5ecb628286ca708dc486f2de3f93ec
BLAKE2b-256 checksum
How to use checksums
107e338632f4c1bf273fe957f5a7afdff9a09885a7208bc086284d7f27cb39b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL coordtransform-0.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 42.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
384d615815c6e9d073b4b97cec5653dba15db21b7dfd95adfd9a0aefebbee0e4
BLAKE2b-256 checksum
How to use checksums
303e4e0fcd899e2b825a58a35649cfcd84366e7c624ffc20b3ce12a231969526
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL coordtransform-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 39.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
73471ecceeddaaf6731cb2f6d958507ceb29d407bbe03700da0e251356998f8f
BLAKE2b-256 checksum
How to use checksums
69be6592d519cd26349c2751d9ce0dbccf676afa59b45c268c9ee2ac2890dc20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL coordtransform-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Size 17.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d6d9a2c2efaaa49243f056ee87f2843f03687ef3ee008727c2e1c27f24b52486
BLAKE2b-256 checksum
How to use checksums
ecf339c6274ff96d10726bb202c2afa083c1aeae421b4bc3ae2a28cf4c948d5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL coordtransform-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 17.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a04fbd91665092e6a139e3327e29e199eb7a80d456ba39daf0b7d6172971de85
BLAKE2b-256 checksum
How to use checksums
bc5d0a19da0fbfcbc1abc588834a2ad46815de8b25059d8889428f671b87897e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp39-cp39-win_amd64.whl

Download URL coordtransform-0.2.1-cp39-cp39-win_amd64.whl
Size 20.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
92484b85907ec38a621d0c9135533c62849be6553ad6c27b9dcce4913fb4c8b7
BLAKE2b-256 checksum
How to use checksums
6a2eb86877db739075d63d839099530dc816c01b4907e3346e0c7951fe656f3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp39-cp39-win32.whl

Download URL coordtransform-0.2.1-cp39-cp39-win32.whl
Size 18.7 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
5a95cc26ead181ce8cc0625c0b4f5e74d859eac0b9c06a408f05bcf1b8311e80
BLAKE2b-256 checksum
How to use checksums
834767a75f1e6e8fa053844e59efbbc50bb0b20b447f4c2865a0a381a0f17cd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL coordtransform-0.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 42.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5d0589fea8a7da59885f9bbfa4232cb2d0163b5e2cf0791339bebec537c9eef3
BLAKE2b-256 checksum
How to use checksums
4122e529d1913e390807c1ddf476db3e4e8fd22e10aef66f658a991a1dd332d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL coordtransform-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 39.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
96d1f1946a688cadfc8793eeb1c8773acadc618ae75e5fd1e607f8bfe2e88ac3
BLAKE2b-256 checksum
How to use checksums
9a967adad102c56018c5e228bc09e16218b196d42dae0793600aa4bbe5d29543
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL coordtransform-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Size 17.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
db98c37117c51e6740fee9bd58428274c009baec791433c83f5ede08a740b8d1
BLAKE2b-256 checksum
How to use checksums
ebd257a14b410fc98fa90ad92afe08535e0ab5f85e40482648fbd9f3c2b54fa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL coordtransform-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 17.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
cfc0dfd99ccf5e563f6d7ad3524d32d698a4adac0380aadc2ed76798021a8424
BLAKE2b-256 checksum
How to use checksums
2cc6af36144c56c2ce6a12cedd1c186bf7ff067635c16f77de78c3b12f6ca2f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp38-cp38-win_amd64.whl

Download URL coordtransform-0.2.1-cp38-cp38-win_amd64.whl
Size 20.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
d8c3baccecae049002a31ec382609eb5781a10d3db9e2e660c49d4bcdc8c8622
BLAKE2b-256 checksum
How to use checksums
e22c851ccd776add1d45305893407b45be94bef77d20aa6fccdecb0bff9daae8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp38-cp38-win32.whl

Download URL coordtransform-0.2.1-cp38-cp38-win32.whl
Size 18.6 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
75e80c6f01e810befb07f53256cac4cdadba51588861ace462fe8f9d6bedc35c
BLAKE2b-256 checksum
How to use checksums
0e556cb071018e6fbfa5cfd41162917f1c98a500cc4855763136e3463a77259b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL coordtransform-0.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 43.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c84f7fbe9147e6eb6d198f947254b5d60617b72e56466c359f1274c449e6847f
BLAKE2b-256 checksum
How to use checksums
ac1bf3eb28449877ab1045217e5f7fa1e7688ba7ef7065234b392ea01a1dbe13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL coordtransform-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 40.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9ad6a52e88261db85d38baa83f3541d9e49153c385a3a40d668a7f7fb7b58251
BLAKE2b-256 checksum
How to use checksums
b0fb68a4ba3faf8778508283325fa9a4b758271b0e49daf14045ba24a627247c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL coordtransform-0.2.1-cp38-cp38-macosx_11_0_arm64.whl
Size 16.7 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e9ea3cf4142c39838d19e57664e17bb14b951c3e58e1314e1ebc0e9c1837094b
BLAKE2b-256 checksum
How to use checksums
5e8a342a6b710a71b603cde96309dc0a5151c2ecf6bd6365d15f461d17df1893
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / coordtransform-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL coordtransform-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 16.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3b00c6fbb5ad1bc72c5c8e5c30743073be9a63ee8df39e124faaaedebda3876a
BLAKE2b-256 checksum
How to use checksums
366b2dcbae28eb6db1a27e3db65a58d02b36f607755101a3485bf0ed54e2e828
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release history Release notifications | RSS feed

This release

0.2.1 This release

31 release files

0.2.0

31 release files

0.1.3

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page