-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for geospatial data in PostgreSQL #723
Comments
For clarity, this is for PostGIS's geometry type and not anything for Postgres's geometric types. What version of PostGIS are you throwing your queries at? |
Correct. The version my team is using is PostGIS version 3.1.4. We are trying to handle large datasets of geospatial data and would like to use connectorx, if possible. Right now, we are using modin pandas. |
Would DuckDB with the spatial extension be suitable for your use case? You can attach it to your Postgres instance pretty easily. It runs quite fast out of the box, and even faster by utilizing their native types (POINT_2D, LINESTRING_2D, POLYGON_2D, and BOX_2D) for calculations since it's columnar database. |
Not really. While that is something I would like to explore in my personal time, the use case for this doesn't provide a great argument to transition to using another database management system. We currently load data using the |
Describe your feature request
Currently, when I try to execute a select query on a table with geospatial data, a
PanicException
occurs sayingnot implemented: geometry
. It would be beneficial to query geospatial data with connectorx so that we can then convert it to a geopandas dataframe or do whatever else we need to do with the geometry data.The text was updated successfully, but these errors were encountered: