Description
Hello,
We are working on building a high-resolution land/sea/ocean mask using shapefiles from osmdata. The data has been incredibly useful; however, we’ve noticed that estuaries are missing from the coastline data—for example, the Amazon estuary.
This omission affects the accuracy of our project, as estuaries are significant geographical features that should be included in the coastline. Is it possible to include estuaries in the coastline data provided by osmdata? We are willing to assist by modifying the coastline generation process to incorporate these areas if needed.
For reference, here’s an Overpass API query that illustrates the issue in the Amazon estuary region:
// Fetch all natural water bodies within the bounding box
[out:xml][timeout:25];
(
way
["maritime"="yes"]
["natural"="water"]
(-2.5,-52.0,0.5,-48.0);
relation
["maritime"="yes"]
["natural"="water"]
(-2.5,-52.0,0.5,-48.0);
);
out body;
>;
out skel qt;
We believe that including estuaries would enhance the dataset’s completeness and utility for many users.
Thank you for your time and consideration. We look forward to your response and are ready to collaborate on this.
Best regards,
Frederic.