From c22bd5a7c324877b200092416e16e1251427b291 Mon Sep 17 00:00:00 2001 From: missinglink Date: Wed, 12 Jun 2019 16:03:48 +0200 Subject: [PATCH] feat(venue_popularity): foundations for popularity scoring module --- stream/importPipeline.js | 2 + stream/popularity_mapper.js | 215 ++ stream/tag_mapper.js | 1 - test/end-to-end.js | 1 + test/fixtures/combined_vancouver_queens.json | 2815 ++++++++++++++---- test/run.js | 1 + test/stream/importPipeline.js | 1 + test/stream/popularity_mapper.js | 268 ++ test/stream/tag_mapper.js | 1 - 9 files changed, 2682 insertions(+), 623 deletions(-) create mode 100644 stream/popularity_mapper.js create mode 100644 test/stream/popularity_mapper.js diff --git a/stream/importPipeline.js b/stream/importPipeline.js index 1efbe4a4..2c4ec627 100644 --- a/stream/importPipeline.js +++ b/stream/importPipeline.js @@ -14,6 +14,7 @@ streams.adminLookup = require('pelias-wof-admin-lookup').create; streams.addressExtractor = require('./address_extractor'); streams.categoryMapper = require('./category_mapper'); streams.addendumMapper = require('./addendum_mapper'); +streams.popularityMapper = require('./popularity_mapper'); streams.dbMapper = require('pelias-model').createDocumentMapperStream; streams.elasticsearch = require('pelias-dbclient'); @@ -26,6 +27,7 @@ streams.import = function(){ .pipe( streams.blacklistStream() ) .pipe( streams.categoryMapper( categoryDefaults ) ) .pipe( streams.addendumMapper() ) + .pipe( streams.popularityMapper() ) .pipe( streams.adminLookup() ) .pipe( streams.dbMapper() ) .pipe( streams.elasticsearch({name: 'openstreetmap'}) ); diff --git a/stream/popularity_mapper.js b/stream/popularity_mapper.js new file mode 100644 index 00000000..11f4b1ab --- /dev/null +++ b/stream/popularity_mapper.js @@ -0,0 +1,215 @@ +/** + The popularity mapper is responsible for generating a 'popularity' + value by inspecting OSM tags. + + Disused and abandoned places are given a strong negative score. + If the popularity score is less than zero then the document is discarded. + + Feel free to make changes to this mapping file! +**/ + +const through = require('through2'); +const peliasLogger = require('pelias-logger').get('openstreetmap'); + +const config = { + // https://taginfo.openstreetmap.org/keys/importance + importance: { + international: { _score: 50000 }, + national: { _score: 10000 }, + regional: { _score: 5000 }, + urban: { _score: 1000 }, + suburban: { _score: 500 }, + local: { _score: 100 }, + }, + + // concordances + wikipedia: { _score: 3000 }, + wikidata: { _score: 3000 }, + + // properties found on major landmarks & + // public buildings. + architect: { _score: 5000 }, + heritage: { _score: 5000 }, + 'heritage:operator': { _score: 2000 }, + historic: { + building: { _score: 5000 }, + church: { _score: 5000 }, + heritage: { _score: 7000 }, + _score: 1000, + }, + building: { + colour: { _score: 2000 }, + material: { _score: 2000 }, + supermarket: { _score: 2000 }, + civic: { _score: 2000 }, + government: { _score: 2000 }, + hospital: { _score: 2000 }, + train_station: { _score: 5000 }, + transportation: { _score: 2000 }, + university: { _score: 2000 }, + public: { _score: 2000 }, + sports_hall: { _score: 2000 }, + historic: { _score: 5000 }, + }, + height: { _score: 2000 }, + start_date: { _score: 2000 }, + opening_date: { _score: 2000 }, + + // properties found on tourist attractions + tourism: { + visitors: { _score: 2000 }, + aquarium: { _score: 2000 }, + attraction: { _score: 1000 }, + museum: { _score: 2000 }, + theme_park: { _score: 2000 }, + zoo: { _score: 2000 }, + _score: 1000 + }, + museum: { _score: 2000 }, + museum_type: { _score: 2000 }, + opening_hours: { _score: 1000 }, + operator: { _score: 1000 }, + fee: { _score: 2000 }, + + // closed and abandoned places + // https://wiki.openstreetmap.org/wiki/Key:disused: + disused: { _score: -100000 }, + 'disused:shop': { _score: -100000 }, + 'disused:amenity': { _score: -100000 }, + 'disused:railway': { _score: -100000 }, + 'disused:leisure': { _score: -100000 }, + // https://wiki.openstreetmap.org/wiki/Key:abandoned: + abandoned: { _score: -100000 }, + 'abandoned:shop': { _score: -100000 }, + 'abandoned:amenity': { _score: -100000 }, + 'abandoned:railway': { _score: -100000 }, + 'abandoned:leisure': { _score: -100000 }, + + // types of public amenities + amenity: { + disused: { _score: -100000 }, + college: { _score: 2000 }, + library: { _score: 2000 }, + school: { _score: 1000 }, + university: { _score: 2000 }, + bank: { _score: 1000 }, + clinic: { _score: 1000 }, + dentist: { _score: 1000 }, + doctors: { _score: 1000 }, + hospital: { _score: 2000 }, + nursing_home: { _score: 1000 }, + pharmacy: { _score: 1000 }, + social_facility: { _score: 1000 }, + veterinary: { _score: 1000 }, + community_centre: { _score: 1000 }, + music_venue: { _score: 1000 }, + nightclub: { _score: 1000 }, + planetarium: { _score: 1000 }, + social_centre: { _score: 1000 }, + theatre: { _score: 1000 }, + courthouse: { _score: 1000 }, + coworking_space: { _score: 1000 }, + dojo: { _score: 1000 }, + embassy: { _score: 1000 }, + ferry_terminal: { _score: 2000 }, + fire_station: { _score: 1000 }, + marketplace: { _score: 1000 }, + place_of_worship: { _score: 1000 }, + police: { _score: 1000 }, + post_office: { _score: 1000 }, + prison: { _score: 1000 }, + public_bath: { _score: 1000 }, + townhall: { _score: 1000 } + }, + + // transportation + aerodrome: { + international: { _score: 10000 }, + regional: { _score: 5000 } + }, + iata: { + _score: 5000, + none: { _score: -5000 } + }, + railway: { + station: { _score: 2000 }, + subway_entrance: { _score: 2000 }, + }, + public_transport: { + station: { _score: 2000 } + // no scoring boost for `public_transport:*`, as many unimportant records have other tags + }, + + // contact information + website: { _score: 200 }, + phone: { _score: 200 }, + 'contact:website': { _score: 200 }, + 'contact:email': { _score: 200 }, + 'contact:phone': { _score: 200 }, + 'contact:fax': { _score: 200 }, + + // social media + 'contact:foursquare': { _score: 200 }, + 'contact:facebook': { _score: 200 }, + 'contact:linkedin': { _score: 200 }, + 'contact:instagram': { _score: 200 }, + 'contact:skype': { _score: 200 }, + 'contact:flickr': { _score: 200 }, + 'contact:youtube': { _score: 200 }, +}; + +module.exports = function(){ + + return through.obj(( doc, enc, next ) => { + + try { + + // only map venues + if( doc.getLayer() !== 'venue' ){ + return next(null, doc); + } + + // skip records with no tags + let tags = doc.getMeta('tags'); + if( !tags ){ + return next( null, doc ); + } + + // default popularity + let popularity = doc.getPopularity() || 0; + + // apply scores from config + for( let tag in config ){ + if( tags.hasOwnProperty( tag ) ){ + // global score for the tag + if( config[tag]._score ){ + popularity += config[tag]._score; + } + // individual scores for specific values + for( let value in config[tag] ){ + if( value === '_score' ){ continue; } + if( !config[tag][value]._score ){ continue; } + if (tags[tag].trim().toLowerCase() === value ){ + popularity += config[tag][value]._score; + } + } + } + } + + // set document popularity if it is greater than zero + if( popularity > 0 ){ doc.setPopularity( popularity ); } + + // discard places with a negative popularity + else if( popularity < 0 ){ return next(); } + } + + catch( e ){ + peliasLogger.error( 'popularity_mapper error' ); + peliasLogger.error( e.stack ); + peliasLogger.error( JSON.stringify( doc, null, 2 ) ); + } + + return next( null, doc ); + }); + +}; diff --git a/stream/tag_mapper.js b/stream/tag_mapper.js index ba505ba8..e54669f6 100644 --- a/stream/tag_mapper.js +++ b/stream/tag_mapper.js @@ -105,7 +105,6 @@ module.exports = function(){ if( iata ){ doc.setNameAlias( 'default', iata ); doc.setNameAlias( 'default', `${iata} Airport` ); - doc.setPopularity(10000); } } } diff --git a/test/end-to-end.js b/test/end-to-end.js index d5ba0190..313adb6d 100644 --- a/test/end-to-end.js +++ b/test/end-to-end.js @@ -52,6 +52,7 @@ streams.pbfParser() .pipe( streams.addressExtractor() ) .pipe( streams.categoryMapper( streams.config.categoryDefaults ) ) .pipe( streams.addendumMapper() ) + .pipe( streams.popularityMapper() ) .pipe( model.createDocumentMapperStream() ) .pipe( sink.obj(function (doc) { results.push(doc); diff --git a/test/fixtures/combined_vancouver_queens.json b/test/fixtures/combined_vancouver_queens.json index cf8262c0..9129c551 100644 --- a/test/fixtures/combined_vancouver_queens.json +++ b/test/fixtures/combined_vancouver_queens.json @@ -849746,7 +849746,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1002928002" + "source_id": "node/1002928002", + "popularity": 2000 } }, { @@ -849900,6 +849901,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1008822838", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"fineartframing.ca\",\"phone\":\"6042516101\",\"opening_hours\":\"Mo-fr 9-17\"}" } @@ -849950,6 +849952,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1012615230", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -849981,6 +849984,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1015008917", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-sa 11-17\"}" } @@ -850007,6 +850011,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1015476628", + "popularity": 2200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"UPS\",\"website\":\"http://www.ups.com/\"}" } @@ -850038,6 +850043,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1021367270", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.secretgardentea.com\",\"phone\":\"6042613070\"}" } @@ -850118,6 +850124,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1042157095", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -850146,6 +850153,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1042157300", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Subway\",\"website\":\"http://www.subway.com/\"}" } @@ -850254,7 +850262,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1104195810" + "source_id": "node/1104195810", + "popularity": 1000 } }, { @@ -850327,6 +850336,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1104199460", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604 737 1293\"}" } @@ -850354,6 +850364,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1104203415", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Esso\",\"brand\":\"Esso\",\"website\":\"http://www.esso.com/\"}" } @@ -850387,6 +850398,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1105767687", + "popularity": 400, "addendum": { "osm": "{\"website\":\"rockymountainflatbread.ca\",\"phone\":\"6047300321\"}" } @@ -850471,6 +850483,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1106842124", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -850501,6 +850514,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1106842760", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047330787\",\"opening_hours\":\"Mo-sa 10-18\"}" } @@ -850534,6 +850548,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1106843159", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047390170\"}" } @@ -850637,6 +850652,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1111294445", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 9:30-18;sa 10-18;su 10-18\"}" } @@ -850802,6 +850818,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1111302009", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.bau-xi.com\",\"opening_hours\":\"Mo-sa 10-17:30;su 12-16\"}" } @@ -850832,6 +850849,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1112566214", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-sa 9:30-21;su 10-18\"}" } @@ -850865,6 +850883,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116400381", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.eatsiena.com\",\"phone\":\"(604) 558-1485\",\"opening_hours\":\"17:00-22:00\"}" } @@ -850997,6 +851016,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116401864", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.westrestaurant.com\",\"phone\":\"6047388938\"}" } @@ -851055,6 +851075,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116402335", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"potterybarnkids.com\",\"phone\":\"604-638-7494\",\"opening_hours\":\"Mo-we 10-19;th-fr 10-20;sa 10-18;su 11-6\"}" } @@ -851082,6 +851103,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116402390", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 7-19;sa-su 7:30-19\"}" } @@ -851132,6 +851154,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116402954", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 6-19;sa-su 7-19\"}" } @@ -851162,6 +851185,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116403104", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.winsorgallery.com\"}" } @@ -851219,7 +851243,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1116403824" + "source_id": "node/1116403824", + "popularity": 1000 } }, { @@ -851247,6 +851272,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116404331", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.americanapparel.net\"}" } @@ -851279,6 +851305,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1116404800", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.ousisbistro.com\",\"phone\":\"6047327550\"}" } @@ -851354,6 +851381,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1117560886", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Bean Around The World Coffees\",\"website\":\"http://www.cowboycoffee.ca/\"}" } @@ -851380,7 +851408,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1127286534" + "source_id": "node/1127286534", + "popularity": 1000 } }, { @@ -851409,6 +851438,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128724571", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047099999\"}" } @@ -851463,6 +851493,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128751240", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047367080\"}" } @@ -851539,7 +851570,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1128763837" + "source_id": "node/1128763837", + "popularity": 1000 } }, { @@ -851587,7 +851619,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1128766163" + "source_id": "node/1128766163", + "popularity": 1000 } }, { @@ -851615,6 +851648,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128769143", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.redroseantiques.com\",\"phone\":\"6048758588\"}" } @@ -851669,6 +851703,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128774988", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.beansprouts.ca\",\"phone\":\"6048719782\",\"opening_hours\":\"Mo-Su 11:00-18:00\"}" } @@ -851807,6 +851842,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128809188", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.quejos.com\",\"opening_hours\":\"Mo-sa 10-18;su 11-17\"}" } @@ -851864,6 +851900,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128826536", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-sa 11-18;su 12-17\"}" } @@ -851921,6 +851958,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128853339", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.mainstreetbaby.ca\",\"phone\":\"6048750077\",\"opening_hours\":\"Mo-Su 10:00-18:00\"}" } @@ -852039,7 +852077,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1128908199" + "source_id": "node/1128908199", + "popularity": 2000 } }, { @@ -852117,6 +852156,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128929101", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.wholevegetarian.com/\",\"phone\":\"604.876.8899\"}" } @@ -852149,6 +852189,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1128955024", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-732-6810\"}" } @@ -852202,6 +852243,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1131497302", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.broughaminteriors.com\",\"opening_hours\":\"Mo-Sa 10:00-17:30;Su 11:00-16:00\"}" } @@ -852232,7 +852274,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1132492002" + "source_id": "node/1132492002", + "popularity": 1000 } }, { @@ -852261,6 +852304,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1132493733", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.carouseltheatre.ca\",\"phone\":\"6046856217\"}" } @@ -852292,6 +852336,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1137740478", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo 09:30-17:00; Tu-Fr 09:30-19:00; Sa 09:30-15:00\"}" } @@ -852319,6 +852364,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1137743601", + "popularity": 2200, "addendum": { "osm": "{\"website\":\"www.roundhouse.ca\",\"opening_hours\":\"Mo-fr 9-22;sa-su 9-17\"}" } @@ -852394,6 +852440,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1141725996", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 06:30-23:00\"}" } @@ -852424,6 +852471,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1141727696", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Mo-Su 10:30-24:00\"}" } @@ -852456,6 +852504,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1141732176", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"limited\",\"opening_hours\":\"Mo-fr 7:30-15;sa-su 8-15\"}" } @@ -852487,6 +852536,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1141733225", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 6-22;sa-su 7-22\"}" } @@ -852545,6 +852595,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1141734779", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047349274\",\"opening_hours\":\"Mo-Su 09:00-21:00\"}" } @@ -852574,6 +852625,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1141735533", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.kaijapanese.ca\",\"opening_hours\":\"Mo-Su 17:00-22:00\"}" } @@ -852599,7 +852651,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1143069091" + "source_id": "node/1143069091", + "popularity": 1000 } }, { @@ -852630,6 +852683,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1144410274", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047369559\"}" } @@ -852657,6 +852711,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1144665283", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"False Creek Ferries\"}" } @@ -852714,6 +852769,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1147627075", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.helmvancouver.com\",\"phone\":\"+1-604-569-0860\"}" } @@ -853073,6 +853129,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1151301270", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.oyamasausage.ca\",\"phone\":\"6043277407\"}" } @@ -853535,6 +853592,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1152144364", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"www.shaughnessyvillage.com\",\"phone\":\"6047365511\"}" } @@ -853593,6 +853651,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1156791743", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.cafebica.com\",\"phone\":\"6047338818\"}" } @@ -853620,6 +853679,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1162177016", + "popularity": 4000, "addendum": { "osm": "{\"opening_hours\":\"7/10-16; winter 7/11-16\"}" } @@ -853647,6 +853707,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1181743384", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.picachef.com\",\"opening_hours\":\"Mo-sa 8-18\"}" } @@ -853727,7 +853788,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1187566965" + "source_id": "node/1187566965", + "popularity": 1000 } }, { @@ -853782,6 +853844,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1187574399", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 11:30-15,17-23;sa 17-23;su 17-22\"}" } @@ -853812,6 +853875,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1187580646", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.thecrossdesign.com\",\"opening_hours\":\"Mo-sa 10-18;su 11-17\"}" } @@ -853844,6 +853908,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1187582130", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 06:00-21:00\"}" } @@ -853958,6 +854023,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1187586743", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 9-18;sa 11-17:30\"}" } @@ -854019,6 +854085,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1188407756", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.sushikimura.com\",\"phone\":\"6045692198\"}" } @@ -854069,6 +854136,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1188490387", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Th-Tu 9-20:30\"}" } @@ -854100,6 +854168,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1188493611", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Closed\"}" } @@ -854131,6 +854200,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1188548868", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 14:00-24:00\"}" } @@ -854163,6 +854233,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1189678678", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.9thavenuegrill.com\",\"phone\":\"6047140744\",\"opening_hours\":\"Mo-Su 06:30-15:00\"}" } @@ -854193,6 +854264,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1189685237", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047360268\"}" } @@ -854250,6 +854322,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1190106969", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bananaleaf-vancouver.com/\"}" } @@ -854280,6 +854353,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1198748074", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-sa 10-21;su 11-19\"}" } @@ -854311,6 +854385,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1198748711", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 6-20;sa 10-16\"}" } @@ -854430,6 +854505,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1198758970", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046898313\"}" } @@ -854461,6 +854537,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1198763177", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 07:00-21:00\"}" } @@ -854491,6 +854568,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1198768294", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.divinevines.ca\",\"opening_hours\":\"Mo-fr 10-18;sa 10-17\"}" } @@ -854524,6 +854602,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1199551298", + "popularity": 400, "addendum": { "osm": "{\"website\":\"sushiholic.ca\",\"phone\":\"6048794881\"}" } @@ -854554,6 +854633,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1203422500", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bradfordhardware.com\"}" } @@ -854611,6 +854691,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1203427250", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.threecenturiesshop.com\"}" } @@ -854671,6 +854752,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1205355496", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.lesfauxbourgeois.com\",\"phone\":\"6048739733\"}" } @@ -854729,6 +854811,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1209174356", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046470123\",\"opening_hours\":\"Mo-fr 9-21;sa 10-22;su 10-20\"}" } @@ -854760,6 +854843,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1209175168", + "popularity": 200, "addendum": { "osm": "{\"website\":\"jugojuice.com\"}" } @@ -854793,6 +854877,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1209176811", + "popularity": 400, "addendum": { "osm": "{\"website\":\"salsaandagave.com\",\"phone\":\"6044084228\"}" } @@ -854851,6 +854936,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1209180688", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-th 7-1;fr 7-2; sa 8-2; su 8-1\"}" } @@ -854882,6 +854968,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1209181505", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 11:00-22:00\"}" } @@ -854936,6 +855023,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1210167116", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"no\"}" } @@ -854968,6 +855056,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1211448663", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6048763088\",\"opening_hours\":\"Mo-Su 10:30-21:30\"}" } @@ -854993,7 +855082,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1211948156" + "source_id": "node/1211948156", + "popularity": 2000 } }, { @@ -855050,6 +855140,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1219242349", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.georgelounge.com\"}" } @@ -855111,6 +855202,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1219245219", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://thaihouse.com/urban-thai-bistro/\"}" } @@ -855139,6 +855231,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1219255827", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"bluewatercafe.net\",\"phone\":\"6046888078\",\"opening_hours\":\"Mo-Su 17:00-24:00\"}" } @@ -855169,6 +855262,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1219260878", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046878933\",\"opening_hours\":\"Mo-sa 9-20:su 10-18\"}" } @@ -855195,6 +855289,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1219263879", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.miniyaletown.ca\",\"phone\":\"6048996464\"}" } @@ -855228,6 +855323,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1219266473", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.hamiltonstreetgrill.com/\"}" } @@ -855258,7 +855354,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1219267667" + "source_id": "node/1219267667", + "popularity": 1000 } }, { @@ -855286,7 +855383,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1219269333" + "source_id": "node/1219269333", + "popularity": 1000 } }, { @@ -855314,6 +855412,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1222474868", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.dillydallykids.ca\",\"phone\":\"6042529727\",\"opening_hours\":\"Mo-sa 10-18;su 11-18\"}" } @@ -855398,6 +855497,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1231239035", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.togosushi.ca/\"}" } @@ -855429,6 +855529,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1231717604", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.runningroom.com\"}" } @@ -855460,6 +855561,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1231717619", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.westland-insurance.com\"}" } @@ -855485,7 +855587,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1233278065" + "source_id": "node/1233278065", + "popularity": 1000 } }, { @@ -855531,7 +855634,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1234226121" + "source_id": "node/1234226121", + "popularity": 1000 } }, { @@ -855554,7 +855658,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1234226140" + "source_id": "node/1234226140", + "popularity": 1000 } }, { @@ -855577,7 +855682,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1234226164" + "source_id": "node/1234226164", + "popularity": 1000 } }, { @@ -855597,7 +855703,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1234226224" + "source_id": "node/1234226224", + "popularity": 1000 } }, { @@ -855626,6 +855733,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1234351329", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://msmvan.com/\"}" } @@ -855652,6 +855760,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1234351382", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.elianehairspa.ca/\"}" } @@ -855683,6 +855792,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1234993821", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.wesbrookeyecare.com\"}" } @@ -855715,6 +855825,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1234993862", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 07:00-23:00\"}" } @@ -855741,7 +855852,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1234993971" + "source_id": "node/1234993971", + "popularity": 1000 } }, { @@ -855794,7 +855906,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1235353109" + "source_id": "node/1235353109", + "popularity": 1000 } }, { @@ -855814,7 +855927,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1235353135" + "source_id": "node/1235353135", + "popularity": 1000 } }, { @@ -855835,6 +855949,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1235355558", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -855894,6 +856009,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1240309412", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6042221717\"}" } @@ -855925,6 +856041,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1240341168", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047316551\"}" } @@ -855951,7 +856068,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1240369905" + "source_id": "node/1240369905", + "popularity": 1000 } }, { @@ -855980,6 +856098,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1241298324", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -856013,6 +856132,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1241298344", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://blenz.com/\"}" } @@ -856038,7 +856158,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1241350082" + "source_id": "node/1241350082", + "popularity": 1000 } }, { @@ -856221,6 +856342,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1248731632", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -856807,6 +856929,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1262645556", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -856998,6 +857121,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1262646719", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Air Canada\"}" } @@ -857090,6 +857214,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1262666084", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"JAL\"}" } @@ -857160,7 +857285,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1275281651" + "source_id": "node/1275281651", + "popularity": 1000 } }, { @@ -857183,7 +857309,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1277032441" + "source_id": "node/1277032441", + "popularity": 1000 } }, { @@ -857213,6 +857340,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1296953554", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047339696\"}" } @@ -857243,7 +857371,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1304273906" + "source_id": "node/1304273906", + "popularity": 1000 } }, { @@ -857267,7 +857396,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1304274828" + "source_id": "node/1304274828", + "popularity": 1000 } }, { @@ -857297,6 +857427,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1304276236", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6045684593\",\"opening_hours\":\"Tu-fr 11-22:30,sa 11:30-22:30,su 11:30-15\"}" } @@ -857323,7 +857454,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1304277132" + "source_id": "node/1304277132", + "popularity": 1000 } }, { @@ -857400,6 +857532,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1304279662", + "popularity": 5400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:London Drugs\",\"website\":\"http://londondrugs.com/\",\"phone\":\"+1 (604) 448-4807\",\"opening_hours\":\"Mo-Sa 09:00-22:00; Su 10:00-20:00\"}" } @@ -857433,6 +857566,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1305429255", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047373999\",\"opening_hours\":\"Sa-Th 11:30-21:00; Fr 11:30-21:30\"}" } @@ -857490,6 +857624,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1305431089", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.dizzycycles.com\"}" } @@ -857523,6 +857658,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1305451172", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.trattoriakitchen.ca\",\"phone\":\"6047321441\"}" } @@ -857575,6 +857711,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1309737136", + "popularity": 800, "addendum": { "osm": "{\"website\":\"http://indiagatefood.com\",\"phone\":\"604-684-4617\"}" } @@ -857632,6 +857769,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1324502730", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.fairviewchurch.ca/\",\"phone\":\"6047360510\"}" } @@ -857714,6 +857852,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1324506633", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.kozaidesign.com\",\"opening_hours\":\"Tu-fr 10-18;sa 10-17:30\"}" } @@ -857744,6 +857883,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1324506792", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.beauphoto.com\"}" } @@ -857774,6 +857914,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1325913853", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.legacyliquorstore.com\",\"phone\":\"6043317900\"}" } @@ -857805,6 +857946,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1325959163", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-we 8-18;th-fr 8-20;sa 8-16\"}" } @@ -857891,6 +858033,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1329278207", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.panefromheaven.com\",\"opening_hours\":\"Mo-Sa 6:30-18:00\"}" } @@ -857923,6 +858066,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1329278375", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047328811\"}" } @@ -858030,6 +858174,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1331959993", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.marpolecurling.com\"}" } @@ -858090,7 +858235,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1335346918" + "source_id": "node/1335346918", + "popularity": 1000 } }, { @@ -858114,6 +858260,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1335349148", + "popularity": 2400, "addendum": { "osm": "{\"operator\":\"Hostelling International\",\"website\":\"hihostels.ca\",\"phone\":\"(604) 684-4565\"}" } @@ -858136,7 +858283,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1337999643" + "source_id": "node/1337999643", + "popularity": 1000 } }, { @@ -858167,6 +858315,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1339095361", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"We-Su 17-22\"}" } @@ -858218,6 +858367,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1339095519", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"7/24 (Pickup window)\"}" } @@ -858250,6 +858400,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1339097310", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046777555\",\"opening_hours\":\"Tu-su 11:30-20\"}" } @@ -858280,7 +858431,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1339098702" + "source_id": "node/1339098702", + "popularity": 1000 } }, { @@ -858309,6 +858461,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1339099609", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.schokoladecafe.com\",\"opening_hours\":\"Tu-Sa 10-18\"}" } @@ -858342,6 +858495,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1342879127", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.octopusgarden.ca\",\"phone\":\"6047348971\"}" } @@ -858389,6 +858543,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1344158220", + "popularity": 5000, "addendum": { "osm": "{\"wikipedia\":\"en:Lonsdale Quay\"}" } @@ -858419,6 +858574,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1346045613", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.artists.ca\"}" } @@ -858473,6 +858629,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1356797516", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.leeselectronic.com/\"}" } @@ -858500,6 +858657,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1356857891", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus & False Creek Ferries (No bikes)\"}" } @@ -858602,6 +858760,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1366656131", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.thetipperrestaurant.blogspot.com/\"}" } @@ -858631,7 +858790,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1369643082" + "source_id": "node/1369643082", + "popularity": 1000 } }, { @@ -858741,6 +858901,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1374379914", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046825777\"}" } @@ -858771,6 +858932,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1378212487", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 09:00-20:30\"}" } @@ -858804,6 +858966,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1378233730", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048756638\"}" } @@ -858829,7 +858992,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1379500244" + "source_id": "node/1379500244", + "popularity": 2000 } }, { @@ -858909,6 +859073,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1381212679", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 10-18\"}" } @@ -858938,7 +859103,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1381214756" + "source_id": "node/1381214756", + "popularity": 1000 } }, { @@ -858961,7 +859127,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1381216614" + "source_id": "node/1381216614", + "popularity": 1000 } }, { @@ -859083,6 +859250,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1382083523", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -859114,6 +859282,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1382340768", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-th 13-22;fr 13-22:30;sa 12:30-22:30;su 12:30-22\"}" } @@ -859199,6 +859368,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1382342496", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047305069\"}" } @@ -859284,6 +859454,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1382342862", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047394674\",\"opening_hours\":\"Su-we 17-24;th-sa 17-1:30\"}" } @@ -859315,6 +859486,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1382363150", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 6-19;sa-su 8-18\"}" } @@ -859340,7 +859512,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1382365272" + "source_id": "node/1382365272", + "popularity": 1000 } }, { @@ -859368,6 +859541,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383380736", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 09:00-18:00; Sa 09:00-17:00\"}" } @@ -859455,6 +859629,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383402062", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.quince.ca\",\"opening_hours\":\"Mo-Sa 08:30-18:00\"}" } @@ -859485,6 +859660,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383405341", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://chocolatearts.com\",\"opening_hours\":\"Mo-Sa 10:00-18:00;Su 12:00-17:00\"}" } @@ -859516,6 +859692,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383732434", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 7-19;sa 9-18;su 10-18\"}" } @@ -859546,6 +859723,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383733383", + "popularity": 200, "addendum": { "osm": "{\"website\":\"flightcentre.ca\"}" } @@ -859577,6 +859755,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383735117", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046888565\",\"opening_hours\":\"Mo-fr 11-21;sa-su 12-21\"}" } @@ -859637,6 +859816,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383742886", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 8-20;sa-su 10-19\"}" } @@ -859668,6 +859848,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383746408", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 9:30-18;sa 9-16\"}" } @@ -859700,6 +859881,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383811056", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"7/8-\"}" } @@ -859726,6 +859908,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383812950", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 7-;sa-su 10:30-\"}" } @@ -859788,6 +859971,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383815238", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-fr 11:30-21;sa-su 12:30-21\"}" } @@ -859877,7 +860061,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1383817546" + "source_id": "node/1383817546", + "popularity": 1000 } }, { @@ -859907,6 +860092,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1383818167", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046870510\"}" } @@ -860068,6 +860254,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1387066397", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.romersburgerbar.com\",\"phone\":\"6047329545\"}" } @@ -860117,7 +860304,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1390316172" + "source_id": "node/1390316172", + "popularity": 1000 } }, { @@ -860165,7 +860353,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1391864813" + "source_id": "node/1391864813", + "popularity": 1000 } }, { @@ -860218,6 +860407,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1392627289", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -860245,6 +860435,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1392630870", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 8-16:30\"}" } @@ -860271,7 +860462,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1392631224" + "source_id": "node/1392631224", + "popularity": 1000 } }, { @@ -860325,6 +860517,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1394135882", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://labrasserievancouver.com/\"}" } @@ -860354,6 +860547,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1394375543", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 11:00-24:00\"}" } @@ -860455,6 +860649,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1395459799", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -860559,6 +860754,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1404834379", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.sweet-revenge.ca/\"}" } @@ -860589,7 +860785,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1406590664" + "source_id": "node/1406590664", + "popularity": 1000 } }, { @@ -860644,6 +860841,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1407838816", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -860676,6 +860874,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1407840913", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6042553188\",\"opening_hours\":\"Mo-Su 11:00-22:00\"}" } @@ -860706,6 +860905,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1407892505", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6042559363\",\"opening_hours\":\"Fr-we 9-20; th 9-17\"}" } @@ -860761,6 +860961,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1416818790", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Vancouver Public Library\"}" } @@ -860817,7 +861018,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1418430635" + "source_id": "node/1418430635", + "popularity": 1000 } }, { @@ -860901,6 +861103,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1418441590", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-we 9:30-16;th-fr 9:30-19;sa 9:30-4;su 12-4\"}" } @@ -860985,6 +861188,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1418445956", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-we 10-18;th-fr 10-20; sa 10-18;su 13-17\"}" } @@ -861015,6 +861219,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1418448097", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 10-18;sa 10-17;su 12-17\"}" } @@ -861071,6 +861276,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1423520071", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 6-20;sa-su 7-19\"}" } @@ -861122,6 +861328,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1428431136", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Chevron\",\"brand\":\"Chevron\",\"website\":\"http://www.chevron.com/\"}" } @@ -861149,6 +861356,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1428432161", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Shell\",\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -861179,6 +861387,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1429321973", + "popularity": 400, "addendum": { "osm": "{\"website\":\"pebblebaby.com\",\"phone\":\"6045686923\"}" } @@ -861293,6 +861502,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1430596606", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo 10:30-14:00; Tu-Th 10:30-01:00; Fr 10:30-03:00; Sa 12:00-03:00; Su 12:00-24:00\"}" } @@ -861353,6 +861563,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1430598776", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 9-20;sa 11-19;su 11-18\"}" } @@ -861438,7 +861649,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1431507584" + "source_id": "node/1431507584", + "popularity": 2000 } }, { @@ -861494,7 +861706,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1431512733" + "source_id": "node/1431512733", + "popularity": 1000 } }, { @@ -861522,7 +861735,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1431513060" + "source_id": "node/1431513060", + "popularity": 1000 } }, { @@ -861549,7 +861763,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1431514604" + "source_id": "node/1431514604", + "popularity": 1000 } }, { @@ -861658,6 +861873,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1431526719", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6043259788\"}" } @@ -861684,7 +861900,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1431576695" + "source_id": "node/1431576695", + "popularity": 1000 } }, { @@ -861714,6 +861931,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1451041937", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.cactusclubcafe.com\",\"phone\":\"6046820933\"}" } @@ -861740,7 +861958,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1451045686" + "source_id": "node/1451045686", + "popularity": 1000 } }, { @@ -861768,7 +861987,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1451046117" + "source_id": "node/1451046117", + "popularity": 1000 } }, { @@ -861824,6 +862044,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1452527260", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046889328\",\"opening_hours\":\"Mo-Su 07:30-20:00\"}" } @@ -861880,6 +862101,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1452610104", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.floata.com\",\"phone\":\"6046020368\",\"opening_hours\":\"Mo-Su 07:30-20:00\"}" } @@ -861935,6 +862157,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1475470505", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"+1 604-321-8938\",\"opening_hours\":\"Mo-Fr 09:30-18:00; Sa 10:00-17:00; Su off\"}" } @@ -862072,6 +862295,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1486470361", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.peterkiss.com\"}" } @@ -862129,6 +862353,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1486471132", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.osake.ca\",\"phone\":\"6046857253\",\"opening_hours\":\"Mo-Su 11:30-18:00\"}" } @@ -862159,6 +862384,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1488868656", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.artstats.com\"}" } @@ -862317,6 +862543,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1490614169", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.thehangoutplace.com\"}" } @@ -862451,6 +862678,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1490628397", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.blackfishmarine.com\"}" } @@ -862530,6 +862758,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1491788833", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.fraseryachtsales.com\",\"phone\":\"6047343344\"}" } @@ -862584,6 +862813,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1491791233", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.bonnielee.com\",\"phone\":\"6042907447\"}" } @@ -862610,6 +862840,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1491791496", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.specialtyyachts.com\"}" } @@ -862640,6 +862871,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1491813194", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046852898\"}" } @@ -862670,6 +862902,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1491816076", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"ecomarine.com\",\"phone\":\"6046897575\",\"opening_hours\":\"Mo-Su 10:00-18:00\"}" } @@ -862693,6 +862926,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1491820974", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046965500\"}" } @@ -862723,6 +862957,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1492921461", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 09:00-23:00\"}" } @@ -862778,6 +863013,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1492924980", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"24/7\"}" } @@ -862808,6 +863044,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1492926905", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 08:00-24:00\"}" } @@ -862840,6 +863077,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1492929399", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-sa 5:30-22;su 5:30-21\"}" } @@ -862865,7 +863103,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1492958364" + "source_id": "node/1492958364", + "popularity": 1000 } }, { @@ -862996,6 +863235,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1493591696", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604 687 0049\"}" } @@ -863075,6 +863315,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1493603502", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.apresmiditea.com\",\"phone\":\"6045687887\"}" } @@ -863105,6 +863346,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1493606901", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.havenshop.ca\"}" } @@ -863163,6 +863405,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1493615632", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 11:00-19:00\"}" } @@ -863277,6 +863520,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1495025127", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Vancouver Fire and Rescue Service\"}" } @@ -863308,6 +863552,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1498234902", + "popularity": 1400, "addendum": { "osm": "{\"operator\":\"Husky\",\"brand\":\"Husky\",\"website\":\"http://www.myhusky.ca/\"}" } @@ -863340,6 +863585,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1499615964", + "popularity": 2200, "addendum": { "osm": "{\"website\":\"http://www.rockymountaineer.com/\"}" } @@ -863391,7 +863637,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1502585720" + "source_id": "node/1502585720", + "popularity": 1000 } }, { @@ -863544,7 +863791,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1572449335" + "source_id": "node/1572449335", + "popularity": 1000 } }, { @@ -863628,6 +863876,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1604467564", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.caffebrixton.com\"}" } @@ -863662,6 +863911,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1606145238", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.rodneysoysterhouse.com\"}" } @@ -863696,6 +863946,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1609793040", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://guu-izakaya.com/\",\"phone\":\"+1 604 899 0855\",\"opening_hours\":\"Mo-Fr 11:30-14:30,17:30-24:00; Sa-Su 12:00-15:00,17:30-24:00\"}" } @@ -863897,7 +864148,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1658423588" + "source_id": "node/1658423588", + "popularity": 1000 } }, { @@ -863921,6 +864173,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1665460215", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.dentking.biz/\",\"phone\":\"604 687 3368\"}" } @@ -864099,7 +864352,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1673601865" + "source_id": "node/1673601865", + "popularity": 1000 } }, { @@ -864517,7 +864771,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1682764810" + "source_id": "node/1682764810", + "popularity": 1000 } }, { @@ -864565,6 +864820,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1682764812", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.starbucks.com/\"}" } @@ -864720,6 +864976,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1684232449", + "popularity": 1200, "addendum": { "osm": "{\"opening_hours\":\"Mo: Closed;Tu-Sat: 10:00-18:00;Su: 12:00-16:00\"}" } @@ -864748,6 +865005,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1684232452", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://phohoa.com/\"}" } @@ -864776,6 +865034,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1684232455", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Subway\",\"website\":\"http://www.subway.com/\"}" } @@ -864898,6 +865157,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1685422416", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 321 9330\"}" } @@ -865000,6 +865260,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1685461482", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://homedepot.ca/\"}" } @@ -865048,7 +865309,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1686633972" + "source_id": "node/1686633972", + "popularity": 1000 } }, { @@ -865141,7 +865403,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1686645772" + "source_id": "node/1686645772", + "popularity": 1000 } }, { @@ -865164,7 +865427,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1686645776" + "source_id": "node/1686645776", + "popularity": 1000 } }, { @@ -865235,7 +865499,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1686653484" + "source_id": "node/1686653484", + "popularity": 1000 } }, { @@ -865302,7 +865567,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1687626375" + "source_id": "node/1687626375", + "popularity": 2000 } }, { @@ -865325,7 +865591,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1692226569" + "source_id": "node/1692226569", + "popularity": 1000 } }, { @@ -865352,7 +865619,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1692226572" + "source_id": "node/1692226572", + "popularity": 400 } }, { @@ -865586,6 +865854,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1692226633", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -865688,6 +865957,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1694010359", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -865715,6 +865985,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1702168200", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 281 0440\"}" } @@ -865743,6 +866014,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1702168201", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 266 7355\"}" } @@ -865863,7 +866135,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1702181412" + "source_id": "node/1702181412", + "popularity": 1000 } }, { @@ -865910,6 +866183,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1702181429", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 261 8144\"}" } @@ -865936,6 +866210,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1702201356", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 709 0907\"}" } @@ -865962,7 +866237,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1702213169" + "source_id": "node/1702213169", + "popularity": 1000 } }, { @@ -866082,7 +866358,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1702227701" + "source_id": "node/1702227701", + "popularity": 1000 } }, { @@ -866153,6 +866430,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1702227709", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.starbucks.com/\"}" } @@ -866182,6 +866460,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1702241201", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"778 371 8971\"}" } @@ -866522,6 +866801,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1707487654", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.provencevancouver.com/marinaside/\"}" } @@ -866581,7 +866861,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1713522802" + "source_id": "node/1713522802", + "popularity": 2000 } }, { @@ -866868,6 +867149,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722590767", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.interiorflori.com/\",\"phone\":\"604 688 6278\"}" } @@ -866893,7 +867175,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1722601481" + "source_id": "node/1722601481", + "popularity": 1000 } }, { @@ -867094,6 +867377,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722601511", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 568 8812\"}" } @@ -867287,6 +867571,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722607444", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 734 1518\"}" } @@ -867360,6 +867645,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722611330", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 734 4287\"}" } @@ -867386,6 +867672,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722611331", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 732 8299\"}" } @@ -867418,6 +867705,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722613542", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 733 2412\"}" } @@ -867467,6 +867755,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722613552", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 739 6688\"}" } @@ -867495,6 +867784,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722613558", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Quiznos\",\"website\":\"http://www.quiznos.ca/\"}" } @@ -867521,6 +867811,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722613561", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.shineclothing.ca/\"}" } @@ -867547,6 +867838,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722615954", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 731 7582\"}" } @@ -867596,6 +867888,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1722617309", + "popularity": 2200, "addendum": { "osm": "{\"operator\":\"UPS\",\"website\":\"http://www.ups.com/\"}" } @@ -867845,6 +868138,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723350364", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Canada Post\"}" } @@ -867874,6 +868168,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723350366", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 731 4771\"}" } @@ -868105,7 +868400,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1723404210" + "source_id": "node/1723404210", + "popularity": 1000 } }, { @@ -868161,6 +868457,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723406002", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://storelocator.bell.ca/bellca/en/BC/Vancouver/Bell-West-Broadway-Mall/BC803\",\"phone\":\"(604) 678-9392\"}" } @@ -868308,6 +868605,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723418293", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 732 0244\"}" } @@ -868390,6 +868688,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723429841", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 737 0238\"}" } @@ -868514,7 +868813,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1723429856" + "source_id": "node/1723429856", + "popularity": 1000 } }, { @@ -868658,6 +868958,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723435180", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Subway\",\"website\":\"http://www.subway.com/\"}" } @@ -868811,6 +869112,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723455877", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Canadian Tire\",\"website\":\"http://www.sportchek.ca/\"}" } @@ -868889,6 +869191,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723476080", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Subway\",\"website\":\"http://www.subway.com/\"}" } @@ -868915,6 +869218,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723485076", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 879 8538\"}" } @@ -868944,6 +869248,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723485078", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 879 9929\"}" } @@ -868992,7 +869297,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1723485080" + "source_id": "node/1723485080", + "popularity": 1000 } }, { @@ -869261,6 +869567,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1723548154", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 876 3811\"}" } @@ -869312,7 +869619,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1723548159" + "source_id": "node/1723548159", + "popularity": 1000 } }, { @@ -869480,6 +869788,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1730984021", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.telus.com\"}" } @@ -869505,7 +869814,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1730984991" + "source_id": "node/1730984991", + "popularity": 1000 } }, { @@ -869562,6 +869872,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1737960052", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 09:00-21:00\"}" } @@ -869673,6 +869984,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1752065484", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -869779,6 +870091,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1753557725", + "popularity": 200, "addendum": { "osm": "{\"website\":\"bluestarmotors.com\"}" } @@ -869805,6 +870118,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1753557757", + "popularity": 200, "addendum": { "osm": "{\"website\":\"bluestarmotors.com\"}" } @@ -869877,7 +870191,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1753577700" + "source_id": "node/1753577700", + "popularity": 1000 } }, { @@ -869974,6 +870289,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1753577712", + "popularity": 200, "addendum": { "osm": "{\"website\":\"sabawood.com\"}" } @@ -870270,6 +870586,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769839633", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://thecascade.ca/\"}" } @@ -870303,6 +870620,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769839637", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://charlieslittleitalian.com/\"}" } @@ -870335,6 +870653,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769850012", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.fuelledbycaffeine.com/\"}" } @@ -870421,6 +870740,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769861439", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.athenspizza.ca/\"}" } @@ -870454,6 +870774,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769863593", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.chutneyvilla.com/\"}" } @@ -870484,6 +870805,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769864748", + "popularity": 200, "addendum": { "osm": "{\"website\":\"https://www.jandm.com\"}" } @@ -870514,6 +870836,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769867629", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.vancouveranimalwellness.com/\"}" } @@ -870546,6 +870869,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769872902", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://kafkascoffee.ca/\"}" } @@ -870622,6 +870946,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769881395", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.thebelmontbarbershop.com/\"}" } @@ -870652,6 +870977,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769881398", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://mrleesgeneralstore.com/\"}" } @@ -870705,6 +871031,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769902838", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://pulpfictionbooksvancouver.com/\"}" } @@ -870735,6 +871062,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769906311", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.rxcomics.com/\"}" } @@ -870768,6 +871096,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769910469", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.thewallflowermoderndiner.com/\"}" } @@ -870823,6 +871152,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769919864", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://birdonawirecreations.com/\"}" } @@ -870853,6 +871183,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1769923659", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://thearchetype.ca/\"}" } @@ -870905,7 +871236,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1782907725" + "source_id": "node/1782907725", + "popularity": 1000 } }, { @@ -871038,6 +871370,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1793709914", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.thepint.ca/vancouver/\"}" } @@ -871070,6 +871403,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1793723065", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.rexall.ca/storelocator/store7182\"}" } @@ -871096,7 +871430,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1796612549" + "source_id": "node/1796612549", + "popularity": 1000 } }, { @@ -871169,7 +871504,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1798834303" + "source_id": "node/1798834303", + "popularity": 1000 } }, { @@ -871192,7 +871528,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1798834387" + "source_id": "node/1798834387", + "popularity": 1000 } }, { @@ -871215,7 +871552,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1798836183" + "source_id": "node/1798836183", + "popularity": 1000 } }, { @@ -871268,6 +871606,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1821036892", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-321-4448\"}" } @@ -871293,7 +871632,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1821927108" + "source_id": "node/1821927108", + "popularity": 1000 } }, { @@ -871322,6 +871662,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1824889951", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.harvestunion.ca\",\"phone\":\"604-682-8851\"}" } @@ -871352,6 +871693,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1824889957", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.jettgrrl.com\",\"phone\":\"604-255-5097\"}" } @@ -871384,6 +871726,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1827837991", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://newtownbakery.ca/\",\"phone\":\"604-681-1828\",\"opening_hours\":\"Sa-Sun 6:30-20:30\"}" } @@ -871443,6 +871786,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1828159048", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"sa-su 7-22\"}" } @@ -871472,7 +871816,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1833370015" + "source_id": "node/1833370015", + "popularity": 1000 } }, { @@ -871617,7 +871962,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/1842891704" + "source_id": "node/1842891704", + "popularity": 1000 } }, { @@ -871663,7 +872009,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1856357128" + "source_id": "node/1856357128", + "popularity": 1000 } }, { @@ -871687,6 +872034,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1887631219", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"City of Vancouver\"}" } @@ -871720,7 +872068,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1887632000" + "source_id": "node/1887632000", + "popularity": 2000 } }, { @@ -871743,7 +872092,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1887635499" + "source_id": "node/1887635499", + "popularity": 1000 } }, { @@ -871767,7 +872117,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1895836360" + "source_id": "node/1895836360", + "popularity": 1000 } }, { @@ -871792,6 +872143,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1897394214", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Avis\"}" } @@ -871819,6 +872171,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1897394215", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Blenz\"}" } @@ -871868,7 +872221,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1897394218" + "source_id": "node/1897394218", + "popularity": 1000 } }, { @@ -871891,7 +872245,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1918930490" + "source_id": "node/1918930490", + "popularity": 1000 } }, { @@ -871921,6 +872276,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1927003495", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.urbanfare.com/store/yaletown\"}" } @@ -871955,6 +872311,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1927016760", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.hurricanegrill.ca/\"}" } @@ -871987,6 +872344,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1927024490", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.sciue.ca/\"}" } @@ -872061,7 +872419,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1932449857" + "source_id": "node/1932449857", + "popularity": 1000 } }, { @@ -872256,7 +872615,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1932995195" + "source_id": "node/1932995195", + "popularity": 1000 } }, { @@ -872468,7 +872828,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1934815139" + "source_id": "node/1934815139", + "popularity": 1000 } }, { @@ -872567,6 +872928,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1934822258", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.bcliquorstores.com/store/locator?store=111\",\"phone\":\"(604) 660-9088\",\"opening_hours\":\"Mon-Sat: 10:00am - 9:00pm, Sun: Closed\"}" } @@ -872663,7 +873025,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1934829660" + "source_id": "node/1934829660", + "popularity": 2000 } }, { @@ -872735,7 +873098,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1935695833" + "source_id": "node/1935695833", + "popularity": 2000 } }, { @@ -872759,7 +873123,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1935696141" + "source_id": "node/1935696141", + "popularity": 1000 } }, { @@ -872978,7 +873343,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1937560348" + "source_id": "node/1937560348", + "popularity": 1000 } }, { @@ -873055,6 +873421,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1938712075", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.theblackfrog.ca\"}" } @@ -873086,6 +873453,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1938712081", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.treescoffee.com\"}" } @@ -873139,6 +873507,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1938712088", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.nuba.ca\"}" } @@ -873172,6 +873541,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1938712091", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.fuelledbycaffeine.com\"}" } @@ -873227,7 +873597,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1943543907" + "source_id": "node/1943543907", + "popularity": 1000 } }, { @@ -873253,6 +873624,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1944609896", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -873430,7 +873802,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1944628299" + "source_id": "node/1944628299", + "popularity": 1000 } }, { @@ -873454,7 +873827,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1944628427" + "source_id": "node/1944628427", + "popularity": 1000 } }, { @@ -873477,7 +873851,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/1944629984" + "source_id": "node/1944629984", + "popularity": 1000 } }, { @@ -873503,6 +873878,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1944631524", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -874006,6 +874382,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1945299996", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 3231918\"}" } @@ -874189,6 +874566,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1970223981", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://meatandbread.ca\"}" } @@ -874220,6 +874598,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/1977165441", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-325-6612\"}" } @@ -874277,6 +874656,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2007516210", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 3242200\"}" } @@ -874310,6 +874690,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2007702030", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"2147483647\"}" } @@ -874454,7 +874835,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2025082965" + "source_id": "node/2025082965", + "popularity": 2000 } }, { @@ -874480,7 +874862,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2062673756" + "source_id": "node/2062673756", + "popularity": 1000 } }, { @@ -874692,7 +875075,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2070405526" + "source_id": "node/2070405526", + "popularity": 1000 } }, { @@ -874905,6 +875289,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2070743974", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -874936,6 +875321,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2073712540", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.yelp.ca/biz/sorrento-barbers-vancouver\"}" } @@ -874969,6 +875355,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2073712545", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.yelp.com/biz/vancity-pizza-vancouver\"}" } @@ -875003,6 +875390,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2073712547", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.yelp.com.au/biz/mr-donair-vancouver\"}" } @@ -875034,6 +875422,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2073727595", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.yelp.ca/biz/olympia-tailors-vancouver\"}" } @@ -875066,6 +875455,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2073731028", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.yelp.ca/biz/como-market-vancouver\",\"phone\":\"(604) 255-1544\"}" } @@ -875113,7 +875503,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2078134600" + "source_id": "node/2078134600", + "popularity": 2000 } }, { @@ -875162,7 +875553,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2078134602" + "source_id": "node/2078134602", + "popularity": 1000 } }, { @@ -875232,7 +875624,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2089404752" + "source_id": "node/2089404752", + "popularity": 1000 } }, { @@ -875280,7 +875673,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2120301495" + "source_id": "node/2120301495", + "popularity": 1000 } }, { @@ -875309,6 +875703,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2122120385", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://storelocator.bell.ca/bellca/en/BC/Vancouver/Bell-Pacific-Centre/BC706\",\"phone\":\"(604) 408-3433\"}" } @@ -875340,6 +875735,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2122124678", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://storelocator.bell.ca/bellca/en/BC/Vancouver/Bell-Chinatown-Plaza/BC770\",\"phone\":\"(604) 689-8388\"}" } @@ -875371,6 +875767,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2122127302", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://storelocator.bell.ca/bellca/en/BC/Vancouver/Bell-Robson-Street/BC836\",\"phone\":\"(604) 678-3390\"}" } @@ -875424,6 +875821,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2133383695", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://falafullygood.com/\"}" } @@ -875455,6 +875853,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138561925", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/store/94\"}" } @@ -875486,6 +875885,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138564275", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/store/112\"}" } @@ -875517,6 +875917,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138567352", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/store/129\"}" } @@ -875548,6 +875949,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138569016", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/store/233\"}" } @@ -875579,6 +875981,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138577681", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/store/191\"}" } @@ -875610,6 +876013,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138592617", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/store/53\"}" } @@ -875640,7 +876044,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2138600904" + "source_id": "node/2138600904", + "popularity": 2000 } }, { @@ -875699,6 +876104,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2138612021", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"no\",\"website\":\"http://www.guiltandcompany.com/\"}" } @@ -875721,7 +876127,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2138618268" + "source_id": "node/2138618268", + "popularity": 1000 } }, { @@ -875750,6 +876157,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2147175667", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.no5orange.ca/\"}" } @@ -875782,6 +876190,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2147183549", + "popularity": 200, "addendum": { "osm": "{\"website\":\"n/a\"}" } @@ -875808,7 +876217,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2147184740" + "source_id": "node/2147184740", + "popularity": 1000 } }, { @@ -875832,7 +876242,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2147184803" + "source_id": "node/2147184803", + "popularity": 3000 } }, { @@ -875855,7 +876266,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2147187497" + "source_id": "node/2147187497", + "popularity": 1000 } }, { @@ -875880,6 +876292,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2157499542", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.ploeger.ca\",\"opening_hours\":\"Tu-Fr 08:00-19:00; Sa-Su 09:00-17:00\"}" } @@ -875913,6 +876326,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2168314490", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://revolvercoffee.ca/\"}" } @@ -875938,7 +876352,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2185622256" + "source_id": "node/2185622256", + "popularity": 1000 } }, { @@ -875967,6 +876382,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2186321118", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.facebook.com/pages/Pub-340/112707058751827\"}" } @@ -876046,7 +876462,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2206249015" + "source_id": "node/2206249015", + "popularity": 1000 } }, { @@ -876070,6 +876487,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2207863316", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Canada Post/Postes Canada\"}" } @@ -876092,7 +876510,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2214057343" + "source_id": "node/2214057343", + "popularity": 1000 } }, { @@ -876172,7 +876591,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2240907661" + "source_id": "node/2240907661", + "popularity": 1000 } }, { @@ -876219,7 +876639,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2240920732" + "source_id": "node/2240920732", + "popularity": 1000 } }, { @@ -876245,7 +876666,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2240924009" + "source_id": "node/2240924009", + "popularity": 1000 } }, { @@ -876271,6 +876693,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2240932407", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.murchies.com/store/our-locations.html\"}" } @@ -876296,7 +876719,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2240940494" + "source_id": "node/2240940494", + "popularity": 1000 } }, { @@ -876324,6 +876748,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2240944750", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.cambieflowers.com/\"}" } @@ -876375,7 +876800,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2241097732" + "source_id": "node/2241097732", + "popularity": 1000 } }, { @@ -876406,6 +876832,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2269668348", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.sweettoothcafe.ca\",\"phone\":\"604-255-6997\"}" } @@ -876632,6 +877059,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2274070869", + "popularity": 2200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"+1 604 654 3975\",\"opening_hours\":\"Mo-We 08:00-18:00; Th-Fr 08:00-20:00; Sa 08:00-16:00; Su 11:00-16:00\"}" } @@ -876658,6 +877086,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2274072561", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604 430 0142\"}" } @@ -876691,6 +877120,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2274074047", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"+1 604 437 1717\",\"opening_hours\":\"Mo-Su 11:00-22:25\"}" } @@ -876836,6 +877266,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2290999204", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"604 2619494\"}" } @@ -876866,6 +877297,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2302628102", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.mightyriders.ca\",\"opening_hours\":\"Mo-Fr 10:00-18:00; Sa 10:00-17:00; Su 12:00-17:00\"}" } @@ -876894,6 +877326,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2310467891", + "popularity": 5200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:Yaletown%E2%80%93Roundhouse Station\",\"website\":\"http://www.translink.ca\"}" } @@ -876927,6 +877360,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2310493940", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 3271158\"}" } @@ -877063,6 +877497,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2312427754", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"+1 (604) 566-9787\"}" } @@ -877088,7 +877523,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2312510873" + "source_id": "node/2312510873", + "popularity": 1000 } }, { @@ -877119,6 +877555,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2319152081", + "popularity": 200, "addendum": { "osm": "{\"website\":\"marbleslab.ca\"}" } @@ -877172,6 +877609,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2320273636", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.urbantea.com/\"}" } @@ -877204,6 +877642,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2320273637", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"(604)669-8383\"}" } @@ -877399,6 +877838,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2321011497", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://laundryvaletservices.com/\"}" } @@ -877637,7 +878077,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2321011538" + "source_id": "node/2321011538", + "popularity": 1000 } }, { @@ -877854,6 +878295,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2321016632", + "popularity": 2200, "addendum": { "osm": "{\"website\":\"http://scoreondavie.com/\"}" } @@ -877935,6 +878377,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2321187388", + "popularity": 6200, "addendum": { "osm": "{\"wikipedia\":\"en:Commodore Ballroom\",\"website\":\"http://www.commodoreballroom.ca/\"}" } @@ -878011,6 +878454,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2321943156", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-558-1338\"}" } @@ -878034,6 +878478,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2322709550", + "popularity": 3200, "addendum": { "osm": "{\"website\":\"http://www.coupland.com/digital-orca-2/\"}" } @@ -878064,7 +878509,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2323811950" + "source_id": "node/2323811950", + "popularity": 1000 } }, { @@ -878123,7 +878569,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2327355724" + "source_id": "node/2327355724", + "popularity": 2000 } }, { @@ -878143,7 +878590,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2327355743" + "source_id": "node/2327355743", + "popularity": 3000 } }, { @@ -878168,7 +878616,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2327355747" + "source_id": "node/2327355747", + "popularity": 2000 } }, { @@ -878273,6 +878722,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2328938291", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.malones.bc.ca/\"}" } @@ -878401,6 +878851,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2333683222", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.peacefulrestaurant.com/\"}" } @@ -878591,7 +879042,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2354309742" + "source_id": "node/2354309742", + "popularity": 1000 } }, { @@ -878614,7 +879066,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2380161811" + "source_id": "node/2380161811", + "popularity": 1000 } }, { @@ -878639,6 +879092,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2381676963", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"+1 (604) 733-4774\"}" } @@ -878737,7 +879191,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2410285536" + "source_id": "node/2410285536", + "popularity": 2000 } }, { @@ -878768,6 +879223,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2410457761", + "popularity": 1800, "addendum": { "osm": "{\"website\":\"http://bestie.ca\",\"phone\":\"604-620-1175\",\"opening_hours\":\"Mo-Sa 11:30-22:00\"}" } @@ -878800,6 +879256,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2410513050", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://blenz.com/\",\"phone\":\"604-633-0144\"}" } @@ -878829,7 +879286,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2410959743" + "source_id": "node/2410959743", + "popularity": 600 } }, { @@ -878849,7 +879307,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2410987244" + "source_id": "node/2410987244", + "popularity": 600 } }, { @@ -878873,7 +879332,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2411018297" + "source_id": "node/2411018297", + "popularity": 600 } }, { @@ -878905,6 +879365,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2441693951", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://centralbistro.com/\",\"phone\":\"+1-604-689-4527\"}" } @@ -878936,6 +879397,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2446101167", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.vpo.ca\",\"phone\":\"604-872-8872\",\"opening_hours\":\"Mo-We,Sa 10:00-18:00; Th 10:00-19:00; Fr 10:00-20:00; Su 11:00-18:00\"}" } @@ -878994,6 +879456,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2459481384", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://parallel49brewing.com/\"}" } @@ -879024,6 +879487,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2463744636", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://vancouverfleamarket.com/\",\"phone\":\"+1-604-685-0666\",\"opening_hours\":\"Sa-Su 09:00-17:00\"}" } @@ -879053,6 +879517,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2463769488", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.vancouveriphones.com/\",\"phone\":\"+1-778-707-3663\",\"opening_hours\":\"Sa-Su 09:00-17:00, PH Mo 10:00-16:00\"}" } @@ -879102,7 +879567,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2465885998" + "source_id": "node/2465885998", + "popularity": 1000 } }, { @@ -879131,6 +879597,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2473037250", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"604-428-0697\"}" } @@ -879163,6 +879630,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2473037500", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"604-874-8620\"}" } @@ -879185,7 +879653,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/247688308" + "source_id": "node/247688308", + "popularity": 1000 } }, { @@ -879276,6 +879745,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2485918696", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Yum! Brands\"}" } @@ -879513,6 +879983,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2488963360", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -879535,7 +880006,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2488971024" + "source_id": "node/2488971024", + "popularity": 1000 } }, { @@ -879582,7 +880054,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2488974531" + "source_id": "node/2488974531", + "popularity": 2000 } }, { @@ -879650,7 +880123,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2490635042" + "source_id": "node/2490635042", + "popularity": 1000 } }, { @@ -879790,7 +880264,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2490635048" + "source_id": "node/2490635048", + "popularity": 1000 } }, { @@ -879815,6 +880290,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2490635049", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.ca/\"}" } @@ -880190,6 +880666,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2496954731", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-569-1744\"}" } @@ -880215,7 +880692,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2500684806" + "source_id": "node/2500684806", + "popularity": 1000 } }, { @@ -880288,6 +880766,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2516023474", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Bitcoiniacs\",\"website\":\"http://bitcoiniacs.com/\"}" } @@ -880360,6 +880839,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2528570628", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bodycomp.ca/services.html\"}" } @@ -880387,7 +880867,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/25325837" + "source_id": "node/25325837", + "popularity": 2000 } }, { @@ -880413,6 +880894,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/25325841", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -880466,6 +880948,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2533689605", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://w.subway.com/en-ca/\"}" } @@ -880545,6 +881028,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2534918119", + "popularity": 600, "addendum": { "osm": "{\"website\":\"https://www.facebook.com/WernerWoodworking\",\"phone\":\"+1 778 231 0493\"}" } @@ -880573,6 +881057,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2539269436", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.cropkingseeds.com\"}" } @@ -880605,6 +881090,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2540633857", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.49thparallelroasters.com/\"}" } @@ -880663,6 +881149,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2551902578", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.fullboarcreative.com\",\"phone\":\"+1.604.800.0266\"}" } @@ -880690,6 +881177,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/255435370", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Shell\"}" } @@ -880741,6 +881229,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2560866260", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.cropkingseeds.com\"}" } @@ -880802,6 +881291,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2562385355", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.hfour.ca\"}" } @@ -880829,6 +881319,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2562586377", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.thewildersnail.com/\"}" } @@ -880878,7 +881369,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/256540633" + "source_id": "node/256540633", + "popularity": 1000 } }, { @@ -880902,7 +881394,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/256633912" + "source_id": "node/256633912", + "popularity": 1000 } }, { @@ -880956,6 +881449,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2572849461", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mjseedscanada.com/\"}" } @@ -880983,7 +881477,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/25751159" + "source_id": "node/25751159", + "popularity": 2000 } }, { @@ -881012,6 +881507,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2577906499", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.lostandfoundcafe.com/\"}" } @@ -881039,6 +881535,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2590963136", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-We,Fr-Su 11:00-20:00; Mo,Th 13:00-20:00\"}" } @@ -881067,6 +881564,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2597001143", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.zyza.ca/\",\"phone\":\"+1 888 661 3461\"}" } @@ -881094,6 +881592,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2601356374", + "popularity": 200, "addendum": { "osm": "{\"website\":\"https://coinkite.com/terminals/cfb7e774-0f80-4e26-a4ad-c17b59ecba76\"}" } @@ -881125,6 +881624,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2611360463", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www1.shoppersdrugmart.ca/en/Home\"}" } @@ -881153,6 +881653,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2611725501", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://unityyoga.ca/\",\"phone\":\"+1 604-708-8369\"}" } @@ -881251,7 +881752,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2611908285" + "source_id": "node/2611908285", + "popularity": 2000 } }, { @@ -881448,7 +881950,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2612805465" + "source_id": "node/2612805465", + "popularity": 1000 } }, { @@ -881549,6 +882052,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2613954287", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.stonechimassage.com/\"}" } @@ -881582,6 +882086,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2615888802", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://roguewetbar.com/broadway\",\"phone\":\"+1 604 568 9400\"}" } @@ -881610,6 +882115,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2621939033", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.francescos.com/\",\"phone\":\"+1 604 685-7770\"}" } @@ -881638,6 +882144,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2621953193", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.printprint.ca\",\"phone\":\"+1 (604) 872.8943\"}" } @@ -881665,6 +882172,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2621964438", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://someproductapparel.com/\"}" } @@ -881693,6 +882201,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2622980227", + "popularity": 400, "addendum": { "osm": "{\"website\":\"https://www.quadrigacx.com/\",\"phone\":\"+1 604-757-9660\"}" } @@ -881726,6 +882235,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2623011469", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.merchantsoysterbar.ca/\",\"phone\":\"604-258-0005\",\"opening_hours\":\"Dinner: 7 days a week, 5pm to close, Brunch: Saturday & Sunday, 1030am to 230pm\"}" } @@ -881757,6 +882267,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2624139020", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-215-7771\"}" } @@ -881790,6 +882301,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2625502406", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.greenlettucerestaurant.ca\",\"phone\":\"604-876-9883\"}" } @@ -881868,6 +882380,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2629104965", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.mbmigration.ca\",\"phone\":\"(604) 616-2299\",\"opening_hours\":\"9:00AM-6:00PM\"}" } @@ -881899,6 +882412,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2629242889", + "popularity": 3400, "addendum": { "osm": "{\"wikipedia\":\"en:Central 1 Credit Union\",\"website\":\"http://www.central1.com/\",\"phone\":\"(604) 734-2511\"}" } @@ -881931,6 +882445,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2629275111", + "popularity": 2200, "addendum": { "osm": "{\"phone\":\"+1 604 665 3888\",\"opening_hours\":\"Mo-Th 08:00-19:00; Fr 08:00-18:00; Sa 09:00-16:00\"}" } @@ -882036,6 +882551,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2635211541", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.estatewineshop.com/\",\"opening_hours\":\"11:00-22:00\"}" } @@ -882062,6 +882578,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2637705564", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604 5692569\"}" } @@ -882138,7 +882655,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2643327720" + "source_id": "node/2643327720", + "popularity": 1000 } }, { @@ -882247,6 +882765,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2651272296", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://thereefrestaurant.com\"}" } @@ -882278,6 +882797,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2651272302", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.littleearthvancouver.com\",\"opening_hours\":\"10 AM to 6 PM\"}" } @@ -882310,6 +882830,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2651272309", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://east-end-food.coop\"}" } @@ -882341,6 +882862,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2653537656", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.kissingcrowscyclery.com/\",\"phone\":\"+1 604 872 5477\"}" } @@ -882394,6 +882916,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2654820596", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"(604) 558-0299\"}" } @@ -882420,7 +882943,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2655590608" + "source_id": "node/2655590608", + "popularity": 1000 } }, { @@ -882449,7 +882973,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2656805074" + "source_id": "node/2656805074", + "popularity": 1000 } }, { @@ -882510,6 +883035,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2664378958", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-216-2535\"}" } @@ -882541,6 +883067,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2667370310", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.musettecaffe.com/\",\"phone\":\"(604) 336-1159\",\"opening_hours\":\"Mo-Fr 07:00-16:00; Sa,Su 08:00-16:00\"}" } @@ -882566,7 +883093,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2667955055" + "source_id": "node/2667955055", + "popularity": 1000 } }, { @@ -882598,6 +883126,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2678439926", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 876 8828\"}" } @@ -882630,6 +883159,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2682257338", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://orpheum-theater.com/orpheum_theater_vancouver.php\"}" } @@ -882688,6 +883218,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2695449862", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"8am-6pm\"}" } @@ -882771,6 +883302,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2711740615", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-255-5805\"}" } @@ -882801,6 +883333,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2712732713", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://blackdogvideo.bc.ca/\",\"phone\":\"604-251-3305\"}" } @@ -882831,6 +883364,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2712735086", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://libertywinemerchants.com\",\"phone\":\"604-633-1922\"}" } @@ -882861,6 +883395,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2712741827", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Nigel Springthorpe & Conrad Gmoser\",\"website\":\"http://brassneck.ca/\"}" } @@ -882891,6 +883426,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2712743327", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://33acresbrewing.com/\",\"phone\":\"604-620-4589\"}" } @@ -882921,6 +883457,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2712744770", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.powellbeer.com\",\"phone\":\"604-558-2537\"}" } @@ -882947,6 +883484,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2713183624", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://opusartsupplies.com\",\"opening_hours\":\"Mo-Sa 10:00-18:00; Su 11:00-17:00\"}" } @@ -882981,6 +883519,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2713482754", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Sunday to Thursday: 11am until late. Weekends: 12pm until later\"}" } @@ -883013,6 +883552,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2718677795", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-685-5010\"}" } @@ -883069,7 +883609,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2720126176" + "source_id": "node/2720126176", + "popularity": 2000 } }, { @@ -883095,6 +883636,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2720126179", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -883123,6 +883665,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2720126183", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -883179,6 +883722,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2720229330", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"TransLink\"}" } @@ -883206,7 +883750,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2720250789" + "source_id": "node/2720250789", + "popularity": 2000 } }, { @@ -883231,7 +883776,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2720250798" + "source_id": "node/2720250798", + "popularity": 2000 } }, { @@ -883256,7 +883802,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2720256092" + "source_id": "node/2720256092", + "popularity": 2000 } }, { @@ -883282,6 +883829,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2720260918", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -883309,7 +883857,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2720270388" + "source_id": "node/2720270388", + "popularity": 2000 } }, { @@ -883341,6 +883890,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2740957662", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.chefhungnoodle.com/ubc_vancouver/eng/\",\"phone\":\"604-228-8765\"}" } @@ -883372,7 +883922,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2746820278" + "source_id": "node/2746820278", + "popularity": 1000 } }, { @@ -883433,6 +883984,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2746822088", + "popularity": 3200, "addendum": { "osm": "{\"operator\":\"Vancouver Public Library\",\"phone\":\"604-665-3982\"}" } @@ -883455,7 +884007,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2754803371" + "source_id": "node/2754803371", + "popularity": 1000 } }, { @@ -883475,7 +884028,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2754803372" + "source_id": "node/2754803372", + "popularity": 1000 } }, { @@ -883501,6 +884055,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2757646806", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.prospectpoint.ca/Prospect_Point/Restaurant.html\",\"phone\":\"(604)669-2737\"}" } @@ -883527,6 +884082,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2757646810", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.prospectpoint.ca/Prospect_Point/Gifts.html\"}" } @@ -883558,6 +884114,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2763312711", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.westpointcycles.com/\",\"phone\":\"604-224-3536\"}" } @@ -883699,6 +884256,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2778673916", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://candiataverna.com/\"}" } @@ -883733,6 +884291,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2778673917", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.sunsushi.ca/\",\"phone\":\"(604) 222-8868\"}" } @@ -883787,6 +884346,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2785799760", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://tourdefeast.com/\"}" } @@ -883813,6 +884373,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2790848831", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"2:00 - 11:45 pm\"}" } @@ -883868,6 +884429,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2795446510", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-876-3731\"}" } @@ -883890,7 +884452,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2806779042" + "source_id": "node/2806779042", + "popularity": 1000 } }, { @@ -883919,6 +884482,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2807280509", + "popularity": 2400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.spinemuscle.ca\",\"phone\":\"+16044316661\",\"opening_hours\":\"opening_hours=Tu 14:00-21:00, We 10:00-15:00, Th 14:00-21:00, Fr 10:00-15:00, Sa-Su 12:00-17:00, Mo off\"}" } @@ -883949,6 +884513,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2816159101", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.maitriwellness.ca\",\"phone\":\"604.229.3299\"}" } @@ -883976,7 +884541,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/2832776517" + "source_id": "node/2832776517", + "popularity": 1000 } }, { @@ -884004,6 +884570,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2832787748", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"no\",\"website\":\"http://www.launchacademy.ca/\"}" } @@ -884032,6 +884599,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2845216562", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.thefalltattooing.com/\",\"phone\":\"604.676.3066\"}" } @@ -884065,6 +884633,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2848826530", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.steamrollers.com/locations.html\",\"opening_hours\":\"8:00am - 12:00am\"}" } @@ -884097,6 +884666,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2849717435", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-484-3752\"}" } @@ -884127,6 +884697,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2852238320", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"(604)-708-9300\"}" } @@ -884157,6 +884728,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2859299098", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.cypressupholstery.ca/\",\"phone\":\"604 251 7895\"}" } @@ -884188,6 +884760,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2862381376", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.carmanaplaza.com\"}" } @@ -884297,7 +884870,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2869567212" + "source_id": "node/2869567212", + "popularity": 1000 } }, { @@ -884325,7 +884899,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2870392128" + "source_id": "node/2870392128", + "popularity": 1000 } }, { @@ -884353,7 +884928,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2870392136" + "source_id": "node/2870392136", + "popularity": 1000 } }, { @@ -884381,7 +884957,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2870442387" + "source_id": "node/2870442387", + "popularity": 1000 } }, { @@ -884409,7 +884986,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2870483056" + "source_id": "node/2870483056", + "popularity": 1000 } }, { @@ -884437,7 +885015,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2870514620" + "source_id": "node/2870514620", + "popularity": 1000 } }, { @@ -884465,7 +885044,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2871179060" + "source_id": "node/2871179060", + "popularity": 1000 } }, { @@ -884493,7 +885073,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2871280105" + "source_id": "node/2871280105", + "popularity": 1000 } }, { @@ -884546,6 +885127,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2882826678", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"604-484-1470\"}" } @@ -884577,7 +885159,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2882826679" + "source_id": "node/2882826679", + "popularity": 1000 } }, { @@ -884636,6 +885219,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2882826681", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"9:00 am - 11:00 pm\"}" } @@ -884662,6 +885246,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2887816019", + "popularity": 1200, "addendum": { "osm": "{\"opening_hours\":\"Mo-Sa 10:00-18:00; Su 11:00-17:00\"}" } @@ -884689,6 +885274,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2894043387", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http:// www.vancouverelectronicdepot.com\",\"phone\":\"604-428-4887\",\"opening_hours\":\"Jan-Dec: Su 12:00-18:00; Mo-Sa 11:00-19:00\"}" } @@ -884823,7 +885409,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2900172775" + "source_id": "node/2900172775", + "popularity": 1000 } }, { @@ -884884,6 +885471,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2911746771", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1-604-568-8040\"}" } @@ -884910,6 +885498,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2911776630", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.kitandace.com\"}" } @@ -885147,7 +885736,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2926318356" + "source_id": "node/2926318356", + "popularity": 2000 } }, { @@ -885288,6 +885878,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2933717138", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.genesisnutrition.ca/\"}" } @@ -885448,6 +886039,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2933781471", + "popularity": 200, "addendum": { "osm": "{\"website\":\"https://www.denmanbikeshop.com/\"}" } @@ -885616,7 +886208,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2933862902" + "source_id": "node/2933862902", + "popularity": 1000 } }, { @@ -885824,6 +886417,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2933886280", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.joesgrill.ca/\"}" } @@ -886115,7 +886709,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2933929710" + "source_id": "node/2933929710", + "popularity": 1000 } }, { @@ -886327,6 +886922,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2941305013", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"8am - 6pm\"}" } @@ -886641,6 +887237,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2953818957", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"9am - 11pm daily\"}" } @@ -886723,6 +887320,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2956615434", + "popularity": 4000, "addendum": { "osm": "{\"operator\":\"Queens Library\",\"opening_hours\":\"http://www.queenslibrary.org/branch/Hollis?filters=ev_loc:93500000\"}" } @@ -886754,6 +887352,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2958115545", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"+1 604 873 3666\"}" } @@ -886779,7 +887378,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2959039246" + "source_id": "node/2959039246", + "popularity": 2000 } }, { @@ -886803,6 +887403,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2960324270", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Heather Hospitality Group\",\"website\":\"http://www.bittertastingroom.com\"}" } @@ -886913,6 +887514,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2965430623", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604-876-1411\"}" } @@ -886969,6 +887571,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2967219571", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.sandmanhotels.ca/hotels/vancouver-davie-street/\",\"phone\":\"604 681 7263\"}" } @@ -887000,7 +887603,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/2969713582" + "source_id": "node/2969713582", + "popularity": 2000 } }, { @@ -887029,6 +887633,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2970950796", + "popularity": 3200, "addendum": { "osm": "{\"operator\":\"London Drugs\",\"phone\":\"+1 (604) 448-4882\",\"opening_hours\":\"9:00 am - 9:00pm\"}" } @@ -887055,6 +887660,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2975144173", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.terrakendama.com\"}" } @@ -887134,6 +887740,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2985506419", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://bonesps.com/\"}" } @@ -887160,6 +887767,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2985506422", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.nygard.com/\"}" } @@ -887302,6 +887910,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2985515584", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://allegra.ca/\"}" } @@ -887409,6 +888018,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/2996426273", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://rickshawtheatre.com‎\",\"phone\":\"+1 604-681-8915\"}" } @@ -887774,6 +888384,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3025862205", + "popularity": 4000, "addendum": { "osm": "{\"wikipedia\":\"en:Dude Chilling Park\"}" } @@ -887796,7 +888407,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/3025862206" + "source_id": "node/3025862206", + "popularity": 1000 } }, { @@ -887822,6 +888434,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3033990623", + "popularity": 3200, "addendum": { "osm": "{\"wikipedia\":\"en:Avigilon\",\"website\":\"http://www.avigilon.com\"}" } @@ -887848,7 +888461,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3035858529" + "source_id": "node/3035858529", + "popularity": 1000 } }, { @@ -887877,6 +888491,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3036111072", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604 251 3411\"}" } @@ -887905,6 +888520,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3036583989", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://floathouse.ca/home/\",\"phone\":\"604-253-5628\"}" } @@ -887933,6 +888549,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3036583990", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://floathouse.ca/\",\"phone\":\"604-253-5628\"}" } @@ -887961,6 +888578,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3036597070", + "popularity": 400, "addendum": { "osm": "{\"website\":\"https://www.facebook.com/pages/Rouge-Bistro/1650607801831779\",\"phone\":\"778-229-4199\"}" } @@ -887992,6 +888610,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3042218595", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.pome.ca/\",\"phone\":\"+16047226746\"}" } @@ -888025,6 +888644,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3046658942", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.numefood.com\",\"phone\":\"604 559 6863\"}" } @@ -888050,7 +888670,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3051284922" + "source_id": "node/3051284922", + "popularity": 1000 } }, { @@ -888133,6 +888754,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3066876567", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://mahonyandsons.com/\",\"phone\":\"+1 604-647-7513\"}" } @@ -888161,6 +888783,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3072748937", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -888220,6 +888843,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3099218752", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"muse21.ca\"}" } @@ -888410,6 +889034,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3117757034", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"limited\",\"phone\":\"604) 215-9121\",\"opening_hours\":\"24hrs\"}" } @@ -888464,6 +889089,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3129993831", + "popularity": 2400, "addendum": { "osm": "{\"operator\":\"Jared Joubert\",\"website\":\"http://expandfurniture.com/vancouver\",\"phone\":\"778-580-7818\",\"opening_hours\":\"9a-8p by appt\"}" } @@ -888492,6 +889118,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/313855811", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -888551,6 +889178,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3146975305", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://citystudiovancouver.com/\",\"phone\":\"1-604-874-6401\"}" } @@ -888582,6 +889210,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3148480507", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://citystudiovancouver.com/\",\"phone\":\"1-604-874-6401\"}" } @@ -888604,7 +889233,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/3148592029" + "source_id": "node/3148592029", + "popularity": 1000 } }, { @@ -888633,6 +889263,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3150784599", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://churchinvancouver.ca/\",\"phone\":\"604-266-6727\"}" } @@ -888664,6 +889295,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3150790901", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://pottersplacemission.com/\",\"phone\":\"+1 604 688 2968\"}" } @@ -888721,6 +889353,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3155505529", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-879-5724\"}" } @@ -888755,6 +889388,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3155510982", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.utopiarestaurant.ca\",\"phone\":\"604-313-1333\"}" } @@ -888786,6 +889420,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3155515549", + "popularity": 400, "addendum": { "osm": "{\"website\":\"vancouver.hyatt.com\",\"phone\":\"604-639-4771\"}" } @@ -888819,6 +889454,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3155518342", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.thaison.ca/\"}" } @@ -888850,6 +889486,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3155531151", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"clothes\",\"opening_hours\":\"10:00 - 18:00\"}" } @@ -888944,6 +889581,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3160437745", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"(604) 879-8815\"}" } @@ -888977,6 +889615,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3169060829", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mon to Thursday 6:30am - 11pm;Friday 6:30am - Midnight;Sat 8am - Midnight;Sund 8am - 11pm.\"}" } @@ -889009,6 +889648,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3171185363", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mon to Fri: 7am - 5pm Sat: 8am - 4 pm / Sun: Closed\"}" } @@ -889040,6 +889680,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3171220256", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.lukescornerbar.com/\",\"phone\":\"604.733.5699\",\"opening_hours\":\"Monday-Friday 11:30 am till late Saturday and Sunday open 10 am brunch til late\"}" } @@ -889065,7 +889706,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/317125592" + "source_id": "node/317125592", + "popularity": 1000 } }, { @@ -889088,7 +889730,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/317125595" + "source_id": "node/317125595", + "popularity": 1000 } }, { @@ -889117,6 +889760,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3171458737", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.anthropologie.com/anthro/index.jsp\",\"opening_hours\":\"Mon-Wed 10AM-7PM Thu-Fri 10AM-8PM Sat 10AM-7PM Sun 11AM-6PM\"}" } @@ -889142,7 +889786,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3172231534" + "source_id": "node/3172231534", + "popularity": 1000 } }, { @@ -889280,6 +889925,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3188055310", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://megaill.com/\"}" } @@ -889311,6 +889957,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3205671188", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-685-8323\"}" } @@ -889366,6 +890013,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3222766052", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-731-4153\"}" } @@ -889399,6 +890047,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3225462062", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"no\",\"website\":\"www.stretchvancouver.com\",\"phone\":\"778-819-6488\"}" } @@ -889669,6 +890318,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3238824221", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"604-874-5535\",\"opening_hours\":\"Mon-Fri 8am - 5:30pm\"}" } @@ -889695,6 +890345,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3238927234", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.narrowlounge.com/\"}" } @@ -889746,6 +890397,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/324334016", + "popularity": 6000, "addendum": { "osm": "{\"wikipedia\":\"en:Hollis (LIRR station)\",\"operator\":\"Long Island Rail Road\"}" } @@ -889809,6 +890461,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3257688821", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-677-4247\"}" } @@ -889859,7 +890512,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3264390253" + "source_id": "node/3264390253", + "popularity": 1000 } }, { @@ -889907,6 +890561,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3281327361", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://canada.roots.com\"}" } @@ -890033,6 +890688,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3283394862", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.japadog.com\"}" } @@ -890059,6 +890715,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3283394964", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://tiffany.com\"}" } @@ -890085,6 +890742,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3283395068", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://coach.com\"}" } @@ -890134,6 +890792,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3283396661", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://shop.lacoste.ca\"}" } @@ -890183,6 +890842,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3283396761", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://hermes.com\"}" } @@ -890288,6 +890948,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3301539232", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.lasikmd.com/vancouver\",\"phone\":\"+1-604-639-8088\"}" } @@ -890320,6 +890981,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3302905297", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://trafiq.ca/\"}" } @@ -890351,7 +891013,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3303140329" + "source_id": "node/3303140329", + "popularity": 1000 } }, { @@ -890430,6 +891093,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3304305263", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.fullymanaged.com\",\"phone\":\"+1 604 484-4222\"}" } @@ -890513,6 +891177,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3313296661", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"VBCE\"}" } @@ -890545,6 +891210,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3328027775", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"5:30 - 22:30\"}" } @@ -890656,6 +891322,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3328046762", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"07:30 - 20:00\"}" } @@ -890719,6 +891386,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3329435432", + "popularity": 1200, "addendum": { "osm": "{\"opening_hours\":\"Mo-Th: 11:00 - 21:30;Fr-Sa: 11:00 - 22:00;Sun: 11:30 - 21:00\"}" } @@ -890753,6 +891421,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3329435785", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-879-4444\"}" } @@ -890786,6 +891455,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3349165006", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-559-3435\"}" } @@ -890816,7 +891486,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3352266145" + "source_id": "node/3352266145", + "popularity": 1000 } }, { @@ -890845,6 +891516,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3352861550", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://jjbeancoffee.com/locations/\",\"phone\":\"604-559-8965\",\"opening_hours\":\"Weekdays 6:00am-8:00pm | Weekends 7:00am-8:00pm\"}" } @@ -891026,6 +891698,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3353389262", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6049832325\"}" } @@ -891049,6 +891722,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3355430522", + "popularity": 4000, "addendum": { "osm": "{\"wikipedia\":\"en:Engagement (sculpture)\"}" } @@ -891082,6 +891756,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3355437631", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"(604) 685-5333\",\"opening_hours\":\"Mo-Fr 05:30-18:00;Sa-Su 06:30-17:00\"}" } @@ -891107,7 +891782,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/335749614" + "source_id": "node/335749614", + "popularity": 2000 } }, { @@ -891132,6 +891808,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3357861630", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -891159,6 +891836,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3357907918", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -891186,6 +891864,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3357907919", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -891236,6 +891915,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3360067112", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -891263,6 +891943,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3360067113", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -891310,7 +891991,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/3361215749" + "source_id": "node/3361215749", + "popularity": 2000 } }, { @@ -891330,7 +892012,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/3361215751" + "source_id": "node/3361215751", + "popularity": 2000 } }, { @@ -891353,7 +892036,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/336921017" + "source_id": "node/336921017", + "popularity": 1000 } }, { @@ -891385,6 +892069,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3383933741", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-568-6674\"}" } @@ -891455,6 +892140,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/338846665", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"limited\"}" } @@ -891506,6 +892192,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3390473276", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Loblaw Companies Limited\",\"website\":\"http://www.extrafoods.ca/\"}" } @@ -891556,6 +892243,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3390473902", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Vancouver Public Library\"}" } @@ -891582,6 +892270,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3390474073", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bcliquorstores.com/\"}" } @@ -891614,6 +892303,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3393295245", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.sansho.ca\",\"phone\":\"778-340-1189\",\"opening_hours\":\"11:30-2:30 5:00-9:00 closed on Mondays\"}" } @@ -891670,6 +892360,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3401126412", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-675-9750\"}" } @@ -891696,6 +892387,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/340144179", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Delta\"}" } @@ -891730,6 +892422,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3404808367", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-251-3322\"}" } @@ -891875,6 +892568,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3448679058", + "popularity": 200, "addendum": { "osm": "{\"website\":\"https://vancouver.hackspace.ca\"}" } @@ -891950,7 +892644,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3449378524" + "source_id": "node/3449378524", + "popularity": 1000 } }, { @@ -892097,7 +892792,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3449429818" + "source_id": "node/3449429818", + "popularity": 2000 } }, { @@ -892166,7 +892862,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3449437765" + "source_id": "node/3449437765", + "popularity": 1000 } }, { @@ -892312,7 +893009,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3451432215" + "source_id": "node/3451432215", + "popularity": 1000 } }, { @@ -892337,6 +893035,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3452488798", + "popularity": 3200, "addendum": { "osm": "{\"operator\":\"West Park\",\"website\":\"http://www.westpark.com\"}" } @@ -892368,6 +893067,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3452570530", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.iridiamedical.com\"}" } @@ -892424,6 +893124,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3452612305", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://kayamalay.com\"}" } @@ -892456,6 +893157,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3454828001", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://jjbeancoffee.com/locations/\",\"opening_hours\":\"6:00 - 21:00 daily\"}" } @@ -892487,6 +893189,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3454836155", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://rainorshineicecream.com/\"}" } @@ -892514,6 +893217,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3456659790", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus & False Creek Ferries (No bikes)\"}" } @@ -892541,6 +893245,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3456666797", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus\"}" } @@ -892568,6 +893273,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3456696411", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus & False Creek Ferries (No bikes)\"}" } @@ -892595,6 +893301,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3456702076", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus & False Creek Ferries (No bikes)\"}" } @@ -892644,6 +893351,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3456746314", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Sa-We 10:00-18:00, Th-Fr 10:00-19:00\"}" } @@ -892726,6 +893434,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3466307578", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"12-20\"}" } @@ -892910,7 +893619,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477294756" + "source_id": "node/3477294756", + "popularity": 1000 } }, { @@ -892964,7 +893674,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477294758" + "source_id": "node/3477294758", + "popularity": 1000 } }, { @@ -893099,7 +893810,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477330606" + "source_id": "node/3477330606", + "popularity": 1000 } }, { @@ -893153,7 +893865,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477330608" + "source_id": "node/3477330608", + "popularity": 1000 } }, { @@ -893180,7 +893893,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477330609" + "source_id": "node/3477330609", + "popularity": 1000 } }, { @@ -893208,6 +893922,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/3477330610", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"604-253-4567\"}" } @@ -893237,7 +893952,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477330611" + "source_id": "node/3477330611", + "popularity": 1000 } }, { @@ -893264,7 +893980,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477338129" + "source_id": "node/3477338129", + "popularity": 1000 } }, { @@ -893418,7 +894135,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/3477536170" + "source_id": "node/3477536170", + "popularity": 2000 } }, { @@ -893445,7 +894163,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3483183543" + "source_id": "node/3483183543", + "popularity": 1000 } }, { @@ -893521,7 +894240,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/3487923931" + "source_id": "node/3487923931", + "popularity": 1000 } }, { @@ -893544,7 +894264,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/3487930121" + "source_id": "node/3487930121", + "popularity": 1000 } }, { @@ -893567,7 +894288,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357544886" + "source_id": "node/357544886", + "popularity": 1000 } }, { @@ -893613,7 +894335,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357562105" + "source_id": "node/357562105", + "popularity": 1000 } }, { @@ -893636,7 +894359,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357562187" + "source_id": "node/357562187", + "popularity": 1000 } }, { @@ -893659,7 +894383,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357571153" + "source_id": "node/357571153", + "popularity": 1000 } }, { @@ -893682,7 +894407,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357578519" + "source_id": "node/357578519", + "popularity": 1000 } }, { @@ -893710,7 +894436,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357578697" + "source_id": "node/357578697", + "popularity": 1000 } }, { @@ -893733,7 +894460,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357585497" + "source_id": "node/357585497", + "popularity": 1000 } }, { @@ -893756,7 +894484,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357587644" + "source_id": "node/357587644", + "popularity": 1000 } }, { @@ -893779,7 +894508,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357597779" + "source_id": "node/357597779", + "popularity": 1000 } }, { @@ -893802,7 +894532,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357612672" + "source_id": "node/357612672", + "popularity": 1000 } }, { @@ -893825,7 +894556,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357613062" + "source_id": "node/357613062", + "popularity": 1000 } }, { @@ -893848,7 +894580,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617550" + "source_id": "node/357617550", + "popularity": 1000 } }, { @@ -893876,7 +894609,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617553" + "source_id": "node/357617553", + "popularity": 1000 } }, { @@ -893899,7 +894633,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617556" + "source_id": "node/357617556", + "popularity": 1000 } }, { @@ -893922,7 +894657,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617559" + "source_id": "node/357617559", + "popularity": 1000 } }, { @@ -893945,7 +894681,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617571" + "source_id": "node/357617571", + "popularity": 1000 } }, { @@ -893973,7 +894710,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617577" + "source_id": "node/357617577", + "popularity": 1000 } }, { @@ -894001,7 +894739,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617597" + "source_id": "node/357617597", + "popularity": 1000 } }, { @@ -894024,7 +894763,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617599" + "source_id": "node/357617599", + "popularity": 1000 } }, { @@ -894052,7 +894792,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617609" + "source_id": "node/357617609", + "popularity": 1000 } }, { @@ -894075,7 +894816,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617625" + "source_id": "node/357617625", + "popularity": 1000 } }, { @@ -894098,7 +894840,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617760" + "source_id": "node/357617760", + "popularity": 1000 } }, { @@ -894121,7 +894864,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357617795" + "source_id": "node/357617795", + "popularity": 1000 } }, { @@ -894144,7 +894888,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357618084" + "source_id": "node/357618084", + "popularity": 1000 } }, { @@ -894167,7 +894912,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357618086" + "source_id": "node/357618086", + "popularity": 1000 } }, { @@ -894190,7 +894936,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357618108" + "source_id": "node/357618108", + "popularity": 1000 } }, { @@ -894213,7 +894960,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357618130" + "source_id": "node/357618130", + "popularity": 1000 } }, { @@ -894236,7 +894984,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357618133" + "source_id": "node/357618133", + "popularity": 1000 } }, { @@ -894259,7 +895008,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357618266" + "source_id": "node/357618266", + "popularity": 1000 } }, { @@ -894282,7 +895032,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357625282" + "source_id": "node/357625282", + "popularity": 1000 } }, { @@ -894305,7 +895056,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357625284" + "source_id": "node/357625284", + "popularity": 1000 } }, { @@ -894333,7 +895085,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357625288" + "source_id": "node/357625288", + "popularity": 1000 } }, { @@ -894356,7 +895109,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357625292" + "source_id": "node/357625292", + "popularity": 1000 } }, { @@ -894379,7 +895133,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/357625297" + "source_id": "node/357625297", + "popularity": 1000 } }, { @@ -894744,7 +895499,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/368046946" + "source_id": "node/368046946", + "popularity": 1000 } }, { @@ -894767,7 +895523,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/368047253" + "source_id": "node/368047253", + "popularity": 1000 } }, { @@ -894790,7 +895547,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/368049479" + "source_id": "node/368049479", + "popularity": 1000 } }, { @@ -894814,7 +895572,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/368049839" + "source_id": "node/368049839", + "popularity": 2000 } }, { @@ -894838,7 +895597,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/368050015" + "source_id": "node/368050015", + "popularity": 2000 } }, { @@ -894863,6 +895623,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/371268660", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Shell\",\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -894911,7 +895672,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/391696665" + "source_id": "node/391696665", + "popularity": 2000 } }, { @@ -894936,7 +895698,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/393643280" + "source_id": "node/393643280", + "popularity": 2000 } }, { @@ -894959,7 +895722,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/4121844389" + "source_id": "node/4121844389", + "popularity": 1000 } }, { @@ -894979,7 +895743,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/4121848889" + "source_id": "node/4121848889", + "popularity": 1000 } }, { @@ -895028,7 +895793,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/414551251" + "source_id": "node/414551251", + "popularity": 1000 } }, { @@ -895051,7 +895817,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/4148072789" + "source_id": "node/4148072789", + "popularity": 1000 } }, { @@ -895074,7 +895841,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/4151744789" + "source_id": "node/4151744789", + "popularity": 2000 } }, { @@ -895102,7 +895870,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/4229216490" + "source_id": "node/4229216490", + "popularity": 1000 } }, { @@ -895154,7 +895923,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/425158486" + "source_id": "node/425158486", + "popularity": 2000 } }, { @@ -895195,6 +895965,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/427896230", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -895249,6 +896020,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/428214457", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Cineplex\"}" } @@ -895275,7 +896047,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/428214458" + "source_id": "node/428214458", + "popularity": 1000 } }, { @@ -895301,6 +896074,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/430022553", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -895328,7 +896102,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430022615" + "source_id": "node/430022615", + "popularity": 2000 } }, { @@ -895353,7 +896128,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430022629" + "source_id": "node/430022629", + "popularity": 2000 } }, { @@ -895378,7 +896154,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430022636" + "source_id": "node/430022636", + "popularity": 2000 } }, { @@ -895403,7 +896180,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430022664" + "source_id": "node/430022664", + "popularity": 2000 } }, { @@ -895428,7 +896206,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430022715" + "source_id": "node/430022715", + "popularity": 2000 } }, { @@ -895453,7 +896232,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430025257" + "source_id": "node/430025257", + "popularity": 2000 } }, { @@ -895478,7 +896258,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/430025268" + "source_id": "node/430025268", + "popularity": 2000 } }, { @@ -895530,6 +896311,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/431234884", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus & False Creek Ferries (No bikes)\"}" } @@ -895557,6 +896339,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/431234943", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"Aquabus & False Creek Ferries (No bikes)\"}" } @@ -895608,6 +896391,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/444150756", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 6-24; sa-su 8-22\"}" } @@ -895659,6 +896443,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/471719496", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"limited\",\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -895684,7 +896469,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/471723573" + "source_id": "node/471723573", + "popularity": 1000 } }, { @@ -895707,7 +896493,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/471723638" + "source_id": "node/471723638", + "popularity": 1000 } }, { @@ -895733,6 +896520,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/471726482", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -895809,7 +896597,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/473387686" + "source_id": "node/473387686", + "popularity": 1000 } }, { @@ -895882,7 +896671,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/505674035" + "source_id": "node/505674035", + "popularity": 1000 } }, { @@ -895912,6 +896702,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/505751513", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.steamworks.com/\",\"phone\":\"+1 604 689 2739\"}" } @@ -895966,6 +896757,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/505751680", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -895993,6 +896785,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/505751726", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Scotiabank\"}" } @@ -896116,7 +896909,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/513052475" + "source_id": "node/513052475", + "popularity": 1000 } }, { @@ -896139,7 +896933,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/513052564" + "source_id": "node/513052564", + "popularity": 1000 } }, { @@ -896328,7 +897123,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/513054172" + "source_id": "node/513054172", + "popularity": 1000 } }, { @@ -896423,7 +897219,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/526720285" + "source_id": "node/526720285", + "popularity": 1000 } }, { @@ -896474,6 +897271,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/536191925", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.toycompany.ca\",\"phone\":\"604-684-0076\",\"opening_hours\":\"7/10-6\"}" } @@ -896522,7 +897320,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/549653507" + "source_id": "node/549653507", + "popularity": 2000 } }, { @@ -896545,7 +897344,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/559141899" + "source_id": "node/559141899", + "popularity": 1000 } }, { @@ -896568,7 +897368,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/563320469" + "source_id": "node/563320469", + "popularity": 1000 } }, { @@ -896596,6 +897397,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/563321283", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.alibi.ca/\"}" } @@ -896628,6 +897430,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/566842988", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://tripleos.com/store/thurlow\"}" } @@ -896691,6 +897494,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/567130365", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo 09:30-17:00; Tu-Fr 09:30-19:00; Sa 09:30-15:00\"}" } @@ -896752,6 +897556,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/567130714", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mongoliegrill.ca/\"}" } @@ -896784,6 +897589,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/567142934", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su\"}" } @@ -896988,6 +897794,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/582800962", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-875-6436\"}" } @@ -897123,6 +897930,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/582801479", + "popularity": 3400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Vancouver Public Library\",\"website\":\"http://www.vpl.ca/branches/details/mount_pleasant_branch/\",\"phone\":\"604-665-3962\"}" } @@ -897224,6 +898032,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/582801716", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"24/7\"}" } @@ -897359,6 +898168,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/582801952", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.toycompany.ca\",\"phone\":\"6048750065\"}" } @@ -897465,6 +898275,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/583481975", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://front.bc.ca‎\",\"phone\":\"+1 604-876-9343\"}" } @@ -897490,7 +898301,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/592862122" + "source_id": "node/592862122", + "popularity": 2000 } }, { @@ -897511,6 +898323,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/610649388", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -897554,6 +898367,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/610649405", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -897577,6 +898391,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/613049555", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -897622,7 +898437,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/625959033" + "source_id": "node/625959033", + "popularity": 1000 } }, { @@ -897643,6 +898459,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/626086984", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -897668,7 +898485,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/633209035" + "source_id": "node/633209035", + "popularity": 1000 } }, { @@ -897767,6 +898585,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/635890637", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -897865,6 +898684,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/635894583", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -898010,6 +898830,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/635894598", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Scotiabank\"}" } @@ -898063,7 +898884,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638747199" + "source_id": "node/638747199", + "popularity": 1000 } }, { @@ -898161,7 +898983,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638747934" + "source_id": "node/638747934", + "popularity": 1000 } }, { @@ -898186,6 +899009,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/638747935", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Su-Th 06:30-01:00;Fr-Sa 06:30-02:00\"}" } @@ -898246,7 +899070,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638748345" + "source_id": "node/638748345", + "popularity": 1000 } }, { @@ -898275,6 +899100,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/638750749", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.sandmanhotels.ca/hotels/vancouver-city-centre/\",\"phone\":\"604 681 2211\"}" } @@ -898300,7 +899126,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638750750" + "source_id": "node/638750750", + "popularity": 1000 } }, { @@ -898323,7 +899150,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638750751" + "source_id": "node/638750751", + "popularity": 1000 } }, { @@ -898376,7 +899204,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638750757" + "source_id": "node/638750757", + "popularity": 1000 } }, { @@ -898400,6 +899229,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/638751995", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Hilton\"}" } @@ -898477,7 +899307,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638771015" + "source_id": "node/638771015", + "popularity": 1000 } }, { @@ -898505,7 +899336,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638771016" + "source_id": "node/638771016", + "popularity": 1000 } }, { @@ -898558,6 +899390,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/638771020", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://wavescoffee.com/\"}" } @@ -898611,7 +899444,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638774389" + "source_id": "node/638774389", + "popularity": 1000 } }, { @@ -898659,7 +899493,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638774391" + "source_id": "node/638774391", + "popularity": 1000 } }, { @@ -898683,7 +899518,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638774392" + "source_id": "node/638774392", + "popularity": 1000 } }, { @@ -898756,7 +899592,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638775314" + "source_id": "node/638775314", + "popularity": 1000 } }, { @@ -898806,6 +899643,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/638861821", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"AQUABUS\"}" } @@ -898880,7 +899718,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/638861824" + "source_id": "node/638861824", + "popularity": 1000 } }, { @@ -899032,7 +899871,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/639371019" + "source_id": "node/639371019", + "popularity": 1000 } }, { @@ -899056,7 +899896,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/642897588" + "source_id": "node/642897588", + "popularity": 1000 } }, { @@ -899085,7 +899926,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/642897589" + "source_id": "node/642897589", + "popularity": 1000 } }, { @@ -899111,6 +899953,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/642897591", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -899172,6 +900015,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/642902561", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"CIBC\",\"opening_hours\":\"Mo-we 9:30-16;th-fr 9:30-19;sa 9:30-16\"}" } @@ -899203,6 +900047,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/642902564", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Th 10:00-16:00; Fr 10:00-17:00\"}" } @@ -899233,7 +900078,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/642902566" + "source_id": "node/642902566", + "popularity": 1000 } }, { @@ -899257,7 +900103,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/642902568" + "source_id": "node/642902568", + "popularity": 1000 } }, { @@ -899282,6 +900129,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/642902571", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 05:30-22:00; Sa,Su,PH 07:30-22:00\"}" } @@ -899336,7 +900184,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/642902575" + "source_id": "node/642902575", + "popularity": 1000 } }, { @@ -899363,7 +900212,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/642902579" + "source_id": "node/642902579", + "popularity": 1000 } }, { @@ -899419,6 +900269,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/643885508", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"False Creek Ferries\"}" } @@ -899449,7 +900300,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/644341965" + "source_id": "node/644341965", + "popularity": 3000 } }, { @@ -899472,7 +900324,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/644341971" + "source_id": "node/644341971", + "popularity": 1000 } }, { @@ -899495,7 +900348,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/644341974" + "source_id": "node/644341974", + "popularity": 1000 } }, { @@ -899518,7 +900372,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/644341976" + "source_id": "node/644341976", + "popularity": 1000 } }, { @@ -899684,7 +900539,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/644342011" + "source_id": "node/644342011", + "popularity": 2000 } }, { @@ -899931,6 +900787,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/644351085", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 9-17\"}" } @@ -900075,7 +900932,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/648527819" + "source_id": "node/648527819", + "popularity": 1000 } }, { @@ -900126,6 +900984,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/648735254", + "popularity": 3000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -900152,7 +901011,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/649986260" + "source_id": "node/649986260", + "popularity": 1000 } }, { @@ -900177,6 +901037,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/649986261", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Chevron\"}" } @@ -900203,7 +901064,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/649986262" + "source_id": "node/649986262", + "popularity": 1000 } }, { @@ -900331,7 +901193,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/649986500" + "source_id": "node/649986500", + "popularity": 1000 } }, { @@ -900358,7 +901221,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/649986552" + "source_id": "node/649986552", + "popularity": 1000 } }, { @@ -900413,6 +901277,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/649986554", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Mo-th 8-16:30;fr 8-17:30\"}" } @@ -900439,7 +901304,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/651045361" + "source_id": "node/651045361", + "popularity": 1000 } }, { @@ -900493,6 +901359,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/651045368", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.mauryaindiancuisine.com\",\"phone\":\"6047420622\"}" } @@ -900545,6 +901412,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/651045379", + "popularity": 2200, "addendum": { "osm": "{\"phone\":\"6047388951\",\"opening_hours\":\"Mo-sa 9-21;su 12-16\"}" } @@ -900622,7 +901490,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/651055560" + "source_id": "node/651055560", + "popularity": 1000 } }, { @@ -900697,7 +901566,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/651055568" + "source_id": "node/651055568", + "popularity": 1000 } }, { @@ -900723,6 +901593,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/651055571", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.starbucks.ca/\"}" } @@ -900755,6 +901626,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/651057575", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.bananaleaf-vancouver.com\",\"phone\":\"+1 604 7343005\"}" } @@ -900878,6 +901750,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652955233", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.agrocafe.org\",\"opening_hours\":\"Mo-fr 7-18;sa-su 10-17:30\"}" } @@ -900910,6 +901783,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652955235", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 11:00+\"}" } @@ -900938,6 +901812,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652955237", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 11-late; sa-su 10-late\"}" } @@ -901019,6 +901894,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652955242", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.glowbalgrill.com\",\"phone\":\"6046020835\"}" } @@ -901081,6 +901957,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652955246", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046842777\"}" } @@ -901158,7 +902035,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652956533" + "source_id": "node/652956533", + "popularity": 1000 } }, { @@ -901205,7 +902083,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652979862" + "source_id": "node/652979862", + "popularity": 1000 } }, { @@ -901249,7 +902128,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652979870" + "source_id": "node/652979870", + "popularity": 1000 } }, { @@ -901296,7 +902176,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652985128" + "source_id": "node/652985128", + "popularity": 2000 } }, { @@ -901320,6 +902201,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652988346", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Toyota\"}" } @@ -901347,6 +902229,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652988347", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Esso\"}" } @@ -901374,6 +902257,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652988352", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -901427,7 +902311,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652988365" + "source_id": "node/652988365", + "popularity": 1000 } }, { @@ -901482,6 +902367,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652992171", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.century-plaza.com/\"}" } @@ -901508,7 +902394,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652994281" + "source_id": "node/652994281", + "popularity": 1000 } }, { @@ -901532,6 +902419,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/652994287", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -901580,7 +902468,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/652994289" + "source_id": "node/652994289", + "popularity": 1000 } }, { @@ -901603,7 +902492,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/660080581" + "source_id": "node/660080581", + "popularity": 3000 } }, { @@ -901623,7 +902513,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/660080591" + "source_id": "node/660080591", + "popularity": 1000 } }, { @@ -901672,7 +902563,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/660434648" + "source_id": "node/660434648", + "popularity": 1000 } }, { @@ -901692,7 +902584,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/660434716" + "source_id": "node/660434716", + "popularity": 1000 } }, { @@ -901715,7 +902608,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/660434727" + "source_id": "node/660434727", + "popularity": 1000 } }, { @@ -901896,7 +902790,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/676620316" + "source_id": "node/676620316", + "popularity": 1000 } }, { @@ -901917,6 +902812,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/677177249", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -901943,7 +902839,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/677284036" + "source_id": "node/677284036", + "popularity": 3000 } }, { @@ -902015,7 +902912,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/686164561" + "source_id": "node/686164561", + "popularity": 1000 } }, { @@ -902128,6 +903026,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/693429372", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047368020\"}" } @@ -902305,7 +903204,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700544446" + "source_id": "node/700544446", + "popularity": 1000 } }, { @@ -902328,7 +903228,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700544462" + "source_id": "node/700544462", + "popularity": 1000 } }, { @@ -902359,6 +903260,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/700544468", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"+1 604 435 4770\",\"opening_hours\":\"Mo-Fr 06:00-20:00; Sa 06:30-20:00; Su 06:30-19:00\"}" } @@ -902409,7 +903311,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700544475" + "source_id": "node/700544475", + "popularity": 1000 } }, { @@ -902509,6 +903412,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/700544517", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Mo-Fr 09:30-17:00; Sa 09:30-16:00\"}" } @@ -902541,6 +903445,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/700544521", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"limited\",\"phone\":\"+1 604 439 0090\",\"opening_hours\":\"Mo-Su 07:00-00:00\"}" } @@ -902572,6 +903477,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/700544525", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://bcliquorstores.com/store/locator?store=113\",\"phone\":\"+1 604 660 5484\",\"opening_hours\":\"Mo-Th 09:30-21:00; Fr-Sa 09:30-23:00; Su closed; PH off\"}" } @@ -902597,7 +903503,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700544625" + "source_id": "node/700544625", + "popularity": 1000 } }, { @@ -902716,7 +903623,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700544632" + "source_id": "node/700544632", + "popularity": 1000 } }, { @@ -902836,7 +903744,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700544638" + "source_id": "node/700544638", + "popularity": 1000 } }, { @@ -903007,6 +903916,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/700713943", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -903102,7 +904012,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/700713950" + "source_id": "node/700713950", + "popularity": 1000 } }, { @@ -903268,7 +904179,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/703750867" + "source_id": "node/703750867", + "popularity": 1000 } }, { @@ -903296,6 +904208,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/703753576", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Sa 11:00-18:00; Su 12:00-17:00\"}" } @@ -903323,6 +904236,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/703754423", + "popularity": 6000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:Steam clock#Gastown steam clock\"}" } @@ -903382,6 +904296,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/703756041", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.dutildenim.com\"}" } @@ -903435,7 +904350,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/704317941" + "source_id": "node/704317941", + "popularity": 1000 } }, { @@ -903555,6 +904471,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/704317952", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -903631,7 +904548,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/704317955" + "source_id": "node/704317955", + "popularity": 1000 } }, { @@ -903661,6 +904579,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/704317958", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.saravanaabhavan.ca\",\"phone\":\"6047327700\",\"opening_hours\":\"Mo-fr 11:30-15,17-22;sa-su 11:30-22\"}" } @@ -903690,7 +904609,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/704317959" + "source_id": "node/704317959", + "popularity": 1000 } }, { @@ -904056,6 +904976,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/704317980", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.menyaramen.com/\"}" } @@ -904139,6 +905060,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/704317987", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-th 9:30am-4pm; fr 9:30-5pm\"}" } @@ -904264,7 +905186,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/704317995" + "source_id": "node/704317995", + "popularity": 2000 } }, { @@ -904310,7 +905233,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/704317999" + "source_id": "node/704317999", + "popularity": 1000 } }, { @@ -904333,7 +905257,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/704318001" + "source_id": "node/704318001", + "popularity": 1000 } }, { @@ -904685,6 +905610,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/705752894", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 17:00-03:00\"}" } @@ -904737,6 +905663,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/705754718", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Shell\",\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -904842,6 +905769,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/709178772", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC Security\"}" } @@ -904928,6 +905856,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/718090846", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047390005\",\"opening_hours\":\"Tu-su 12-19:45\"}" } @@ -905053,7 +905982,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/721674466" + "source_id": "node/721674466", + "popularity": 1000 } }, { @@ -905084,6 +906014,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/721674467", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.qqsushi.com\",\"phone\":\"604 3230002\"}" } @@ -905207,6 +906138,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/721674473", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.churchschickenbc.ca/index.php?option=com_sobi2&sobi2Task=sobi2Details&sobi2Id=17&Itemid=64\"}" } @@ -905263,6 +906195,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/723402291", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.blenz.ca/\"}" } @@ -905589,6 +906522,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/724597036", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mon-Sat 7am to 10pm, Sun 8am to 10pm\"}" } @@ -905712,6 +906646,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/725882528", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -905783,6 +906718,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/728158415", + "popularity": 3000, "addendum": { "osm": "{\"operator\":\"False Creek Ferries\"}" } @@ -905842,6 +906778,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729123364", + "popularity": 2200, "addendum": { "osm": "{\"operator\":\"London Drugs\",\"website\":\"http://www.londondrugs.ca/\"}" } @@ -905901,7 +906838,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/729130359" + "source_id": "node/729130359", + "popularity": 1000 } }, { @@ -905985,6 +906923,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729136932", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048763342\"}" } @@ -906016,6 +906955,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729141425", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://storelocator.bell.ca/bellca/en/BC/Vancouver/Bell-West-Broadway-Mall-2/BC862\",\"phone\":\"(604) 678-9175\"}" } @@ -906076,6 +907016,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729160303", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048791889\"}" } @@ -906106,6 +907047,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729166328", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048722568\"}" } @@ -906220,6 +907162,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729187529", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048731816\"}" } @@ -906283,6 +907226,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729193596", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048799878\"}" } @@ -906316,6 +907260,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/729195577", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048797794\"}" } @@ -906417,6 +907362,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/732726961", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Reckless Bike Stores\",\"phone\":\"6046482600\"}" } @@ -906468,6 +907414,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/736729123", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -906513,7 +907460,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/736729132" + "source_id": "node/736729132", + "popularity": 1000 } }, { @@ -906536,7 +907484,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/736729135" + "source_id": "node/736729135", + "popularity": 1000 } }, { @@ -906584,7 +907533,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/736729139" + "source_id": "node/736729139", + "popularity": 1000 } }, { @@ -906647,7 +907597,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/741418461" + "source_id": "node/741418461", + "popularity": 1000 } }, { @@ -906671,6 +907622,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/741420413", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Sears\"}" } @@ -906721,7 +907673,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/741850592" + "source_id": "node/741850592", + "popularity": 1000 } }, { @@ -906744,7 +907697,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/741850596" + "source_id": "node/741850596", + "popularity": 1000 } }, { @@ -906767,7 +907721,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/741850600" + "source_id": "node/741850600", + "popularity": 1000 } }, { @@ -906794,7 +907749,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/741850603" + "source_id": "node/741850603", + "popularity": 1000 } }, { @@ -906818,7 +907774,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/741853250" + "source_id": "node/741853250", + "popularity": 1000 } }, { @@ -906842,7 +907799,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/745987496" + "source_id": "node/745987496", + "popularity": 1000 } }, { @@ -906866,7 +907824,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/745987497" + "source_id": "node/745987497", + "popularity": 1000 } }, { @@ -906896,6 +907855,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/745987498", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-254-9668\"}" } @@ -906946,7 +907906,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/745987500" + "source_id": "node/745987500", + "popularity": 1000 } }, { @@ -907066,7 +908027,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/746837407" + "source_id": "node/746837407", + "popularity": 1000 } }, { @@ -907113,7 +908075,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/763661653" + "source_id": "node/763661653", + "popularity": 1000 } }, { @@ -907161,7 +908124,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/763981089" + "source_id": "node/763981089", + "popularity": 1000 } }, { @@ -907214,7 +908178,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/765295079" + "source_id": "node/765295079", + "popularity": 1000 } }, { @@ -907346,6 +908311,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/768417668", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"604-731-7822\",\"opening_hours\":\"9am-10pm 7 days\"}" } @@ -907378,6 +908344,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/768417669", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\",\"opening_hours\":\"Su-Th 6:00-24:00; Fr-Sa 6:00-1:00\"}" } @@ -907559,7 +908526,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/769695064" + "source_id": "node/769695064", + "popularity": 1000 } }, { @@ -907583,7 +908551,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/769695070" + "source_id": "node/769695070", + "popularity": 1000 } }, { @@ -907631,7 +908600,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/769695101" + "source_id": "node/769695101", + "popularity": 1000 } }, { @@ -907704,6 +908674,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/773916863", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"no\",\"website\":\"http://www.chillwinston.com\"}" } @@ -907733,6 +908704,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/775914191", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048798221\"}" } @@ -907759,7 +908731,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/778694967" + "source_id": "node/778694967", + "popularity": 1000 } }, { @@ -907787,7 +908760,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/778695116" + "source_id": "node/778695116", + "popularity": 1000 } }, { @@ -907838,6 +908812,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/778698111", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-sa 9:30-18;su 10-17\"}" } @@ -907942,6 +908917,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/779226538", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.hillsnativeart.com\"}" } @@ -908029,6 +909005,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/780839560", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048768388\"}" } @@ -908055,7 +909032,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/780840721" + "source_id": "node/780840721", + "popularity": 1000 } }, { @@ -908085,6 +909063,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/780962633", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.tripleos.com/?p2=/modules/tripleocanada/location.jsp&id=16\"}" } @@ -908117,6 +909096,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/780962634", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"https://locator.bmo.com/Default.aspx?t=bmo&lang=en&sid=8283\"}" } @@ -908194,6 +909174,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/785167473", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 08:00-17:00\"}" } @@ -908227,6 +909208,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/791513071", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.milestonesrestaurants.com\"}" } @@ -908260,6 +909242,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/791513082", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.boathouserestaurants.ca/\"}" } @@ -908315,6 +909298,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/793915416", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.verasburgershack.com/locations/DavieSt.htm\"}" } @@ -908346,6 +909330,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/793915417", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://greenmangocafe.ca/\"}" } @@ -908460,6 +909445,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/799580952", + "popularity": 2200, "addendum": { "osm": "{\"website\":\"https://www.vancity.com/ContactUs/FindBranchATM/?show=branchDetail&branch_id=13\",\"opening_hours\":\"Mo-Th 09:30-17:00; Fr 09:30-18:00; Sa 09:30-15:00\"}" } @@ -908491,6 +909477,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/799580956", + "popularity": 2200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"+1 604 448 4828\",\"opening_hours\":\"Mo-Sa 09:00-22:00; Su 10:00-20:00; PH 09:00-21:00\"}" } @@ -908524,6 +909511,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/799580984", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.knightandday.com/\"}" } @@ -908550,7 +909538,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/799580995" + "source_id": "node/799580995", + "popularity": 1000 } }, { @@ -908815,6 +909804,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017656", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"https://td.via.infonow.net/locator/DrillAction.do?id=9456\"}" } @@ -908847,6 +909837,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017660", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.flyingwedge.com\",\"phone\":\"6048748284\"}" } @@ -908877,6 +909868,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017663", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.choicesmarket.com/cambie.htm\"}" } @@ -908903,6 +909895,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017673", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.canadiantire.ca\"}" } @@ -908934,6 +909927,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017679", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.saveonfoods.com\"}" } @@ -908959,7 +909953,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/811017690" + "source_id": "node/811017690", + "popularity": 1000 } }, { @@ -908989,6 +909984,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017701", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.hons.ca/\"}" } @@ -909015,6 +910011,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017713", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.bestbuy.ca\"}" } @@ -909071,6 +910068,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017732", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 08:00-23:00\"}" } @@ -909145,6 +910143,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017746", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.hificentre.com/\"}" } @@ -909173,6 +910172,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/811017755", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -909252,6 +910252,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822421538", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-We 08:00-18:00; Th-Fr 08:00-20:00; Sa 08:00-16:00\"}" } @@ -909277,7 +910278,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822421539" + "source_id": "node/822421539", + "popularity": 1000 } }, { @@ -909307,6 +910309,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822421540", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.memphisbluesbbq.com\"}" } @@ -909368,6 +910371,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822421542", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 731 9033\"}" } @@ -909490,7 +910494,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822444327" + "source_id": "node/822444327", + "popularity": 1000 } }, { @@ -909514,7 +910519,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822484870" + "source_id": "node/822484870", + "popularity": 1000 } }, { @@ -909538,6 +910544,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822484871", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://vancouver.ca/fire/about/Firehall/firehall20.html\"}" } @@ -909617,6 +910624,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822484874", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.donacata.com/\"}" } @@ -909716,6 +910724,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822484881", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.firstlutheranvancouver.com/\"}" } @@ -909769,7 +910778,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822484885" + "source_id": "node/822484885", + "popularity": 1000 } }, { @@ -909944,7 +910954,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822487110" + "source_id": "node/822487110", + "popularity": 1000 } }, { @@ -909970,6 +910981,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822487111", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.legendarynoodle.ca/\"}" } @@ -910002,6 +911014,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822487112", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.sunsuiwah.com\",\"phone\":\"6048728822\",\"opening_hours\":\"10am-3pm 5pm-10:30 / 7 days\"}" } @@ -910049,6 +911062,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/822487114", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.churchschickenbc.ca/index.php?option=com_sobi2&sobi2Task=sobi2Details&sobi2Id=16&Itemid=64\"}" } @@ -910099,7 +911113,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822487116" + "source_id": "node/822487116", + "popularity": 1000 } }, { @@ -910123,7 +911138,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/822487117" + "source_id": "node/822487117", + "popularity": 1000 } }, { @@ -910153,6 +911169,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/823543751", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"+1-604-568-0390\"}" } @@ -910182,7 +911199,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/826841608" + "source_id": "node/826841608", + "popularity": 1000 } }, { @@ -910212,6 +911230,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/848941644", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"M-F 10:30-3pm,5pm-10pm. Sat/Sun 10:30-10pm\"}" } @@ -910238,6 +911257,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/849007547", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"eiokids.com\",\"opening_hours\":\"MSa 10-7 Sun 12-5\"}" } @@ -910264,7 +911284,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/849008677" + "source_id": "node/849008677", + "popularity": 1000 } }, { @@ -910288,6 +911309,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852076607", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.camelotkids.com\",\"phone\":\"604-688-9766\",\"opening_hours\":\"7/10-6\"}" } @@ -910314,6 +911336,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852079539", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"7/10-6\"}" } @@ -910340,6 +911363,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852081878", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"7/10-6\"}" } @@ -910415,6 +911439,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852094723", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.knottytoys.com\",\"phone\":\"604-683-7854\",\"opening_hours\":\"7/10-6\"}" } @@ -910464,6 +911489,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852100814", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.kaboodles.ca\",\"opening_hours\":\"7/10-6\"}" } @@ -910495,6 +911521,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852385297", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.labaguettebakery.com/\",\"phone\":\"604-684-1351\"}" } @@ -910527,6 +911554,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852389649", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.kegsteakhouse.com\",\"phone\":\"604-685-4735\"}" } @@ -910559,6 +911587,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852393736", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.brownssocialhouse.com\",\"phone\":\"604-647-2287\"}" } @@ -910591,6 +911620,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852397122", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.whet.ca/\",\"phone\":\"604-696-0739\"}" } @@ -910619,6 +911649,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852400346", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.tonysfish-granvilleisland.com\",\"phone\":\"604-683-7127\"}" } @@ -910652,6 +911683,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/852420584", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.sequoiarestaurants.com/sandbar_main.html\",\"phone\":\"604-669-9030\"}" } @@ -910685,6 +911717,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/854056531", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048744041\"}" } @@ -910710,7 +911743,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/859683780" + "source_id": "node/859683780", + "popularity": 2000 } }, { @@ -910738,6 +911772,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/860700937", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 10:00-20:00; Sa 10:00-19:00; Su 11:00-18:00\"}" } @@ -910770,6 +911805,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/860711421", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048743737\"}" } @@ -910803,6 +911839,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/860711504", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047085006\",\"opening_hours\":\"Mo-Sa 11:30-15:00,17:00-21:00\"}" } @@ -910830,6 +911867,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/860711505", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Sa 06:00-19:00; Su,PH 07:00-18:00\"}" } @@ -910959,6 +911997,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/860814205", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Subway\",\"website\":\"http://www.subway.com/\"}" } @@ -910990,6 +912029,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/866150141", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-736-3311\"}" } @@ -911078,6 +912118,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/869234545", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047338886\"}" } @@ -911184,6 +912225,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/870927044", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6043216862\",\"opening_hours\":\"9-3, 5-10 7days\"}" } @@ -911216,6 +912258,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/870928486", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.tengsmarket.com/\",\"phone\":\"604-301-1778\",\"opening_hours\":\"8:30 am - 7:00 pm\"}" } @@ -911272,6 +912315,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/872405615", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"thepetshopboys.ca\",\"opening_hours\":\"M-F 7-7, Sat 10-6, Sun 11-5\"}" } @@ -911327,6 +912371,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/874794362", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6048797879\",\"opening_hours\":\"We-Mo 11:30-15:00,17:30-21:00; Tu off\"}" } @@ -911409,6 +912454,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/876566197", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"604-730-8818\"}" } @@ -911484,7 +912530,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/878192099" + "source_id": "node/878192099", + "popularity": 2000 } }, { @@ -911507,7 +912554,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/883378920" + "source_id": "node/883378920", + "popularity": 1000 } }, { @@ -911553,7 +912601,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/883564365" + "source_id": "node/883564365", + "popularity": 1000 } }, { @@ -911584,6 +912633,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/883748003", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.thefirewoodcafe.ca/\",\"phone\":\"6048730001\"}" } @@ -911616,6 +912666,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/883748049", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.tropika-canada.com/\",\"phone\":\"604-879-6002\"}" } @@ -911646,6 +912697,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/883748194", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://funhousetattoo.ca/\",\"phone\":\"604-879-4114\"}" } @@ -911719,7 +912771,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/885805678" + "source_id": "node/885805678", + "popularity": 1000 } }, { @@ -911747,6 +912800,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/888920078", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.chalirosso.com\",\"phone\":\"6047333594\"}" } @@ -911773,6 +912827,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/888921446", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.iantangallery.com\",\"phone\":\"6047381077\"}" } @@ -911803,6 +912858,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/889264847", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.eaglespiritgallery.com\",\"phone\":\"6048015205\",\"opening_hours\":\"11:00-17:00; Tu off\"}" } @@ -911834,6 +912890,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/889266044", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.vtsl.com\",\"phone\":\"6042804444\"}" } @@ -911856,7 +912913,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/889550072" + "source_id": "node/889550072", + "popularity": 2000 } }, { @@ -911876,7 +912934,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/889550073" + "source_id": "node/889550073", + "popularity": 2000 } }, { @@ -911899,7 +912958,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/889550078" + "source_id": "node/889550078", + "popularity": 1000 } }, { @@ -911920,6 +912980,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/889550086", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -911950,6 +913011,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/889586095", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.industrialrevolution.net\"}" } @@ -912057,6 +913119,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/889588873", + "popularity": 200, "addendum": { "osm": "{\"website\":\"sofasogood.ca\"}" } @@ -912082,7 +913145,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/889757499" + "source_id": "node/889757499", + "popularity": 1000 } }, { @@ -912156,6 +913220,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/891134502", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Mo-Fr 07:00-23:00; Sa 08:00-23:00; Su 08:00-22:30\"}" } @@ -912259,6 +913324,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/892446371", + "popularity": 200, "addendum": { "osm": "{\"website\":\"granvillefineart.com\"}" } @@ -912289,6 +913355,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/892450455", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://jacanagallery.com\",\"phone\":\"6048799306\",\"opening_hours\":\"Tu-Sa 10:00-18:00; Su 12:00-17:00\"}" } @@ -912319,6 +913386,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/892451614", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.kurbatoffgallery.com\",\"phone\":\"6047365444\"}" } @@ -912349,6 +913417,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/892452651", + "popularity": 400, "addendum": { "osm": "{\"website\":\"villabeauinteriors.com\",\"phone\":\"6047332742\"}" } @@ -912375,6 +913444,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/892453099", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047312576\"}" } @@ -912404,6 +913474,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/893100557", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.cru.ca\",\"phone\":\"6046774111\"}" } @@ -912461,6 +913532,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/893107340", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047362405\"}" } @@ -912541,6 +913613,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/893613881", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.zondanellis.com\",\"phone\":\"6047365668\"}" } @@ -912573,6 +913646,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/893615945", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"omelettery.com\",\"opening_hours\":\"7am-3pm daily\"}" } @@ -912603,6 +913677,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/893617389", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047326505\",\"opening_hours\":\"Mo-Sa 10:00-18:00\"}" } @@ -912636,6 +913711,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/894568279", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"limited\",\"phone\":\"6047337396\"}" } @@ -912666,6 +913742,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/894569778", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-Fr 11:00-20:00; Sa 12:00-17:00; Su off\"}" } @@ -912774,6 +913851,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/901409706", + "popularity": 2400, "addendum": { "osm": "{\"website\":\"www.picachef.com\",\"phone\":\"6047344488\"}" } @@ -912804,6 +913882,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/901473338", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.dundaraveprintworkshop.com\"}" } @@ -912834,6 +913913,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/903680495", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047339823\",\"opening_hours\":\"Mo-Sa 10:00-17:30; Su 11:00-17:00\"}" } @@ -912864,6 +913944,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/903682235", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047309611\"}" } @@ -912894,6 +913975,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/903683091", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.urbanity.ca\",\"opening_hours\":\"Tu-Sa 11:00-18:00; Su 12:00-17:00\"}" } @@ -912924,6 +914006,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/903721300", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://markjamesgroup.com/yaletown.html\",\"phone\":\"604-681-2739\"}" } @@ -912981,6 +914064,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/904145282", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047368825\",\"opening_hours\":\"Tu-Sa 10:00-17:00\"}" } @@ -913037,6 +914121,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/904653794", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 09:00-23:00\"}" } @@ -913067,7 +914152,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/904656195" + "source_id": "node/904656195", + "popularity": 1000 } }, { @@ -913120,6 +914206,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/904666916", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"pacifictheatre.org\",\"phone\":\"6047315518\"}" } @@ -913176,7 +914263,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/905400402" + "source_id": "node/905400402", + "popularity": 1000 } }, { @@ -913230,6 +914318,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/905410310", + "popularity": 200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://marketplaceiga.com\"}" } @@ -913285,6 +914374,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/905781461", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.reckless.ca\"}" } @@ -913315,6 +914405,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/905782026", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.lamborghinivancouver.com/\"}" } @@ -913346,6 +914437,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/905784990", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.grababetterwaffle.com\",\"opening_hours\":\"Tu-Sa 7:30-16:00\"}" } @@ -913399,6 +914491,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/906254070", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-Sa 10:00-18:00\"}" } @@ -913429,6 +914522,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/906256301", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.marilynmylrea.com\",\"phone\":\"6047362450\"}" } @@ -913459,6 +914553,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/910187940", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.fairmont.com/pacificrim\"}" } @@ -913486,6 +914581,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/910586961", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.bellagelateria.com\"}" } @@ -913546,6 +914642,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/911401237", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047372363\",\"opening_hours\":\"We-Fr 12:00-17:00; Sa-Su 11:00-17:00\"}" } @@ -913595,6 +914692,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/911418308", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047389717\",\"opening_hours\":\"Mo-Fr 07:30-17:30; Sa 08:30-17:00\"}" } @@ -913625,6 +914723,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/911424663", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.spencerinteriors.ca\"}" } @@ -913674,6 +914773,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/911592824", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.fairmont.com/waterfront\"}" } @@ -913700,6 +914800,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/911593829", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 08:30-18:00\"}" } @@ -913729,7 +914830,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/912958393" + "source_id": "node/912958393", + "popularity": 1000 } }, { @@ -913752,7 +914854,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/912959767" + "source_id": "node/912959767", + "popularity": 1000 } }, { @@ -913780,6 +914883,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/914677101", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 09:00-21:00; Sa 10:00-18:00; Su 12:00-18:00\"}" } @@ -913859,6 +914963,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/914679797", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Restaurant Brands International Inc.\",\"website\":\"http://www.timhortons.com/\"}" } @@ -913892,6 +914997,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/917878382", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047308383\",\"opening_hours\":\"Mo-Fr 10:00-22:00; Sa-Su 11:00-22:00\"}" } @@ -913919,6 +915025,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/918960347", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6042693682\",\"opening_hours\":\"Mo-Th 12:00-01:00; Fr 12:00-02:00; Sa 13:00-02:00; Su 13:00-01:00\"}" } @@ -913949,6 +915056,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/919986013", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6047301001\"}" } @@ -913979,6 +915087,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/919986063", + "popularity": 2200, "addendum": { "osm": "{\"phone\":\"6047345104\",\"opening_hours\":\"24/7\"}" } @@ -914009,6 +915118,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/919986273", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"dianefarrisgallery.com\",\"phone\":\"6047372629\",\"opening_hours\":\"Tu-Fr 10:00-17:30; Sa 10:00-17:00\"}" } @@ -914065,6 +915175,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/923087944", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-Fr 11:00-18:00; Sa 12:00-17:00\"}" } @@ -914146,6 +915257,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/923107839", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.weissach.com/\"}" } @@ -914252,6 +915364,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/925662916", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046886281\"}" } @@ -914282,7 +915395,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/925701273" + "source_id": "node/925701273", + "popularity": 1000 } }, { @@ -914307,6 +915421,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/925703041", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Th 09:30-15:00; Fr 09:30-17:30; sa 09:30-15:00\"}" } @@ -914337,7 +915452,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/925710229" + "source_id": "node/925710229", + "popularity": 1000 } }, { @@ -914366,6 +915482,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/925711190", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-We 08:00-18:00; Th-Fr 08:00-20:00; Sa 08:00-16:00\"}" } @@ -914398,6 +915515,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/925718883", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 07:00-19:00\"}" } @@ -914481,6 +915599,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/925737291", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046840253\"}" } @@ -914564,6 +915683,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/925778911", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"opening_hours\":\"Mon-thurs 930-5. Fri 930-6. Sat 930-3\"}" } @@ -914618,6 +915738,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/926024537", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -914643,7 +915764,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/926027457" + "source_id": "node/926027457", + "popularity": 1000 } }, { @@ -914667,7 +915789,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/926028362" + "source_id": "node/926028362", + "popularity": 1000 } }, { @@ -914691,7 +915814,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/927101590" + "source_id": "node/927101590", + "popularity": 1000 } }, { @@ -914720,6 +915844,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/927242255", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.lobsterman.com\",\"phone\":\"6046874228\"}" } @@ -914751,6 +915876,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/927242589", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046844114\",\"opening_hours\":\"Tu 09:30-16:00; We,Su 09:30-17:00; Th-Sa 09:30-18:00\"}" } @@ -914781,6 +915907,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/930266617", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047363338\",\"opening_hours\":\"Mo-Fr 10:00-18:00; Sa 09:00-17:00\"}" } @@ -914811,6 +915938,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/930268571", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"9am-7pm\"}" } @@ -914841,6 +915969,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/930269715", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.myflyshop.com\"}" } @@ -914898,6 +916027,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/930620050", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6046812313\"}" } @@ -914928,6 +916058,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/930627521", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.bookstocooks.com\",\"opening_hours\":\"Mo-Fr 09:00-18:00; Sa 10:00-17:00\"}" } @@ -914982,6 +916113,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/930643834", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 8-6; sa 9am-12pm\"}" } @@ -915148,6 +916280,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/931896521", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 9-5\"}" } @@ -915180,6 +916313,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/931897070", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.cactusclubcafe.com\",\"phone\":\"6047330434\"}" } @@ -915261,6 +916395,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/931903706", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"6047342287\"}" } @@ -915323,6 +916458,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/937794489", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-fr 7-7;sa 10-7;su 10-7\"}" } @@ -915354,6 +916490,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/937794699", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.tealeaves.com\",\"opening_hours\":\"Mo-sa 9:30-19:00; su 11:00-18:00\"}" } @@ -915385,6 +916522,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/938584585", + "popularity": 4000, "addendum": { "osm": "{\"operator\":\"Vancouver Public Library\",\"opening_hours\":\"Tu-we 1pm-8pm;th-sa 11am-6pm\"}" } @@ -915414,7 +916552,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/938585980" + "source_id": "node/938585980", + "popularity": 1000 } }, { @@ -915466,6 +916605,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/938590179", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.VBCE.ca\",\"phone\":\"6047393997\",\"opening_hours\":\"Mo-fr 9-5:sa10-4\"}" } @@ -915497,6 +916637,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/941439542", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.littlecaesars.ca/\"}" } @@ -915531,6 +916672,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/945493437", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.legavroche.ca\"}" } @@ -915557,6 +916699,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/946068082", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-th 9:30-8;fr 9:30-9;sa 9-9; su 9-8\"}" } @@ -915583,6 +916726,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/946069426", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.circlecraft.net\"}" } @@ -915613,6 +916757,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/946071546", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.kromaacrylics.com\",\"phone\":\"6046694030\",\"opening_hours\":\"Mo-we,fr 9:30-5; th 9:30-7;sa-su 12-5\"}" } @@ -915639,6 +916784,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/946073131", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6046831135\",\"opening_hours\":\"Mo,we,fr 3pm-6pm\"}" } @@ -915669,6 +916815,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/946075060", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Tu-fr 10-5; Sa-su 11-5\"}" } @@ -915691,7 +916838,8 @@ }, "source": "openstreetmap", "layer": "venue", - "source_id": "node/946238788" + "source_id": "node/946238788", + "popularity": 1000 } }, { @@ -915717,6 +916865,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/952943388", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.starbucks.ca/\"}" } @@ -915747,6 +916896,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/955313740", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.crocodilebaby.com\"}" } @@ -915800,7 +916950,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/955323460" + "source_id": "node/955323460", + "popularity": 1000 } }, { @@ -915874,6 +917025,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/955335287", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 08:00-22:00\"}" } @@ -915900,7 +917052,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/955335841" + "source_id": "node/955335841", + "popularity": 1000 } }, { @@ -915950,7 +917103,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/955336045" + "source_id": "node/955336045", + "popularity": 1000 } }, { @@ -916043,7 +917197,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/955340426" + "source_id": "node/955340426", + "popularity": 1000 } }, { @@ -916210,6 +917365,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/957141873", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Women: Tu,we 11am-7pm;th 12-3;fr 12-8;sa 10-6 Men: th 4pm-8pm;su 2pm-6pm\"}" } @@ -916240,6 +917396,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/959037753", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 09:00-13:00\"}" } @@ -916271,6 +917428,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/959041423", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Su-th 11am-1am;fr-sa 11am-2am\"}" } @@ -916300,6 +917458,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/959508139", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 11:00-02:00\"}" } @@ -916326,6 +917485,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/960876484", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.sylviahotel.com\"}" } @@ -916408,6 +917568,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/971130621", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.gourmetwarehouse.ca\",\"opening_hours\":\"Mo-sa 10-18; Su 10-17\"}" } @@ -916436,6 +917597,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/971131061", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6042532986\"}" } @@ -916467,6 +917629,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/971163075", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"phone\":\"6042535578\",\"opening_hours\":\"Mo-th 8:30-17:30;fr 8:30-19:30;sa 8:30-17:30\"}" } @@ -916499,6 +917662,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/971212692", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"We-Th,Su,Mo 11:30-14:30,17:30-23:00; Fr-Sa 11:30-14:30,17:30-24:00\"}" } @@ -916538,6 +917702,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/972999857", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.raga-restaurant.com\",\"phone\":\"+16047331127\"}" } @@ -916568,6 +917733,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/973002927", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 10:00-23:00\"}" } @@ -916601,6 +917767,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/973007268", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"www.tojos.com\",\"phone\":\"6048728050\",\"opening_hours\":\"Mo-sa 17-\"}" } @@ -916655,6 +917822,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/973017784", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.bccamera.ca\"}" } @@ -916682,6 +917850,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/974735930", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 11:00-22:00\"}" } @@ -916712,6 +917881,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/979780774", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.dandelionkids.ca\",\"phone\":\"6046761862\"}" } @@ -916767,6 +917937,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/983648513", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-th 9:30-16;fr 9:30-17;sa 9:30-15\"}" } @@ -916820,6 +917991,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/984668638", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.ncix.com\",\"opening_hours\":\"Mo-fr 9:30-16:30;sa 10-19\"}" } @@ -916908,6 +918080,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/984956512", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"meinhardt.com\",\"phone\":\"6047324405\",\"opening_hours\":\"Mo-sa 8-21;sun 9-20\"}" } @@ -916985,7 +918158,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/990861185" + "source_id": "node/990861185", + "popularity": 2000 } }, { @@ -917006,6 +918180,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/990865463", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.KilianChiropractic.com\",\"phone\":\"604.688.0724\"}" } @@ -917033,6 +918208,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/991572959", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"24/7\"}" } @@ -917139,6 +918315,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998565286", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"6048798038\"}" } @@ -917164,7 +918341,8 @@ ], "source": "openstreetmap", "layer": "venue", - "source_id": "node/998584755" + "source_id": "node/998584755", + "popularity": 1000 } }, { @@ -917188,6 +918366,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998594272", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 10:00-23:00\"}" } @@ -917218,6 +918397,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998601622", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.cookshop.ca\",\"phone\":\"6048735683\"}" } @@ -917272,6 +918452,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998853108", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Su 08:00-22:00\"}" } @@ -917325,6 +918506,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998853530", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.twistfashions.com\"}" } @@ -917380,6 +918562,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998866710", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047361838\",\"opening_hours\":\"mo-sa 7-19;su 7-18\"}" } @@ -917462,6 +918645,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998871576", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.7seas.ca\",\"opening_hours\":\"Mo-Su 09:00-18:30\"}" } @@ -917493,6 +918677,7 @@ "source": "openstreetmap", "layer": "venue", "source_id": "node/998873854", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-sa 9-21;su 10-21\"}" } @@ -917958,7 +919143,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "relation/1424987", - "bounding_box": "{\"min_lat\":49.2538559,\"max_lat\":49.2667964,\"min_lon\":-123.2607478,\"max_lon\":-123.2517239}" + "bounding_box": "{\"min_lat\":49.2538559,\"max_lat\":49.2667964,\"min_lon\":-123.2607478,\"max_lon\":-123.2517239}", + "popularity": 2000 } }, { @@ -918007,7 +919193,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "relation/1424998", - "bounding_box": "{\"min_lat\":49.271015,\"max_lat\":49.2720328,\"min_lon\":-123.2590805,\"max_lon\":-123.2547057}" + "bounding_box": "{\"min_lat\":49.271015,\"max_lat\":49.2720328,\"min_lon\":-123.2590805,\"max_lon\":-123.2547057}", + "popularity": 2000 } }, { @@ -918154,6 +919341,7 @@ "layer": "venue", "source_id": "relation/1671051", "bounding_box": "{\"min_lat\":49.2446708,\"max_lat\":49.2453123,\"min_lon\":-123.0640355,\"max_lon\":-123.0631808}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.daysinnvancouvermetro.com/\"}" } @@ -918377,6 +919565,7 @@ "layer": "venue", "source_id": "relation/4055271", "bounding_box": "{\"min_lat\":49.2804302,\"max_lat\":49.2807812,\"min_lon\":-123.0649937,\"max_lon\":-123.0643952}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"+1 604 713 4696\"}" } @@ -918603,7 +919792,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "relation/4849767", - "bounding_box": "{\"min_lat\":49.2669588,\"max_lat\":49.2679039,\"min_lon\":-123.2508548,\"max_lon\":-123.2492829}" + "bounding_box": "{\"min_lat\":49.2669588,\"max_lat\":49.2679039,\"min_lon\":-123.2508548,\"max_lon\":-123.2492829}", + "popularity": 2000 } }, { @@ -918627,7 +919817,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "relation/4849820", - "bounding_box": "{\"min_lat\":49.2665164,\"max_lat\":49.2672028,\"min_lon\":-123.2496271,\"max_lon\":-123.248532}" + "bounding_box": "{\"min_lat\":49.2665164,\"max_lat\":49.2672028,\"min_lon\":-123.2496271,\"max_lon\":-123.248532}", + "popularity": 2000 } }, { @@ -918695,6 +919886,7 @@ "layer": "venue", "source_id": "way/101122975", "bounding_box": "{\"min_lat\":49.2465315,\"max_lat\":49.2466929,\"min_lon\":-123.2302346,\"max_lon\":-123.2298264}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"TRIUMF\"}" } @@ -918794,6 +919986,7 @@ "layer": "venue", "source_id": "way/104912350", "bounding_box": "{\"min_lat\":49.2777413,\"max_lat\":49.2778785,\"min_lon\":-123.1249257,\"max_lon\":-123.1242811}", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"operator\":\"Best Western\"}" } @@ -918820,7 +920013,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/104961673", - "bounding_box": "{\"min_lat\":49.2770573,\"max_lat\":49.2773863,\"min_lon\":-123.1257684,\"max_lon\":-123.1252543}" + "bounding_box": "{\"min_lat\":49.2770573,\"max_lat\":49.2773863,\"min_lon\":-123.1257684,\"max_lon\":-123.1252543}", + "popularity": 1000 } }, { @@ -919288,7 +920482,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/108161112", - "bounding_box": "{\"min_lat\":49.237593,\"max_lat\":49.2383844,\"min_lon\":-123.1978869,\"max_lon\":-123.1969839}" + "bounding_box": "{\"min_lat\":49.237593,\"max_lat\":49.2383844,\"min_lon\":-123.1978869,\"max_lon\":-123.1969839}", + "popularity": 1000 } }, { @@ -919501,6 +920696,7 @@ "layer": "venue", "source_id": "way/113961694", "bounding_box": "{\"min_lat\":49.2704821,\"max_lat\":49.2706957,\"min_lon\":-123.1358585,\"max_lon\":-123.1355238}", + "popularity": 1200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.gib.ca\",\"opening_hours\":\"Mo-So 12:00-20:00\"}" } @@ -919636,6 +920832,7 @@ "layer": "venue", "source_id": "way/116521435", "bounding_box": "{\"min_lat\":49.2157752,\"max_lat\":49.2208645,\"min_lon\":-123.2087775,\"max_lon\":-123.1987256}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Metro Vancouver\"}" } @@ -919662,7 +920859,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/116527969", - "bounding_box": "{\"min_lat\":49.2831209,\"max_lat\":49.2838729,\"min_lon\":-123.1157732,\"max_lon\":-123.114603}" + "bounding_box": "{\"min_lat\":49.2831209,\"max_lat\":49.2838729,\"min_lon\":-123.1157732,\"max_lon\":-123.114603}", + "popularity": 1000 } }, { @@ -919691,6 +920889,7 @@ "layer": "venue", "source_id": "way/117240645", "bounding_box": "{\"min_lat\":49.2847176,\"max_lat\":49.2861277,\"min_lon\":-123.1426937,\"max_lon\":-123.1414172}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"https://cfapp.vancouver.ca/parkfinder_wa/index.cfm?fuseaction=FAC.ParkDetails&park_id=199\"}" } @@ -919715,6 +920914,7 @@ "layer": "venue", "source_id": "way/118373422", "bounding_box": "{\"min_lat\":49.2663986,\"max_lat\":49.2665153,\"min_lon\":-123.150298,\"max_lon\":-123.1481606}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.cypresscommunitygarden.ca/\"}" } @@ -919739,6 +920939,7 @@ "layer": "venue", "source_id": "way/118373424", "bounding_box": "{\"min_lat\":49.266321,\"max_lat\":49.2664437,\"min_lon\":-123.145513,\"max_lon\":-123.1434172}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://pinestreetgardens.org\"}" } @@ -919763,6 +920964,7 @@ "layer": "venue", "source_id": "way/118373426", "bounding_box": "{\"min_lat\":49.2662971,\"max_lat\":49.2664185,\"min_lon\":-123.1431855,\"max_lon\":-123.141914}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://pinestreetgardens.org\"}" } @@ -919881,6 +921083,7 @@ "layer": "venue", "source_id": "way/119943680", "bounding_box": "{\"min_lat\":49.2691806,\"max_lat\":49.2697993,\"min_lon\":-123.1314603,\"max_lon\":-123.1306835}", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.granvilleislandhotel.com/\",\"phone\":\"6046837373\"}" } @@ -919929,7 +921132,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/121142933", - "bounding_box": "{\"min_lat\":49.2716297,\"max_lat\":49.2719407,\"min_lon\":-123.1061955,\"max_lon\":-123.1046795}" + "bounding_box": "{\"min_lat\":49.2716297,\"max_lat\":49.2719407,\"min_lon\":-123.1061955,\"max_lon\":-123.1046795}", + "popularity": 1000 } }, { @@ -919951,6 +921155,7 @@ "layer": "venue", "source_id": "way/121143035", "bounding_box": "{\"min_lat\":49.2661514,\"max_lat\":49.2665295,\"min_lon\":-123.1198696,\"max_lon\":-123.1190024}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"EasyPark\"}" } @@ -919979,7 +921184,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/121175909", - "bounding_box": "{\"min_lat\":49.2607313,\"max_lat\":49.2610579,\"min_lon\":-123.1144645,\"max_lon\":-123.1134083}" + "bounding_box": "{\"min_lat\":49.2607313,\"max_lat\":49.2610579,\"min_lon\":-123.1144645,\"max_lon\":-123.1134083}", + "popularity": 3000 } }, { @@ -920077,6 +921283,7 @@ "layer": "venue", "source_id": "way/121964211", "bounding_box": "{\"min_lat\":49.2697325,\"max_lat\":49.2698795,\"min_lon\":-123.1349495,\"max_lon\":-123.134747}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.craftcouncilbc.ca\",\"phone\":\"6046877270\"}" } @@ -920106,6 +921313,7 @@ "layer": "venue", "source_id": "way/122250035", "bounding_box": "{\"min_lat\":49.2450521,\"max_lat\":49.2452583,\"min_lon\":-123.06431,\"max_lon\":-123.063931}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -920195,7 +921403,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/124047020", - "bounding_box": "{\"min_lat\":49.2819665,\"max_lat\":49.282309,\"min_lon\":-123.1096387,\"max_lon\":-123.1092987}" + "bounding_box": "{\"min_lat\":49.2819665,\"max_lat\":49.282309,\"min_lon\":-123.1096387,\"max_lon\":-123.1092987}", + "popularity": 2000 } }, { @@ -920265,6 +921474,7 @@ "layer": "venue", "source_id": "way/124485941", "bounding_box": "{\"min_lat\":49.2726759,\"max_lat\":49.2734522,\"min_lon\":-123.0935139,\"max_lon\":-123.0903911}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"VIA Rail Canada\"}" } @@ -920294,7 +921504,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/124485952", - "bounding_box": "{\"min_lat\":49.2730612,\"max_lat\":49.2735386,\"min_lon\":-123.0975608,\"max_lon\":-123.0958029}" + "bounding_box": "{\"min_lat\":49.2730612,\"max_lat\":49.2735386,\"min_lon\":-123.0975608,\"max_lon\":-123.0958029}", + "popularity": 2000 } }, { @@ -920431,6 +921642,7 @@ "layer": "venue", "source_id": "way/125715571", "bounding_box": "{\"min_lat\":49.2585625,\"max_lat\":49.2598019,\"min_lon\":-123.0275307,\"max_lon\":-123.0264471}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Walmart\",\"website\":\"http://www.walmart.ca/\"}" } @@ -920458,7 +921670,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/127017470", - "bounding_box": "{\"min_lat\":49.2812394,\"max_lat\":49.2815222,\"min_lon\":-123.0540378,\"max_lon\":-123.0537539}" + "bounding_box": "{\"min_lat\":49.2812394,\"max_lat\":49.2815222,\"min_lon\":-123.0540378,\"max_lon\":-123.0537539}", + "popularity": 1000 } }, { @@ -920848,7 +922061,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/129474285", - "bounding_box": "{\"min_lat\":49.204193,\"max_lat\":49.2047512,\"min_lon\":-123.1375129,\"max_lon\":-123.1364755}" + "bounding_box": "{\"min_lat\":49.204193,\"max_lat\":49.2047512,\"min_lon\":-123.1375129,\"max_lon\":-123.1364755}", + "popularity": 1000 } }, { @@ -920893,7 +922107,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/129474689", - "bounding_box": "{\"min_lat\":49.2048977,\"max_lat\":49.2050531,\"min_lon\":-123.1369235,\"max_lon\":-123.1364546}" + "bounding_box": "{\"min_lat\":49.2048977,\"max_lat\":49.2050531,\"min_lon\":-123.1369235,\"max_lon\":-123.1364546}", + "popularity": 1000 } }, { @@ -920938,7 +922153,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/129603016", - "bounding_box": "{\"min_lat\":49.2821367,\"max_lat\":49.2829381,\"min_lon\":-123.0518745,\"max_lon\":-123.04945}" + "bounding_box": "{\"min_lat\":49.2821367,\"max_lat\":49.2829381,\"min_lon\":-123.0518745,\"max_lon\":-123.04945}", + "popularity": 1000 } }, { @@ -921101,7 +922317,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/135490786", - "bounding_box": "{\"min_lat\":49.2635942,\"max_lat\":49.2638756,\"min_lon\":-123.1296617,\"max_lon\":-123.1291843}" + "bounding_box": "{\"min_lat\":49.2635942,\"max_lat\":49.2638756,\"min_lon\":-123.1296617,\"max_lon\":-123.1291843}", + "popularity": 2000 } }, { @@ -921127,7 +922344,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/135493881", - "bounding_box": "{\"min_lat\":49.2627218,\"max_lat\":49.2630005,\"min_lon\":-123.1145799,\"max_lon\":-123.1144008}" + "bounding_box": "{\"min_lat\":49.2627218,\"max_lat\":49.2630005,\"min_lon\":-123.1145799,\"max_lon\":-123.1144008}", + "popularity": 2000 } }, { @@ -921148,7 +922366,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/135493888", - "bounding_box": "{\"min_lat\":49.2633956,\"max_lat\":49.264066,\"min_lon\":-123.1165803,\"max_lon\":-123.1150997}" + "bounding_box": "{\"min_lat\":49.2633956,\"max_lat\":49.264066,\"min_lon\":-123.1165803,\"max_lon\":-123.1150997}", + "popularity": 2000 } }, { @@ -921172,7 +922391,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/135493900", - "bounding_box": "{\"min_lat\":49.2640152,\"max_lat\":49.2647539,\"min_lon\":-123.1145065,\"max_lon\":-123.113029}" + "bounding_box": "{\"min_lat\":49.2640152,\"max_lat\":49.2647539,\"min_lon\":-123.1145065,\"max_lon\":-123.113029}", + "popularity": 2000 } }, { @@ -921218,7 +922438,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/135497923", - "bounding_box": "{\"min_lat\":49.2624296,\"max_lat\":49.2627395,\"min_lon\":-123.1197629,\"max_lon\":-123.1189326}" + "bounding_box": "{\"min_lat\":49.2624296,\"max_lat\":49.2627395,\"min_lon\":-123.1197629,\"max_lon\":-123.1189326}", + "popularity": 2000 } }, { @@ -921248,6 +922469,7 @@ "layer": "venue", "source_id": "way/136052332", "bounding_box": "{\"min_lat\":49.2689424,\"max_lat\":49.2692579,\"min_lon\":-123.1430408,\"max_lon\":-123.1426092}", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Audi\",\"website\":\"http://audidowntownvancouver.ca\"}" } @@ -921350,6 +922572,7 @@ "layer": "venue", "source_id": "way/136259217", "bounding_box": "{\"min_lat\":49.2836283,\"max_lat\":49.2838269,\"min_lon\":-123.1020546,\"max_lon\":-123.101297}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://foursisters.ca\",\"phone\":\"604-662-8574\"}" } @@ -921437,6 +922660,7 @@ "layer": "venue", "source_id": "way/136571595", "bounding_box": "{\"min_lat\":49.2717386,\"max_lat\":49.272054,\"min_lon\":-123.1010074,\"max_lon\":-123.1004122}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\"}" } @@ -921537,6 +922761,7 @@ "layer": "venue", "source_id": "way/137616963", "bounding_box": "{\"min_lat\":49.2750475,\"max_lat\":49.276395,\"min_lon\":-123.0890648,\"max_lon\":-123.0874742}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://strathconagardens.ca/\"}" } @@ -921563,7 +922788,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/137903324", - "bounding_box": "{\"min_lat\":49.280049,\"max_lat\":49.2822594,\"min_lon\":-123.1246037,\"max_lon\":-123.1217029}" + "bounding_box": "{\"min_lat\":49.280049,\"max_lat\":49.2822594,\"min_lon\":-123.1246037,\"max_lon\":-123.1217029}", + "popularity": 1000 } }, { @@ -921609,6 +922835,7 @@ "layer": "venue", "source_id": "way/138641314", "bounding_box": "{\"min_lat\":49.282673,\"max_lat\":49.2841484,\"min_lon\":-123.1185703,\"max_lon\":-123.1166845}", + "popularity": 3000, "addendum": { "osm": "{\"wikipedia\":\"en:Pacific Centre\"}" } @@ -921661,7 +922888,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/138867328", - "bounding_box": "{\"min_lat\":49.2832884,\"max_lat\":49.284009,\"min_lon\":-123.1194321,\"max_lon\":-123.1183312}" + "bounding_box": "{\"min_lat\":49.2832884,\"max_lat\":49.284009,\"min_lon\":-123.1194321,\"max_lon\":-123.1183312}", + "popularity": 1000 } }, { @@ -921735,6 +922963,7 @@ "layer": "venue", "source_id": "way/139571554", "bounding_box": "{\"min_lat\":49.2832902,\"max_lat\":49.2842319,\"min_lon\":-123.1218793,\"max_lon\":-123.1203117}", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"The Fairmont\"}" } @@ -921870,6 +923099,7 @@ "layer": "venue", "source_id": "way/143524517", "bounding_box": "{\"min_lat\":49.2717008,\"max_lat\":49.2720427,\"min_lon\":-123.0967984,\"max_lon\":-123.0957152}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"https://www.long-mcquade.com/\"}" } @@ -921901,6 +923131,7 @@ "layer": "venue", "source_id": "way/143524528", "bounding_box": "{\"min_lat\":49.272622,\"max_lat\":49.2730833,\"min_lon\":-123.0981913,\"max_lon\":-123.097516}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.flowpurefilters.com\"}" } @@ -922118,6 +923349,7 @@ "layer": "venue", "source_id": "way/143682617", "bounding_box": "{\"min_lat\":49.2868658,\"max_lat\":49.287297,\"min_lon\":-123.1182972,\"max_lon\":-123.1176147}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Government of Canada\"}" } @@ -922145,6 +923377,7 @@ "layer": "venue", "source_id": "way/143683932", "bounding_box": "{\"min_lat\":49.2842842,\"max_lat\":49.2846843,\"min_lon\":-123.120734,\"max_lon\":-123.1200984}", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -922224,7 +923457,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/143683945", - "bounding_box": "{\"min_lat\":49.284945,\"max_lat\":49.2854926,\"min_lon\":-123.1210197,\"max_lon\":-123.1202231}" + "bounding_box": "{\"min_lat\":49.284945,\"max_lat\":49.2854926,\"min_lon\":-123.1210197,\"max_lon\":-123.1202231}", + "popularity": 1000 } }, { @@ -922417,7 +923651,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/149964050", - "bounding_box": "{\"min_lat\":49.2519302,\"max_lat\":49.2524714,\"min_lon\":-123.1226245,\"max_lon\":-123.122249}" + "bounding_box": "{\"min_lat\":49.2519302,\"max_lat\":49.2524714,\"min_lon\":-123.1226245,\"max_lon\":-123.122249}", + "popularity": 1000 } }, { @@ -922514,7 +923749,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/153105578", - "bounding_box": "{\"min_lat\":49.2635553,\"max_lat\":49.2637105,\"min_lon\":-123.209448,\"max_lon\":-123.2092298}" + "bounding_box": "{\"min_lat\":49.2635553,\"max_lat\":49.2637105,\"min_lon\":-123.209448,\"max_lon\":-123.2092298}", + "popularity": 1000 } }, { @@ -922564,6 +923800,7 @@ "layer": "venue", "source_id": "way/153929627", "bounding_box": "{\"min_lat\":49.2108463,\"max_lat\":49.2111861,\"min_lon\":-123.1029687,\"max_lon\":-123.1023983}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Chevron\",\"brand\":\"Chevron\",\"website\":\"http://www.chevron.com/\"}" } @@ -922764,6 +924001,7 @@ "layer": "venue", "source_id": "way/154380965", "bounding_box": "{\"min_lat\":49.2083155,\"max_lat\":49.2086893,\"min_lon\":-123.0811431,\"max_lon\":-123.0807943}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"www.pjwhitehardwoods.com/\"}" } @@ -922864,6 +924102,7 @@ "layer": "venue", "source_id": "way/155089444", "bounding_box": "{\"min_lat\":49.2040674,\"max_lat\":49.2042632,\"min_lon\":-123.1308921,\"max_lon\":-123.1307024}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 671 9739\"}" } @@ -922891,6 +924130,7 @@ "layer": "venue", "source_id": "way/155090526", "bounding_box": "{\"min_lat\":49.2114819,\"max_lat\":49.2121015,\"min_lon\":-123.1088876,\"max_lon\":-123.1080979}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.tjskids.com\",\"phone\":\"6043242888\"}" } @@ -922919,6 +924159,7 @@ "layer": "venue", "source_id": "way/155091243", "bounding_box": "{\"min_lat\":49.2103774,\"max_lat\":49.2108824,\"min_lon\":-123.0921263,\"max_lon\":-123.0912737}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Esso\",\"brand\":\"Esso\",\"website\":\"http://www.esso.com/\"}" } @@ -922971,6 +924212,7 @@ "layer": "venue", "source_id": "way/155091246", "bounding_box": "{\"min_lat\":49.2103766,\"max_lat\":49.2108869,\"min_lon\":-123.0909553,\"max_lon\":-123.0899595}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Petro-Canada\",\"brand\":\"Petro-Canada\",\"website\":\"http://retail.petro-canada.ca/\"}" } @@ -923022,7 +924264,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/155375833", - "bounding_box": "{\"min_lat\":49.2348424,\"max_lat\":49.2351789,\"min_lon\":-123.1860487,\"max_lon\":-123.1855083}" + "bounding_box": "{\"min_lat\":49.2348424,\"max_lat\":49.2351789,\"min_lon\":-123.1860487,\"max_lon\":-123.1855083}", + "popularity": 1000 } }, { @@ -923072,6 +924315,7 @@ "layer": "venue", "source_id": "way/155375835", "bounding_box": "{\"min_lat\":49.2343215,\"max_lat\":49.2346835,\"min_lon\":-123.1852339,\"max_lon\":-123.1846832}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Shell\",\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -923124,7 +924368,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/155375838", - "bounding_box": "{\"min_lat\":49.2350385,\"max_lat\":49.2351789,\"min_lon\":-123.1860462,\"max_lon\":-123.1855083}" + "bounding_box": "{\"min_lat\":49.2350385,\"max_lat\":49.2351789,\"min_lon\":-123.1860462,\"max_lon\":-123.1855083}", + "popularity": 1000 } }, { @@ -923176,7 +924421,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/155377049", - "bounding_box": "{\"min_lat\":49.234192,\"max_lat\":49.2344976,\"min_lon\":-123.1589866,\"max_lon\":-123.1586689}" + "bounding_box": "{\"min_lat\":49.234192,\"max_lat\":49.2344976,\"min_lon\":-123.1589866,\"max_lon\":-123.1586689}", + "popularity": 1000 } }, { @@ -923228,7 +924474,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/155377052", - "bounding_box": "{\"min_lat\":49.2342699,\"max_lat\":49.2345154,\"min_lon\":-123.1584168,\"max_lon\":-123.1581979}" + "bounding_box": "{\"min_lat\":49.2342699,\"max_lat\":49.2345154,\"min_lon\":-123.1584168,\"max_lon\":-123.1581979}", + "popularity": 1000 } }, { @@ -923308,7 +924555,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/155381061", - "bounding_box": "{\"min_lat\":49.2324674,\"max_lat\":49.2325883,\"min_lon\":-123.0659103,\"max_lon\":-123.0657124}" + "bounding_box": "{\"min_lat\":49.2324674,\"max_lat\":49.2325883,\"min_lon\":-123.0659103,\"max_lon\":-123.0657124}", + "popularity": 1000 } }, { @@ -923339,6 +924587,7 @@ "layer": "venue", "source_id": "way/155381707", "bounding_box": "{\"min_lat\":49.2326255,\"max_lat\":49.2329683,\"min_lon\":-123.0341352,\"max_lon\":-123.03371}", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 09:00-17:00; Sa 10:00-14:00\"}" } @@ -923415,7 +924664,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/155934695", - "bounding_box": "{\"min_lat\":49.2331471,\"max_lat\":49.2334952,\"min_lon\":-123.128808,\"max_lon\":-123.12838}" + "bounding_box": "{\"min_lat\":49.2331471,\"max_lat\":49.2334952,\"min_lon\":-123.128808,\"max_lon\":-123.12838}", + "popularity": 1000 } }, { @@ -923442,6 +924692,7 @@ "layer": "venue", "source_id": "way/155934698", "bounding_box": "{\"min_lat\":49.2334891,\"max_lat\":49.2338418,\"min_lon\":-123.1288428,\"max_lon\":-123.1282505}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Chevron\",\"brand\":\"Chevron\",\"website\":\"http://www.chevron.com/\"}" } @@ -923494,6 +924745,7 @@ "layer": "venue", "source_id": "way/155936806", "bounding_box": "{\"min_lat\":49.2101798,\"max_lat\":49.2106371,\"min_lon\":-123.1300272,\"max_lon\":-123.1295221}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Chevron\",\"brand\":\"Chevron\",\"website\":\"http://www.chevron.com/\"}" } @@ -923541,7 +924793,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/156135688", - "bounding_box": "{\"min_lat\":49.2583413,\"max_lat\":49.2585725,\"min_lon\":-123.1177794,\"max_lon\":-123.117024}" + "bounding_box": "{\"min_lat\":49.2583413,\"max_lat\":49.2585725,\"min_lon\":-123.1177794,\"max_lon\":-123.117024}", + "popularity": 1000 } }, { @@ -923567,6 +924820,7 @@ "layer": "venue", "source_id": "way/156136151", "bounding_box": "{\"min_lat\":49.2260599,\"max_lat\":49.2264696,\"min_lon\":-123.1290428,\"max_lon\":-123.128524}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Esso\",\"brand\":\"Esso\",\"website\":\"http://www.esso.com/\"}" } @@ -923799,7 +925053,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/156418020", - "bounding_box": "{\"min_lat\":49.2260383,\"max_lat\":49.2268564,\"min_lon\":-123.1397493,\"max_lon\":-123.1386248}" + "bounding_box": "{\"min_lat\":49.2260383,\"max_lat\":49.2268564,\"min_lon\":-123.1397493,\"max_lon\":-123.1386248}", + "popularity": 1000 } }, { @@ -923828,7 +925083,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/156418084", - "bounding_box": "{\"min_lat\":49.2340589,\"max_lat\":49.2341896,\"min_lon\":-123.1411692,\"max_lon\":-123.1408021}" + "bounding_box": "{\"min_lat\":49.2340589,\"max_lat\":49.2341896,\"min_lon\":-123.1411692,\"max_lon\":-123.1408021}", + "popularity": 1000 } }, { @@ -923855,6 +925111,7 @@ "layer": "venue", "source_id": "way/156418085", "bounding_box": "{\"min_lat\":49.2344476,\"max_lat\":49.2349374,\"min_lon\":-123.1401283,\"max_lon\":-123.1397786}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Shell\",\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -923909,7 +925166,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/156419052", - "bounding_box": "{\"min_lat\":49.2341967,\"max_lat\":49.234521,\"min_lon\":-123.1612303,\"max_lon\":-123.1609439}" + "bounding_box": "{\"min_lat\":49.2341967,\"max_lat\":49.234521,\"min_lon\":-123.1612303,\"max_lon\":-123.1609439}", + "popularity": 1000 } }, { @@ -923940,6 +925198,7 @@ "layer": "venue", "source_id": "way/156419334", "bounding_box": "{\"min_lat\":49.2557546,\"max_lat\":49.2558463,\"min_lon\":-123.1849481,\"max_lon\":-123.1846424}", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"6047330188\",\"opening_hours\":\"Su-th 11-1;fr-sa 11-3\"}" } @@ -923971,6 +925230,7 @@ "layer": "venue", "source_id": "way/156419335", "bounding_box": "{\"min_lat\":49.2556557,\"max_lat\":49.2557586,\"min_lon\":-123.1849539,\"max_lon\":-123.1846934}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 739 5966\"}" } @@ -923999,6 +925259,7 @@ "layer": "venue", "source_id": "way/156420586", "bounding_box": "{\"min_lat\":49.2486545,\"max_lat\":49.2490683,\"min_lon\":-123.1282441,\"max_lon\":-123.127739}", + "popularity": 1200, "addendum": { "osm": "{\"operator\":\"Husky\",\"brand\":\"Husky\",\"website\":\"http://www.myhusky.ca/\"}" } @@ -924054,6 +925315,7 @@ "layer": "venue", "source_id": "way/156420591", "bounding_box": "{\"min_lat\":49.2486488,\"max_lat\":49.2490531,\"min_lon\":-123.127358,\"max_lon\":-123.1269545}", + "popularity": 1400, "addendum": { "osm": "{\"operator\":\"Shell\",\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -924229,6 +925491,7 @@ "layer": "venue", "source_id": "way/158188406", "bounding_box": "{\"min_lat\":49.2083508,\"max_lat\":49.2087275,\"min_lon\":-123.1200361,\"max_lon\":-123.1194883}", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Subway\",\"website\":\"http://www.subway.com/\"}" } @@ -924354,7 +925617,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/159261506", - "bounding_box": "{\"min_lat\":49.2656073,\"max_lat\":49.266145,\"min_lon\":-123.1015211,\"max_lon\":-123.1011255}" + "bounding_box": "{\"min_lat\":49.2656073,\"max_lat\":49.266145,\"min_lon\":-123.1015211,\"max_lon\":-123.1011255}", + "popularity": 1000 } }, { @@ -924454,7 +925718,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/159262022", - "bounding_box": "{\"min_lat\":49.2657419,\"max_lat\":49.2659292,\"min_lon\":-123.1025174,\"max_lon\":-123.102134}" + "bounding_box": "{\"min_lat\":49.2657419,\"max_lat\":49.2659292,\"min_lon\":-123.1025174,\"max_lon\":-123.102134}", + "popularity": 1000 } }, { @@ -924502,7 +925767,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/159263134", - "bounding_box": "{\"min_lat\":49.2661824,\"max_lat\":49.2665549,\"min_lon\":-123.1143661,\"max_lon\":-123.1129687}" + "bounding_box": "{\"min_lat\":49.2661824,\"max_lat\":49.2665549,\"min_lon\":-123.1143661,\"max_lon\":-123.1129687}", + "popularity": 1000 } }, { @@ -924815,6 +926081,7 @@ "layer": "venue", "source_id": "way/159930798", "bounding_box": "{\"min_lat\":49.2687543,\"max_lat\":49.2690115,\"min_lon\":-123.0997924,\"max_lon\":-123.0994115}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.budgetbrake.com/\"}" } @@ -924863,6 +926130,7 @@ "layer": "venue", "source_id": "way/159931546", "bounding_box": "{\"min_lat\":49.2685542,\"max_lat\":49.2688459,\"min_lon\":-123.0994227,\"max_lon\":-123.0989961}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 872 6222\"}" } @@ -924935,6 +926203,7 @@ "layer": "venue", "source_id": "way/159931552", "bounding_box": "{\"min_lat\":49.2682875,\"max_lat\":49.2685372,\"min_lon\":-123.0989548,\"max_lon\":-123.0986068}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.vanski.ca/\",\"phone\":\"604 879 1833\"}" } @@ -925007,7 +926276,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/160195478", - "bounding_box": "{\"min_lat\":49.2638989,\"max_lat\":49.2640798,\"min_lon\":-123.1757737,\"max_lon\":-123.175355}" + "bounding_box": "{\"min_lat\":49.2638989,\"max_lat\":49.2640798,\"min_lon\":-123.1757737,\"max_lon\":-123.175355}", + "popularity": 1000 } }, { @@ -925180,7 +926450,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/160197886", - "bounding_box": "{\"min_lat\":49.2637885,\"max_lat\":49.2639718,\"min_lon\":-123.1699853,\"max_lon\":-123.169765}" + "bounding_box": "{\"min_lat\":49.2637885,\"max_lat\":49.2639718,\"min_lon\":-123.1699853,\"max_lon\":-123.169765}", + "popularity": 1000 } }, { @@ -925229,6 +926500,7 @@ "layer": "venue", "source_id": "way/160197888", "bounding_box": "{\"min_lat\":49.2637379,\"max_lat\":49.2639608,\"min_lon\":-123.1693595,\"max_lon\":-123.1691354}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604 739 6882\"}" } @@ -925285,6 +926557,7 @@ "layer": "venue", "source_id": "way/160286543", "bounding_box": "{\"min_lat\":49.2632456,\"max_lat\":49.2635629,\"min_lon\":-123.1432834,\"max_lon\":-123.1428465}", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://simply.ca\",\"phone\":\"16047141450\",\"opening_hours\":\"Su 12:00-17:00, Mo–Fr 09:30-18:00, Sa 10:00-17:00\"}" } @@ -925312,7 +926585,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/160287935", - "bounding_box": "{\"min_lat\":49.2631264,\"max_lat\":49.2632889,\"min_lon\":-123.1269939,\"max_lon\":-123.1267837}" + "bounding_box": "{\"min_lat\":49.2631264,\"max_lat\":49.2632889,\"min_lon\":-123.1269939,\"max_lon\":-123.1267837}", + "popularity": 1000 } }, { @@ -925338,6 +926612,7 @@ "layer": "venue", "source_id": "way/160289557", "bounding_box": "{\"min_lat\":49.2629952,\"max_lat\":49.2632188,\"min_lon\":-123.1247507,\"max_lon\":-123.1245632}", + "popularity": 800, "addendum": { "osm": "{\"website\":\"http://www.canadaionizers.ca\",\"phone\":\"604.700.8708\"}" } @@ -925364,7 +926639,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/160289558", - "bounding_box": "{\"min_lat\":49.2630696,\"max_lat\":49.263228,\"min_lon\":-123.1240817,\"max_lon\":-123.123471}" + "bounding_box": "{\"min_lat\":49.2630696,\"max_lat\":49.263228,\"min_lon\":-123.1240817,\"max_lon\":-123.123471}", + "popularity": 2000 } }, { @@ -925607,7 +926883,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/160303050", - "bounding_box": "{\"min_lat\":49.262141,\"max_lat\":49.262329,\"min_lon\":-123.0870327,\"max_lon\":-123.0865053}" + "bounding_box": "{\"min_lat\":49.262141,\"max_lat\":49.262329,\"min_lon\":-123.0870327,\"max_lon\":-123.0865053}", + "popularity": 1000 } }, { @@ -925685,7 +926962,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/162785115", - "bounding_box": "{\"min_lat\":49.2571255,\"max_lat\":49.2575148,\"min_lon\":-123.0559214,\"max_lon\":-123.0551401}" + "bounding_box": "{\"min_lat\":49.2571255,\"max_lat\":49.2575148,\"min_lon\":-123.0559214,\"max_lon\":-123.0551401}", + "popularity": 1000 } }, { @@ -925730,7 +927008,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/162786168", - "bounding_box": "{\"min_lat\":49.2578299,\"max_lat\":49.2579352,\"min_lon\":-123.034974,\"max_lon\":-123.0346929}" + "bounding_box": "{\"min_lat\":49.2578299,\"max_lat\":49.2579352,\"min_lon\":-123.034974,\"max_lon\":-123.0346929}", + "popularity": 1000 } }, { @@ -925871,7 +927150,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/163950355", - "bounding_box": "{\"min_lat\":49.3102577,\"max_lat\":49.3108315,\"min_lon\":-123.0796952,\"max_lon\":-123.0784077}" + "bounding_box": "{\"min_lat\":49.3102577,\"max_lat\":49.3108315,\"min_lon\":-123.0796952,\"max_lon\":-123.0784077}", + "popularity": 1000 } }, { @@ -925896,7 +927176,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/163958380", - "bounding_box": "{\"min_lat\":49.3100828,\"max_lat\":49.3105261,\"min_lon\":-123.0814728,\"max_lon\":-123.0809739}" + "bounding_box": "{\"min_lat\":49.3100828,\"max_lat\":49.3105261,\"min_lon\":-123.0814728,\"max_lon\":-123.0809739}", + "popularity": 1000 } }, { @@ -926031,6 +927312,7 @@ "layer": "venue", "source_id": "way/165231228", "bounding_box": "{\"min_lat\":49.2727463,\"max_lat\":49.2728425,\"min_lon\":-123.1861763,\"max_lon\":-123.185841}", + "popularity": 3200, "addendum": { "osm": "{\"website\":\"http://www.hastings-mill-museum.ca/\"}" } @@ -926083,6 +927365,7 @@ "layer": "venue", "source_id": "way/165265164", "bounding_box": "{\"min_lat\":49.2243174,\"max_lat\":49.2246303,\"min_lon\":-123.0409122,\"max_lon\":-123.0403161}", + "popularity": 200, "addendum": { "osm": "{\"brand\":\"Shell\",\"website\":\"http://www.shell.ca/\"}" } @@ -926185,7 +927468,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/165450791", - "bounding_box": "{\"min_lat\":49.2616679,\"max_lat\":49.2618772,\"min_lon\":-123.1024547,\"max_lon\":-123.1021911}" + "bounding_box": "{\"min_lat\":49.2616679,\"max_lat\":49.2618772,\"min_lon\":-123.1024547,\"max_lon\":-123.1021911}", + "popularity": 1000 } }, { @@ -926209,7 +927493,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/165451422", - "bounding_box": "{\"min_lat\":49.2616666,\"max_lat\":49.2618677,\"min_lon\":-123.1021903,\"max_lon\":-123.1019138}" + "bounding_box": "{\"min_lat\":49.2616666,\"max_lat\":49.2618677,\"min_lon\":-123.1021903,\"max_lon\":-123.1019138}", + "popularity": 1000 } }, { @@ -926235,6 +927520,7 @@ "layer": "venue", "source_id": "way/166090082", "bounding_box": "{\"min_lat\":49.2360962,\"max_lat\":49.2363149,\"min_lon\":-123.0428343,\"max_lon\":-123.0424768}", + "popularity": 3200, "addendum": { "osm": "{\"operator\":\"Vancouver Public Library\",\"website\":\"http://www.vpl.ca/branches/details/collingwood_branch\"}" } @@ -926316,6 +927602,7 @@ "layer": "venue", "source_id": "way/170612575", "bounding_box": "{\"min_lat\":49.2777221,\"max_lat\":49.2777623,\"min_lon\":-123.1478323,\"max_lon\":-123.1476266}", + "popularity": 8000, "addendum": { "osm": "{\"wikipedia\":\"en:Ben Franklin (PX-15)\"}" } @@ -926363,7 +927650,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/173346701", - "bounding_box": "{\"min_lat\":49.2567578,\"max_lat\":49.2575439,\"min_lon\":-123.1095636,\"max_lon\":-123.1071685}" + "bounding_box": "{\"min_lat\":49.2567578,\"max_lat\":49.2575439,\"min_lon\":-123.1095636,\"max_lon\":-123.1071685}", + "popularity": 1000 } }, { @@ -926391,6 +927679,7 @@ "layer": "venue", "source_id": "way/174530913", "bounding_box": "{\"min_lat\":49.2773111,\"max_lat\":49.2776942,\"min_lon\":-123.148062,\"max_lon\":-123.1470561}", + "popularity": 10200, "addendum": { "osm": "{\"wikipedia\":\"en:Vancouver Maritime Museum\",\"website\":\"http://www.vancouvermaritimemuseum.com/\"}" } @@ -926415,6 +927704,7 @@ "layer": "venue", "source_id": "way/174708745", "bounding_box": "{\"min_lat\":49.2606307,\"max_lat\":49.2624829,\"min_lon\":-123.2575042,\"max_lon\":-123.254467}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.housing.ubc.ca/marine-drive/marine-drive-overview\"}" } @@ -926441,7 +927731,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/175618102", - "bounding_box": "{\"min_lat\":49.271648,\"max_lat\":49.272383,\"min_lon\":-123.15014,\"max_lon\":-123.147958}" + "bounding_box": "{\"min_lat\":49.271648,\"max_lat\":49.272383,\"min_lon\":-123.15014,\"max_lon\":-123.147958}", + "popularity": 1000 } }, { @@ -926462,7 +927753,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/175917283", - "bounding_box": "{\"min_lat\":49.2808846,\"max_lat\":49.2813885,\"min_lon\":-123.1255875,\"max_lon\":-123.1248204}" + "bounding_box": "{\"min_lat\":49.2808846,\"max_lat\":49.2813885,\"min_lon\":-123.1255875,\"max_lon\":-123.1248204}", + "popularity": 2000 } }, { @@ -926486,7 +927778,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/176710661", - "bounding_box": "{\"min_lat\":49.2721222,\"max_lat\":49.2728885,\"min_lon\":-123.0604134,\"max_lon\":-123.058096}" + "bounding_box": "{\"min_lat\":49.2721222,\"max_lat\":49.2728885,\"min_lon\":-123.0604134,\"max_lon\":-123.058096}", + "popularity": 1000 } }, { @@ -926516,6 +927809,7 @@ "layer": "venue", "source_id": "way/179231200", "bounding_box": "{\"min_lat\":49.2367361,\"max_lat\":49.2371004,\"min_lon\":-123.0341919,\"max_lon\":-123.0336615}", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://stmarysvancouver.ca/\"}" } @@ -926543,6 +927837,7 @@ "layer": "venue", "source_id": "way/180399640", "bounding_box": "{\"min_lat\":49.2604865,\"max_lat\":49.2608091,\"min_lon\":-123.1487869,\"max_lon\":-123.1483913}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.christianscience.bc.ca/secondvancouver/index.html\"}" } @@ -926581,6 +927876,7 @@ "layer": "venue", "source_id": "way/181355203", "bounding_box": "{\"min_lat\":49.2882882,\"max_lat\":49.2888164,\"min_lon\":-123.1212259,\"max_lon\":-123.1201685}", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -926746,6 +928042,7 @@ "layer": "venue", "source_id": "way/185722029", "bounding_box": "{\"min_lat\":49.2571599,\"max_lat\":49.2573954,\"min_lon\":-123.1009928,\"max_lon\":-123.1006638}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.heritagehall.bc.ca/\"}" } @@ -926777,6 +928074,7 @@ "layer": "venue", "source_id": "way/185810885", "bounding_box": "{\"min_lat\":49.2576276,\"max_lat\":49.2578445,\"min_lon\":-123.0999236,\"max_lon\":-123.099778}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://vancouverfilipino22.adventistchurchconnect.org/\"}" } @@ -926824,7 +928122,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/189180532", - "bounding_box": "{\"min_lat\":49.2809467,\"max_lat\":49.2813212,\"min_lon\":-123.113426,\"max_lon\":-123.1128225}" + "bounding_box": "{\"min_lat\":49.2809467,\"max_lat\":49.2813212,\"min_lon\":-123.113426,\"max_lon\":-123.1128225}", + "popularity": 2000 } }, { @@ -926870,7 +928169,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/197598617", - "bounding_box": "{\"min_lat\":49.2819687,\"max_lat\":49.2823175,\"min_lon\":-123.1262234,\"max_lon\":-123.1256878}" + "bounding_box": "{\"min_lat\":49.2819687,\"max_lat\":49.2823175,\"min_lon\":-123.1262234,\"max_lon\":-123.1256878}", + "popularity": 2000 } }, { @@ -926921,6 +928221,7 @@ "layer": "venue", "source_id": "way/204712417", "bounding_box": "{\"min_lat\":49.2413536,\"max_lat\":49.2424769,\"min_lon\":-123.0518881,\"max_lon\":-123.0508466}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://norquay.vsb.bc.ca\"}" } @@ -926995,6 +928296,7 @@ "layer": "venue", "source_id": "way/210713391", "bounding_box": "{\"min_lat\":49.2599271,\"max_lat\":49.2601492,\"min_lon\":-123.1385297,\"max_lon\":-123.1380402}", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Loblaw Companies Limited\"}" } @@ -927074,7 +928376,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/214585635", - "bounding_box": "{\"min_lat\":49.2268013,\"max_lat\":49.2278348,\"min_lon\":-123.1212099,\"max_lon\":-123.1206158}" + "bounding_box": "{\"min_lat\":49.2268013,\"max_lat\":49.2278348,\"min_lon\":-123.1212099,\"max_lon\":-123.1206158}", + "popularity": 1000 } }, { @@ -927102,7 +928405,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/214587996", - "bounding_box": "{\"min_lat\":49.2333257,\"max_lat\":49.2336043,\"min_lon\":-123.1236599,\"max_lon\":-123.1224623}" + "bounding_box": "{\"min_lat\":49.2333257,\"max_lat\":49.2336043,\"min_lon\":-123.1236599,\"max_lon\":-123.1224623}", + "popularity": 1000 } }, { @@ -927132,6 +928436,7 @@ "layer": "venue", "source_id": "way/214590458", "bounding_box": "{\"min_lat\":49.2330696,\"max_lat\":49.2337456,\"min_lon\":-123.1272757,\"max_lon\":-123.1259518}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.jccgv.com/\"}" } @@ -927309,7 +928614,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/218402678", - "bounding_box": "{\"min_lat\":49.233077,\"max_lat\":49.2349072,\"min_lon\":-123.0389437,\"max_lon\":-123.0361943}" + "bounding_box": "{\"min_lat\":49.233077,\"max_lat\":49.2349072,\"min_lon\":-123.0389437,\"max_lon\":-123.0361943}", + "popularity": 1000 } }, { @@ -927337,6 +928643,7 @@ "layer": "venue", "source_id": "way/218949206", "bounding_box": "{\"min_lat\":49.2934953,\"max_lat\":49.2937209,\"min_lon\":-123.1298156,\"max_lon\":-123.1294978}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://liftbarandgrill.com/\"}" } @@ -927410,6 +928717,7 @@ "layer": "venue", "source_id": "way/221401034", "bounding_box": "{\"min_lat\":49.2593578,\"max_lat\":49.2598199,\"min_lon\":-123.10191,\"max_lon\":-123.1013324}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.stpatrickscatholicchurch.ca/\"}" } @@ -927441,6 +928749,7 @@ "layer": "venue", "source_id": "way/223089077", "bounding_box": "{\"min_lat\":49.2876619,\"max_lat\":49.2882717,\"min_lon\":-123.1215316,\"max_lon\":-123.12015}", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -927498,6 +928807,7 @@ "layer": "venue", "source_id": "way/223173357", "bounding_box": "{\"min_lat\":49.2822803,\"max_lat\":49.2827298,\"min_lon\":-123.1342953,\"max_lon\":-123.1336146}", + "popularity": 2400, "addendum": { "osm": "{\"operator\":\"Loblaws Inc\",\"website\":\"http://www.yourindependentgrocer.ca/\",\"phone\":\"(604) 688-0911\",\"opening_hours\":\"Mo-Su 07:00-03:00\"}" } @@ -927525,7 +928835,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/223183948", - "bounding_box": "{\"min_lat\":49.2865478,\"max_lat\":49.2869537,\"min_lon\":-123.1256737,\"max_lon\":-123.1250353}" + "bounding_box": "{\"min_lat\":49.2865478,\"max_lat\":49.2869537,\"min_lon\":-123.1256737,\"max_lon\":-123.1250353}", + "popularity": 1000 } }, { @@ -927573,7 +928884,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/223221024", - "bounding_box": "{\"min_lat\":49.2808407,\"max_lat\":49.2811979,\"min_lon\":-123.1309415,\"max_lon\":-123.1304056}" + "bounding_box": "{\"min_lat\":49.2808407,\"max_lat\":49.2811979,\"min_lon\":-123.1309415,\"max_lon\":-123.1304056}", + "popularity": 1000 } }, { @@ -927648,6 +928960,7 @@ "layer": "venue", "source_id": "way/223635729", "bounding_box": "{\"min_lat\":49.2876725,\"max_lat\":49.2891608,\"min_lon\":-123.1138712,\"max_lon\":-123.1100247}", + "popularity": 2200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://www.canadaplace.ca/\"}" } @@ -927795,7 +929108,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/224542722", - "bounding_box": "{\"min_lat\":49.2639079,\"max_lat\":49.2640401,\"min_lon\":-123.1795069,\"max_lon\":-123.1791139}" + "bounding_box": "{\"min_lat\":49.2639079,\"max_lat\":49.2640401,\"min_lon\":-123.1795069,\"max_lon\":-123.1791139}", + "popularity": 1000 } }, { @@ -927845,6 +929159,7 @@ "layer": "venue", "source_id": "way/224542728", "bounding_box": "{\"min_lat\":49.2645061,\"max_lat\":49.264675,\"min_lon\":-123.15985,\"max_lon\":-123.1595202}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.lordsgrace.ca/\"}" } @@ -927895,6 +929210,7 @@ "layer": "venue", "source_id": "way/224624761", "bounding_box": "{\"min_lat\":49.253283,\"max_lat\":49.255597,\"min_lon\":-123.1992032,\"max_lon\":-123.1967147}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://camosunbog.org/\"}" } @@ -927971,7 +929287,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/228646469", - "bounding_box": "{\"min_lat\":49.2814075,\"max_lat\":49.2818807,\"min_lon\":-123.1264353,\"max_lon\":-123.1256738}" + "bounding_box": "{\"min_lat\":49.2814075,\"max_lat\":49.2818807,\"min_lon\":-123.1264353,\"max_lon\":-123.1256738}", + "popularity": 1000 } }, { @@ -927996,6 +929313,7 @@ "layer": "venue", "source_id": "way/228646470", "bounding_box": "{\"min_lat\":49.2810428,\"max_lat\":49.2815617,\"min_lon\":-123.1271418,\"max_lon\":-123.1264131}", + "popularity": 1000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -928027,7 +929345,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/229739184", - "bounding_box": "{\"min_lat\":49.2624285,\"max_lat\":49.2627333,\"min_lon\":-123.0667737,\"max_lon\":-123.0659897}" + "bounding_box": "{\"min_lat\":49.2624285,\"max_lat\":49.2627333,\"min_lon\":-123.0667737,\"max_lon\":-123.0659897}", + "popularity": 1000 } }, { @@ -928053,6 +929372,7 @@ "layer": "venue", "source_id": "way/229833344", "bounding_box": "{\"min_lat\":49.2744798,\"max_lat\":49.2746444,\"min_lon\":-123.1219951,\"max_lon\":-123.1217472}", + "popularity": 5200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:Yaletown–Roundhouse Station\",\"website\":\"http://www.translink.ca\"}" } @@ -928150,7 +929470,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/23102627", - "bounding_box": "{\"min_lat\":49.2155004,\"max_lat\":49.2163975,\"min_lon\":-123.0655341,\"max_lon\":-123.0644869}" + "bounding_box": "{\"min_lat\":49.2155004,\"max_lat\":49.2163975,\"min_lon\":-123.0655341,\"max_lon\":-123.0644869}", + "popularity": 1000 } }, { @@ -928295,7 +929616,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/23253981", - "bounding_box": "{\"min_lat\":49.21473,\"max_lat\":49.2150215,\"min_lon\":-123.0737592,\"max_lon\":-123.0726863}" + "bounding_box": "{\"min_lat\":49.21473,\"max_lat\":49.2150215,\"min_lon\":-123.0737592,\"max_lon\":-123.0726863}", + "popularity": 1000 } }, { @@ -928373,6 +929695,7 @@ "layer": "venue", "source_id": "way/23254110", "bounding_box": "{\"min_lat\":49.2310859,\"max_lat\":49.2328273,\"min_lon\":-123.0944698,\"max_lon\":-123.0907292}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://jo-online.vsb.bc.ca/\"}" } @@ -928421,6 +929744,7 @@ "layer": "venue", "source_id": "way/233816617", "bounding_box": "{\"min_lat\":49.2827045,\"max_lat\":49.2838065,\"min_lon\":-123.1306011,\"max_lon\":-123.1288227}", + "popularity": 4000, "addendum": { "osm": "{\"operator\":\"Vancouver School Board\"}" } @@ -928471,7 +929795,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/23393992", - "bounding_box": "{\"min_lat\":49.2236366,\"max_lat\":49.2257251,\"min_lon\":-123.111177,\"max_lon\":-123.106235}" + "bounding_box": "{\"min_lat\":49.2236366,\"max_lat\":49.2257251,\"min_lon\":-123.111177,\"max_lon\":-123.106235}", + "popularity": 2000 } }, { @@ -928782,6 +930107,7 @@ "layer": "venue", "source_id": "way/238647499", "bounding_box": "{\"min_lat\":49.2832936,\"max_lat\":49.2839789,\"min_lon\":-123.1253674,\"max_lon\":-123.1244766}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.DigitalCurrencyProfits.com\",\"phone\":\"604-696-3855\"}" } @@ -928805,7 +930131,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238787871", - "bounding_box": "{\"min_lat\":49.2799397,\"max_lat\":49.2802945,\"min_lon\":-123.1273102,\"max_lon\":-123.1268516}" + "bounding_box": "{\"min_lat\":49.2799397,\"max_lat\":49.2802945,\"min_lon\":-123.1273102,\"max_lon\":-123.1268516}", + "popularity": 2000 } }, { @@ -928826,7 +930153,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238787872", - "bounding_box": "{\"min_lat\":49.2796328,\"max_lat\":49.2799709,\"min_lon\":-123.1268292,\"max_lon\":-123.1262165}" + "bounding_box": "{\"min_lat\":49.2796328,\"max_lat\":49.2799709,\"min_lon\":-123.1268292,\"max_lon\":-123.1262165}", + "popularity": 2000 } }, { @@ -928871,7 +930199,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238793087", - "bounding_box": "{\"min_lat\":49.2804306,\"max_lat\":49.2806618,\"min_lon\":-123.128038,\"max_lon\":-123.1276898}" + "bounding_box": "{\"min_lat\":49.2804306,\"max_lat\":49.2806618,\"min_lon\":-123.128038,\"max_lon\":-123.1276898}", + "popularity": 2000 } }, { @@ -928917,7 +930246,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238793092", - "bounding_box": "{\"min_lat\":49.2796413,\"max_lat\":49.2804065,\"min_lon\":-123.1295232,\"max_lon\":-123.1283429}" + "bounding_box": "{\"min_lat\":49.2796413,\"max_lat\":49.2804065,\"min_lon\":-123.1295232,\"max_lon\":-123.1283429}", + "popularity": 2000 } }, { @@ -928938,7 +930268,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238793095", - "bounding_box": "{\"min_lat\":49.280648,\"max_lat\":49.2813413,\"min_lon\":-123.1320733,\"max_lon\":-123.1312831}" + "bounding_box": "{\"min_lat\":49.280648,\"max_lat\":49.2813413,\"min_lon\":-123.1320733,\"max_lon\":-123.1312831}", + "popularity": 2000 } }, { @@ -928988,7 +930319,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238793139", - "bounding_box": "{\"min_lat\":49.2792362,\"max_lat\":49.2795656,\"min_lon\":-123.1274889,\"max_lon\":-123.1269748}" + "bounding_box": "{\"min_lat\":49.2792362,\"max_lat\":49.2795656,\"min_lon\":-123.1274889,\"max_lon\":-123.1269748}", + "popularity": 1000 } }, { @@ -929081,7 +930413,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/238793175", - "bounding_box": "{\"min_lat\":49.2804754,\"max_lat\":49.2808497,\"min_lon\":-123.1293119,\"max_lon\":-123.1287354}" + "bounding_box": "{\"min_lat\":49.2804754,\"max_lat\":49.2808497,\"min_lon\":-123.1293119,\"max_lon\":-123.1287354}", + "popularity": 2000 } }, { @@ -929174,7 +930507,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/240895668", - "bounding_box": "{\"min_lat\":49.2808193,\"max_lat\":49.2811714,\"min_lon\":-123.1330451,\"max_lon\":-123.1324972}" + "bounding_box": "{\"min_lat\":49.2808193,\"max_lat\":49.2811714,\"min_lon\":-123.1330451,\"max_lon\":-123.1324972}", + "popularity": 1000 } }, { @@ -929203,6 +930537,7 @@ "layer": "venue", "source_id": "way/241043319", "bounding_box": "{\"min_lat\":49.2811997,\"max_lat\":49.281539,\"min_lon\":-123.1325816,\"max_lon\":-123.1320613}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.pumpjackpub.com\"}" } @@ -929229,7 +930564,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/241200760", - "bounding_box": "{\"min_lat\":49.2897661,\"max_lat\":49.290639,\"min_lon\":-123.1367779,\"max_lon\":-123.1356725}" + "bounding_box": "{\"min_lat\":49.2897661,\"max_lat\":49.290639,\"min_lon\":-123.1367779,\"max_lon\":-123.1356725}", + "popularity": 2000 } }, { @@ -929351,7 +930687,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/241745284", - "bounding_box": "{\"min_lat\":49.2817235,\"max_lat\":49.2820838,\"min_lon\":-123.1147927,\"max_lon\":-123.1142077}" + "bounding_box": "{\"min_lat\":49.2817235,\"max_lat\":49.2820838,\"min_lon\":-123.1147927,\"max_lon\":-123.1142077}", + "popularity": 1000 } }, { @@ -929376,7 +930713,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/241886800", - "bounding_box": "{\"min_lat\":49.2578126,\"max_lat\":49.257977,\"min_lon\":-123.0453987,\"max_lon\":-123.0452323}" + "bounding_box": "{\"min_lat\":49.2578126,\"max_lat\":49.257977,\"min_lon\":-123.0453987,\"max_lon\":-123.0452323}", + "popularity": 1000 } }, { @@ -929562,6 +930900,7 @@ "layer": "venue", "source_id": "way/245254065", "bounding_box": "{\"min_lat\":49.2685842,\"max_lat\":49.2688726,\"min_lon\":-123.0928958,\"max_lon\":-123.0922121}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.hiveclimbing.com/\"}" } @@ -929591,6 +930930,7 @@ "layer": "venue", "source_id": "way/246948729", "bounding_box": "{\"min_lat\":49.2781167,\"max_lat\":49.2784404,\"min_lon\":-123.1253083,\"max_lon\":-123.124805}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"(778) 327-5872\"}" } @@ -929627,6 +930967,7 @@ "layer": "venue", "source_id": "way/24705904", "bounding_box": "{\"min_lat\":49.2756598,\"max_lat\":49.2777509,\"min_lon\":-123.1136429,\"max_lon\":-123.1103706}", + "popularity": 5200, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:BC Place Stadium\",\"website\":\"http://www.bcplacestadium.com\"}" } @@ -929659,6 +931000,7 @@ "layer": "venue", "source_id": "way/24705911", "bounding_box": "{\"min_lat\":49.2773545,\"max_lat\":49.2784909,\"min_lon\":-123.1099594,\"max_lon\":-123.1078218}", + "popularity": 5000, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:Rogers Arena\"}" } @@ -929737,7 +931079,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247684290", - "bounding_box": "{\"min_lat\":40.6988139,\"max_lat\":40.6991584,\"min_lon\":-73.7328466,\"max_lon\":-73.7322164}" + "bounding_box": "{\"min_lat\":40.6988139,\"max_lat\":40.6991584,\"min_lon\":-73.7328466,\"max_lon\":-73.7322164}", + "popularity": 3000 } }, { @@ -929766,7 +931109,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247835145", - "bounding_box": "{\"min_lat\":40.7065224,\"max_lat\":40.707079,\"min_lon\":-73.7382815,\"max_lon\":-73.737446}" + "bounding_box": "{\"min_lat\":40.7065224,\"max_lat\":40.707079,\"min_lon\":-73.7382815,\"max_lon\":-73.737446}", + "popularity": 3000 } }, { @@ -929795,7 +931139,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247836769", - "bounding_box": "{\"min_lat\":40.7104896,\"max_lat\":40.7112961,\"min_lon\":-73.7379903,\"max_lon\":-73.7373268}" + "bounding_box": "{\"min_lat\":40.7104896,\"max_lat\":40.7112961,\"min_lon\":-73.7379903,\"max_lon\":-73.7373268}", + "popularity": 2000 } }, { @@ -929819,7 +931164,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247836770", - "bounding_box": "{\"min_lat\":40.7114889,\"max_lat\":40.711928,\"min_lon\":-73.7391787,\"max_lon\":-73.7386727}" + "bounding_box": "{\"min_lat\":40.7114889,\"max_lat\":40.711928,\"min_lon\":-73.7391787,\"max_lon\":-73.7386727}", + "popularity": 3000 } }, { @@ -929843,7 +931189,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247838981", - "bounding_box": "{\"min_lat\":40.7329851,\"max_lat\":40.7333045,\"min_lon\":-73.7605295,\"max_lon\":-73.7598171}" + "bounding_box": "{\"min_lat\":40.7329851,\"max_lat\":40.7333045,\"min_lon\":-73.7605295,\"max_lon\":-73.7598171}", + "popularity": 3000 } }, { @@ -929867,7 +931214,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247838982", - "bounding_box": "{\"min_lat\":40.7321423,\"max_lat\":40.7323273,\"min_lon\":-73.7548286,\"max_lon\":-73.7544681}" + "bounding_box": "{\"min_lat\":40.7321423,\"max_lat\":40.7323273,\"min_lon\":-73.7548286,\"max_lon\":-73.7544681}", + "popularity": 3000 } }, { @@ -929893,7 +931241,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247853174", - "bounding_box": "{\"min_lat\":40.7132387,\"max_lat\":40.7135426,\"min_lon\":-73.7697945,\"max_lon\":-73.7695263}" + "bounding_box": "{\"min_lat\":40.7132387,\"max_lat\":40.7135426,\"min_lon\":-73.7697945,\"max_lon\":-73.7695263}", + "popularity": 2000 } }, { @@ -929922,7 +931271,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247853613", - "bounding_box": "{\"min_lat\":40.7131005,\"max_lat\":40.7133457,\"min_lon\":-73.7679556,\"max_lon\":-73.7676961}" + "bounding_box": "{\"min_lat\":40.7131005,\"max_lat\":40.7133457,\"min_lon\":-73.7679556,\"max_lon\":-73.7676961}", + "popularity": 3000 } }, { @@ -929946,7 +931296,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/247853615", - "bounding_box": "{\"min_lat\":40.7132455,\"max_lat\":40.7138371,\"min_lon\":-73.7693697,\"max_lon\":-73.7684518}" + "bounding_box": "{\"min_lat\":40.7132455,\"max_lat\":40.7138371,\"min_lon\":-73.7693697,\"max_lon\":-73.7684518}", + "popularity": 2000 } }, { @@ -929974,7 +931325,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248538234", - "bounding_box": "{\"min_lat\":40.7331926,\"max_lat\":40.733439,\"min_lon\":-73.7190598,\"max_lon\":-73.7187946}" + "bounding_box": "{\"min_lat\":40.7331926,\"max_lat\":40.733439,\"min_lon\":-73.7190598,\"max_lon\":-73.7187946}", + "popularity": 3000 } }, { @@ -930003,7 +931355,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248538235", - "bounding_box": "{\"min_lat\":40.7318851,\"max_lat\":40.7325326,\"min_lon\":-73.7181289,\"max_lon\":-73.717326}" + "bounding_box": "{\"min_lat\":40.7318851,\"max_lat\":40.7325326,\"min_lon\":-73.7181289,\"max_lon\":-73.717326}", + "popularity": 2000 } }, { @@ -930033,6 +931386,7 @@ "layer": "venue", "source_id": "way/248549214", "bounding_box": "{\"min_lat\":40.7302286,\"max_lat\":40.7306805,\"min_lon\":-73.7199818,\"max_lon\":-73.7196423}", + "popularity": 3400, "addendum": { "osm": "{\"website\":\"http://www.holytrinitybellerose.org/\",\"phone\":\"718-347-0278\"}" } @@ -930064,7 +931418,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248549535", - "bounding_box": "{\"min_lat\":40.7297434,\"max_lat\":40.7299917,\"min_lon\":-73.7218525,\"max_lon\":-73.7209862}" + "bounding_box": "{\"min_lat\":40.7297434,\"max_lat\":40.7299917,\"min_lon\":-73.7218525,\"max_lon\":-73.7209862}", + "popularity": 2000 } }, { @@ -930095,6 +931450,7 @@ "layer": "venue", "source_id": "way/248572389", "bounding_box": "{\"min_lat\":40.7343886,\"max_lat\":40.7345826,\"min_lon\":-73.7558471,\"max_lon\":-73.7555227}", + "popularity": 6000, "addendum": { "osm": "{\"operator\":\"Queens Library\",\"opening_hours\":\"http://www.queenslibrary.org/branch/Windsor-Park?filters=ev_loc:95900000\"}" } @@ -930126,7 +931482,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248572756", - "bounding_box": "{\"min_lat\":40.7372265,\"max_lat\":40.7381862,\"min_lon\":-73.756719,\"max_lon\":-73.7557295}" + "bounding_box": "{\"min_lat\":40.7372265,\"max_lat\":40.7381862,\"min_lon\":-73.756719,\"max_lon\":-73.7557295}", + "popularity": 2000 } }, { @@ -930155,7 +931512,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248574389", - "bounding_box": "{\"min_lat\":40.7144121,\"max_lat\":40.7145785,\"min_lon\":-73.763213,\"max_lon\":-73.7628681}" + "bounding_box": "{\"min_lat\":40.7144121,\"max_lat\":40.7145785,\"min_lon\":-73.763213,\"max_lon\":-73.7628681}", + "popularity": 3000 } }, { @@ -930184,7 +931542,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248828518", - "bounding_box": "{\"min_lat\":40.6945168,\"max_lat\":40.6947348,\"min_lon\":-73.7393134,\"max_lon\":-73.7390886}" + "bounding_box": "{\"min_lat\":40.6945168,\"max_lat\":40.6947348,\"min_lon\":-73.7393134,\"max_lon\":-73.7390886}", + "popularity": 3000 } }, { @@ -930213,7 +931572,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248831783", - "bounding_box": "{\"min_lat\":40.6962528,\"max_lat\":40.696539,\"min_lon\":-73.737331,\"max_lon\":-73.7370024}" + "bounding_box": "{\"min_lat\":40.6962528,\"max_lat\":40.696539,\"min_lon\":-73.737331,\"max_lon\":-73.7370024}", + "popularity": 3000 } }, { @@ -930242,7 +931602,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248834457", - "bounding_box": "{\"min_lat\":40.6983539,\"max_lat\":40.6986237,\"min_lon\":-73.7379012,\"max_lon\":-73.7374825}" + "bounding_box": "{\"min_lat\":40.6983539,\"max_lat\":40.6986237,\"min_lon\":-73.7379012,\"max_lon\":-73.7374825}", + "popularity": 3000 } }, { @@ -930271,7 +931632,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248834458", - "bounding_box": "{\"min_lat\":40.6985973,\"max_lat\":40.6991438,\"min_lon\":-73.7376712,\"max_lon\":-73.7372283}" + "bounding_box": "{\"min_lat\":40.6985973,\"max_lat\":40.6991438,\"min_lon\":-73.7376712,\"max_lon\":-73.7372283}", + "popularity": 2000 } }, { @@ -930295,7 +931657,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248837014", - "bounding_box": "{\"min_lat\":40.7043392,\"max_lat\":40.7046183,\"min_lon\":-73.7406715,\"max_lon\":-73.7402785}" + "bounding_box": "{\"min_lat\":40.7043392,\"max_lat\":40.7046183,\"min_lon\":-73.7406715,\"max_lon\":-73.7402785}", + "popularity": 3000 } }, { @@ -930324,7 +931687,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248840357", - "bounding_box": "{\"min_lat\":40.7147244,\"max_lat\":40.7150106,\"min_lon\":-73.7431007,\"max_lon\":-73.7428386}" + "bounding_box": "{\"min_lat\":40.7147244,\"max_lat\":40.7150106,\"min_lon\":-73.7431007,\"max_lon\":-73.7428386}", + "popularity": 3000 } }, { @@ -930353,7 +931717,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248840855", - "bounding_box": "{\"min_lat\":40.7153275,\"max_lat\":40.7157875,\"min_lon\":-73.7459342,\"max_lon\":-73.7456962}" + "bounding_box": "{\"min_lat\":40.7153275,\"max_lat\":40.7157875,\"min_lon\":-73.7459342,\"max_lon\":-73.7456962}", + "popularity": 3000 } }, { @@ -930377,7 +931742,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248845042", - "bounding_box": "{\"min_lat\":40.7193403,\"max_lat\":40.7197096,\"min_lon\":-73.75765,\"max_lon\":-73.7572987}" + "bounding_box": "{\"min_lat\":40.7193403,\"max_lat\":40.7197096,\"min_lon\":-73.75765,\"max_lon\":-73.7572987}", + "popularity": 3000 } }, { @@ -930401,7 +931767,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248845043", - "bounding_box": "{\"min_lat\":40.7186945,\"max_lat\":40.7193909,\"min_lon\":-73.7578515,\"max_lon\":-73.7572122}" + "bounding_box": "{\"min_lat\":40.7186945,\"max_lat\":40.7193909,\"min_lon\":-73.7578515,\"max_lon\":-73.7572122}", + "popularity": 2000 } }, { @@ -930430,7 +931797,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/248845044", - "bounding_box": "{\"min_lat\":40.7203473,\"max_lat\":40.7212838,\"min_lon\":-73.7581847,\"max_lon\":-73.7570192}" + "bounding_box": "{\"min_lat\":40.7203473,\"max_lat\":40.7212838,\"min_lon\":-73.7581847,\"max_lon\":-73.7570192}", + "popularity": 2000 } }, { @@ -930557,6 +931925,7 @@ "layer": "venue", "source_id": "way/256663664", "bounding_box": "{\"min_lat\":49.2463708,\"max_lat\":49.2470627,\"min_lon\":-123.0388947,\"max_lon\":-123.0367565}", + "popularity": 4400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"wikipedia\":\"en:Windermere Secondary School\",\"website\":\"http://windermere.vsb.bc.ca\",\"phone\":\"6047138180\"}" } @@ -930589,6 +931958,7 @@ "layer": "venue", "source_id": "way/256663986", "bounding_box": "{\"min_lat\":49.250918,\"max_lat\":49.2512257,\"min_lon\":-123.0332867,\"max_lon\":-123.0322885}", + "popularity": 4400, "addendum": { "osm": "{\"wikipedia\":\"en:Renfrew Elementary School\",\"website\":\"renfrew.vsb.bc.ca\",\"phone\":\"6047134851\"}" } @@ -930718,6 +932088,7 @@ "layer": "venue", "source_id": "way/25694863", "bounding_box": "{\"min_lat\":40.7242946,\"max_lat\":40.7392018,\"min_lon\":-73.7690151,\"max_lon\":-73.7513337}", + "popularity": 3200, "addendum": { "osm": "{\"wikipedia\":\"en:Cunningham Park\",\"website\":\"http://www.nycgovparks.org/parks/cunningham-park\"}" } @@ -930877,6 +932248,7 @@ "layer": "venue", "source_id": "way/259486989", "bounding_box": "{\"min_lat\":49.2437961,\"max_lat\":49.2438682,\"min_lon\":-123.1011577,\"max_lon\":-123.1008937}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mainelectronics.com/\"}" } @@ -930933,7 +932305,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/259652372", - "bounding_box": "{\"min_lat\":49.2412961,\"max_lat\":49.2462338,\"min_lon\":-123.127641,\"max_lon\":-123.1206043}" + "bounding_box": "{\"min_lat\":49.2412961,\"max_lat\":49.2462338,\"min_lon\":-123.127641,\"max_lon\":-123.1206043}", + "popularity": 2000 } }, { @@ -930957,7 +932330,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/259889367", - "bounding_box": "{\"min_lat\":49.2405829,\"max_lat\":49.2409156,\"min_lon\":-123.1012758,\"max_lon\":-123.1008275}" + "bounding_box": "{\"min_lat\":49.2405829,\"max_lat\":49.2409156,\"min_lon\":-123.1012758,\"max_lon\":-123.1008275}", + "popularity": 1000 } }, { @@ -930981,7 +932355,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/260025048", - "bounding_box": "{\"min_lat\":49.2253895,\"max_lat\":49.2275783,\"min_lon\":-123.0770741,\"max_lon\":-123.0759559}" + "bounding_box": "{\"min_lat\":49.2253895,\"max_lat\":49.2275783,\"min_lon\":-123.0770741,\"max_lon\":-123.0759559}", + "popularity": 1000 } }, { @@ -931146,6 +932521,7 @@ "layer": "venue", "source_id": "way/264215699", "bounding_box": "{\"min_lat\":49.2832768,\"max_lat\":49.2835464,\"min_lon\":-123.1011924,\"max_lon\":-123.1003308}", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://foursisters.ca/\",\"phone\":\"604-662-8574\"}" } @@ -931175,6 +932551,7 @@ "layer": "venue", "source_id": "way/264217491", "bounding_box": "{\"min_lat\":49.2833081,\"max_lat\":49.283578,\"min_lon\":-123.1017165,\"max_lon\":-123.1013442}", + "popularity": 400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"http://foursisters.ca\",\"phone\":\"604-662-8574\"}" } @@ -931257,6 +932634,7 @@ "layer": "venue", "source_id": "way/264975353", "bounding_box": "{\"min_lat\":49.282727,\"max_lat\":49.28323,\"min_lon\":-123.1099232,\"max_lon\":-123.1094684}", + "popularity": 3200, "addendum": { "osm": "{\"wikipedia\":\"en:Dominion Building\",\"website\":\"http://dominionbuilding.ca/\"}" } @@ -931310,7 +932688,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/266484143", - "bounding_box": "{\"min_lat\":49.2656537,\"max_lat\":49.2660002,\"min_lon\":-123.0796295,\"max_lon\":-123.0784109}" + "bounding_box": "{\"min_lat\":49.2656537,\"max_lat\":49.2660002,\"min_lon\":-123.0796295,\"max_lon\":-123.0784109}", + "popularity": 2000 } }, { @@ -931336,7 +932715,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/266484144", - "bounding_box": "{\"min_lat\":49.2480522,\"max_lat\":49.2484685,\"min_lon\":-123.0561625,\"max_lon\":-123.0553271}" + "bounding_box": "{\"min_lat\":49.2480522,\"max_lat\":49.2484685,\"min_lon\":-123.0561625,\"max_lon\":-123.0553271}", + "popularity": 2000 } }, { @@ -931366,6 +932746,7 @@ "layer": "venue", "source_id": "way/269472025", "bounding_box": "{\"min_lat\":49.2637473,\"max_lat\":49.2645419,\"min_lon\":-123.1967124,\"max_lon\":-123.1949421}", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.olphbc.ca/\",\"phone\":\"604-228-8811\"}" } @@ -931395,6 +932776,7 @@ "layer": "venue", "source_id": "way/270443123", "bounding_box": "{\"min_lat\":49.2749155,\"max_lat\":49.275493,\"min_lon\":-123.1262033,\"max_lon\":-123.125125}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.oscarvancouver.com/\"}" } @@ -931419,6 +932801,7 @@ "layer": "venue", "source_id": "way/271373066", "bounding_box": "{\"min_lat\":49.2589316,\"max_lat\":49.2598967,\"min_lon\":-123.2446138,\"max_lon\":-123.2425654}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.tennis.ubc.ca/\"}" } @@ -931470,7 +932853,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/272214521", - "bounding_box": "{\"min_lat\":49.2225218,\"max_lat\":49.2231401,\"min_lon\":-123.1014232,\"max_lon\":-123.1005247}" + "bounding_box": "{\"min_lat\":49.2225218,\"max_lat\":49.2231401,\"min_lon\":-123.1014232,\"max_lon\":-123.1005247}", + "popularity": 1000 } }, { @@ -931500,6 +932884,7 @@ "layer": "venue", "source_id": "way/272488770", "bounding_box": "{\"min_lat\":49.2545412,\"max_lat\":49.255001,\"min_lon\":-123.1270681,\"max_lon\":-123.1266443}", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"604-736-7607\"}" } @@ -931524,6 +932909,7 @@ "layer": "venue", "source_id": "way/272513461", "bounding_box": "{\"min_lat\":49.2220084,\"max_lat\":49.2236586,\"min_lon\":-123.1013963,\"max_lon\":-123.0987463}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"City of Vancouver\"}" } @@ -931577,7 +932963,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/27318161", - "bounding_box": "{\"min_lat\":49.2663222,\"max_lat\":49.2669512,\"min_lon\":-123.2554671,\"max_lon\":-123.2548226}" + "bounding_box": "{\"min_lat\":49.2663222,\"max_lat\":49.2669512,\"min_lon\":-123.2554671,\"max_lon\":-123.2548226}", + "popularity": 2000 } }, { @@ -931602,7 +932989,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/27318163", - "bounding_box": "{\"min_lat\":49.267028,\"max_lat\":49.2681902,\"min_lon\":-123.2534517,\"max_lon\":-123.2520907}" + "bounding_box": "{\"min_lat\":49.267028,\"max_lat\":49.2681902,\"min_lon\":-123.2534517,\"max_lon\":-123.2520907}", + "popularity": 2000 } }, { @@ -931627,7 +933015,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/27926613", - "bounding_box": "{\"min_lat\":49.2720188,\"max_lat\":49.2730244,\"min_lon\":-123.1357679,\"max_lon\":-123.1344691}" + "bounding_box": "{\"min_lat\":49.2720188,\"max_lat\":49.2730244,\"min_lon\":-123.1357679,\"max_lon\":-123.1344691}", + "popularity": 1000 } }, { @@ -931829,6 +933218,7 @@ "layer": "venue", "source_id": "way/282605883", "bounding_box": "{\"min_lat\":40.7368684,\"max_lat\":40.7390552,\"min_lon\":-73.7434208,\"max_lon\":-73.7338722}", + "popularity": 3200, "addendum": { "osm": "{\"wikipedia\":\"en:Alley Pond Park\",\"website\":\"http://www.nycgovparks.org/parks/alley-pond-park\"}" } @@ -931970,7 +933360,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283019392", - "bounding_box": "{\"min_lat\":40.6957006,\"max_lat\":40.6959067,\"min_lon\":-73.743326,\"max_lon\":-73.7431356}" + "bounding_box": "{\"min_lat\":40.6957006,\"max_lat\":40.6959067,\"min_lon\":-73.743326,\"max_lon\":-73.7431356}", + "popularity": 2000 } }, { @@ -931999,7 +933390,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283019420", - "bounding_box": "{\"min_lat\":40.6960913,\"max_lat\":40.696364,\"min_lon\":-73.7428512,\"max_lon\":-73.742655}" + "bounding_box": "{\"min_lat\":40.6960913,\"max_lat\":40.696364,\"min_lon\":-73.7428512,\"max_lon\":-73.742655}", + "popularity": 2000 } }, { @@ -932028,7 +933420,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283019446", - "bounding_box": "{\"min_lat\":40.6951648,\"max_lat\":40.6957088,\"min_lon\":-73.7424511,\"max_lon\":-73.741358}" + "bounding_box": "{\"min_lat\":40.6951648,\"max_lat\":40.6957088,\"min_lon\":-73.7424511,\"max_lon\":-73.741358}", + "popularity": 2000 } }, { @@ -932057,7 +933450,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283019470", - "bounding_box": "{\"min_lat\":40.6972891,\"max_lat\":40.6979694,\"min_lon\":-73.7407734,\"max_lon\":-73.7399322}" + "bounding_box": "{\"min_lat\":40.6972891,\"max_lat\":40.6979694,\"min_lon\":-73.7407734,\"max_lon\":-73.7399322}", + "popularity": 2000 } }, { @@ -932088,6 +933482,7 @@ "layer": "venue", "source_id": "way/283019477", "bounding_box": "{\"min_lat\":40.6965001,\"max_lat\":40.6967039,\"min_lon\":-73.7432339,\"max_lon\":-73.7429658}", + "popularity": 2200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.com/\"}" } @@ -932122,6 +933517,7 @@ "layer": "venue", "source_id": "way/283020035", "bounding_box": "{\"min_lat\":49.239925,\"max_lat\":49.2401233,\"min_lon\":-123.0547952,\"max_lon\":-123.0544966}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.churchschickenbc.ca/\"}" } @@ -932153,7 +933549,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283035425", - "bounding_box": "{\"min_lat\":40.6964795,\"max_lat\":40.6966649,\"min_lon\":-73.7440345,\"max_lon\":-73.7436736}" + "bounding_box": "{\"min_lat\":40.6964795,\"max_lat\":40.6966649,\"min_lon\":-73.7440345,\"max_lon\":-73.7436736}", + "popularity": 2000 } }, { @@ -932177,7 +933574,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283035480", - "bounding_box": "{\"min_lat\":40.6959786,\"max_lat\":40.696288,\"min_lon\":-73.7453569,\"max_lon\":-73.7447261}" + "bounding_box": "{\"min_lat\":40.6959786,\"max_lat\":40.696288,\"min_lon\":-73.7453569,\"max_lon\":-73.7447261}", + "popularity": 2000 } }, { @@ -932206,7 +933604,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283035677", - "bounding_box": "{\"min_lat\":40.6959648,\"max_lat\":40.6961905,\"min_lon\":-73.7440788,\"max_lon\":-73.7438481}" + "bounding_box": "{\"min_lat\":40.6959648,\"max_lat\":40.6961905,\"min_lon\":-73.7440788,\"max_lon\":-73.7438481}", + "popularity": 2000 } }, { @@ -932230,7 +933629,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283035759", - "bounding_box": "{\"min_lat\":40.6959495,\"max_lat\":40.6960382,\"min_lon\":-73.7442343,\"max_lon\":-73.7441588}" + "bounding_box": "{\"min_lat\":40.6959495,\"max_lat\":40.6960382,\"min_lon\":-73.7442343,\"max_lon\":-73.7441588}", + "popularity": 2000 } }, { @@ -932259,7 +933659,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283132923", - "bounding_box": "{\"min_lat\":40.7051638,\"max_lat\":40.7062618,\"min_lon\":-73.7532736,\"max_lon\":-73.7522541}" + "bounding_box": "{\"min_lat\":40.7051638,\"max_lat\":40.7062618,\"min_lon\":-73.7532736,\"max_lon\":-73.7522541}", + "popularity": 2000 } }, { @@ -932283,7 +933684,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283216344", - "bounding_box": "{\"min_lat\":40.7201122,\"max_lat\":40.7207446,\"min_lon\":-73.747002,\"max_lon\":-73.7461449}" + "bounding_box": "{\"min_lat\":40.7201122,\"max_lat\":40.7207446,\"min_lon\":-73.747002,\"max_lon\":-73.7461449}", + "popularity": 3000 } }, { @@ -932309,7 +933711,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283218101", - "bounding_box": "{\"min_lat\":40.7196874,\"max_lat\":40.7199489,\"min_lon\":-73.7345695,\"max_lon\":-73.7341644}" + "bounding_box": "{\"min_lat\":40.7196874,\"max_lat\":40.7199489,\"min_lon\":-73.7345695,\"max_lon\":-73.7341644}", + "popularity": 2000 } }, { @@ -932338,7 +933741,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283223916", - "bounding_box": "{\"min_lat\":40.7160922,\"max_lat\":40.7162648,\"min_lon\":-73.7370166,\"max_lon\":-73.7367225}" + "bounding_box": "{\"min_lat\":40.7160922,\"max_lat\":40.7162648,\"min_lon\":-73.7370166,\"max_lon\":-73.7367225}", + "popularity": 3000 } }, { @@ -932367,7 +933771,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283223917", - "bounding_box": "{\"min_lat\":40.7135982,\"max_lat\":40.7138559,\"min_lon\":-73.735526,\"max_lon\":-73.7350838}" + "bounding_box": "{\"min_lat\":40.7135982,\"max_lat\":40.7138559,\"min_lon\":-73.735526,\"max_lon\":-73.7350838}", + "popularity": 3000 } }, { @@ -932400,6 +933805,7 @@ "layer": "venue", "source_id": "way/283224143", "bounding_box": "{\"min_lat\":40.7175959,\"max_lat\":40.717796,\"min_lon\":-73.7362575,\"max_lon\":-73.7356911}", + "popularity": 10000, "addendum": { "osm": "{\"wikipedia\":\"en:Queens Village (LIRR station)\",\"operator\":\"Long Island Rail Road\"}" } @@ -932431,7 +933837,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283241986", - "bounding_box": "{\"min_lat\":40.7267716,\"max_lat\":40.727427,\"min_lon\":-73.7348904,\"max_lon\":-73.7341085}" + "bounding_box": "{\"min_lat\":40.7267716,\"max_lat\":40.727427,\"min_lon\":-73.7348904,\"max_lon\":-73.7341085}", + "popularity": 2000 } }, { @@ -932460,7 +933867,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283244573", - "bounding_box": "{\"min_lat\":40.7346517,\"max_lat\":40.7348818,\"min_lon\":-73.7509357,\"max_lon\":-73.7503755}" + "bounding_box": "{\"min_lat\":40.7346517,\"max_lat\":40.7348818,\"min_lon\":-73.7509357,\"max_lon\":-73.7503755}", + "popularity": 3000 } }, { @@ -932489,7 +933897,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283248972", - "bounding_box": "{\"min_lat\":40.7311218,\"max_lat\":40.7322859,\"min_lon\":-73.7326747,\"max_lon\":-73.7318484}" + "bounding_box": "{\"min_lat\":40.7311218,\"max_lat\":40.7322859,\"min_lon\":-73.7326747,\"max_lon\":-73.7318484}", + "popularity": 2000 } }, { @@ -932513,7 +933922,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283259724", - "bounding_box": "{\"min_lat\":40.7330189,\"max_lat\":40.7348125,\"min_lon\":-73.7400766,\"max_lon\":-73.7385289}" + "bounding_box": "{\"min_lat\":40.7330189,\"max_lat\":40.7348125,\"min_lon\":-73.7400766,\"max_lon\":-73.7385289}", + "popularity": 3000 } }, { @@ -932542,7 +933952,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/283263125", - "bounding_box": "{\"min_lat\":40.7357972,\"max_lat\":40.7364586,\"min_lon\":-73.754026,\"max_lon\":-73.753228}" + "bounding_box": "{\"min_lat\":40.7357972,\"max_lat\":40.7364586,\"min_lon\":-73.754026,\"max_lon\":-73.753228}", + "popularity": 2000 } }, { @@ -932596,6 +934007,7 @@ "layer": "venue", "source_id": "way/284560282", "bounding_box": "{\"min_lat\":49.2398149,\"max_lat\":49.2409199,\"min_lon\":-123.0573614,\"max_lon\":-123.0547771}", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.2400motel.com/\",\"phone\":\"604-434-2464\"}" } @@ -932681,7 +934093,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/286383422", - "bounding_box": "{\"min_lat\":49.2421687,\"max_lat\":49.2423877,\"min_lon\":-123.0825422,\"max_lon\":-123.0820939}" + "bounding_box": "{\"min_lat\":49.2421687,\"max_lat\":49.2423877,\"min_lon\":-123.0825422,\"max_lon\":-123.0820939}", + "popularity": 1000 } }, { @@ -933040,7 +934453,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/290246132", - "bounding_box": "{\"min_lat\":49.2416097,\"max_lat\":49.2417418,\"min_lon\":-123.0626068,\"max_lon\":-123.0622013}" + "bounding_box": "{\"min_lat\":49.2416097,\"max_lat\":49.2417418,\"min_lon\":-123.0626068,\"max_lon\":-123.0622013}", + "popularity": 1000 } }, { @@ -933189,6 +934603,7 @@ "layer": "venue", "source_id": "way/292255407", "bounding_box": "{\"min_lat\":49.2625148,\"max_lat\":49.2651396,\"min_lon\":-123.081251,\"max_lon\":-123.0795022}", + "popularity": 2200, "addendum": { "osm": "{\"phone\":\"1 866 565 7820\"}" } @@ -933219,7 +934634,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/292259768", - "bounding_box": "{\"min_lat\":49.2611713,\"max_lat\":49.2613725,\"min_lon\":-123.0889867,\"max_lon\":-123.0888207}" + "bounding_box": "{\"min_lat\":49.2611713,\"max_lat\":49.2613725,\"min_lon\":-123.0889867,\"max_lon\":-123.0888207}", + "popularity": 1000 } }, { @@ -933248,7 +934664,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/292259770", - "bounding_box": "{\"min_lat\":49.2614908,\"max_lat\":49.261702,\"min_lon\":-123.0706315,\"max_lon\":-123.0705009}" + "bounding_box": "{\"min_lat\":49.2614908,\"max_lat\":49.261702,\"min_lon\":-123.0706315,\"max_lon\":-123.0705009}", + "popularity": 1000 } }, { @@ -933283,7 +934700,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/292384725", - "bounding_box": "{\"min_lat\":49.2499596,\"max_lat\":49.2501875,\"min_lon\":-123.1015203,\"max_lon\":-123.1011999}" + "bounding_box": "{\"min_lat\":49.2499596,\"max_lat\":49.2501875,\"min_lon\":-123.1015203,\"max_lon\":-123.1011999}", + "popularity": 2000 } }, { @@ -933363,6 +934781,7 @@ "layer": "venue", "source_id": "way/292789681", "bounding_box": "{\"min_lat\":49.2767432,\"max_lat\":49.2770046,\"min_lon\":-123.0663621,\"max_lon\":-123.0657817}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://thecultch.com/\"}" } @@ -933417,7 +934836,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/293259175", - "bounding_box": "{\"min_lat\":49.2455816,\"max_lat\":49.2456937,\"min_lon\":-123.064911,\"max_lon\":-123.0645137}" + "bounding_box": "{\"min_lat\":49.2455816,\"max_lat\":49.2456937,\"min_lon\":-123.064911,\"max_lon\":-123.0645137}", + "popularity": 1000 } }, { @@ -933503,6 +934923,7 @@ "layer": "venue", "source_id": "way/293384658", "bounding_box": "{\"min_lat\":49.2435343,\"max_lat\":49.2438719,\"min_lon\":-123.0614477,\"max_lon\":-123.0608921}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.dollarama.com/\"}" } @@ -933713,6 +935134,7 @@ "layer": "venue", "source_id": "way/296974313", "bounding_box": "{\"min_lat\":49.2830043,\"max_lat\":49.2833543,\"min_lon\":-123.1340648,\"max_lon\":-123.1335255}", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Su 08:00-12:00; We 19:00+; Th 11:15+\"}" } @@ -933792,7 +935214,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/297069763", - "bounding_box": "{\"min_lat\":49.2842783,\"max_lat\":49.2846179,\"min_lon\":-123.1361076,\"max_lon\":-123.1355123}" + "bounding_box": "{\"min_lat\":49.2842783,\"max_lat\":49.2846179,\"min_lon\":-123.1361076,\"max_lon\":-123.1355123}", + "popularity": 1000 } }, { @@ -933917,6 +935340,7 @@ "layer": "venue", "source_id": "way/300334131", "bounding_box": "{\"min_lat\":49.2470555,\"max_lat\":49.2476039,\"min_lon\":-123.1063,\"max_lon\":-123.1053793}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://wolfe.vsb.bc.ca/\"}" } @@ -934021,7 +935445,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/303262089", - "bounding_box": "{\"min_lat\":49.2696588,\"max_lat\":49.2698341,\"min_lon\":-123.0675119,\"max_lon\":-123.0670547}" + "bounding_box": "{\"min_lat\":49.2696588,\"max_lat\":49.2698341,\"min_lon\":-123.0675119,\"max_lon\":-123.0670547}", + "popularity": 1000 } }, { @@ -934050,7 +935475,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/303262090", - "bounding_box": "{\"min_lat\":49.26966,\"max_lat\":49.2699263,\"min_lon\":-123.0679899,\"max_lon\":-123.0677318}" + "bounding_box": "{\"min_lat\":49.26966,\"max_lat\":49.2699263,\"min_lon\":-123.0679899,\"max_lon\":-123.0677318}", + "popularity": 1000 } }, { @@ -934332,6 +935758,7 @@ "layer": "venue", "source_id": "way/306968987", "bounding_box": "{\"min_lat\":49.2642856,\"max_lat\":49.2644347,\"min_lon\":-123.1390873,\"max_lon\":-123.1387153}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"www.tilleyendurables.com\",\"opening_hours\":\"10:00-17:30\"}" } @@ -934365,6 +935792,7 @@ "layer": "venue", "source_id": "way/306968988", "bounding_box": "{\"min_lat\":49.2637106,\"max_lat\":49.2638631,\"min_lon\":-123.1372931,\"max_lon\":-123.1370829}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.verasburgershack.com\",\"phone\":\"6047326328\"}" } @@ -934586,7 +936014,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/309517986", - "bounding_box": "{\"min_lat\":49.263466,\"max_lat\":49.2638116,\"min_lon\":-123.1184185,\"max_lon\":-123.1178841}" + "bounding_box": "{\"min_lat\":49.263466,\"max_lat\":49.2638116,\"min_lon\":-123.1184185,\"max_lon\":-123.1178841}", + "popularity": 2000 } }, { @@ -934610,7 +936039,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/309665634", - "bounding_box": "{\"min_lat\":49.2634576,\"max_lat\":49.2638235,\"min_lon\":-123.1205425,\"max_lon\":-123.1202894}" + "bounding_box": "{\"min_lat\":49.2634576,\"max_lat\":49.2638235,\"min_lon\":-123.1205425,\"max_lon\":-123.1202894}", + "popularity": 2000 } }, { @@ -934689,6 +936119,7 @@ "layer": "venue", "source_id": "way/309860997", "bounding_box": "{\"min_lat\":49.2651364,\"max_lat\":49.2653352,\"min_lon\":-123.1431712,\"max_lon\":-123.1430132}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.gracevancouver.com\"}" } @@ -934834,7 +936265,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/311359299", - "bounding_box": "{\"min_lat\":49.2196698,\"max_lat\":49.2199022,\"min_lon\":-123.0769271,\"max_lon\":-123.076676}" + "bounding_box": "{\"min_lat\":49.2196698,\"max_lat\":49.2199022,\"min_lon\":-123.0769271,\"max_lon\":-123.076676}", + "popularity": 1000 } }, { @@ -934858,7 +936290,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/311359300", - "bounding_box": "{\"min_lat\":49.219185,\"max_lat\":49.2194931,\"min_lon\":-123.0821426,\"max_lon\":-123.081769}" + "bounding_box": "{\"min_lat\":49.219185,\"max_lat\":49.2194931,\"min_lon\":-123.0821426,\"max_lon\":-123.081769}", + "popularity": 1000 } }, { @@ -934937,7 +936370,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/311477545", - "bounding_box": "{\"min_lat\":49.2602906,\"max_lat\":49.2606359,\"min_lon\":-123.1370211,\"max_lon\":-123.136423}" + "bounding_box": "{\"min_lat\":49.2602906,\"max_lat\":49.2606359,\"min_lon\":-123.1370211,\"max_lon\":-123.136423}", + "popularity": 1000 } }, { @@ -934967,6 +936401,7 @@ "layer": "venue", "source_id": "way/311484304", "bounding_box": "{\"min_lat\":49.2582134,\"max_lat\":49.258486,\"min_lon\":-123.1310684,\"max_lon\":-123.1303758}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://lecole-bilingue.vsb.bc.ca/contact.html\"}" } @@ -935024,6 +936459,7 @@ "layer": "venue", "source_id": "way/312271435", "bounding_box": "{\"min_lat\":49.2749744,\"max_lat\":49.2755847,\"min_lon\":-123.0723618,\"max_lon\":-123.0708078}", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"+1 604 713 8266\"}" } @@ -935198,7 +936634,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/31258861", - "bounding_box": "{\"min_lat\":49.2169468,\"max_lat\":49.2176606,\"min_lon\":-123.1130979,\"max_lon\":-123.1111625}" + "bounding_box": "{\"min_lat\":49.2169468,\"max_lat\":49.2176606,\"min_lon\":-123.1130979,\"max_lon\":-123.1111625}", + "popularity": 2000 } }, { @@ -935301,6 +936738,7 @@ "layer": "venue", "source_id": "way/314060746", "bounding_box": "{\"min_lat\":49.2719967,\"max_lat\":49.272384,\"min_lon\":-123.1347922,\"max_lon\":-123.1340022}", + "popularity": 1400, "addendum": { "osm": "{\"wheelchair\":\"yes\",\"website\":\"artsclub.com\",\"phone\":\"6046871644\"}" } @@ -935358,6 +936796,7 @@ "layer": "venue", "source_id": "way/315688686", "bounding_box": "{\"min_lat\":49.2373206,\"max_lat\":49.2382371,\"min_lon\":-123.0485321,\"max_lon\":-123.0471164}", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Purdy's Chocolatier\",\"opening_hours\":\"Mo-Fr 9:30-17:30;Sa 9:30-17:00\"}" } @@ -935603,7 +937042,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/316620674", - "bounding_box": "{\"min_lat\":49.2748248,\"max_lat\":49.2751755,\"min_lon\":-123.1103745,\"max_lon\":-123.1097705}" + "bounding_box": "{\"min_lat\":49.2748248,\"max_lat\":49.2751755,\"min_lon\":-123.1103745,\"max_lon\":-123.1097705}", + "popularity": 1000 } }, { @@ -935686,6 +937126,7 @@ "layer": "venue", "source_id": "way/318611984", "bounding_box": "{\"min_lat\":49.2525471,\"max_lat\":49.2530303,\"min_lon\":-123.1174756,\"max_lon\":-123.1168318}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://cavell.vsb.bc.ca/\"}" } @@ -935810,6 +937251,7 @@ "layer": "venue", "source_id": "way/319029627", "bounding_box": "{\"min_lat\":49.2614366,\"max_lat\":49.2620638,\"min_lon\":-123.0618153,\"max_lon\":-123.0609145}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://secord.vsb.bc.ca\",\"phone\":\"+1 604 713 4996\"}" } @@ -935842,6 +937284,7 @@ "layer": "venue", "source_id": "way/320086997", "bounding_box": "{\"min_lat\":49.2775968,\"max_lat\":49.2788392,\"min_lon\":-123.0615457,\"max_lon\":-123.0600016}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://templeton.vsb.bc.ca\"}" } @@ -935945,6 +937388,7 @@ "layer": "venue", "source_id": "way/322378570", "bounding_box": "{\"min_lat\":49.2249857,\"max_lat\":49.225322,\"min_lon\":-123.0556724,\"max_lon\":-123.0550435}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.faithyouth.org/\"}" } @@ -936042,7 +937486,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/323932719", - "bounding_box": "{\"min_lat\":49.2638825,\"max_lat\":49.2640908,\"min_lon\":-123.1480017,\"max_lon\":-123.1474416}" + "bounding_box": "{\"min_lat\":49.2638825,\"max_lat\":49.2640908,\"min_lon\":-123.1480017,\"max_lon\":-123.1474416}", + "popularity": 200 } }, { @@ -936113,7 +937558,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/324098892", - "bounding_box": "{\"min_lat\":49.2601693,\"max_lat\":49.2604048,\"min_lon\":-123.125247,\"max_lon\":-123.1246734}" + "bounding_box": "{\"min_lat\":49.2601693,\"max_lat\":49.2604048,\"min_lon\":-123.125247,\"max_lon\":-123.1246734}", + "popularity": 2000 } }, { @@ -936190,6 +937636,7 @@ "layer": "venue", "source_id": "way/32603955", "bounding_box": "{\"min_lat\":49.2732989,\"max_lat\":49.2741889,\"min_lon\":-123.0982019,\"max_lon\":-123.0975181}", + "popularity": 5000, "addendum": { "osm": "{\"operator\":\"VIA Rail Canada\"}" } @@ -936336,7 +937783,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/326288576", - "bounding_box": "{\"min_lat\":49.2633219,\"max_lat\":49.2633781,\"min_lon\":-123.1308782,\"max_lon\":-123.1308038}" + "bounding_box": "{\"min_lat\":49.2633219,\"max_lat\":49.2633781,\"min_lon\":-123.1308782,\"max_lon\":-123.1308038}", + "popularity": 2000 } }, { @@ -936382,6 +937830,7 @@ "layer": "venue", "source_id": "way/326976675", "bounding_box": "{\"min_lat\":49.2676811,\"max_lat\":49.2682085,\"min_lon\":-123.1134031,\"max_lon\":-123.1125243}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.shiftinggrowth.com\"}" } @@ -936413,6 +937862,7 @@ "layer": "venue", "source_id": "way/326979267", "bounding_box": "{\"min_lat\":49.2596031,\"max_lat\":49.2628298,\"min_lon\":-123.1266021,\"max_lon\":-123.117628}", + "popularity": 2000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -936509,7 +937959,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/32758560", - "bounding_box": "{\"min_lat\":49.2120198,\"max_lat\":49.2136289,\"min_lon\":-123.0739976,\"max_lon\":-123.072178}" + "bounding_box": "{\"min_lat\":49.2120198,\"max_lat\":49.2136289,\"min_lon\":-123.0739976,\"max_lon\":-123.072178}", + "popularity": 2000 } }, { @@ -936577,6 +938028,7 @@ "layer": "venue", "source_id": "way/328458018", "bounding_box": "{\"min_lat\":49.2682423,\"max_lat\":49.2685083,\"min_lon\":-123.1145963,\"max_lon\":-123.1141189}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://vancouver.ca/people-programs/community-gardens.aspx\"}" } @@ -936633,6 +938085,7 @@ "layer": "venue", "source_id": "way/328876882", "bounding_box": "{\"min_lat\":40.7136092,\"max_lat\":40.7138022,\"min_lon\":-73.7286084,\"max_lon\":-73.727434}", + "popularity": 6000, "addendum": { "osm": "{\"wheelchair\":\"no\",\"wikipedia\":\"en:Belmont Park (LIRR station)\",\"operator\":\"Long Island Rail Road\"}" } @@ -936766,6 +938219,7 @@ "layer": "venue", "source_id": "way/328894240", "bounding_box": "{\"min_lat\":49.2368084,\"max_lat\":49.2370781,\"min_lon\":-123.0480878,\"max_lon\":-123.0477203}", + "popularity": 1200, "addendum": { "osm": "{\"phone\":\"+1 604 437 5610\",\"opening_hours\":\"7am-1am\"}" } @@ -936797,6 +938251,7 @@ "layer": "venue", "source_id": "way/328894278", "bounding_box": "{\"min_lat\":49.2358907,\"max_lat\":49.2362375,\"min_lon\":-123.0457837,\"max_lon\":-123.0451588}", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"24 hours\"}" } @@ -936854,7 +938309,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/328894429", - "bounding_box": "{\"min_lat\":49.2355107,\"max_lat\":49.2358049,\"min_lon\":-123.0443514,\"max_lon\":-123.0438928}" + "bounding_box": "{\"min_lat\":49.2355107,\"max_lat\":49.2358049,\"min_lon\":-123.0443514,\"max_lon\":-123.0438928}", + "popularity": 1000 } }, { @@ -936880,6 +938336,7 @@ "layer": "venue", "source_id": "way/328967577", "bounding_box": "{\"min_lat\":40.7217836,\"max_lat\":40.722239,\"min_lon\":-73.7180413,\"max_lon\":-73.7162847}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -936910,6 +938367,7 @@ "layer": "venue", "source_id": "way/328967581", "bounding_box": "{\"min_lat\":40.7220149,\"max_lat\":40.722239,\"min_lon\":-73.7170136,\"max_lon\":-73.7162847}", + "popularity": 5000, "addendum": { "osm": "{\"operator\":\"Long Island Rail Road\"}" } @@ -937110,7 +938568,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/331442728", - "bounding_box": "{\"min_lat\":49.2598333,\"max_lat\":49.2601305,\"min_lon\":-123.1035855,\"max_lon\":-123.1033043}" + "bounding_box": "{\"min_lat\":49.2598333,\"max_lat\":49.2601305,\"min_lon\":-123.1035855,\"max_lon\":-123.1033043}", + "popularity": 1000 } }, { @@ -937177,7 +938636,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/33176178", - "bounding_box": "{\"min_lat\":49.268896,\"max_lat\":49.2700368,\"min_lon\":-123.2602976,\"max_lon\":-123.2584223}" + "bounding_box": "{\"min_lat\":49.268896,\"max_lat\":49.2700368,\"min_lon\":-123.2602976,\"max_lon\":-123.2584223}", + "popularity": 3000 } }, { @@ -937229,7 +938689,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/332994041", - "bounding_box": "{\"min_lat\":49.312437,\"max_lat\":49.3125375,\"min_lon\":-123.0351565,\"max_lon\":-123.0349994}" + "bounding_box": "{\"min_lat\":49.312437,\"max_lat\":49.3125375,\"min_lon\":-123.0351565,\"max_lon\":-123.0349994}", + "popularity": 2000 } }, { @@ -937253,7 +938714,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/332994050", - "bounding_box": "{\"min_lat\":49.3186973,\"max_lat\":49.3189014,\"min_lon\":-123.028096,\"max_lon\":-123.0278505}" + "bounding_box": "{\"min_lat\":49.3186973,\"max_lat\":49.3189014,\"min_lon\":-123.028096,\"max_lon\":-123.0278505}", + "popularity": 2000 } }, { @@ -937303,7 +938765,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/335852028", - "bounding_box": "{\"min_lat\":49.2342039,\"max_lat\":49.2350663,\"min_lon\":-123.1301629,\"max_lon\":-123.1283321}" + "bounding_box": "{\"min_lat\":49.2342039,\"max_lat\":49.2350663,\"min_lon\":-123.1301629,\"max_lon\":-123.1283321}", + "popularity": 2000 } }, { @@ -937331,7 +938794,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/336016022", - "bounding_box": "{\"min_lat\":49.2363154,\"max_lat\":49.2368705,\"min_lon\":-123.138136,\"max_lon\":-123.1378276}" + "bounding_box": "{\"min_lat\":49.2363154,\"max_lat\":49.2368705,\"min_lon\":-123.138136,\"max_lon\":-123.1378276}", + "popularity": 1000 } }, { @@ -937359,7 +938823,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/336018319", - "bounding_box": "{\"min_lat\":49.2143859,\"max_lat\":49.2151355,\"min_lon\":-123.1116754,\"max_lon\":-123.1101726}" + "bounding_box": "{\"min_lat\":49.2143859,\"max_lat\":49.2151355,\"min_lon\":-123.1116754,\"max_lon\":-123.1101726}", + "popularity": 2000 } }, { @@ -937563,7 +939028,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/336764372", - "bounding_box": "{\"min_lat\":49.2580925,\"max_lat\":49.2600008,\"min_lon\":-123.194098,\"max_lon\":-123.1910093}" + "bounding_box": "{\"min_lat\":49.2580925,\"max_lat\":49.2600008,\"min_lon\":-123.194098,\"max_lon\":-123.1910093}", + "popularity": 1000 } }, { @@ -937587,7 +939053,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/336804719", - "bounding_box": "{\"min_lat\":49.261158,\"max_lat\":49.2630622,\"min_lon\":-123.1647888,\"max_lon\":-123.1624403}" + "bounding_box": "{\"min_lat\":49.261158,\"max_lat\":49.2630622,\"min_lon\":-123.1647888,\"max_lon\":-123.1624403}", + "popularity": 1000 } }, { @@ -937612,7 +939079,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/337875124", - "bounding_box": "{\"min_lat\":40.7073463,\"max_lat\":40.7075845,\"min_lon\":-73.7517443,\"max_lon\":-73.7515533}" + "bounding_box": "{\"min_lat\":40.7073463,\"max_lat\":40.7075845,\"min_lon\":-73.7517443,\"max_lon\":-73.7515533}", + "popularity": 2000 } }, { @@ -937777,6 +939245,7 @@ "layer": "venue", "source_id": "way/339858625", "bounding_box": "{\"min_lat\":49.2422361,\"max_lat\":49.2434109,\"min_lon\":-123.0625247,\"max_lon\":-123.0606464}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Westbank Corp.\"}" } @@ -937808,7 +939277,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/339860316", - "bounding_box": "{\"min_lat\":49.2295257,\"max_lat\":49.2296557,\"min_lon\":-123.0588225,\"max_lon\":-123.0584971}" + "bounding_box": "{\"min_lat\":49.2295257,\"max_lat\":49.2296557,\"min_lon\":-123.0588225,\"max_lon\":-123.0584971}", + "popularity": 1000 } }, { @@ -937890,7 +939360,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/340379488", - "bounding_box": "{\"min_lat\":49.2807104,\"max_lat\":49.2807856,\"min_lon\":-123.0517798,\"max_lon\":-123.0515827}" + "bounding_box": "{\"min_lat\":49.2807104,\"max_lat\":49.2807856,\"min_lon\":-123.0517798,\"max_lon\":-123.0515827}", + "popularity": 1000 } }, { @@ -938051,7 +939522,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/340564714", - "bounding_box": "{\"min_lat\":49.2257734,\"max_lat\":49.2260286,\"min_lon\":-123.1206628,\"max_lon\":-123.120125}" + "bounding_box": "{\"min_lat\":49.2257734,\"max_lat\":49.2260286,\"min_lon\":-123.1206628,\"max_lon\":-123.120125}", + "popularity": 1000 } }, { @@ -938142,7 +939614,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691628", - "bounding_box": "{\"min_lat\":49.2665461,\"max_lat\":49.2671275,\"min_lon\":-123.2496271,\"max_lon\":-123.2492063}" + "bounding_box": "{\"min_lat\":49.2665461,\"max_lat\":49.2671275,\"min_lon\":-123.2496271,\"max_lon\":-123.2492063}", + "popularity": 2000 } }, { @@ -938166,7 +939639,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691630", - "bounding_box": "{\"min_lat\":49.2671164,\"max_lat\":49.2672028,\"min_lon\":-123.2492063,\"max_lon\":-123.2489012}" + "bounding_box": "{\"min_lat\":49.2671164,\"max_lat\":49.2672028,\"min_lon\":-123.2492063,\"max_lon\":-123.2489012}", + "popularity": 2000 } }, { @@ -938190,7 +939664,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691631", - "bounding_box": "{\"min_lat\":49.2669698,\"max_lat\":49.2672028,\"min_lon\":-123.2489012,\"max_lon\":-123.248532}" + "bounding_box": "{\"min_lat\":49.2669698,\"max_lat\":49.2672028,\"min_lon\":-123.2489012,\"max_lon\":-123.248532}", + "popularity": 2000 } }, { @@ -938214,7 +939689,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691632", - "bounding_box": "{\"min_lat\":49.2666048,\"max_lat\":49.2669698,\"min_lon\":-123.2491233,\"max_lon\":-123.248532}" + "bounding_box": "{\"min_lat\":49.2666048,\"max_lat\":49.2669698,\"min_lon\":-123.2491233,\"max_lon\":-123.248532}", + "popularity": 2000 } }, { @@ -938283,7 +939759,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691670", - "bounding_box": "{\"min_lat\":49.2671906,\"max_lat\":49.2681396,\"min_lon\":-123.249143,\"max_lon\":-123.2478008}" + "bounding_box": "{\"min_lat\":49.2671906,\"max_lat\":49.2681396,\"min_lon\":-123.249143,\"max_lon\":-123.2478008}", + "popularity": 2000 } }, { @@ -938338,7 +939815,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691691", - "bounding_box": "{\"min_lat\":49.2664459,\"max_lat\":49.2670988,\"min_lon\":-123.2482277,\"max_lon\":-123.2470856}" + "bounding_box": "{\"min_lat\":49.2664459,\"max_lat\":49.2670988,\"min_lon\":-123.2482277,\"max_lon\":-123.2470856}", + "popularity": 2000 } }, { @@ -938362,7 +939840,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/341691700", - "bounding_box": "{\"min_lat\":49.2665164,\"max_lat\":49.2666048,\"min_lon\":-123.2493718,\"max_lon\":-123.2491233}" + "bounding_box": "{\"min_lat\":49.2665164,\"max_lat\":49.2666048,\"min_lon\":-123.2493718,\"max_lon\":-123.2491233}", + "popularity": 2000 } }, { @@ -938459,7 +939938,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/342199953", - "bounding_box": "{\"min_lat\":49.2665164,\"max_lat\":49.2672028,\"min_lon\":-123.2496271,\"max_lon\":-123.248532}" + "bounding_box": "{\"min_lat\":49.2665164,\"max_lat\":49.2672028,\"min_lon\":-123.2496271,\"max_lon\":-123.248532}", + "popularity": 2000 } }, { @@ -938776,6 +940256,7 @@ "layer": "venue", "source_id": "way/36809622", "bounding_box": "{\"min_lat\":49.3092756,\"max_lat\":49.3101369,\"min_lon\":-123.0843757,\"max_lon\":-123.0830924}", + "popularity": 5000, "addendum": { "osm": "{\"wikipedia\":\"en:Lonsdale Quay\"}" } @@ -939436,7 +940917,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/36835375", - "bounding_box": "{\"min_lat\":49.262973,\"max_lat\":49.2634544,\"min_lon\":-123.2511837,\"max_lon\":-123.250668}" + "bounding_box": "{\"min_lat\":49.262973,\"max_lat\":49.2634544,\"min_lon\":-123.2511837,\"max_lon\":-123.250668}", + "popularity": 3000 } }, { @@ -940165,7 +941647,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/36895718", - "bounding_box": "{\"min_lat\":49.2575007,\"max_lat\":49.2583232,\"min_lon\":-123.096261,\"max_lon\":-123.0943287}" + "bounding_box": "{\"min_lat\":49.2575007,\"max_lat\":49.2583232,\"min_lon\":-123.096261,\"max_lon\":-123.0943287}", + "popularity": 2000 } }, { @@ -942499,7 +943982,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/37060490", - "bounding_box": "{\"min_lat\":49.2328506,\"max_lat\":49.2333887,\"min_lon\":-123.1576011,\"max_lon\":-123.1559102}" + "bounding_box": "{\"min_lat\":49.2328506,\"max_lat\":49.2333887,\"min_lon\":-123.1576011,\"max_lon\":-123.1559102}", + "popularity": 1000 } }, { @@ -943324,6 +944808,7 @@ "layer": "venue", "source_id": "way/37084312", "bounding_box": "{\"min_lat\":49.2730407,\"max_lat\":49.2738754,\"min_lon\":-123.1042738,\"max_lon\":-123.1029452}", + "popularity": 3000, "addendum": { "osm": "{\"wheelchair\":\"yes\"}" } @@ -943381,6 +944866,7 @@ "layer": "venue", "source_id": "way/37111640", "bounding_box": "{\"min_lat\":49.2790266,\"max_lat\":49.2803787,\"min_lon\":-123.1163191,\"max_lon\":-123.1144302}", + "popularity": 6000, "addendum": { "osm": "{\"operator\":\"City of Vancouver\",\"opening_hours\":\"Mo-Th 10:00-21:00;Fr 10:00-18:00;Sa 10:00-18:00;Su 11:00-18:00\"}" } @@ -943405,6 +944891,7 @@ "layer": "venue", "source_id": "way/37114268", "bounding_box": "{\"min_lat\":49.2789059,\"max_lat\":49.280319,\"min_lon\":-123.1129338,\"max_lon\":-123.1107639}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"EasyPark\"}" } @@ -943477,7 +944964,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/37393074", - "bounding_box": "{\"min_lat\":49.2370394,\"max_lat\":49.2376054,\"min_lon\":-123.0753116,\"max_lon\":-123.0743932}" + "bounding_box": "{\"min_lat\":49.2370394,\"max_lat\":49.2376054,\"min_lon\":-123.0753116,\"max_lon\":-123.0743932}", + "popularity": 1000 } }, { @@ -943571,6 +945059,7 @@ "layer": "venue", "source_id": "way/37393423", "bounding_box": "{\"min_lat\":49.2434394,\"max_lat\":49.2447483,\"min_lon\":-123.1086728,\"max_lon\":-123.106549}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"www.hillcrestcentre.ca\",\"phone\":\"604-257-8680\"}" } @@ -943688,7 +945177,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/37496354", - "bounding_box": "{\"min_lat\":49.2260071,\"max_lat\":49.2264612,\"min_lon\":-123.0778007,\"max_lon\":-123.0775089}" + "bounding_box": "{\"min_lat\":49.2260071,\"max_lat\":49.2264612,\"min_lon\":-123.0778007,\"max_lon\":-123.0775089}", + "popularity": 2000 } }, { @@ -943859,7 +945349,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/39452459", - "bounding_box": "{\"min_lat\":49.2566646,\"max_lat\":49.2578261,\"min_lon\":-123.1983371,\"max_lon\":-123.1966689}" + "bounding_box": "{\"min_lat\":49.2566646,\"max_lat\":49.2578261,\"min_lon\":-123.1983371,\"max_lon\":-123.1966689}", + "popularity": 1000 } }, { @@ -944012,6 +945503,7 @@ "layer": "venue", "source_id": "way/404419157", "bounding_box": "{\"min_lat\":40.730948,\"max_lat\":40.7327081,\"min_lon\":-73.7324083,\"max_lon\":-73.7311201}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.nycgovparks.org/parks/detective-william-t-gunn-park\"}" } @@ -944143,7 +945635,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/41769219", - "bounding_box": "{\"min_lat\":49.2812272,\"max_lat\":49.284301,\"min_lon\":-123.0382707,\"max_lon\":-123.0349748}" + "bounding_box": "{\"min_lat\":49.2812272,\"max_lat\":49.284301,\"min_lon\":-123.0382707,\"max_lon\":-123.0349748}", + "popularity": 3000 } }, { @@ -944237,6 +945730,7 @@ "layer": "venue", "source_id": "way/42845275", "bounding_box": "{\"min_lat\":49.271016,\"max_lat\":49.2719868,\"min_lon\":-123.1343517,\"max_lon\":-123.1326461}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.oceanconcrete.com\",\"phone\":\"604-684-1833\"}" } @@ -944746,7 +946240,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/51185582", - "bounding_box": "{\"min_lat\":49.2805974,\"max_lat\":49.2819733,\"min_lon\":-123.1123119,\"max_lon\":-123.1102315}" + "bounding_box": "{\"min_lat\":49.2805974,\"max_lat\":49.2819733,\"min_lon\":-123.1123119,\"max_lon\":-123.1102315}", + "popularity": 2000 } }, { @@ -944775,7 +946270,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/51185697", - "bounding_box": "{\"min_lat\":49.279547,\"max_lat\":49.2817272,\"min_lon\":-123.1305707,\"max_lon\":-123.1272608}" + "bounding_box": "{\"min_lat\":49.279547,\"max_lat\":49.2817272,\"min_lon\":-123.1305707,\"max_lon\":-123.1272608}", + "popularity": 2000 } }, { @@ -944846,6 +946342,7 @@ "layer": "venue", "source_id": "way/51744572", "bounding_box": "{\"min_lat\":49.2698587,\"max_lat\":49.2710116,\"min_lon\":-123.1332574,\"max_lon\":-123.1315769}", + "popularity": 2400, "addendum": { "osm": "{\"website\":\"http://www.ecuad.ca\",\"phone\":\"604-844-3840\"}" } @@ -944920,6 +946417,7 @@ "layer": "venue", "source_id": "way/53559236", "bounding_box": "{\"min_lat\":49.2435924,\"max_lat\":49.2439781,\"min_lon\":-123.1888182,\"max_lon\":-123.1882557}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://dunbarlawnbowling.com/\",\"phone\":\"+1 (604) 228-8428\"}" } @@ -944967,7 +946465,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/53559261", - "bounding_box": "{\"min_lat\":49.2463524,\"max_lat\":49.2485331,\"min_lon\":-123.2002264,\"max_lon\":-123.1968192}" + "bounding_box": "{\"min_lat\":49.2463524,\"max_lat\":49.2485331,\"min_lon\":-123.2002264,\"max_lon\":-123.1968192}", + "popularity": 1000 } }, { @@ -944991,7 +946490,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/53559270", - "bounding_box": "{\"min_lat\":49.2486459,\"max_lat\":49.2492734,\"min_lon\":-123.1966719,\"max_lon\":-123.1937028}" + "bounding_box": "{\"min_lat\":49.2486459,\"max_lat\":49.2492734,\"min_lon\":-123.1966719,\"max_lon\":-123.1937028}", + "popularity": 1000 } }, { @@ -945016,7 +946516,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/53559273", - "bounding_box": "{\"min_lat\":49.2433755,\"max_lat\":49.244058,\"min_lon\":-123.1865461,\"max_lon\":-123.1855102}" + "bounding_box": "{\"min_lat\":49.2433755,\"max_lat\":49.244058,\"min_lon\":-123.1865461,\"max_lon\":-123.1855102}", + "popularity": 1000 } }, { @@ -945136,7 +946637,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/53895329", - "bounding_box": "{\"min_lat\":49.2662889,\"max_lat\":49.2665147,\"min_lon\":-123.1995196,\"max_lon\":-123.1991502}" + "bounding_box": "{\"min_lat\":49.2662889,\"max_lat\":49.2665147,\"min_lon\":-123.1995196,\"max_lon\":-123.1991502}", + "popularity": 1000 } }, { @@ -945167,7 +946669,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/53949912", - "bounding_box": "{\"min_lat\":49.2612735,\"max_lat\":49.2618756,\"min_lon\":-123.1622523,\"max_lon\":-123.1617392}" + "bounding_box": "{\"min_lat\":49.2612735,\"max_lat\":49.2618756,\"min_lon\":-123.1622523,\"max_lon\":-123.1617392}", + "popularity": 1000 } }, { @@ -945234,7 +946737,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/54029338", - "bounding_box": "{\"min_lat\":49.2726666,\"max_lat\":49.2732333,\"min_lon\":-123.2034545,\"max_lon\":-123.2030901}" + "bounding_box": "{\"min_lat\":49.2726666,\"max_lat\":49.2732333,\"min_lon\":-123.2034545,\"max_lon\":-123.2030901}", + "popularity": 1000 } }, { @@ -945284,7 +946788,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/54146390", - "bounding_box": "{\"min_lat\":49.262975,\"max_lat\":49.2633391,\"min_lon\":-123.1559307,\"max_lon\":-123.1554372}" + "bounding_box": "{\"min_lat\":49.262975,\"max_lat\":49.2633391,\"min_lon\":-123.1559307,\"max_lon\":-123.1554372}", + "popularity": 1000 } }, { @@ -945485,7 +946990,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/54222127", - "bounding_box": "{\"min_lat\":49.266193,\"max_lat\":49.266676,\"min_lon\":-123.1826577,\"max_lon\":-123.1820032}" + "bounding_box": "{\"min_lat\":49.266193,\"max_lat\":49.266676,\"min_lon\":-123.1826577,\"max_lon\":-123.1820032}", + "popularity": 1000 } }, { @@ -945582,6 +947088,7 @@ "layer": "venue", "source_id": "way/54926857", "bounding_box": "{\"min_lat\":49.2613537,\"max_lat\":49.261935,\"min_lon\":-123.2454967,\"max_lon\":-123.2446334}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"UBC\"}" } @@ -945810,7 +947317,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/56689951", - "bounding_box": "{\"min_lat\":49.275954,\"max_lat\":49.2767465,\"min_lon\":-123.1451983,\"max_lon\":-123.1436843}" + "bounding_box": "{\"min_lat\":49.275954,\"max_lat\":49.2767465,\"min_lon\":-123.1451983,\"max_lon\":-123.1436843}", + "popularity": 3000 } }, { @@ -945857,7 +947365,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/58305151", - "bounding_box": "{\"min_lat\":49.2999933,\"max_lat\":49.3012741,\"min_lon\":-123.132073,\"max_lon\":-123.1304042}" + "bounding_box": "{\"min_lat\":49.2999933,\"max_lat\":49.3012741,\"min_lon\":-123.132073,\"max_lon\":-123.1304042}", + "popularity": 3000 } }, { @@ -945978,6 +947487,7 @@ "layer": "venue", "source_id": "way/58466890", "bounding_box": "{\"min_lat\":49.2040383,\"max_lat\":49.2048935,\"min_lon\":-123.1620743,\"max_lon\":-123.1598641}", + "popularity": 2000, "addendum": { "osm": "{\"operator\":\"Fedex\"}" } @@ -946004,7 +947514,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/58744385", - "bounding_box": "{\"min_lat\":49.2329489,\"max_lat\":49.2346739,\"min_lon\":-123.1786251,\"max_lon\":-123.1758133}" + "bounding_box": "{\"min_lat\":49.2329489,\"max_lat\":49.2346739,\"min_lon\":-123.1786251,\"max_lon\":-123.1758133}", + "popularity": 1000 } }, { @@ -946028,7 +947539,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/58744388", - "bounding_box": "{\"min_lat\":49.2462578,\"max_lat\":49.2480157,\"min_lon\":-123.1907752,\"max_lon\":-123.1882325}" + "bounding_box": "{\"min_lat\":49.2462578,\"max_lat\":49.2480157,\"min_lon\":-123.1907752,\"max_lon\":-123.1882325}", + "popularity": 1000 } }, { @@ -946094,7 +947606,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/60007794", - "bounding_box": "{\"min_lat\":49.2608534,\"max_lat\":49.2616165,\"min_lon\":-123.052521,\"max_lon\":-123.0506113}" + "bounding_box": "{\"min_lat\":49.2608534,\"max_lat\":49.2616165,\"min_lon\":-123.052521,\"max_lon\":-123.0506113}", + "popularity": 1000 } }, { @@ -946174,6 +947687,7 @@ "layer": "venue", "source_id": "way/61130050", "bounding_box": "{\"min_lat\":40.7118059,\"max_lat\":40.7178685,\"min_lon\":-73.7281806,\"max_lon\":-73.7163574}", + "popularity": 4400, "addendum": { "osm": "{\"wikipedia\":\"en:Belmont Park\",\"operator\":\"The New York Racing Association\",\"website\":\"http://www.nyra.com/belmont/\",\"phone\":\"1( 718) 641-4700\"}" } @@ -946200,7 +947714,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/61412865", - "bounding_box": "{\"min_lat\":49.2493216,\"max_lat\":49.2502496,\"min_lon\":-123.1272472,\"max_lon\":-123.1247635}" + "bounding_box": "{\"min_lat\":49.2493216,\"max_lat\":49.2502496,\"min_lon\":-123.1272472,\"max_lon\":-123.1247635}", + "popularity": 1000 } }, { @@ -946249,7 +947764,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/61738371", - "bounding_box": "{\"min_lat\":49.2483876,\"max_lat\":49.2492951,\"min_lon\":-123.1414016,\"max_lon\":-123.1392703}" + "bounding_box": "{\"min_lat\":49.2483876,\"max_lat\":49.2492951,\"min_lon\":-123.1414016,\"max_lon\":-123.1392703}", + "popularity": 1000 } }, { @@ -946273,7 +947789,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/61738374", - "bounding_box": "{\"min_lat\":49.2347914,\"max_lat\":49.2369552,\"min_lon\":-123.1371235,\"max_lon\":-123.1348563}" + "bounding_box": "{\"min_lat\":49.2347914,\"max_lat\":49.2369552,\"min_lon\":-123.1371235,\"max_lon\":-123.1348563}", + "popularity": 1000 } }, { @@ -946298,7 +947815,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/61772898", - "bounding_box": "{\"min_lat\":49.2337405,\"max_lat\":49.2341072,\"min_lon\":-123.1168127,\"max_lon\":-123.1165352}" + "bounding_box": "{\"min_lat\":49.2337405,\"max_lat\":49.2341072,\"min_lon\":-123.1168127,\"max_lon\":-123.1165352}", + "popularity": 1000 } }, { @@ -946438,6 +947956,7 @@ "layer": "venue", "source_id": "way/62644818", "bounding_box": "{\"min_lat\":49.2116925,\"max_lat\":49.2120652,\"min_lon\":-123.1093992,\"max_lon\":-123.1090805}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.mcdonalds.ca/\",\"opening_hours\":\"24/7\"}" } @@ -946496,6 +948015,7 @@ "layer": "venue", "source_id": "way/65535803", "bounding_box": "{\"min_lat\":49.2583883,\"max_lat\":49.2594947,\"min_lon\":-123.0374452,\"max_lon\":-123.0359539}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.realcanadiansuperstore.ca/LCLOnline/store_details_landing_page.jsp?storeId=835\"}" } @@ -946520,6 +948040,7 @@ "layer": "venue", "source_id": "way/67143996", "bounding_box": "{\"min_lat\":49.2605114,\"max_lat\":49.2613516,\"min_lon\":-123.1175362,\"max_lon\":-123.1152402}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.mycitysquare.com/\"}" } @@ -946568,6 +948089,7 @@ "layer": "venue", "source_id": "way/67144000", "bounding_box": "{\"min_lat\":49.2701064,\"max_lat\":49.2704757,\"min_lon\":-123.1362694,\"max_lon\":-123.1356657}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.kidsmarket.ca/\"}" } @@ -946615,7 +948137,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/68313629", - "bounding_box": "{\"min_lat\":49.2268756,\"max_lat\":49.2283399,\"min_lon\":-123.0561304,\"max_lon\":-123.0547893}" + "bounding_box": "{\"min_lat\":49.2268756,\"max_lat\":49.2283399,\"min_lon\":-123.0561304,\"max_lon\":-123.0547893}", + "popularity": 1000 } }, { @@ -946687,6 +948210,7 @@ "layer": "venue", "source_id": "way/69701736", "bounding_box": "{\"min_lat\":49.2824934,\"max_lat\":49.2831981,\"min_lon\":-123.1213779,\"max_lon\":-123.1199436}", + "popularity": 3400, "addendum": { "osm": "{\"website\":\"www.vanartgallery.bc.ca\",\"phone\":\"6046624700\"}" } @@ -946741,7 +948265,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/71692700", - "bounding_box": "{\"min_lat\":49.2700898,\"max_lat\":49.2708388,\"min_lon\":-123.134234,\"max_lon\":-123.1331718}" + "bounding_box": "{\"min_lat\":49.2700898,\"max_lat\":49.2708388,\"min_lon\":-123.134234,\"max_lon\":-123.1331718}", + "popularity": 2000 } }, { @@ -946771,6 +948296,7 @@ "layer": "venue", "source_id": "way/71692702", "bounding_box": "{\"min_lat\":49.2699222,\"max_lat\":49.2702827,\"min_lon\":-123.1333091,\"max_lon\":-123.1327822}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.opusframing.com\",\"phone\":\"604-736-7028\"}" } @@ -946805,6 +948331,7 @@ "layer": "venue", "source_id": "way/71692703", "bounding_box": "{\"min_lat\":49.2726692,\"max_lat\":49.2729891,\"min_lon\":-123.1367273,\"max_lon\":-123.1362546}", + "popularity": 200, "addendum": { "osm": "{\"phone\":\"604-687-4400\"}" } @@ -947042,6 +948569,7 @@ "layer": "venue", "source_id": "way/73147224", "bounding_box": "{\"min_lat\":49.2663661,\"max_lat\":49.2664802,\"min_lon\":-123.1479146,\"max_lon\":-123.1458412}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.cypresscommunitygarden.ca/\"}" } @@ -947068,7 +948596,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/73949682", - "bounding_box": "{\"min_lat\":49.240899,\"max_lat\":49.242204,\"min_lon\":-123.1012779,\"max_lon\":-123.0995037}" + "bounding_box": "{\"min_lat\":49.240899,\"max_lat\":49.242204,\"min_lon\":-123.1012779,\"max_lon\":-123.0995037}", + "popularity": 1000 } }, { @@ -947098,6 +948627,7 @@ "layer": "venue", "source_id": "way/75452590", "bounding_box": "{\"min_lat\":49.2876461,\"max_lat\":49.2885214,\"min_lon\":-123.1314615,\"max_lon\":-123.1301353}", + "popularity": 1400, "addendum": { "osm": "{\"website\":\"http://www.empirelandmarkhotel.com/\",\"phone\":\"604-687-0511\"}" } @@ -947124,7 +948654,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/75719641", - "bounding_box": "{\"min_lat\":49.2753313,\"max_lat\":49.2755749,\"min_lon\":-123.1436536,\"max_lon\":-123.1434472}" + "bounding_box": "{\"min_lat\":49.2753313,\"max_lat\":49.2755749,\"min_lon\":-123.1436536,\"max_lon\":-123.1434472}", + "popularity": 2000 } }, { @@ -947153,7 +948684,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/78393326", - "bounding_box": "{\"min_lat\":49.2852428,\"max_lat\":49.2861337,\"min_lon\":-123.1125507,\"max_lon\":-123.1111162}" + "bounding_box": "{\"min_lat\":49.2852428,\"max_lat\":49.2861337,\"min_lon\":-123.1125507,\"max_lon\":-123.1111162}", + "popularity": 4000 } }, { @@ -947231,6 +948763,7 @@ "layer": "venue", "source_id": "way/83338401", "bounding_box": "{\"min_lat\":49.2689541,\"max_lat\":49.2691986,\"min_lon\":-123.1437556,\"max_lon\":-123.1433286}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.skiisandbiikes.com/vancouver\"}" } @@ -947307,6 +948840,7 @@ "layer": "venue", "source_id": "way/83338578", "bounding_box": "{\"min_lat\":49.2681578,\"max_lat\":49.2684723,\"min_lon\":-123.1478144,\"max_lon\":-123.1474877}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.marks.com/shop/en/marks-marksdefaultsalescatalog/store-locator/11193\"}" } @@ -947362,6 +948896,7 @@ "layer": "venue", "source_id": "way/83338628", "bounding_box": "{\"min_lat\":49.2678821,\"max_lat\":49.2679944,\"min_lon\":-123.1526249,\"max_lon\":-123.1523257}", + "popularity": 2000, "addendum": { "osm": "{\"opening_hours\":\"Mon-Wed09:30 AM - 05:00 PM/ Thu-Fri09:30 AM - 07:00 PM/ Sat09:30 AM - 04:00 PM Sunclosed\"}" } @@ -947390,6 +948925,7 @@ "layer": "venue", "source_id": "way/83338631", "bounding_box": "{\"min_lat\":49.268459,\"max_lat\":49.2687652,\"min_lon\":-123.1437391,\"max_lon\":-123.1433063}", + "popularity": 1000, "addendum": { "osm": "{\"opening_hours\":\"Mo-Fr 09:00-18:00; Sa 09:00-17:00\"}" } @@ -947443,6 +948979,7 @@ "layer": "venue", "source_id": "way/83338687", "bounding_box": "{\"min_lat\":49.2684843,\"max_lat\":49.2687534,\"min_lon\":-123.1430607,\"max_lon\":-123.1421394}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://publicstoragecanada.com/self-storage-vancouver/1698-w-3rd-avenue\"}" } @@ -947475,6 +949012,7 @@ "layer": "venue", "source_id": "way/83338715", "bounding_box": "{\"min_lat\":49.2689795,\"max_lat\":49.2693182,\"min_lon\":-123.1453901,\"max_lon\":-123.1449835}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://ferrarimaseratiofvancouver.com/\",\"opening_hours\":\"Mo-Fr 08:00-18:00; Sa 10:00-16:00\"}" } @@ -947586,7 +949124,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/83418470", - "bounding_box": "{\"min_lat\":49.2720266,\"max_lat\":49.2722846,\"min_lon\":-123.2491771,\"max_lon\":-123.2487659}" + "bounding_box": "{\"min_lat\":49.2720266,\"max_lat\":49.2722846,\"min_lon\":-123.2491771,\"max_lon\":-123.2487659}", + "popularity": 2000 } }, { @@ -947610,7 +949149,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/83418480", - "bounding_box": "{\"min_lat\":49.2715924,\"max_lat\":49.2724711,\"min_lon\":-123.2508767,\"max_lon\":-123.2493542}" + "bounding_box": "{\"min_lat\":49.2715924,\"max_lat\":49.2724711,\"min_lon\":-123.2508767,\"max_lon\":-123.2493542}", + "popularity": 2000 } }, { @@ -947634,7 +949174,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/83418484", - "bounding_box": "{\"min_lat\":49.2721444,\"max_lat\":49.2725809,\"min_lon\":-123.2495838,\"max_lon\":-123.2491402}" + "bounding_box": "{\"min_lat\":49.2721444,\"max_lat\":49.2725809,\"min_lon\":-123.2495838,\"max_lon\":-123.2491402}", + "popularity": 2000 } }, { @@ -948012,6 +949553,7 @@ "layer": "venue", "source_id": "way/83443403", "bounding_box": "{\"min_lat\":49.2660857,\"max_lat\":49.266787,\"min_lon\":-123.2528568,\"max_lon\":-123.2515715}", + "popularity": 400, "addendum": { "osm": "{\"website\":\"http://www.phas.ubc.ca\",\"phone\":\"+1 604 822 3853\"}" } @@ -948128,6 +949670,7 @@ "layer": "venue", "source_id": "way/85123382", "bounding_box": "{\"min_lat\":49.2722246,\"max_lat\":49.2728319,\"min_lon\":-123.1015192,\"max_lon\":-123.100871}", + "popularity": 2200, "addendum": { "osm": "{\"website\":\"http://www.easypark.ca\"}" } @@ -948156,6 +949699,7 @@ "layer": "venue", "source_id": "way/85214039", "bounding_box": "{\"min_lat\":49.2855348,\"max_lat\":49.2863964,\"min_lon\":-123.1123459,\"max_lon\":-123.1103011}", + "popularity": 1000, "addendum": { "osm": "{\"operator\":\"Trabslink\"}" } @@ -948185,7 +949729,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/85240507", - "bounding_box": "{\"min_lat\":49.2882892,\"max_lat\":49.2899054,\"min_lon\":-123.117555,\"max_lon\":-123.1140066}" + "bounding_box": "{\"min_lat\":49.2882892,\"max_lat\":49.2899054,\"min_lon\":-123.117555,\"max_lon\":-123.1140066}", + "popularity": 1000 } }, { @@ -948361,7 +949906,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/87222664", - "bounding_box": "{\"min_lat\":49.243921,\"max_lat\":49.2443727,\"min_lon\":-123.0463325,\"max_lon\":-123.0453115}" + "bounding_box": "{\"min_lat\":49.243921,\"max_lat\":49.2443727,\"min_lon\":-123.0463325,\"max_lon\":-123.0453115}", + "popularity": 2000 } }, { @@ -948387,7 +949933,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/87222665", - "bounding_box": "{\"min_lat\":49.2381886,\"max_lat\":49.2386403,\"min_lon\":-123.0323603,\"max_lon\":-123.0313394}" + "bounding_box": "{\"min_lat\":49.2381886,\"max_lat\":49.2386403,\"min_lon\":-123.0323603,\"max_lon\":-123.0313394}", + "popularity": 2000 } }, { @@ -948413,7 +949960,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/87222727", - "bounding_box": "{\"min_lat\":49.2730043,\"max_lat\":49.2732647,\"min_lon\":-123.1010043,\"max_lon\":-123.0997906}" + "bounding_box": "{\"min_lat\":49.2730043,\"max_lat\":49.2732647,\"min_lon\":-123.1010043,\"max_lon\":-123.0997906}", + "popularity": 2000 } }, { @@ -948458,7 +950006,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/87940564", - "bounding_box": "{\"min_lat\":40.6948649,\"max_lat\":40.6979234,\"min_lon\":-73.7197259,\"max_lon\":-73.7167433}" + "bounding_box": "{\"min_lat\":40.6948649,\"max_lat\":40.6979234,\"min_lon\":-73.7197259,\"max_lon\":-73.7167433}", + "popularity": 1000 } }, { @@ -948482,7 +950031,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/88279375", - "bounding_box": "{\"min_lat\":49.2999848,\"max_lat\":49.3000379,\"min_lon\":-123.1310214,\"max_lon\":-123.1309399}" + "bounding_box": "{\"min_lat\":49.2999848,\"max_lat\":49.3000379,\"min_lon\":-123.1310214,\"max_lon\":-123.1309399}", + "popularity": 2000 } }, { @@ -948527,7 +950077,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/88309647", - "bounding_box": "{\"min_lat\":49.298338,\"max_lat\":49.2985724,\"min_lon\":-123.1335962,\"max_lon\":-123.1331858}" + "bounding_box": "{\"min_lat\":49.298338,\"max_lat\":49.2985724,\"min_lon\":-123.1335962,\"max_lon\":-123.1331858}", + "popularity": 2000 } }, { @@ -948639,7 +950190,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/88316966", - "bounding_box": "{\"min_lat\":49.2608681,\"max_lat\":49.2614719,\"min_lon\":-123.1236909,\"max_lon\":-123.1224973}" + "bounding_box": "{\"min_lat\":49.2608681,\"max_lat\":49.2614719,\"min_lon\":-123.1236909,\"max_lon\":-123.1224973}", + "popularity": 2000 } }, { @@ -948841,6 +950393,7 @@ "layer": "venue", "source_id": "way/88316995", "bounding_box": "{\"min_lat\":49.2607983,\"max_lat\":49.2614803,\"min_lon\":-123.1264255,\"max_lon\":-123.1255882}", + "popularity": 4200, "addendum": { "osm": "{\"phone\":\"6048754111\"}" } @@ -948969,6 +950522,7 @@ "layer": "venue", "source_id": "way/89118744", "bounding_box": "{\"min_lat\":49.2893537,\"max_lat\":49.2899888,\"min_lon\":-123.118431,\"max_lon\":-123.1177256}", + "popularity": 1200, "addendum": { "osm": "{\"website\":\"http://www.cactusclubcafe.com\",\"opening_hours\":\"11am -12am\"}" } @@ -949168,7 +950722,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/89353391", - "bounding_box": "{\"min_lat\":49.2835435,\"max_lat\":49.2843045,\"min_lon\":-123.0377127,\"max_lon\":-123.0364413}" + "bounding_box": "{\"min_lat\":49.2835435,\"max_lat\":49.2843045,\"min_lon\":-123.0377127,\"max_lon\":-123.0364413}", + "popularity": 1000 } }, { @@ -949192,7 +950747,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/89353401", - "bounding_box": "{\"min_lat\":49.2816511,\"max_lat\":49.2830763,\"min_lon\":-123.0354621,\"max_lon\":-123.0349779}" + "bounding_box": "{\"min_lat\":49.2816511,\"max_lat\":49.2830763,\"min_lon\":-123.0354621,\"max_lon\":-123.0349779}", + "popularity": 2000 } }, { @@ -949370,7 +950926,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/91537636", - "bounding_box": "{\"min_lat\":49.2357974,\"max_lat\":49.2364418,\"min_lon\":-123.1234749,\"max_lon\":-123.1227025}" + "bounding_box": "{\"min_lat\":49.2357974,\"max_lat\":49.2364418,\"min_lon\":-123.1234749,\"max_lon\":-123.1227025}", + "popularity": 1000 } }, { @@ -949394,7 +950951,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/91537637", - "bounding_box": "{\"min_lat\":49.2365259,\"max_lat\":49.2372615,\"min_lon\":-123.1230243,\"max_lon\":-123.1226703}" + "bounding_box": "{\"min_lat\":49.2365259,\"max_lat\":49.2372615,\"min_lon\":-123.1230243,\"max_lon\":-123.1226703}", + "popularity": 1000 } }, { @@ -949419,7 +950977,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/91998107", - "bounding_box": "{\"min_lat\":49.2882007,\"max_lat\":49.2886247,\"min_lon\":-123.1180738,\"max_lon\":-123.1175508}" + "bounding_box": "{\"min_lat\":49.2882007,\"max_lat\":49.2886247,\"min_lon\":-123.1180738,\"max_lon\":-123.1175508}", + "popularity": 2000 } }, { @@ -949472,6 +951031,7 @@ "layer": "venue", "source_id": "way/91998136", "bounding_box": "{\"min_lat\":49.2854378,\"max_lat\":49.2859817,\"min_lon\":-123.1239641,\"max_lon\":-123.123382}", + "popularity": 4000, "addendum": { "osm": "{\"operator\":\"Shangri-La\"}" } @@ -949498,7 +951058,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/91998142", - "bounding_box": "{\"min_lat\":49.2612276,\"max_lat\":49.2612599,\"min_lon\":-123.2323063,\"max_lon\":-123.2322448}" + "bounding_box": "{\"min_lat\":49.2612276,\"max_lat\":49.2612599,\"min_lon\":-123.2323063,\"max_lon\":-123.2322448}", + "popularity": 1000 } }, { @@ -949598,7 +951159,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/92783039", - "bounding_box": "{\"min_lat\":49.2626761,\"max_lat\":49.2628245,\"min_lon\":-123.1573652,\"max_lon\":-123.1569335}" + "bounding_box": "{\"min_lat\":49.2626761,\"max_lat\":49.2628245,\"min_lon\":-123.1573652,\"max_lon\":-123.1569335}", + "popularity": 1000 } }, { @@ -949622,7 +951184,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/92783068", - "bounding_box": "{\"min_lat\":49.2625919,\"max_lat\":49.2627972,\"min_lon\":-123.1575341,\"max_lon\":-123.1573609}" + "bounding_box": "{\"min_lat\":49.2625919,\"max_lat\":49.2627972,\"min_lon\":-123.1575341,\"max_lon\":-123.1573609}", + "popularity": 1000 } }, { @@ -949646,7 +951209,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/93679741", - "bounding_box": "{\"min_lat\":49.2608904,\"max_lat\":49.2625835,\"min_lon\":-123.2342759,\"max_lon\":-123.2300624}" + "bounding_box": "{\"min_lat\":49.2608904,\"max_lat\":49.2625835,\"min_lon\":-123.2342759,\"max_lon\":-123.2300624}", + "popularity": 1000 } }, { @@ -949671,7 +951235,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/94666601", - "bounding_box": "{\"min_lat\":49.2639315,\"max_lat\":49.2640659,\"min_lon\":-123.2089223,\"max_lon\":-123.2087715}" + "bounding_box": "{\"min_lat\":49.2639315,\"max_lat\":49.2640659,\"min_lon\":-123.2089223,\"max_lon\":-123.2087715}", + "popularity": 1000 } }, { @@ -949912,7 +951477,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/96911450", - "bounding_box": "{\"min_lat\":49.253787,\"max_lat\":49.2547262,\"min_lon\":-123.2399485,\"max_lon\":-123.2376097}" + "bounding_box": "{\"min_lat\":49.253787,\"max_lat\":49.2547262,\"min_lon\":-123.2399485,\"max_lon\":-123.2376097}", + "popularity": 1000 } }, { @@ -950333,6 +951899,7 @@ "layer": "venue", "source_id": "way/98675537", "bounding_box": "{\"min_lat\":49.2447582,\"max_lat\":49.2456285,\"min_lon\":-123.2327871,\"max_lon\":-123.2317933}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.nrc-cnrc.gc.ca/eng/ibp/ifci.html\"}" } @@ -953568,7 +955135,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/99135915", - "bounding_box": "{\"min_lat\":49.2610712,\"max_lat\":49.2622453,\"min_lon\":-123.2440978,\"max_lon\":-123.2420204}" + "bounding_box": "{\"min_lat\":49.2610712,\"max_lat\":49.2622453,\"min_lon\":-123.2440978,\"max_lon\":-123.2420204}", + "popularity": 2000 } }, { @@ -953723,7 +955291,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/99136527", - "bounding_box": "{\"min_lat\":49.2636006,\"max_lat\":49.2647819,\"min_lon\":-123.246863,\"max_lon\":-123.2452718}" + "bounding_box": "{\"min_lat\":49.2636006,\"max_lat\":49.2647819,\"min_lon\":-123.246863,\"max_lon\":-123.2452718}", + "popularity": 2000 } }, { @@ -953849,7 +955418,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/99205664", - "bounding_box": "{\"min_lat\":49.2685446,\"max_lat\":49.2695425,\"min_lon\":-123.2515834,\"max_lon\":-123.2502816}" + "bounding_box": "{\"min_lat\":49.2685446,\"max_lat\":49.2695425,\"min_lon\":-123.2515834,\"max_lon\":-123.2502816}", + "popularity": 2000 } }, { @@ -953955,6 +955525,7 @@ "layer": "venue", "source_id": "way/99272766", "bounding_box": "{\"min_lat\":49.2621083,\"max_lat\":49.2625851,\"min_lon\":-123.2473991,\"max_lon\":-123.24649}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.chbe.ubc.ca/\"}" } @@ -954087,7 +955658,8 @@ "source": "openstreetmap", "layer": "venue", "source_id": "way/99272772", - "bounding_box": "{\"min_lat\":49.2628363,\"max_lat\":49.2639633,\"min_lon\":-123.2485885,\"max_lon\":-123.2471051}" + "bounding_box": "{\"min_lat\":49.2628363,\"max_lat\":49.2639633,\"min_lon\":-123.2485885,\"max_lon\":-123.2471051}", + "popularity": 2000 } }, { @@ -954203,6 +955775,7 @@ "layer": "venue", "source_id": "way/99280368", "bounding_box": "{\"min_lat\":49.2625094,\"max_lat\":49.2628884,\"min_lon\":-123.2471123,\"max_lon\":-123.2466141}", + "popularity": 200, "addendum": { "osm": "{\"website\":\"http://www.chbe.ubc.ca/\"}" } diff --git a/test/run.js b/test/run.js index aeb0ef92..0b9dc384 100644 --- a/test/run.js +++ b/test/run.js @@ -11,6 +11,7 @@ var tests = [ require('./stream/address_extractor'), require('./stream/category_mapper'), require('./stream/addendum_mapper'), + require('./stream/popularity_mapper'), require('./stream/document_constructor'), require('./stream/importPipeline'), require('./stream/pbf'), diff --git a/test/stream/importPipeline.js b/test/stream/importPipeline.js index 8f566fc4..ffed5ca8 100644 --- a/test/stream/importPipeline.js +++ b/test/stream/importPipeline.js @@ -16,6 +16,7 @@ module.exports.tests.interface = function(test, common) { 'addressExtractor', 'categoryMapper', 'addendumMapper', + 'popularityMapper', 'dbMapper', 'elasticsearch', 'import' diff --git a/test/stream/popularity_mapper.js b/test/stream/popularity_mapper.js new file mode 100644 index 00000000..e9a19717 --- /dev/null +++ b/test/stream/popularity_mapper.js @@ -0,0 +1,268 @@ +const through = require('through2'); +const mapper = require('../../stream/popularity_mapper'); +const ixtures = require('../fixtures/docs'); +const Document = require('pelias-model').Document; + +module.exports.tests = {}; + +// test exports +module.exports.tests.interface = function (test, common) { + test('interface: factory', t => { + t.equal(typeof mapper, 'function', 'stream factory'); + t.end(); + }); + test('interface: stream', t => { + var stream = mapper(); + t.equal(typeof stream, 'object', 'valid stream'); + t.equal(typeof stream._read, 'function', 'valid readable'); + t.equal(typeof stream._write, 'function', 'valid writeable'); + t.end(); + }); +}; + +// ===================== popularity mapping ====================== + +module.exports.tests.importance_international = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'importance': 'international' }); + test('maps - importance_international', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 50000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.importance_national = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'importance': 'national' }); + test('maps - importance_national', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 10000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.wikidata = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'wikidata': 'Q1371018' }); + test('maps - wikidata', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 3000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.wikipedia = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'wikipedia': 'it:Aeroporto di Perugia' }); + test('maps - wikipedia', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 3000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.building_hospital = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'building': 'hospital' }); + test('maps - building:hospital', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 2000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.tourism_aquarium = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'tourism': 'aquarium' }); + test('maps - tourism:aquarium', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 3000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.amenity_post_office = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'amenity': 'post_office' }); + test('maps - amenity:post_office', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 1000, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.contact_phone = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'contact:phone': '555-5555' }); + test('maps - contact:phone', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getPopularity(), 200, 'correctly mapped'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +// ===================== transportation ====================== + +module.exports.tests.international_airport = function(test, common) { + var doc = new Document('a','venue',1); + doc.setMeta('tags', { 'aerodrome': 'international', 'iata': 'JFK' }); + test('alias - international airport', function(t) { + var stream = mapper(); + stream.pipe( through.obj( function( doc, enc, next ){ + t.deepEqual(doc.getPopularity(), 15000); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.regional_airport = function (test, common) { + var doc = new Document('a', 'venue', 1); + doc.setMeta('tags', { 'aerodrome': 'regional', 'iata': 'None' }); + test('alias - regional airport (invalid IATA code)', function (t) { + var stream = mapper(); + stream.pipe(through.obj(function (doc, enc, next) { + t.deepEqual(doc.getPopularity(), 5000); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.tests.railway_station = function (test, common) { + var doc = new Document('a', 'venue', 1); + doc.setMeta('tags', { 'railway': 'station' }); + test('alias - railway station', function (t) { + var stream = mapper(); + stream.pipe(through.obj(function (doc, enc, next) { + t.deepEqual(doc.getPopularity(), 2000); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +// ===================== do not map non-venue docs ====================== + +module.exports.tests.nonvenue = function (test, common) { + var doc = new Document('osm', 'address', 1); + doc.setMeta('tags', { 'importance': 'international' }); + test('does not map - non-venue', t => { + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.false(doc.getPopularity(), 'no mapping performed'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +// ===================== discard disused places ====================== + +module.exports.tests.disused = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'disused:amenity': 'yes' }); + test('does not map - disused', t => { + var stream = mapper(); + var counter = 0; + stream.pipe(through.obj((doc, enc, next) => { + counter++; + next(); + }, (done) => { + t.equal(counter, 0, 'document discarded'); + t.end(); // test will fail if not called (or called twice). + done(); + })); + stream.write(doc); + stream.end(); + }); +}; + +// ===================== discard abandoned places ====================== + +module.exports.tests.abandoned = function (test, common) { + var doc = new Document('osm', 'venue', 1); + doc.setMeta('tags', { 'abandoned:amenity': 'yes' }); + test('does not map - abandoned', t => { + var stream = mapper(); + var counter = 0; + stream.pipe(through.obj((doc, enc, next) => { + counter++; + next(); + }, (done) => { + t.equal(counter, 0, 'document discarded'); + t.end(); // test will fail if not called (or called twice). + done(); + })); + stream.write(doc); + stream.end(); + }); +}; + +// ======================= errors ======================== + +// catch general errors in the stream, emit logs and passthrough the doc +module.exports.tests.catch_thrown_errors = function (test, common) { + test('errors - catch thrown errors', t => { + var doc = new Document('osm', 'venue', 1); + + // this method will throw a generic Error for testing + doc.getMeta = function () { throw new Error('test'); }; + + var stream = mapper(); + stream.pipe(through.obj((doc, enc, next) => { + t.deepEqual(doc.getLayer(), 'venue', 'doc passthrough'); + t.end(); // test will fail if not called (or called twice). + next(); + })); + stream.write(doc); + }); +}; + +module.exports.all = function (tape, common) { + + function test(name, testFunction) { + return tape('popularity_mapper: ' + name, testFunction); + } + + for (var testCase in module.exports.tests) { + module.exports.tests[testCase](test, common); + } +}; diff --git a/test/stream/tag_mapper.js b/test/stream/tag_mapper.js index 805c7133..eb74fe60 100644 --- a/test/stream/tag_mapper.js +++ b/test/stream/tag_mapper.js @@ -247,7 +247,6 @@ module.exports.tests.airport_codes = function(test, common) { stream.pipe( through.obj( function( doc, enc, next ){ t.equal(doc.getName('default'), 'test', 'correctly mapped'); t.deepEqual(doc.getNameAliases('default'), ['FOO', 'FOO Airport'], 'correctly mapped'); - t.deepEqual(doc.getPopularity(), 10000); t.end(); // test will fail if not called (or called twice). next(); }));