User:FredrikLindseth/shop qa

From OpenStreetMap Wiki
Jump to navigation Jump to search

QA for shops in Norway =

Most shops have been imported and have a ref, opening hours, a name, etc, but these searches will find the rest

Shops without ref

All imported shops have one of these refs. Many of these shops wont have a ref, but many are errors (1558 hits in november 2018)

try it yourself in overpass-turbo
[out:json][timeout:25];
 {{geocodeArea:norway}}->.searchArea; (
  nwr["shop"="convenience"]
  [!"ref:coop"]
  [!"ref:bunnpris"]
  [!"ref:norgesgruppen"]
  [!"ref:rema"]
  [!"ref:circlek"]
  [!"ref:esso"]
  [!"ref:st1"]
  (area.searchArea);
  
  nwr["shop"="supermarket"]
  [!"ref:coop"]
  [!"ref:bunnpris"]
  [!"ref:norgesgruppen"]
  [!"ref:rema"]
  [!"ref:circlek"]
  [!"ref:esso"]
  [!"ref:st1"]
  (area.searchArea);
  
  nwr["shop"="kiosk"]
  [!"ref:coop"]
  [!"ref:bunnpris"]
  [!"ref:norgesgruppen"]
  [!"ref:rema"]
  [!"ref:circlek"]
  [!"ref:esso"]
  [!"ref:st1"]
  (area.searchArea);
);
out body;
>;
out skel qt;

Similar names without ref

I.e. name="Joker", but no ref:norgesgruppen

TODO: do the same for

ref:coop

  • Coop Prix
  • Extra
  • Matkroken
  • Coop Marked
  • Coop Mega
  • Coop Byggmix
  • Obs Bygg
  • Obs
  • Coop Elektro

ref:norgesgruppen

  • Joker
  • Kiwi
  • Meny
  • Nærbutikken
  • Spar

ref:bunnpris

  • Bunnpris

ref:rema

  • Rema 1000
  • 7eleven
  • Narvesen
  • YX

Joker

try it yourself in overpass-turbo
[out:json][timeout:25];
 {{geocodeArea:norway}}->.searchArea; 
(
  nwr["name"~"Joker"][!"ref:norgesgruppen"](area.searchArea);

);
out body;
>;
out skel qt;

Spar

try it yourself in overpass-turbo
[out:json][timeout:25];
 {{geocodeArea:norway}}->.searchArea; 
(
  nwr["name"~"spar"][!"ref:norgesgruppen"](area.searchArea);

);
out body;
>;
out skel qt;

Coop shops without ref

https://overpass-turbo.eu/s/E7X


Shops without names

Convenience and supermarket shops without names (137 hits in november 2018)

try it yourself in overpass-turbo
[out:json][timeout:250];
 {{geocodeArea:norway}}->.searchArea; 
(
  nwr["shop"="convenience"][!"name"](area.searchArea);
  nwr["shop"="supermarket"][!"name"](area.searchArea);
);
out body;
>;
out skel qt;