├── .gitignore ├── Cargo.toml ├── LICENSE.md ├── README.md ├── src ├── error.rs ├── lib.rs ├── test.rs └── unprocessed_series.rs └── test_data ├── cities.arrow ├── global_large_lakes.feature_collection.implicit_4326.json ├── lat_lon_countries.csv ├── stations.dbf ├── stations.prj ├── stations.shp ├── stations.shx ├── stations_shapefile.shp.zip ├── test_spatialite.sqlite └── us_states.feature_collection.implicit_4326.json /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/README.md -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/src/test.rs -------------------------------------------------------------------------------- /src/unprocessed_series.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/src/unprocessed_series.rs -------------------------------------------------------------------------------- /test_data/cities.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/cities.arrow -------------------------------------------------------------------------------- /test_data/global_large_lakes.feature_collection.implicit_4326.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/global_large_lakes.feature_collection.implicit_4326.json -------------------------------------------------------------------------------- /test_data/lat_lon_countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/lat_lon_countries.csv -------------------------------------------------------------------------------- /test_data/stations.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/stations.dbf -------------------------------------------------------------------------------- /test_data/stations.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/stations.prj -------------------------------------------------------------------------------- /test_data/stations.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/stations.shp -------------------------------------------------------------------------------- /test_data/stations.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/stations.shx -------------------------------------------------------------------------------- /test_data/stations_shapefile.shp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/stations_shapefile.shp.zip -------------------------------------------------------------------------------- /test_data/test_spatialite.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/test_spatialite.sqlite -------------------------------------------------------------------------------- /test_data/us_states.feature_collection.implicit_4326.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phayes/polars_gdal/HEAD/test_data/us_states.feature_collection.implicit_4326.json --------------------------------------------------------------------------------