forked from pnorman/ogr2osm
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Returning None from filter_layer in translation throws error #31
Comments
Good catch! Line 418 in 70d2f04
But that code is only executed after we tried to fetch the projection, which is of course impossible for a |
roelderickx
added a commit
that referenced
this issue
Apr 15, 2023
roelderickx
added a commit
that referenced
this issue
Sep 10, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to the docs,
filter_layer
can return a layer orNone
. However, returningNone
throws the following error:Looking into the original library, seems like there was a check for
None
, but it got lost during refactoring.The text was updated successfully, but these errors were encountered: