-
-
Notifications
You must be signed in to change notification settings - Fork 545
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
Create additional layers in postprocessing step (The sea is not queryable in OSM) #120
Comments
To just fill the costline unfortunately is also not possible. Im working with this:
|
if someone is interested in a dirty postprocessing-functions to close all costlines to polygones so that you can differentiate between land and ocean here you go: ` def costline_processing(gdf):
def distance_two_points(p1, p2):
` |
It would be nice if you could create additional layers from existing gdfs-entries with the postprocessing function.
I imagine it in a way that you can give the layers a style but the layers only gets added in the postprocessing step. I tried to give an empty layer with in the layers-dict but this yields an error and without the layer beeing added in the layers-dict it wont be rendered.
Why do I need it? Apparently there is no tag for the sea, ocean in OSM (appart bays, etc). I think seas are therefore created implicitly with the cutout of the costlines. But i want to give the whole ocean a special styling. (For example: Try to render the island Lehtisaari in Helsinki. You will see that the ocean is rendered as if it would be the background.)
Thanks for tips to solve this without the mentioned feature :)
The text was updated successfully, but these errors were encountered: