-
-
Notifications
You must be signed in to change notification settings - Fork 945
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
ENH: Add GeometryArray._from_sequence_of_strings #3101
Conversation
I think it would be good to add a small test that reading from CSV with specifying the dtype works (essentially what you did in the issue). While we indeed don't need to test the details of what kind of strings work for |
Makes sense, added! |
@jorisvandenbossche believe this is ready, I think the test failure is unrelated |
Looks good to me! Can you also add a short line to the changelog? |
@martinfleis done! |
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.
Thanks @bnaul!
Closes #3099.
Like
_from_sequence
right above, I minimally edited the abstract base function to give the desired behavior.@martinfleis think this warrants its own test since it's more or less an alias of
from_wkt
...?