-
Notifications
You must be signed in to change notification settings - Fork 9
Add simple merge command #90 #102
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
Conversation
tests/test_merge.py
Outdated
| parquet = import_optional_dependency( | ||
| "pyarrow.parquet", extra="pyarrow is required for Parquet support." | ||
| ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that an actual issue? We use it in other places, too, so it's not really optional, isn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I searched in the code on how to open/read/write parquet files (for testing this case). This is what I found in geopandas.py and I bluntly assumed this is how I should import it... Feel free to change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested, it works
One thing we will run in to is the projection, especially with EPSG:4326 (WGS84) as default. Geometries can be transformed with a bijective function from source to target projection, but projected geometries can yield different validity results (e.g. intersecting lines). We will solve that as we encounter that.
|
Is there a better default? => #105 |
Implements #90