Mendel
Senior Member.
What about the river neither of you has mentioned? @MapperGuyGraveyard without church is going to be the uniquifier, though.
Moss and lichen on the tree in the foreground should suggest a compass direction.
What about the river neither of you has mentioned? @MapperGuyGraveyard without church is going to be the uniquifier, though.
What about the river neither of you has mentioned? @MapperGuy
Moss and lichen on the tree in the foreground should suggest a compass direction.
Yup, graveyard without church near a crook of a meandering river (and for double checking, with an embankment opposite).What about the river neither of you has mentioned? @MapperGuy
Moss and lichen on the tree in the foreground should suggest a compass direction.
Yup, graveyard without church near a crook of a meandering river (and for double checking, with an embankment opposite).
I'd say the shadows give a more reliable clue than the moss regarding compass direction - the sun seems highish in the sky for the UK (still an unproved assumption), and the shadow is cast towards us, so I think we're facing due south. Plenty of moss on this side of the branches at least, so they could be north-facing which would corroborate that. But it's a noisy signal. Someone with better eyes (having 3-colour vision, say) might extract more from the photo in this regard.
The question then is, which way is the river flowing. Looking at the V-shaped flow here I think it is left to right, so east to west if the camera is facing south, which would fit with my earlier assumption about the area of the country.
I've been trying to work out how to use overpass turbo to do a NOT operation - something like...Could overpass find this one?
graveyard with in 50 metres of a waterway and a road but not within say 100m of a church.
The question then is, which way is the river flowing. Looking at the V-shaped flow here I think it is left to right, so east to west if the camera is facing south, which would fit with my earlier assumption about the area of the country.
View attachment 67460
I thought both clues indicated a "downward" flow in that bend, so right-to-left or eastward. The solution proves this correct.The silting up of the inside of the curve also suggests that direction of flow.
My gawd, I misread the prior post - I think I saw the "V" and just thought "aha, yes!" and missed the actual given conclusion.I thought both clues indicated a "downward" flow in that bend, so right-to-left or eastward. The solution proves this correct.
What was your technique?https://maps.app.goo.gl/3Q1xSKMfVdbM1pMo8
Kirk Borthwick Cemetery near Hawick in Scotland. Most of the trees are gone.
https://www.whatiswhere.com/?page=help has a slightly easier negative condition structure. See example 11 on the help page.to do a NOT operation
I thought both clues indicated a "downward" flow in that bend, so right-to-left or eastward. The solution proves this correct.
I couldn't really see how the bend would give an answer one way or the other, as the outside of the bend is the outside of the bend, no matter which way the stream goes.
Look for where the flow "stalls" (as if it were air over a wing), that's where much of the accumulation occurs:View attachment 67464
To be fair, I couldn't be bothered to look for photos, but the silt deposit is asymmetric.
Strangely. whatiswhere.com does not identify that cemetery when you search for it.https://www.whatiswhere.com/?page=help has a slightly easier negative condition structure. See example 11 on the help page.
how did you find it?Answer in spoilers
https://maps.app.goo.gl/3Q1xSKMfVdbM1pMo8
Kirk Borthwick Cemetery near Hawick in Scotland. Most of the trees are gone.
EDIT: I'll spoiler this too in case somebody else wants to find it.What was your technique?
The Bellingcat tool did quite well (without coding) at giving back results that used just three features: road, river, and cemetery within 20m (assuming you had a hunch it was Scotland) - however like Whatiswhere it didn't pick up the correct cemetery but one further along the valley in Roberton. So I guess it's not tagged correctly.Strangely. whatiswhere.com does not identify that cemetery when you search for it.
Unfortunately there's no simple exclusion operator, at least I didn't find a straightforward solution. It's possible to get a similar result using sets but you have to start from the other end, if that makes sense.I've been trying to work out how to use overpass turbo to do a NOT operation - something like...
Find a graveyard or cemetery that is within 10m of a waterway, but not within 100m of a church.
I dont know how to do that yet.![]()
area[name="Scottish Borders"]->.searchRegion;
way[landuse=cemetery](area.searchRegion);
(._;>;);
out;
area[name="Scottish Borders"]->.searchRegion;
way[building](area.searchRegion);
way[landuse=cemetery](area.searchRegion)(around:100);
(._;>;);
out;
area[name="Scottish Borders"]->.searchRegion;
way[landuse=cemetery](area.searchRegion)
->.allTheCemeteries;
way[building](area.searchRegion);
way[landuse=cemetery](around:100)
->.cemeteriesNearBuildings;
(way.allTheCemeteries; - way.cemeteriesNearBuildings;);
(._;>;);
out;
As someone who's used BASIC, Forth, LISP, C, Mathcad, Perl, Mathematica, and ML, and who has created several of his own domain-specific languages, I think I'd go one or two steps further - almost every single token in the above makes no logical sense at all, even the non-tokens worry me. Everyone I've known who uses it has said "I took something from somewhere else, and just modified it to my needs", which isn't a great witness to self-explanitoriness. At least it ends with a nice body-horror multi-headed smiley, that's nice; all code should do that.As a javascript user the use of semicolons in the boolean of the JSON syntax for overpass is really confusing.
area[name="Scottish Borders"]->.searchRegion;
way[landuse=cemetery](area.searchRegion)
->.allTheCemeteries;
way[building](area.searchRegion);
way[landuse=cemetery](around:100)
->.cemeteriesNearBuildings;
(way.allTheCemeteries; - way.cemeteriesNearBuildings;);
(._;>;);
out;
out;
(way.allTheCemeteries; - way.cemeteriesNearBuildings;)->.finalresult;
(.finalresult;>;);
I doubt if the sign is unaltered. The typeface and size on "LANDFILL" doesn't appear to match.Is this picture a real location?
View attachment 67530
Is this picture a real location?
View attachment 67530
If it is, I would think some of the guys could use the Overpass program thingy to find it. The collection of ( ) > { > } : : and such is gibberish to me, but for those that know how to work it this should be doable, right?