├── .clang-format ├── .clang-tidy ├── .github └── workflows │ └── MainDistributionPipeline.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── benchmark ├── rtree_index.benchmark ├── rtree_noindex.benchmark ├── rtree_points_index.benchmark ├── rtree_points_noindex.benchmark └── test.benchmark ├── dist_join.sql ├── docs ├── example.md ├── functions.md └── internals.md ├── extension_config.cmake ├── generate_function_reference.py ├── scripts └── extension-upload.sh ├── src ├── sgl │ ├── .clang-format │ ├── .clang-tidy │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile │ ├── sgl.cpp │ ├── sgl.hpp │ └── sgl_test.cpp ├── spatial │ ├── CMakeLists.txt │ ├── geometry │ │ ├── CMakeLists.txt │ │ ├── bbox.hpp │ │ ├── geometry_processor.cpp │ │ ├── geometry_processor.hpp │ │ ├── geometry_properties.hpp │ │ ├── geometry_serialization.cpp │ │ ├── geometry_serialization.hpp │ │ ├── geometry_type.hpp │ │ ├── sgl.hpp │ │ ├── vertex.hpp │ │ ├── wkb_writer.cpp │ │ └── wkb_writer.hpp │ ├── index │ │ ├── CMakeLists.txt │ │ └── rtree │ │ │ ├── CMakeLists.txt │ │ │ ├── rtree.cpp │ │ │ ├── rtree.hpp │ │ │ ├── rtree_index.cpp │ │ │ ├── rtree_index.hpp │ │ │ ├── rtree_index_create_logical.cpp │ │ │ ├── rtree_index_create_logical.hpp │ │ │ ├── rtree_index_create_physical.cpp │ │ │ ├── rtree_index_create_physical.hpp │ │ │ ├── rtree_index_plan_scan.cpp │ │ │ ├── rtree_index_pragmas.cpp │ │ │ ├── rtree_index_scan.cpp │ │ │ ├── rtree_index_scan.hpp │ │ │ ├── rtree_module.hpp │ │ │ ├── rtree_node.hpp │ │ │ └── rtree_scanner.hpp │ ├── modules │ │ ├── CMakeLists.txt │ │ ├── gdal │ │ │ ├── CMakeLists.txt │ │ │ ├── gdal_module.cpp │ │ │ └── gdal_module.hpp │ │ ├── geos │ │ │ ├── CMakeLists.txt │ │ │ ├── geos_geometry.hpp │ │ │ ├── geos_module.cpp │ │ │ ├── geos_module.hpp │ │ │ ├── geos_serde.cpp │ │ │ └── geos_serde.hpp │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── spatial_functions.hpp │ │ │ ├── spatial_functions_aggregate.cpp │ │ │ ├── spatial_functions_cast.cpp │ │ │ ├── spatial_functions_scalar.cpp │ │ │ └── spatial_functions_table.cpp │ │ ├── mvt │ │ │ ├── CMakeLists.txt │ │ │ ├── mvt_module.cpp │ │ │ └── mvt_module.hpp │ │ ├── osm │ │ │ ├── CMakeLists.txt │ │ │ ├── osm_module.cpp │ │ │ └── osm_module.hpp │ │ ├── proj │ │ │ ├── CMakeLists.txt │ │ │ ├── memvfs.c │ │ │ ├── proj_db.c │ │ │ ├── proj_module.cpp │ │ │ └── proj_module.hpp │ │ └── shapefile │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── shapefile_module.cpp │ │ │ └── shapefile_module.hpp │ ├── operators │ │ ├── CMakeLists.txt │ │ ├── spatial_join_logical.cpp │ │ ├── spatial_join_logical.hpp │ │ ├── spatial_join_optimizer.cpp │ │ ├── spatial_join_optimizer.hpp │ │ ├── spatial_join_physical.cpp │ │ ├── spatial_join_physical.hpp │ │ ├── spatial_operator_extension.cpp │ │ └── spatial_operator_extension.hpp │ ├── spatial_extension.cpp │ ├── spatial_extension.hpp │ ├── spatial_geoarrow.cpp │ ├── spatial_geoarrow.hpp │ ├── spatial_types.cpp │ ├── spatial_types.hpp │ └── util │ │ ├── CMakeLists.txt │ │ ├── binary_reader.hpp │ │ ├── binary_writer.hpp │ │ ├── cursor.hpp │ │ ├── distance_extract.hpp │ │ ├── function_builder.cpp │ │ ├── function_builder.hpp │ │ ├── managed_collection.hpp │ │ ├── math.cpp │ │ └── math.hpp └── third_party │ ├── protozero │ └── include │ │ └── protozero │ │ ├── basic_pbf_builder.hpp │ │ ├── basic_pbf_writer.hpp │ │ ├── buffer_fixed.hpp │ │ ├── buffer_string.hpp │ │ ├── buffer_tmpl.hpp │ │ ├── buffer_vector.hpp │ │ ├── byteswap.hpp │ │ ├── config.hpp │ │ ├── data_view.hpp │ │ ├── exception.hpp │ │ ├── iterators.hpp │ │ ├── pbf_builder.hpp │ │ ├── pbf_message.hpp │ │ ├── pbf_reader.hpp │ │ ├── pbf_writer.hpp │ │ ├── types.hpp │ │ ├── varint.hpp │ │ └── version.hpp │ ├── shapelib │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE-MIT │ ├── dbfopen.c │ ├── safileio.c │ ├── sbnsearch.c │ ├── shapefil.h │ ├── shpopen.c │ └── shptree.c │ └── yyjson │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ └── yyjson.h │ └── yyjson.cpp ├── test ├── data │ ├── .gitignore │ ├── Makefile │ ├── amsterdam_roads.fgb │ ├── amsterdam_roads_50.geojson.gz │ ├── config_forest.json │ ├── config_roads.json │ ├── duckdb_v1_0_0.db │ ├── geoarrow-wkb.arrow │ ├── nyc_export │ │ ├── geo_export_42c9a823-5465-4f85-80b3-b294002094f2.cpg │ │ ├── geo_export_42c9a823-5465-4f85-80b3-b294002094f2.dbf │ │ ├── geo_export_42c9a823-5465-4f85-80b3-b294002094f2.prj │ │ ├── geo_export_42c9a823-5465-4f85-80b3-b294002094f2.shp │ │ └── geo_export_42c9a823-5465-4f85-80b3-b294002094f2.shx │ ├── nyc_taxi │ │ ├── taxi_zones │ │ │ ├── taxi_zones.dbf │ │ │ ├── taxi_zones.prj │ │ │ ├── taxi_zones.sbn │ │ │ ├── taxi_zones.sbx │ │ │ ├── taxi_zones.shp │ │ │ ├── taxi_zones.shp.xml │ │ │ └── taxi_zones.shx │ │ └── yellow_tripdata_2010-01-limit1mil.parquet │ ├── segments.parquet │ └── world-administrative-boundaries.geojson ├── python │ ├── README.md │ ├── conftest.py │ ├── rtree_fuzz.py │ └── test_geoarrow.py └── sql │ ├── export_import_csv.test │ ├── gdal │ ├── gdal_read.test │ ├── gdal_shapefile.test │ ├── gdal_vsi.test │ ├── st_read_gdb.test │ ├── st_read_order.test │ ├── st_read_xlsx.test │ ├── st_write_basic.test │ └── st_write_types.test │ ├── geoarrow.test │ ├── geometry │ ├── geometry_types.test │ ├── geometry_version.test │ ├── op_intersect.test │ ├── st_2d_fromwkb.test │ ├── st_affine.test │ ├── st_area.test │ ├── st_asgeojson.test │ ├── st_ashexwkb.test │ ├── st_assvg.test │ ├── st_astext.test │ ├── st_aswkb.test │ ├── st_azimuth.test │ ├── st_centroid.test │ ├── st_collect.test │ ├── st_collectionextract.test │ ├── st_dimension.test │ ├── st_disjoint.test │ ├── st_distance.test │ ├── st_distance_sphere.test │ ├── st_dump.test │ ├── st_endpoint.test │ ├── st_expand.test │ ├── st_extent.test │ ├── st_exteriorring.test │ ├── st_flipcoordinates.test │ ├── st_force.test │ ├── st_geomfromtext.test │ ├── st_geomfromwkb.test │ ├── st_has.test │ ├── st_hilbert.test │ ├── st_intersects_extent.test │ ├── st_isempty.test │ ├── st_length.test │ ├── st_lineinterpolatepoint.test │ ├── st_makebox2d.test │ ├── st_makeenvelope.test │ ├── st_makeline.test │ ├── st_makepoint.test │ ├── st_makepolygon.test │ ├── st_multi.test │ ├── st_ngeometries.test │ ├── st_ninteriorrings.test │ ├── st_npoints.test │ ├── st_perimeter.test │ ├── st_pointn.test │ ├── st_removerepeatedlines.test │ ├── st_startpoint.test │ └── st_xy.test │ ├── geos │ ├── centroid.test │ ├── equals.test │ ├── normalize.test │ ├── predicates.test │ ├── st_buffer.test │ ├── st_concavehull.test │ ├── st_isvalid.test │ ├── st_maximuminscribedcircle.test │ ├── st_minimumrotatedrectangle.test │ ├── st_polygonize.test │ ├── st_reverse.test │ └── st_voronoidiagram.test │ ├── index │ ├── rtree_basic.test │ ├── rtree_basic_data.test_slow │ ├── rtree_basic_points.test │ ├── rtree_block_reclaim.test_slow │ ├── rtree_conflict.test │ ├── rtree_crud.test │ ├── rtree_crud_noreinsert.test │ ├── rtree_dump.test │ ├── rtree_empty.test │ ├── rtree_filter_prune.test │ ├── rtree_filter_pullup.test │ ├── rtree_filter_pullup_2.test │ ├── rtree_insert.test │ ├── rtree_insert_empty.test │ ├── rtree_limits.test │ ├── rtree_multi.test │ ├── rtree_persistence.test │ ├── rtree_persistence_load.test │ ├── rtree_persistence_wal.test │ ├── rtree_projection.test │ ├── rtree_pushdown.test │ └── rtree_single.test │ ├── join │ ├── spatial_join_cte.test │ ├── spatial_join_empty.test │ ├── spatial_join_empty_build.test │ ├── spatial_join_expr.test │ ├── spatial_join_outer.test_slow │ ├── spatial_join_predicates.test │ ├── spatial_join_test.test_slow │ ├── spatial_join_test_2.test_slow │ └── spatial_join_test_3.test_slow │ ├── mvt │ ├── st_asmvt.test │ ├── st_asmvt_linestring.test │ └── st_tileenvelope.test │ ├── postgis │ ├── st_boundary.test │ ├── st_coverageunion.test │ ├── st_interpolatepoint.test │ ├── st_linelocatepoint.test │ ├── st_linemerge.test │ ├── st_locatealong.test │ ├── st_locatebetween.test │ ├── st_pointonsurface.test │ └── st_reduceprecision.test │ ├── proj.test │ ├── shapefile │ └── test_shapefile_read.test │ └── st_area_spheroid.test ├── vcpkg.json └── vcpkg_ports ├── gdal ├── cmake-project-include.cmake ├── duckdb_gdal_json.patch ├── duckdb_gdal_msys.patch ├── duckdb_gdal_remove_filehandler.patch ├── duckdb_gdal_windows_static.patch ├── find-link-libraries.patch ├── fix-gdal-target-interfaces.patch ├── libkml.patch ├── portfile.cmake ├── target-is-valid.patch ├── usage ├── vcpkg-cmake-wrapper.cmake └── vcpkg.json ├── proj ├── fix-proj4-targets-cmake.patch ├── fix-win-output-name.patch ├── portfile.cmake ├── remove-doc.patch ├── usage └── vcpkg.json └── sqlite3 ├── CMakeLists.txt ├── add-config-include.patch ├── fix-arm-uwp.patch ├── portfile.cmake ├── sqlite3-config.in.cmake ├── sqlite3-vcpkg-config.h.in ├── sqlite3.pc.in ├── usage └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/MainDistributionPipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/.github/workflows/MainDistributionPipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/rtree_index.benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/benchmark/rtree_index.benchmark -------------------------------------------------------------------------------- /benchmark/rtree_noindex.benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/benchmark/rtree_noindex.benchmark -------------------------------------------------------------------------------- /benchmark/rtree_points_index.benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/benchmark/rtree_points_index.benchmark -------------------------------------------------------------------------------- /benchmark/rtree_points_noindex.benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/benchmark/rtree_points_noindex.benchmark -------------------------------------------------------------------------------- /benchmark/test.benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/benchmark/test.benchmark -------------------------------------------------------------------------------- /dist_join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/dist_join.sql -------------------------------------------------------------------------------- /docs/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/docs/example.md -------------------------------------------------------------------------------- /docs/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/docs/functions.md -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/docs/internals.md -------------------------------------------------------------------------------- /extension_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/extension_config.cmake -------------------------------------------------------------------------------- /generate_function_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/generate_function_reference.py -------------------------------------------------------------------------------- /scripts/extension-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/scripts/extension-upload.sh -------------------------------------------------------------------------------- /src/sgl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/.clang-format -------------------------------------------------------------------------------- /src/sgl/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/.clang-tidy -------------------------------------------------------------------------------- /src/sgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/.gitignore -------------------------------------------------------------------------------- /src/sgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/CMakeLists.txt -------------------------------------------------------------------------------- /src/sgl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/Makefile -------------------------------------------------------------------------------- /src/sgl/sgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/sgl.cpp -------------------------------------------------------------------------------- /src/sgl/sgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/sgl.hpp -------------------------------------------------------------------------------- /src/sgl/sgl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/sgl/sgl_test.cpp -------------------------------------------------------------------------------- /src/spatial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/geometry/bbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/bbox.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/geometry_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/geometry_processor.cpp -------------------------------------------------------------------------------- /src/spatial/geometry/geometry_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/geometry_processor.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/geometry_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/geometry_properties.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/geometry_serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/geometry_serialization.cpp -------------------------------------------------------------------------------- /src/spatial/geometry/geometry_serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/geometry_serialization.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/geometry_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/geometry_type.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/sgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/sgl.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/vertex.hpp -------------------------------------------------------------------------------- /src/spatial/geometry/wkb_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/wkb_writer.cpp -------------------------------------------------------------------------------- /src/spatial/geometry/wkb_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/geometry/wkb_writer.hpp -------------------------------------------------------------------------------- /src/spatial/index/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/index/rtree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_create_logical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_create_logical.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_create_logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_create_logical.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_create_physical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_create_physical.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_create_physical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_create_physical.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_plan_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_plan_scan.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_pragmas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_pragmas.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_scan.cpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_index_scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_index_scan.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_module.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_node.hpp -------------------------------------------------------------------------------- /src/spatial/index/rtree/rtree_scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/index/rtree/rtree_scanner.hpp -------------------------------------------------------------------------------- /src/spatial/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/gdal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/gdal/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/gdal/gdal_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/gdal/gdal_module.cpp -------------------------------------------------------------------------------- /src/spatial/modules/gdal/gdal_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/gdal/gdal_module.hpp -------------------------------------------------------------------------------- /src/spatial/modules/geos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/geos/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/geos/geos_geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/geos/geos_geometry.hpp -------------------------------------------------------------------------------- /src/spatial/modules/geos/geos_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/geos/geos_module.cpp -------------------------------------------------------------------------------- /src/spatial/modules/geos/geos_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/geos/geos_module.hpp -------------------------------------------------------------------------------- /src/spatial/modules/geos/geos_serde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/geos/geos_serde.cpp -------------------------------------------------------------------------------- /src/spatial/modules/geos/geos_serde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/geos/geos_serde.hpp -------------------------------------------------------------------------------- /src/spatial/modules/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/main/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/main/spatial_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/main/spatial_functions.hpp -------------------------------------------------------------------------------- /src/spatial/modules/main/spatial_functions_aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/main/spatial_functions_aggregate.cpp -------------------------------------------------------------------------------- /src/spatial/modules/main/spatial_functions_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/main/spatial_functions_cast.cpp -------------------------------------------------------------------------------- /src/spatial/modules/main/spatial_functions_scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/main/spatial_functions_scalar.cpp -------------------------------------------------------------------------------- /src/spatial/modules/main/spatial_functions_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/main/spatial_functions_table.cpp -------------------------------------------------------------------------------- /src/spatial/modules/mvt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/mvt/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/mvt/mvt_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/mvt/mvt_module.cpp -------------------------------------------------------------------------------- /src/spatial/modules/mvt/mvt_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/mvt/mvt_module.hpp -------------------------------------------------------------------------------- /src/spatial/modules/osm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/osm/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/osm/osm_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/osm/osm_module.cpp -------------------------------------------------------------------------------- /src/spatial/modules/osm/osm_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/osm/osm_module.hpp -------------------------------------------------------------------------------- /src/spatial/modules/proj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/proj/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/proj/memvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/proj/memvfs.c -------------------------------------------------------------------------------- /src/spatial/modules/proj/proj_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/proj/proj_db.c -------------------------------------------------------------------------------- /src/spatial/modules/proj/proj_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/proj/proj_module.cpp -------------------------------------------------------------------------------- /src/spatial/modules/proj/proj_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/proj/proj_module.hpp -------------------------------------------------------------------------------- /src/spatial/modules/shapefile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/shapefile/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/modules/shapefile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/shapefile/README.md -------------------------------------------------------------------------------- /src/spatial/modules/shapefile/shapefile_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/shapefile/shapefile_module.cpp -------------------------------------------------------------------------------- /src/spatial/modules/shapefile/shapefile_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/modules/shapefile/shapefile_module.hpp -------------------------------------------------------------------------------- /src/spatial/operators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/operators/spatial_join_logical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_join_logical.cpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_join_logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_join_logical.hpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_join_optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_join_optimizer.cpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_join_optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_join_optimizer.hpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_join_physical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_join_physical.cpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_join_physical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_join_physical.hpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_operator_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_operator_extension.cpp -------------------------------------------------------------------------------- /src/spatial/operators/spatial_operator_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/operators/spatial_operator_extension.hpp -------------------------------------------------------------------------------- /src/spatial/spatial_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/spatial_extension.cpp -------------------------------------------------------------------------------- /src/spatial/spatial_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/spatial_extension.hpp -------------------------------------------------------------------------------- /src/spatial/spatial_geoarrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/spatial_geoarrow.cpp -------------------------------------------------------------------------------- /src/spatial/spatial_geoarrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/spatial_geoarrow.hpp -------------------------------------------------------------------------------- /src/spatial/spatial_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/spatial_types.cpp -------------------------------------------------------------------------------- /src/spatial/spatial_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/spatial_types.hpp -------------------------------------------------------------------------------- /src/spatial/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatial/util/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/binary_reader.hpp -------------------------------------------------------------------------------- /src/spatial/util/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/binary_writer.hpp -------------------------------------------------------------------------------- /src/spatial/util/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/cursor.hpp -------------------------------------------------------------------------------- /src/spatial/util/distance_extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/distance_extract.hpp -------------------------------------------------------------------------------- /src/spatial/util/function_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/function_builder.cpp -------------------------------------------------------------------------------- /src/spatial/util/function_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/function_builder.hpp -------------------------------------------------------------------------------- /src/spatial/util/managed_collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/managed_collection.hpp -------------------------------------------------------------------------------- /src/spatial/util/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/math.cpp -------------------------------------------------------------------------------- /src/spatial/util/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/spatial/util/math.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/basic_pbf_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/basic_pbf_builder.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/basic_pbf_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/basic_pbf_writer.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/buffer_fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/buffer_fixed.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/buffer_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/buffer_string.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/buffer_tmpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/buffer_tmpl.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/buffer_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/buffer_vector.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/byteswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/byteswap.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/config.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/data_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/data_view.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/exception.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/iterators.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/pbf_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/pbf_builder.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/pbf_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/pbf_message.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/pbf_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/pbf_reader.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/pbf_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/pbf_writer.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/types.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/varint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/varint.hpp -------------------------------------------------------------------------------- /src/third_party/protozero/include/protozero/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/protozero/include/protozero/version.hpp -------------------------------------------------------------------------------- /src/third_party/shapelib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/AUTHORS -------------------------------------------------------------------------------- /src/third_party/shapelib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/CMakeLists.txt -------------------------------------------------------------------------------- /src/third_party/shapelib/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/LICENSE-MIT -------------------------------------------------------------------------------- /src/third_party/shapelib/dbfopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/dbfopen.c -------------------------------------------------------------------------------- /src/third_party/shapelib/safileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/safileio.c -------------------------------------------------------------------------------- /src/third_party/shapelib/sbnsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/sbnsearch.c -------------------------------------------------------------------------------- /src/third_party/shapelib/shapefil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/shapefil.h -------------------------------------------------------------------------------- /src/third_party/shapelib/shpopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/shpopen.c -------------------------------------------------------------------------------- /src/third_party/shapelib/shptree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/shapelib/shptree.c -------------------------------------------------------------------------------- /src/third_party/yyjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/yyjson/CMakeLists.txt -------------------------------------------------------------------------------- /src/third_party/yyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/yyjson/LICENSE -------------------------------------------------------------------------------- /src/third_party/yyjson/include/yyjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/yyjson/include/yyjson.h -------------------------------------------------------------------------------- /src/third_party/yyjson/yyjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/src/third_party/yyjson/yyjson.cpp -------------------------------------------------------------------------------- /test/data/.gitignore: -------------------------------------------------------------------------------- 1 | amsterdam_roads_50.geojson -------------------------------------------------------------------------------- /test/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/Makefile -------------------------------------------------------------------------------- /test/data/amsterdam_roads.fgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/amsterdam_roads.fgb -------------------------------------------------------------------------------- /test/data/amsterdam_roads_50.geojson.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/amsterdam_roads_50.geojson.gz -------------------------------------------------------------------------------- /test/data/config_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/config_forest.json -------------------------------------------------------------------------------- /test/data/config_roads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/config_roads.json -------------------------------------------------------------------------------- /test/data/duckdb_v1_0_0.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/duckdb_v1_0_0.db -------------------------------------------------------------------------------- /test/data/geoarrow-wkb.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/geoarrow-wkb.arrow -------------------------------------------------------------------------------- /test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.dbf -------------------------------------------------------------------------------- /test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.prj -------------------------------------------------------------------------------- /test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.shp -------------------------------------------------------------------------------- /test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_export/geo_export_42c9a823-5465-4f85-80b3-b294002094f2.shx -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.dbf -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.prj -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.sbn -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.sbx -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.shp -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.shp.xml -------------------------------------------------------------------------------- /test/data/nyc_taxi/taxi_zones/taxi_zones.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/taxi_zones/taxi_zones.shx -------------------------------------------------------------------------------- /test/data/nyc_taxi/yellow_tripdata_2010-01-limit1mil.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/nyc_taxi/yellow_tripdata_2010-01-limit1mil.parquet -------------------------------------------------------------------------------- /test/data/segments.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/segments.parquet -------------------------------------------------------------------------------- /test/data/world-administrative-boundaries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/data/world-administrative-boundaries.geojson -------------------------------------------------------------------------------- /test/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/python/README.md -------------------------------------------------------------------------------- /test/python/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/python/conftest.py -------------------------------------------------------------------------------- /test/python/rtree_fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/python/rtree_fuzz.py -------------------------------------------------------------------------------- /test/python/test_geoarrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/python/test_geoarrow.py -------------------------------------------------------------------------------- /test/sql/export_import_csv.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/export_import_csv.test -------------------------------------------------------------------------------- /test/sql/gdal/gdal_read.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/gdal_read.test -------------------------------------------------------------------------------- /test/sql/gdal/gdal_shapefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/gdal_shapefile.test -------------------------------------------------------------------------------- /test/sql/gdal/gdal_vsi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/gdal_vsi.test -------------------------------------------------------------------------------- /test/sql/gdal/st_read_gdb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/st_read_gdb.test -------------------------------------------------------------------------------- /test/sql/gdal/st_read_order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/st_read_order.test -------------------------------------------------------------------------------- /test/sql/gdal/st_read_xlsx.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/st_read_xlsx.test -------------------------------------------------------------------------------- /test/sql/gdal/st_write_basic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/st_write_basic.test -------------------------------------------------------------------------------- /test/sql/gdal/st_write_types.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/gdal/st_write_types.test -------------------------------------------------------------------------------- /test/sql/geoarrow.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geoarrow.test -------------------------------------------------------------------------------- /test/sql/geometry/geometry_types.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/geometry_types.test -------------------------------------------------------------------------------- /test/sql/geometry/geometry_version.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/geometry_version.test -------------------------------------------------------------------------------- /test/sql/geometry/op_intersect.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/op_intersect.test -------------------------------------------------------------------------------- /test/sql/geometry/st_2d_fromwkb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_2d_fromwkb.test -------------------------------------------------------------------------------- /test/sql/geometry/st_affine.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_affine.test -------------------------------------------------------------------------------- /test/sql/geometry/st_area.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_area.test -------------------------------------------------------------------------------- /test/sql/geometry/st_asgeojson.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_asgeojson.test -------------------------------------------------------------------------------- /test/sql/geometry/st_ashexwkb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_ashexwkb.test -------------------------------------------------------------------------------- /test/sql/geometry/st_assvg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_assvg.test -------------------------------------------------------------------------------- /test/sql/geometry/st_astext.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_astext.test -------------------------------------------------------------------------------- /test/sql/geometry/st_aswkb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_aswkb.test -------------------------------------------------------------------------------- /test/sql/geometry/st_azimuth.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_azimuth.test -------------------------------------------------------------------------------- /test/sql/geometry/st_centroid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_centroid.test -------------------------------------------------------------------------------- /test/sql/geometry/st_collect.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_collect.test -------------------------------------------------------------------------------- /test/sql/geometry/st_collectionextract.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_collectionextract.test -------------------------------------------------------------------------------- /test/sql/geometry/st_dimension.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_dimension.test -------------------------------------------------------------------------------- /test/sql/geometry/st_disjoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_disjoint.test -------------------------------------------------------------------------------- /test/sql/geometry/st_distance.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_distance.test -------------------------------------------------------------------------------- /test/sql/geometry/st_distance_sphere.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_distance_sphere.test -------------------------------------------------------------------------------- /test/sql/geometry/st_dump.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_dump.test -------------------------------------------------------------------------------- /test/sql/geometry/st_endpoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_endpoint.test -------------------------------------------------------------------------------- /test/sql/geometry/st_expand.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_expand.test -------------------------------------------------------------------------------- /test/sql/geometry/st_extent.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_extent.test -------------------------------------------------------------------------------- /test/sql/geometry/st_exteriorring.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_exteriorring.test -------------------------------------------------------------------------------- /test/sql/geometry/st_flipcoordinates.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_flipcoordinates.test -------------------------------------------------------------------------------- /test/sql/geometry/st_force.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_force.test -------------------------------------------------------------------------------- /test/sql/geometry/st_geomfromtext.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_geomfromtext.test -------------------------------------------------------------------------------- /test/sql/geometry/st_geomfromwkb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_geomfromwkb.test -------------------------------------------------------------------------------- /test/sql/geometry/st_has.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_has.test -------------------------------------------------------------------------------- /test/sql/geometry/st_hilbert.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_hilbert.test -------------------------------------------------------------------------------- /test/sql/geometry/st_intersects_extent.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_intersects_extent.test -------------------------------------------------------------------------------- /test/sql/geometry/st_isempty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_isempty.test -------------------------------------------------------------------------------- /test/sql/geometry/st_length.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_length.test -------------------------------------------------------------------------------- /test/sql/geometry/st_lineinterpolatepoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_lineinterpolatepoint.test -------------------------------------------------------------------------------- /test/sql/geometry/st_makebox2d.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_makebox2d.test -------------------------------------------------------------------------------- /test/sql/geometry/st_makeenvelope.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_makeenvelope.test -------------------------------------------------------------------------------- /test/sql/geometry/st_makeline.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_makeline.test -------------------------------------------------------------------------------- /test/sql/geometry/st_makepoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_makepoint.test -------------------------------------------------------------------------------- /test/sql/geometry/st_makepolygon.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_makepolygon.test -------------------------------------------------------------------------------- /test/sql/geometry/st_multi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_multi.test -------------------------------------------------------------------------------- /test/sql/geometry/st_ngeometries.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_ngeometries.test -------------------------------------------------------------------------------- /test/sql/geometry/st_ninteriorrings.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_ninteriorrings.test -------------------------------------------------------------------------------- /test/sql/geometry/st_npoints.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_npoints.test -------------------------------------------------------------------------------- /test/sql/geometry/st_perimeter.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_perimeter.test -------------------------------------------------------------------------------- /test/sql/geometry/st_pointn.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_pointn.test -------------------------------------------------------------------------------- /test/sql/geometry/st_removerepeatedlines.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_removerepeatedlines.test -------------------------------------------------------------------------------- /test/sql/geometry/st_startpoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_startpoint.test -------------------------------------------------------------------------------- /test/sql/geometry/st_xy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geometry/st_xy.test -------------------------------------------------------------------------------- /test/sql/geos/centroid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/centroid.test -------------------------------------------------------------------------------- /test/sql/geos/equals.test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sql/geos/normalize.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/normalize.test -------------------------------------------------------------------------------- /test/sql/geos/predicates.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/predicates.test -------------------------------------------------------------------------------- /test/sql/geos/st_buffer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_buffer.test -------------------------------------------------------------------------------- /test/sql/geos/st_concavehull.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_concavehull.test -------------------------------------------------------------------------------- /test/sql/geos/st_isvalid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_isvalid.test -------------------------------------------------------------------------------- /test/sql/geos/st_maximuminscribedcircle.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_maximuminscribedcircle.test -------------------------------------------------------------------------------- /test/sql/geos/st_minimumrotatedrectangle.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_minimumrotatedrectangle.test -------------------------------------------------------------------------------- /test/sql/geos/st_polygonize.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_polygonize.test -------------------------------------------------------------------------------- /test/sql/geos/st_reverse.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_reverse.test -------------------------------------------------------------------------------- /test/sql/geos/st_voronoidiagram.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/geos/st_voronoidiagram.test -------------------------------------------------------------------------------- /test/sql/index/rtree_basic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_basic.test -------------------------------------------------------------------------------- /test/sql/index/rtree_basic_data.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_basic_data.test_slow -------------------------------------------------------------------------------- /test/sql/index/rtree_basic_points.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_basic_points.test -------------------------------------------------------------------------------- /test/sql/index/rtree_block_reclaim.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_block_reclaim.test_slow -------------------------------------------------------------------------------- /test/sql/index/rtree_conflict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_conflict.test -------------------------------------------------------------------------------- /test/sql/index/rtree_crud.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_crud.test -------------------------------------------------------------------------------- /test/sql/index/rtree_crud_noreinsert.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_crud_noreinsert.test -------------------------------------------------------------------------------- /test/sql/index/rtree_dump.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_dump.test -------------------------------------------------------------------------------- /test/sql/index/rtree_empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_empty.test -------------------------------------------------------------------------------- /test/sql/index/rtree_filter_prune.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_filter_prune.test -------------------------------------------------------------------------------- /test/sql/index/rtree_filter_pullup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_filter_pullup.test -------------------------------------------------------------------------------- /test/sql/index/rtree_filter_pullup_2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_filter_pullup_2.test -------------------------------------------------------------------------------- /test/sql/index/rtree_insert.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_insert.test -------------------------------------------------------------------------------- /test/sql/index/rtree_insert_empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_insert_empty.test -------------------------------------------------------------------------------- /test/sql/index/rtree_limits.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_limits.test -------------------------------------------------------------------------------- /test/sql/index/rtree_multi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_multi.test -------------------------------------------------------------------------------- /test/sql/index/rtree_persistence.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_persistence.test -------------------------------------------------------------------------------- /test/sql/index/rtree_persistence_load.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_persistence_load.test -------------------------------------------------------------------------------- /test/sql/index/rtree_persistence_wal.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_persistence_wal.test -------------------------------------------------------------------------------- /test/sql/index/rtree_projection.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_projection.test -------------------------------------------------------------------------------- /test/sql/index/rtree_pushdown.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_pushdown.test -------------------------------------------------------------------------------- /test/sql/index/rtree_single.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/index/rtree_single.test -------------------------------------------------------------------------------- /test/sql/join/spatial_join_cte.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_cte.test -------------------------------------------------------------------------------- /test/sql/join/spatial_join_empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_empty.test -------------------------------------------------------------------------------- /test/sql/join/spatial_join_empty_build.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_empty_build.test -------------------------------------------------------------------------------- /test/sql/join/spatial_join_expr.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_expr.test -------------------------------------------------------------------------------- /test/sql/join/spatial_join_outer.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_outer.test_slow -------------------------------------------------------------------------------- /test/sql/join/spatial_join_predicates.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_predicates.test -------------------------------------------------------------------------------- /test/sql/join/spatial_join_test.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_test.test_slow -------------------------------------------------------------------------------- /test/sql/join/spatial_join_test_2.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_test_2.test_slow -------------------------------------------------------------------------------- /test/sql/join/spatial_join_test_3.test_slow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/join/spatial_join_test_3.test_slow -------------------------------------------------------------------------------- /test/sql/mvt/st_asmvt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/mvt/st_asmvt.test -------------------------------------------------------------------------------- /test/sql/mvt/st_asmvt_linestring.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/mvt/st_asmvt_linestring.test -------------------------------------------------------------------------------- /test/sql/mvt/st_tileenvelope.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/mvt/st_tileenvelope.test -------------------------------------------------------------------------------- /test/sql/postgis/st_boundary.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_boundary.test -------------------------------------------------------------------------------- /test/sql/postgis/st_coverageunion.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_coverageunion.test -------------------------------------------------------------------------------- /test/sql/postgis/st_interpolatepoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_interpolatepoint.test -------------------------------------------------------------------------------- /test/sql/postgis/st_linelocatepoint.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_linelocatepoint.test -------------------------------------------------------------------------------- /test/sql/postgis/st_linemerge.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_linemerge.test -------------------------------------------------------------------------------- /test/sql/postgis/st_locatealong.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_locatealong.test -------------------------------------------------------------------------------- /test/sql/postgis/st_locatebetween.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_locatebetween.test -------------------------------------------------------------------------------- /test/sql/postgis/st_pointonsurface.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_pointonsurface.test -------------------------------------------------------------------------------- /test/sql/postgis/st_reduceprecision.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/postgis/st_reduceprecision.test -------------------------------------------------------------------------------- /test/sql/proj.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/proj.test -------------------------------------------------------------------------------- /test/sql/shapefile/test_shapefile_read.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/shapefile/test_shapefile_read.test -------------------------------------------------------------------------------- /test/sql/st_area_spheroid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/test/sql/st_area_spheroid.test -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg.json -------------------------------------------------------------------------------- /vcpkg_ports/gdal/cmake-project-include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/cmake-project-include.cmake -------------------------------------------------------------------------------- /vcpkg_ports/gdal/duckdb_gdal_json.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/duckdb_gdal_json.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/duckdb_gdal_msys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/duckdb_gdal_msys.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/duckdb_gdal_remove_filehandler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/duckdb_gdal_remove_filehandler.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/duckdb_gdal_windows_static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/duckdb_gdal_windows_static.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/find-link-libraries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/find-link-libraries.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/fix-gdal-target-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/fix-gdal-target-interfaces.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/libkml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/libkml.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/portfile.cmake -------------------------------------------------------------------------------- /vcpkg_ports/gdal/target-is-valid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/target-is-valid.patch -------------------------------------------------------------------------------- /vcpkg_ports/gdal/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/usage -------------------------------------------------------------------------------- /vcpkg_ports/gdal/vcpkg-cmake-wrapper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/vcpkg-cmake-wrapper.cmake -------------------------------------------------------------------------------- /vcpkg_ports/gdal/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/gdal/vcpkg.json -------------------------------------------------------------------------------- /vcpkg_ports/proj/fix-proj4-targets-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/proj/fix-proj4-targets-cmake.patch -------------------------------------------------------------------------------- /vcpkg_ports/proj/fix-win-output-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/proj/fix-win-output-name.patch -------------------------------------------------------------------------------- /vcpkg_ports/proj/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/proj/portfile.cmake -------------------------------------------------------------------------------- /vcpkg_ports/proj/remove-doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/proj/remove-doc.patch -------------------------------------------------------------------------------- /vcpkg_ports/proj/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/proj/usage -------------------------------------------------------------------------------- /vcpkg_ports/proj/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/proj/vcpkg.json -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/CMakeLists.txt -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/add-config-include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/add-config-include.patch -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/fix-arm-uwp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/fix-arm-uwp.patch -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/portfile.cmake -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/sqlite3-config.in.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/sqlite3-config.in.cmake -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/sqlite3-vcpkg-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/sqlite3-vcpkg-config.h.in -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/sqlite3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/sqlite3.pc.in -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/usage -------------------------------------------------------------------------------- /vcpkg_ports/sqlite3/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duckdb/duckdb-spatial/HEAD/vcpkg_ports/sqlite3/vcpkg.json --------------------------------------------------------------------------------