Skip to content
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

Specific process for geometries with Z or M coordinate with SpatiaLite dialect #506

Merged

Conversation

sdp5
Copy link
Contributor

@sdp5 sdp5 commented Apr 16, 2024

Description

Though most of the dialects support geom_type ending with Z in SQL queries, it seems not working with SpatiaLite.
Hence replacing Z with a blank in SQL queries.

Added a test to cover this behaviour.

Checklist

This pull request is:

@adrien-berchet Please take an initial look, thanks!

sdp5 and others added 2 commits April 16, 2024 14:11
Though most of the dialects support  geom_type ending with Z in SQL queries, it seems not working with SpatiaLite.
Hence replacing Z with a blank. Added a test to cover this behaviour.
Copy link
Member

@adrien-berchet adrien-berchet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much for this proposal @sdp5 !
I'm going to setup a more general test to be sure we cover all cases and then we'll see how bind_processor_process() can handle all these cases with your fix.

tests/test_functional_sqlite.py Outdated Show resolved Hide resolved
geoalchemy2/types/dialects/sqlite.py Outdated Show resolved Hide resolved
geoalchemy2/types/dialects/sqlite.py Outdated Show resolved Hide resolved
@sdp5
Copy link
Contributor Author

sdp5 commented Apr 16, 2024

Agree, getting your point @adrien-berchet and thank you for setting up the tests. 👍🏻

Allow me some more time testing, will update the PR shortly.

@sdp5 sdp5 changed the title Temporary fix for geometries with Z in SpatiaLite. Draft: Temporary fix for geometries with Z in SpatiaLite. Apr 16, 2024
@sdp5
Copy link
Contributor Author

sdp5 commented Apr 17, 2024

especially the M cases, like POINT M or POINT ZM, it should be added in the test

I guess support for 'M' is coming in shapely.

>>> from shapely import wkt
>>> g = wkt.loads('POINT M (0 0 5)')
>>> g
<POINT Z (0 0 5)>

Perhaps 'M' and 'ZM' support could be put on the TODO-list?

Plus with 'ZM' ... shapely returns ValueError: The ordinate (last) dimension should be 2 or 3, got 4!

@sdp5 sdp5 marked this pull request as draft April 17, 2024 07:14
@adrien-berchet
Copy link
Member

especially the M cases, like POINT M or POINT ZM, it should be added in the test

I guess support for 'M' is coming in shapely.

>>> from shapely import wkt
>>> g = wkt.loads('POINT M (0 0 5)')
>>> g
<POINT Z (0 0 5)>

Perhaps 'M' and 'ZM' support could be put on the TODO-list?

Plus with 'ZM' ... shapely returns ValueError: The ordinate (last) dimension should be 2 or 3, got 4!

Hmmm ok
Well, we can still process the WKT strings for M and ZM cases, even though Shapely does not support it yet. So it will still fix the cases with raw strings and WKTElements, only the WKBElements will fail.

@sdp5 sdp5 changed the title Draft: Temporary fix for geometries with Z in SpatiaLite. Temporary fix for geometries with Z in SpatiaLite. Apr 19, 2024
@sdp5 sdp5 marked this pull request as ready for review April 19, 2024 20:44
@sdp5 sdp5 force-pushed the 505_Assistanze_in_using_3D_Geometries branch from 8590a9e to e584682 Compare April 19, 2024 20:47
@adrien-berchet
Copy link
Member

I'm not able to reproduce the CI failure locally, even in the test Docker container 🤔
We'll have to investigate that.

@sdp5
Copy link
Contributor Author

sdp5 commented Apr 20, 2024

ran some tests quickly with postgis/postgis:15-3.3 image.
and found a few tests failing for postgresql dialect, MULTIPOINT geom_type.

FAILED tests/test_functional.py::TestInsertionCore::test_insert_all_geom_types[postgresql-Multi Point ZM]
AssertionError: assert 'MULTIPOINTZM((1234),(5678))' == 'MULTIPOINTZM(1234,5678)'

we can fix that by adding following in test_insert_all_geom_types


if dialect_name == 'postgresql' and 'MULTIPOINT' in geom_type:
      # formats wkt to wrap tuple elements in brackets,
      # for example '(1 2, 3 4)' to '((1 2), (3 4))'.
      wkt = "({})".format(
           ", ".join(map(lambda x: '({})'.format(x.strip()), wkt[1:-1].split(',')))
      )

Can we use this image in test_and_publish.yml?

@sdp5 sdp5 force-pushed the 505_Assistanze_in_using_3D_Geometries branch from b5b0104 to c0a5cbb Compare April 20, 2024 23:55
@sdp5
Copy link
Contributor Author

sdp5 commented Apr 21, 2024

The only nice thing to have would be to update the doc to specify which cases are supported and which are not.

@adrien-berchet for docs, should we make it a part of core_tutorial.rst#Insertions ?

@adrien-berchet
Copy link
Member

ran some tests quickly with postgis/postgis:15-3.3 image. and found a few tests failing for postgresql dialect, MULTIPOINT geom_type.

FAILED tests/test_functional.py::TestInsertionCore::test_insert_all_geom_types[postgresql-Multi Point ZM]
AssertionError: assert 'MULTIPOINTZM((1234),(5678))' == 'MULTIPOINTZM(1234,5678)'

we can fix that by adding following in test_insert_all_geom_types


if dialect_name == 'postgresql' and 'MULTIPOINT' in geom_type:
      # formats wkt to wrap tuple elements in brackets,
      # for example '(1 2, 3 4)' to '((1 2), (3 4))'.
      wkt = "({})".format(
           ", ".join(map(lambda x: '({})'.format(x.strip()), wkt[1:-1].split(',')))
      )

I'm surprised they changed this behavior, that's quite annoying.

Can we use this image in test_and_publish.yml?

Yeah, let's go for a newer version if it does not break anything (except the MULTIPOINT thing ofc).

Thanks for this!

@adrien-berchet
Copy link
Member

The only nice thing to have would be to update the doc to specify which cases are supported and which are not.

@adrien-berchet for docs, should we make it a part of core_tutorial.rst#Insertions ?

Yeah that looks relevant.

@adrien-berchet
Copy link
Member

For the CI I see that you need to add suppress_warnings = ["config.cache"] in doc/conf.py. There is also an issue with the postgis_raster extension that can't be created during setup, I don't why.

@adrien-berchet adrien-berchet changed the title Temporary fix for geometries with Z in SpatiaLite. Specific process for geometries with Z or M coordinate with SpatiaLite dialect Apr 23, 2024
@adrien-berchet
Copy link
Member

Looks good this time 🥳
Do you think it's ok to be merged now or do you still have some tests to do @sdp5 ?

@sdp5
Copy link
Contributor Author

sdp5 commented Apr 23, 2024

🎉 thanks, please go ahead merging @adrien-berchet !

sdp5 and others added 3 commits April 23, 2024 19:51
Co-authored-by: Adrien Berchet <adrien.berchet@gmail.com>
Co-authored-by: Adrien Berchet <adrien.berchet@gmail.com>
Co-authored-by: Adrien Berchet <adrien.berchet@gmail.com>
@sdp5 sdp5 force-pushed the 505_Assistanze_in_using_3D_Geometries branch from 63a64a7 to 32f3886 Compare April 23, 2024 10:21
@adrien-berchet adrien-berchet merged commit da53834 into geoalchemy:master Apr 23, 2024
10 checks passed
@adrien-berchet
Copy link
Member

Thank you very much for this work @sdp5 !!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Assistanze in using 3D Geometries
2 participants