This commit is contained in:
Caleb Robinson 2021-01-20 23:17:41 -08:00 коммит произвёл GitHub
Родитель 6f9c9b8cd5
Коммит b63dd73b46
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 0 удалений

8
tests/test_fiona2.py Normal file
Просмотреть файл

@ -0,0 +1,8 @@
import fiona.transform
geom = {'type': 'Polygon', 'coordinates': [[(440115.0, 4317302.0), (446180.0, 4317302.0), (446180.0, 4309726.0), (440115.0, 4309726.0), (440115.0, 4317302.0)]]}
geom = fiona.transform.transform_geom("EPSG:26918", "EPSG:4326", geom)
print(geom)
# The expected result is approximately `{'type': 'Polygon', 'coordinates': [[(-75.69160116601654, 39.00268487761508), (-75.62156162389587, 39.00307904086472), (-75.62096527634455, 38.9348126572227), (-75.69093763250096, 38.93441944712403), (-75.69160116601654, 39.00268487761508)]]}`
assert geom["coordinates"][0][0] != (440115.0, 4317302.0)