I’m looking at the maproulette challenge to “Combine redundant reservoir nodes and areas (US)”. In the happy case this is a closed way tagged natural=water and a single node with a name, elevation and gnis:feature_id tagged as reservoir. Merging them resolves the redundant mapping.
But, now I stumbled over a case where there seem to be two different gnis id’s for the same reservoir. And they come with different names.
At first I thought, oh well, not a huge conflict. It’s reservoir 9 either way, so I put one in the name and the other into alt_name and left a note Way: Soil Conservation Service Site 9 Reservoir (166174521) | OpenStreetMap
However, after thinking about this some more, it seems probable that this is not a single occurrence and might actually be a bit annoying/confusing. Indeed if I poke around a bit with overpass
[out:json][timeout:120];
{{radius=75000}}
(
// nwr['name'~'Soil Conservation Service Site', i](around:{{radius}},{{geocodeCoords:Dallas}});
nwr['name'~'Reservoir Number', i](around:{{radius}},{{geocodeCoords:Dallas}});
);
out body;
>;
out skel qt;
I find lots of “Soil Conservation…” objects and also a bunch of “Reservoir Number …”. Now that’s a bit of a naive search of course, but it gives an idea. And since the same issue seems to exist for dams, we can find gems like:
- “Reservoir Number One Hundred Twentyone” next to
- “Soil Conservation Service Site 121 Dam”
So, I’m wondering which of these names is … “better” and what to do with this.