karta icon indicating copy to clipboard operation
karta copied to clipboard

A tidy Python package for geospatial computation

Results 8 karta issues
Sort by recently updated
recently updated
newest added

Attempting to import `karta` ``` import karta ``` throws following TypeError: ``` TypeError: __init__() got an unexpected keyword argument 'enforce_poly_winding' ``` Looks like the `enforce_poly_winding` keyword arg was appropriately [removed...

Hi, i'm fully interested in use karta for read some files in .asc format, but when i try to install it i there is some problems with gdal library, i...

Property methods such as `Geometry.coordinates` assume that the coordinates should be returned in the current CRS. When this isn't the case, `Geometry.get_coordinates(crs=[...])` needs to be used instead. This seems to...

question
breaking

These methods are intended to provide an interface to CoordString data for functions on the C side, but they're slow. Performance improvements would reduce the temptation to use the CoordString...

enhancement

Tests that use ctypes to test functions implemented in C are failing on Appveyor: ``` python tests\runtests.py ..........EEE...............................................................................................................................................................E.................................sssss.ss.ss............................................................................................................................................................ ====================================================================== ERROR: test_bbox_intersection_area (rtree_tests.CRTreeTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "C:\projects\karta\tests\rtree_tests.py",...

bug
testing

Need to make sure that the C code (currently in the vector submodule) is getting tested adequately. Many functions don't expose a Python interface. Not sure how to work this...

critical
testing

Current intersection code is for the planar case, and in incorrect on a sphere/ellipsoid. An approach to solving the problem with gnomonic projections is described by Karney (2013), section 8.

Need to make sure the following work when vertices include points on either side of the dateline: - [x] azimuth - [x] distance - [x] area - [ ] intersection...