We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It's very tempting to do
from shapely.geometry import mapping str(mapping(gv)) # Wrong!
but this won't work because of https://gist.github.com/sgillies/2217756#gistcomment-1397048. Instead, the correct code is
import geojson geojson.dumps(gv) # Correct!
It's a very simple function call, but we still could add it as a method.
The text was updated successfully, but these errors were encountered:
I think that we don't need to add a method, otherwise we will need to add method to serialize gv to many formats, no?
Sorry, something went wrong.
No branches or pull requests
It's very tempting to do
but this won't work because of https://gist.github.com/sgillies/2217756#gistcomment-1397048. Instead, the correct code is
It's a very simple function call, but we still could add it as a method.
The text was updated successfully, but these errors were encountered: