diff --git a/app.js b/app.js index e9a96ea..1919889 100644 --- a/app.js +++ b/app.js @@ -18,6 +18,7 @@ const fact = require("./models/fact.js"); const { numRoutes } = require("./routes/numbers.js"); // const highcharts = require("./logs_highcharts.js"); const utils = require("./public/js/shared_utils.js"); + require("dotenv").config(); const nodeEnv = process.env.NODE_ENV || "development"; diff --git a/package.json b/package.json index a16dc88..020a9f2 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "test": "jest", "start": "NODE_ENV=development nodemon server.js", "start-graphql": "NODE_ENV=development nodemon graphql/index.js", + "start-wiki-gql": "NODE_ENV=development nodemon wikidata/graphql/index.js", "start-prod": "NODE_ENV=production forever -a start server.js", "stop": "forever stopall", "scss": "node-sass public/sass -o public/css", diff --git a/wikidata/README.MD b/wikidata/README.MD new file mode 100644 index 0000000..896d1bf --- /dev/null +++ b/wikidata/README.MD @@ -0,0 +1,141 @@ +## HOW WE GOT THE DATA + +We used wikidata to gather the data for our queries. +Here is an example of the tourist attraction [query](https://query.wikidata.org/#SELECT%20%3Flocation%20%3Fcordinates%20%3Fvisitors%20%3FlocationLabel%0A%0AWHERE%20%7B%0A%0A%20%20%3Flocation%20wdt%3AP31%20wd%3AQ570116%20.%20%23tourist%20attractions%0A%20%20%3Flocation%20wdt%3AP625%20%3Fcordinates%20.%0A%20%20OPTIONAL%20%7B%0A%20%20%20%20%3Flocation%20wdt%3AP1174%20%3Fvisitors%20.%20%0A%20%20%7D%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%0A%20%20%20%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22%0A%20%20%7D%0A%7D%0A%0AORDER%20BY%20DESC%28%3FlocationLabel%29%0A). We downloaded the JSON and pasted the data in `attractionsRawData.js`. + +We then sanitized the data in `parseData.js`, where it returns: +``` +[ + {name: "White House", visitors: 10, coordinates: "Point(12, 34)"}, + {name: "jeff's museum", visitors: 1, coordinates: "Point(12,35"}, + ... +] + +``` + +## How to get started + +To make the graphql queries, run the script `npm run start-wiki-gql`. +The server will run on `localhost:9001/graphql`. + +## HOW TO MAKE WIKIDATA GRAPHQL QUERIES + +### getAttractions Query: + +``` +query { + getAttractions(keyword: "castle") { + name + visitors + coordinates + } +} +``` +### getAttractions Result: +``` +"data": { + "getAttractions": [ + { + "name": "Örebro Castle", + "visitors": 0, + "coordinates": "Point(15.215277777 59.273888888)" + }, + { + "name": "Örbyhus Castle", + "visitors": 0, + "coordinates": "Point(17.7092 60.2)" + }, + { + "name": "Årsta Castle", + "visitors": 0, + "coordinates": "Point(18.19388889 59.1075)" + }, + ... + ] +} +``` + +### getMuseums Query: +``` +query { + getMuseums(keyword: "art") { + name + visitors + coordinates + } +} +``` +### getMuseums Result: +``` +"data": { + "getMuseums": [ + { + "name": "“Ў” Gallery of Contemporary Art", + "visitors": 0, + "coordinates": "Point(27.57555556 53.91055556)" + }, + { + "name": "Ōtsuka Museum of Art", + "visitors": 0, + "coordinates": "Point(134.638 34.2324)" + }, + { + "name": "Ōta Memorial Museum of Art", + "visitors": 0, + "coordinates": "Point(139.705 35.6694)" + }, + ... + ] +} +``` + +### getVisitors Query: + +getVisitors takes arguments `type`, `operator`, `count`. + +`type`'s value is a string of either `"attractions"` or `"museums"` + +`operator`'s value is `"<"`, `"<="`, `">"`, `">="`, `"==="` + +--operator can also use `"+"` or `"-"` and it will return all the data. We can also use `"=="` and it will work similar to `"==="`. + +`count`'s value is an int. + + +``` +query { + getVisitors(type: "attractions", operator:">=", count:10000) { + name + visitors + coordinates + } +} +``` + +### getVisitors Result: + +``` +"data": { + "getVisitors": [ + { + "name": "Yosemite National Park", + "visitors": 5028868, + "coordinates": "Point(-119.5375 37.7425)" + }, + { + "name": "Yellowstone National Park", + "visitors": 4257177, + "coordinates": "Point(-110.5471962 44.5964446)" + }, + { + "name": "White House", + "visitors": 1090446, + "coordinates": "Point(-77.03655 38.897669444)" + }, + ] +} +``` + + + + diff --git a/wikidata/__tests__/gqlQueries.test.js b/wikidata/__tests__/gqlQueries.test.js new file mode 100644 index 0000000..dae828c --- /dev/null +++ b/wikidata/__tests__/gqlQueries.test.js @@ -0,0 +1,406 @@ +const { resolvers } = require("../graphql/schema/resolvers"); +const EasyGraphQLTester = require("easygraphql-tester"); +const { typeDefs } = require("../graphql/schema/typeDefs"); +const { schema } = require("../graphql/schema/schema"); + +describe("Test attractions/museums queries", () => { + let tester; + + beforeEach(() => { + tester = new EasyGraphQLTester(schema); + }); + + it("Should return all attractions", async () => { + const query = ` + { + getAttractions(keyword: "attraction") { + name + visitors + coordinates + } + } + `; + + let result = await tester.graphql(query); + result = result.data.getAttractions; + + expect(result).toEqual([ + { + name: "Attraction 1", + visitors: 0, + coordinates: "Point(60.572472222 56.893194444)", + }, + { + name: "Attraction 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + { + name: "Attraction 3", + visitors: 19, + coordinates: "Point(60.72222 56.893194)", + }, + ]); + }); + + it("Filters correctly by keyword", async () => { + const query = ` + { + getAttractions(keyword: "2") { + name + } + } + `; + let result = await tester.graphql(query); + result = result.data.getAttractions; + + expect(result).toEqual([ + { + name: "Attraction 2", + }, + ]); + }); + + it("Shows no results if keyword does not mach", async () => { + const query = ` + { + getAttractions(keyword: "donkeydoodle") { + name + } + } + `; + let result = await tester.graphql(query); + result = result.data.getAttractions; + + expect(result).toEqual([]); + }); +}); + +describe("Test visitor graphQL queries", () => { + + beforeEach(() => { + tester = new EasyGraphQLTester(schema); + }); + + it ("returns the greater than equal to results correctly for attractions", async () => { + const query = ` + { + getVisitors(type: "attractions", operator:">=", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Attraction 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + { + name: "Attraction 3", + visitors: 19, + coordinates: "Point(60.72222 56.893194)", + } + ]) + }) + + it ("returns the greater than equal to results correctly for museums", async () => { + const query = ` + { + getVisitors(type: "museums", operator:">=", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Museum 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + { + name: "Museum 3", + visitors: 19, + coordinates: "Point(60.72222 56.893194)", + } + ]) + }) + + it ("returns the less than equal to results correctly for attractions", async () => { + const query = ` + { + getVisitors(type: "attractions", operator:"<=", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Attraction 1", + visitors: 0, + coordinates: "Point(60.572472222 56.893194444)", + }, + { + name: "Attraction 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + ]) + }) + + it ("returns the less than equal to results correctly for museums", async () => { + const query = ` + { + getVisitors(type: "museums", operator:"<=", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Museum 1", + visitors: 0, + coordinates: "Point(60.572472222 56.893194444)", + }, + { + name: "Museum 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + ]) + }) + + it ("returns the less than results correctly for attractions", async () => { + const query = ` + { + getVisitors(type: "attractions", operator:"<", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Attraction 1", + visitors: 0, + coordinates: "Point(60.572472222 56.893194444)", + }, + ]) + }) + + it ("returns the less than results correctly for museums", async () => { + const query = ` + { + getVisitors(type: "museums", operator:"<", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Museum 1", + visitors: 0, + coordinates: "Point(60.572472222 56.893194444)", + }, + ]) + }) + + it ("returns the greater than results correctly for attractions", async () => { + const query = ` + { + getVisitors(type: "attractions", operator:">", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Attraction 3", + visitors: 19, + coordinates: "Point(60.72222 56.893194)", + }, + ]) + }) + + it ("returns the greater than results correctly for museums", async () => { + const query = ` + { + getVisitors(type: "museums", operator:">", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Museum 3", + visitors: 19, + coordinates: "Point(60.72222 56.893194)", + }, + ]) + }) + + it ("returns the equal to results correctly for attractions", async () => { + const query = ` + { + getVisitors(type: "attractions", operator:"===", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Attraction 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + ]) + }) + + it ("returns the equal to results correctly for museums", async () => { + const query = ` + { + getVisitors(type: "museums", operator:"===", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual([ + { + name: "Museum 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + ]) + }) + + it ("returns the 'plus' results correctly for attractions", async () => { + const query = ` + { + getVisitors(type: "attractions", operator:"+", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual( + [ + { + name: 'Attraction 1', + visitors: 0, + coordinates: 'Point(60.572472222 56.893194444)' + }, + { + name: 'Attraction 2', + visitors: 2, + coordinates: 'Point(-77.03655 38.897669444)' + }, + { + name: 'Attraction 3', + visitors: 19, + coordinates: 'Point(60.72222 56.893194)' + } + ] + ) + }) + + it ("returns the 'plus' results correctly for museums", async () => { + const query = ` + { + getVisitors(type: "museums", operator:"+", count: 2) { + name + visitors + coordinates + } + } + ` + + let result = await tester.graphql(query); + result = result.data.getVisitors; + + expect(result).toEqual( + [ + { + name: 'Museum 1', + visitors: 0, + coordinates: 'Point(60.572472222 56.893194444)' + }, + { + name: 'Museum 2', + visitors: 2, + coordinates: 'Point(-77.03655 38.897669444)' + }, + { + name: 'Museum 3', + visitors: 19, + coordinates: 'Point(60.72222 56.893194)' + } + ] + ) + }) +}) + + diff --git a/wikidata/__tests__/gqlSchema.test.js b/wikidata/__tests__/gqlSchema.test.js new file mode 100644 index 0000000..ef994df --- /dev/null +++ b/wikidata/__tests__/gqlSchema.test.js @@ -0,0 +1,12 @@ +const { schema } = require("../graphql/schema/schema"); + +describe("Test static schema snapshot", () => { + it("should contain types", () => { + expect(schema.getType("Destination")).not.toBeNull(); + expect(schema.getType("Destination")).toBeDefined(); + }); + + it("should not contain unregistered types", () => { + expect(schema.getType("DonkeyDoodle")).toBeUndefined(); + }); +}); diff --git a/wikidata/__tests__/parseData.test.js b/wikidata/__tests__/parseData.test.js new file mode 100644 index 0000000..e7fda11 --- /dev/null +++ b/wikidata/__tests__/parseData.test.js @@ -0,0 +1,72 @@ +const { dummyAttractionsData } = require("../dummyData.js"); +const { + getLocation, + getVisitors, + getCoords, + collateDataToObj, +} = require("../parseData.js"); + +describe("Test each function inside parse data", () => { + it("getLocation()", () => { + let res = getLocation(dummyAttractionsData); + + expect(res).toEqual({ + "Attraction 1": expect.any(Array), + "Attraction 2": expect.any(Array), + "Attraction 3": expect.any(Array), + }); + }); + + it("getVisitors()", () => { + let res = getVisitors(dummyAttractionsData); + + expect(res).toEqual({ + "Attraction 1": 0, + "Attraction 2": 2, + "Attraction 3": 19, + }); + }); + + it("getCoords()", () => { + let res = getCoords(dummyAttractionsData); + + expect(res).toEqual([ + ["Attraction 1", 0, "Point(60.572472222 56.893194444)"], + [ + "Attraction 2", + 2, + "Point(-77.03655 38.897669444)", + "Point(-77.03655 38.897669444)", + "Point(-77.03655 38.897669444)", + ], + [ + "Attraction 3", + 19, + "Point(60.72222 56.893194)", + "Point(60.72222 56.893194)", + ], + ]); + }); + + it("collateDataToObj()", () => { + let res = collateDataToObj(dummyAttractionsData); + + expect(res).toEqual([ + { + name: "Attraction 1", + visitors: 0, + coordinates: "Point(60.572472222 56.893194444)", + }, + { + name: "Attraction 2", + visitors: 2, + coordinates: "Point(-77.03655 38.897669444)", + }, + { + name: "Attraction 3", + visitors: 19, + coordinates: "Point(60.72222 56.893194)", + }, + ]); + }); +}); diff --git a/wikidata/attractionsRawData.js b/wikidata/attractionsRawData.js new file mode 100644 index 0000000..536016f --- /dev/null +++ b/wikidata/attractionsRawData.js @@ -0,0 +1,13393 @@ +const attractions = [ + { + location: "http://www.wikidata.org/entity/Q105742972", + cordinates: "Point(39.694316 47.264974)", + locationLabel: + "сountry estate complex with park, fountain and houses of salesmen (Koskin, Panchenko and Asmolov families)", + }, + { + location: "http://www.wikidata.org/entity/Q105561868", + cordinates: "Point(39.708195 47.220499)", + locationLabel: + "рouse where composers S. A. Zaslavsky and N. K. Shaposhnikov lived and worked", + }, + { + location: "http://www.wikidata.org/entity/Q644677", + cordinates: "Point(28.957175 41.013794444)", + locationLabel: "Şehzade Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q2016002", + cordinates: "Point(28.62 36.7922)", + locationLabel: "İztuzu Beach", + }, + { + location: "http://www.wikidata.org/entity/Q3696052", + cordinates: "Point(27.128666666 38.418861111)", + locationLabel: "İzmir Clock Tower", + }, + { + location: "http://www.wikidata.org/entity/Q344348", + cordinates: "Point(28.97888889 41.03416667)", + locationLabel: "İstiklal Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q10825642", + cordinates: "Point(107.743333333 11.644166666)", + locationLabel: "Đambri falls", + }, + { + location: "http://www.wikidata.org/entity/Q82020816", + cordinates: "Point(27.5674 53.9002)", + locationLabel: "Čyrvonaarmiejskaja Street 11, Minsk", + }, + { + location: "http://www.wikidata.org/entity/Q16116710", + cordinates: "Point(16.2510267 43.5171011)", + locationLabel: "Ćipiko Palace", + }, + { + location: "http://www.wikidata.org/entity/Q2757682", + cordinates: "Point(15.215277777 59.273888888)", + locationLabel: "Örebro Castle", + }, + { + location: "http://www.wikidata.org/entity/Q2371512", + cordinates: "Point(17.7092 60.2)", + locationLabel: "Örbyhus Castle", + }, + { + location: "http://www.wikidata.org/entity/Q1344290", + cordinates: "Point(29.14467 36.56674)", + locationLabel: "Ölüdeniz", + }, + { + location: "http://www.wikidata.org/entity/Q8077504", + cordinates: "Point(26.21928 40.050164)", + locationLabel: "Çanakkale Martyrs' Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q565694", + cordinates: "Point(18.19388889 59.1075)", + locationLabel: "Årsta Castle", + }, + { + location: "http://www.wikidata.org/entity/Q4992715", + cordinates: "Point(16.8575 59.5325)", + locationLabel: "Ängsö Castle", + }, + { + location: "http://www.wikidata.org/entity/Q25973182", + cordinates: "Point(8.557474717 55.174679755)", + locationLabel: "whalebone fence", + }, + { + location: "http://www.wikidata.org/entity/Q105742644", + cordinates: "Point(39.704305 47.228387)", + locationLabel: "warehouses of Vladimir Alexeev trade copartnership", + }, + { + location: "http://www.wikidata.org/entity/Q129479", + cordinates: "Point(52.558319444 29.625402777)", + locationLabel: "tomb of Hafez", + }, + { + location: "http://www.wikidata.org/entity/Q105742319", + cordinates: "Point(39.703514 47.230266)", + locationLabel: "the complex of government wine storehouses", + }, + { + location: "http://www.wikidata.org/entity/Q21639736", + cordinates: "Point(39.708154 47.220002)", + locationLabel: "the building of trading house of G. G. Pustovoytov", + }, + { + location: "http://www.wikidata.org/entity/Q105710484", + cordinates: "Point(39.703173 47.224477)", + locationLabel: "the building of the female gymnasium of T. G. Berberova", + }, + { + location: "http://www.wikidata.org/entity/Q16653766", + cordinates: "Point(39.70517222 47.22669167)", + locationLabel: "the building of of tobacco factory of Aslanidi brothers", + }, + { + location: "http://www.wikidata.org/entity/Q105569792", + cordinates: "Point(39.70797 47.221136)", + locationLabel: "the building of club of clerk society", + }, + { + location: "http://www.wikidata.org/entity/Q30048511", + cordinates: "Point(16.776449 50.348997)", + locationLabel: "saint Andrew's church in Trzebieszowice", + }, + { + location: "http://www.wikidata.org/entity/Q105708650", + cordinates: "Point(39.70514 47.2234)", + locationLabel: "revenue house ov V. Ya. Kunduri", + }, + { + location: "http://www.wikidata.org/entity/Q28601084", + cordinates: "Point(39.705598 47.223651)", + locationLabel: + "revenue house of V. Ya. Kunduri, where Palace Hotel located", + }, + { + location: "http://www.wikidata.org/entity/Q105705506", + cordinates: "Point(39.706937 47.223779)", + locationLabel: "revenue house of V. K. Chirikov and S. K. Chirikov", + }, + { + location: "http://www.wikidata.org/entity/Q105573921", + cordinates: "Point(39.683599 47.220309)", + locationLabel: "revenue house of S. M. Pokatilov", + }, + { + location: "http://www.wikidata.org/entity/Q105612694", + cordinates: "Point(39.696714 47.221748)", + locationLabel: "revenue house of P. I. Stepanenko", + }, + { + location: "http://www.wikidata.org/entity/Q105710789", + cordinates: "Point(39.701852 47.224214)", + locationLabel: "revenue house of N. M. Kurilsky", + }, + { + location: "http://www.wikidata.org/entity/Q105711846", + cordinates: "Point(39.702481 47.222182)", + locationLabel: + "revenue house of N. Furunzhi-Khurintsov and A. Furunzhi-Khurintsov", + }, + { + location: "http://www.wikidata.org/entity/Q105718712", + cordinates: "Point(39.701367 47.219012)", + locationLabel: "revenue house of M. A. Boner", + }, + { + location: "http://www.wikidata.org/entity/Q104385446", + cordinates: "Point(39.714653 47.224728)", + locationLabel: "revenue house of L. G. Konstantinidi", + }, + { + location: "http://www.wikidata.org/entity/Q105715002", + cordinates: "Point(39.701969 47.21914)", + locationLabel: "revenue house of K. Ya. Bashmakov", + }, + { + location: "http://www.wikidata.org/entity/Q105715674", + cordinates: "Point(39.701674 47.219089)", + locationLabel: "revenue house of I. R. Gots", + }, + { + location: "http://www.wikidata.org/entity/Q105703853", + cordinates: "Point(39.708374 47.22463)", + locationLabel: "revenue house of A. I. Ryzhkov", + }, + { + location: "http://www.wikidata.org/entity/Q105709897", + cordinates: "Point(39.7032 47.222378)", + locationLabel: "revenue house of A. A. Tkachenko", + }, + { + location: "http://www.wikidata.org/entity/Q102409527", + cordinates: "Point(39.75559 47.230921)", + locationLabel: "revenue house at 30 1-Mayskaya street Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q105712799", + cordinates: "Point(39.701736 47.222109)", + locationLabel: "residential house of I. I. Kertseli", + }, + { + location: "http://www.wikidata.org/entity/Q102396247", + cordinates: "Point(39.756488 47.231526)", + locationLabel: "residential house of H. N. Sagirov", + }, + { + location: "http://www.wikidata.org/entity/Q104384164", + cordinates: "Point(39.71415 47.224661)", + locationLabel: "residential house of A. I. Burtsev", + }, + { + location: "http://www.wikidata.org/entity/Q102399639", + cordinates: "Point(39.755904 47.231294)", + locationLabel: + "residential house at 31 1-Mayskaya street / 17 12-linya street, Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q105703214", + cordinates: "Point(39.70806 47.224967)", + locationLabel: "posconstructivism residential house", + }, + { + location: "http://www.wikidata.org/entity/Q950735", + cordinates: "Point(26.10217222 44.42799722)", + locationLabel: "piața Unirii", + }, + { + location: "http://www.wikidata.org/entity/Q16683698", + cordinates: "Point(39.71066389 47.22455833)", + locationLabel: "mansion of Eva Spielrein", + }, + { + location: "http://www.wikidata.org/entity/Q102347036", + cordinates: "Point(39.766962 47.231594)", + locationLabel: "mansion of B. Korotkov, a second guilde trader", + }, + { + location: "http://www.wikidata.org/entity/Q28653822", + cordinates: "Point(39.701134 47.217659)", + locationLabel: "mansion of A. G. Gerasimov", + }, + { + location: "http://www.wikidata.org/entity/Q105612378", + cordinates: "Point(39.69755 47.221803)", + locationLabel: "mansion at 3 Pushkinskaya Street, Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q105554686", + cordinates: "Point(39.707548 47.216521)", + locationLabel: "household of D. Ya. Belov", + }, + { + location: "http://www.wikidata.org/entity/Q102349008", + cordinates: "Point(39.76725 47.23223)", + locationLabel: "house of family of city architect N. N. Durbakh", + }, + { + location: "http://www.wikidata.org/entity/Q102364061", + cordinates: "Point(39.757773 47.233435)", + locationLabel: "house of engineer O. Ya. Kistov", + }, + { + location: "http://www.wikidata.org/entity/Q102353167", + cordinates: "Point(39.766855 47.233056)", + locationLabel: "house of Titrovs wine-makers", + }, + { + location: "http://www.wikidata.org/entity/Q102306100", + cordinates: "Point(39.761087 47.231979)", + locationLabel: "house of Sagirovs with salesmen club", + }, + { + location: "http://www.wikidata.org/entity/Q16645480", + cordinates: "Point(39.70368333 47.22307222)", + locationLabel: "house of Reznichenko", + }, + { + location: "http://www.wikidata.org/entity/Q102412676", + cordinates: "Point(39.753083 47.230755)", + locationLabel: "house of M. Chibukhchiev", + }, + { + location: "http://www.wikidata.org/entity/Q105627858", + cordinates: "Point(39.752778 47.227708)", + locationLabel: "house of E. E. Pivovarova", + }, + { + location: "http://www.wikidata.org/entity/Q102364528", + cordinates: "Point(39.756766 47.231129)", + locationLabel: "house of A. Satarova", + }, + { + location: "http://www.wikidata.org/entity/Q102357326", + cordinates: "Point(39.759417 47.233778)", + locationLabel: "house and photo studio of E. G. Cherepakhin", + }, + { + location: "http://www.wikidata.org/entity/Q104142410", + cordinates: "Point(141.586388888 42.898055555)", + locationLabel: "hanafuru", + }, + { + location: "http://www.wikidata.org/entity/Q99804808", + cordinates: "Point(39.708787 47.220101)", + locationLabel: "four-storey sectional residental house", + }, + { + location: "http://www.wikidata.org/entity/Q3034599", + cordinates: "Point(5.18747 50.1255)", + locationLabel: "domain of the caves of Han", + }, + { + location: "http://www.wikidata.org/entity/Q105742451", + cordinates: "Point(39.70444 47.229342)", + locationLabel: "complex of residential houses of workers of the distillery", + }, + { + location: "http://www.wikidata.org/entity/Q102398987", + cordinates: "Point(39.756129 47.231373)", + locationLabel: "a house where Martiros Saryan lived from 1916 to 1921", + }, + { + location: "http://www.wikidata.org/entity/Q1348507", + cordinates: "Point(-99.133333 19.432778)", + locationLabel: "Zócalo", + }, + { + location: "http://www.wikidata.org/entity/Q55456513", + cordinates: "Point(30.4098195 59.7202641)", + locationLabel: "Zvegintsev House", + }, + { + location: "http://www.wikidata.org/entity/Q715148", + cordinates: "Point(131.888056 43.1075)", + locationLabel: "Zolotoy Rog", + }, + { + location: "http://www.wikidata.org/entity/Q4228493", + cordinates: "Point(37.6164 55.8384)", + locationLabel: "Zolotoy Kolos Fountain", + }, + { + location: "http://www.wikidata.org/entity/Q30890113", + cordinates: "Point(37.597327777 55.747883333)", + locationLabel: "Zinoviev-Yusupov House", + }, + { + location: "http://www.wikidata.org/entity/Q21026876", + cordinates: "Point(37.604444444 55.768611111)", + locationLabel: "Zimin's House", + }, + { + location: "http://www.wikidata.org/entity/Q8071903", + cordinates: "Point(40.95463 40.9283)", + locationLabel: "Zilkale", + }, + { + location: "http://www.wikidata.org/entity/Q4812403", + cordinates: "Point(39.3928 40.649)", + locationLabel: "Zigana Pass", + }, + { + location: "http://www.wikidata.org/entity/Q15905062", + cordinates: "Point(113.51970278 34.95091111)", + locationLabel: "Zhengzhou Yellow River Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q27925184", + cordinates: "Point(110.6982 29.3987)", + locationLabel: "Zhangjiajie Glass Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q53582048", + cordinates: "Point(45.411666666 50.078055555)", + locationLabel: "Zemstvo of Kamyshin", + }, + { + location: "http://www.wikidata.org/entity/Q60851906", + cordinates: "Point(76.953498 43.263715)", + locationLabel: "Zelyoniy Bazaar", + }, + { + location: "http://www.wikidata.org/entity/Q9385871", + cordinates: "Point(18.9504 49.9787)", + locationLabel: "Zagroda Wsi Pszczyńskiej", + }, + { + location: "http://www.wikidata.org/entity/Q18408061", + cordinates: "Point(44.0035 56.330833)", + locationLabel: "Zachatskaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q8063329", + cordinates: "Point(114.4566807 -27.6535365)", + locationLabel: "Z-Bend Lookout", + }, + { + location: "http://www.wikidata.org/entity/Q911734", + cordinates: "Point(29.0111 41.0494)", + locationLabel: "Yıldız Palace", + }, + { + location: "http://www.wikidata.org/entity/Q55421908", + cordinates: "Point(30.414742 59.709197)", + locationLabel: "Yusupova Villa", + }, + { + location: "http://www.wikidata.org/entity/Q2991838", + cordinates: "Point(30.2987 59.9295)", + locationLabel: "Yusupov Palace on Moika", + }, + { + location: "http://www.wikidata.org/entity/Q180402", + visitors: "5028868", + cordinates: "Point(-119.5375 37.7425)", + locationLabel: "Yosemite National Park", + }, + { + location: "http://www.wikidata.org/entity/Q512953", + cordinates: "Point(13.726853 51.059019)", + locationLabel: "Yenidze", + }, + { + location: "http://www.wikidata.org/entity/Q351", + visitors: "4257177", + cordinates: "Point(-110.5471962 44.5964446)", + locationLabel: "Yellowstone National Park", + }, + { + location: "http://www.wikidata.org/entity/Q4174370", + cordinates: "Point(38.974556 45.020573)", + locationLabel: "Yekaterins Cathedral Krasnodar", + }, + { + location: "http://www.wikidata.org/entity/Q716932", + cordinates: "Point(121.691111111 25.20425)", + locationLabel: "Yehliu", + }, + { + location: "http://www.wikidata.org/entity/Q7784788", + cordinates: "Point(29.11138889 41.20277778)", + locationLabel: "Yavuz Sultan Selim Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q4399140", + cordinates: "Point(39.902 57.62249)", + locationLabel: "Yaroslavl Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q4538913", + cordinates: "Point(39.877613 57.60708)", + locationLabel: "Yaroslavl Higher Military Air Defence School", + }, + { + location: "http://www.wikidata.org/entity/Q12299619", + cordinates: "Point(24.3296897 41.6287927)", + locationLabel: "Yagodinska cave", + }, + { + location: "http://www.wikidata.org/entity/Q102046628", + cordinates: "Point(121.196027777 22.795694444)", + locationLabel: "Xiaoyeliu Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q8043990", + cordinates: "Point(20.09166718 39.94499969)", + locationLabel: "Xhemahallë complex", + }, + { + location: "http://www.wikidata.org/entity/Q772914", + cordinates: "Point(18.0625 59.325)", + locationLabel: "Wrangel Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4901687", + cordinates: "Point(-116.07275 35.266438888)", + locationLabel: "World's Tallest Thermometer", + }, + { + location: "http://www.wikidata.org/entity/Q98376349", + cordinates: "Point(35.707293 65.027148)", + locationLabel: "World War II memorial in Solovki", + }, + { + location: "http://www.wikidata.org/entity/Q4274972", + cordinates: "Point(-2.671388888 51.228055555)", + locationLabel: "Wookey Hole Caves", + }, + { + location: "http://www.wikidata.org/entity/Q4228335", + cordinates: "Point(37.656944444 55.655555555)", + locationLabel: "Wooden palace of tsar Alexey", + }, + { + location: "http://www.wikidata.org/entity/Q13668662", + cordinates: "Point(37.675305555 55.672972222)", + locationLabel: "Wooden church of Saint George in Kolomenskoye", + }, + { + location: "http://www.wikidata.org/entity/Q71843448", + cordinates: "Point(41.526764 57.4577)", + locationLabel: "Wooden Resurrection Church (Plyos)", + }, + { + location: "http://www.wikidata.org/entity/Q29317304", + cordinates: "Point(39.7 47.214722222)", + locationLabel: "Wolkenstein revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q4158813", + cordinates: "Point(34.384828 61.790989)", + locationLabel: "Wish tree (Petrozavodsk)", + }, + { + location: "http://www.wikidata.org/entity/Q4192006", + cordinates: "Point(39.73055556 43.57222222)", + locationLabel: "Winter Theatre (Sochi)", + }, + { + location: "http://www.wikidata.org/entity/Q17554545", + cordinates: "Point(1.73678 52.5996)", + locationLabel: "Winter Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q42646", + cordinates: "Point(-0.60483 51.4838)", + locationLabel: "Windsor Castle", + }, + { + location: "http://www.wikidata.org/entity/Q8342151", + cordinates: "Point(-73.0295 43.6133)", + locationLabel: "Wilson Castle", + }, + { + location: "http://www.wikidata.org/entity/Q81501306", + cordinates: "Point(6.7865969 49.4013376)", + locationLabel: "Willow dome", + }, + { + location: "http://www.wikidata.org/entity/Q29294", + cordinates: "Point(-87.635833 41.878611)", + locationLabel: "Willis Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8000861", + cordinates: "Point(103.954 1.37722)", + locationLabel: "Wild Wild Wet", + }, + { + location: "http://www.wikidata.org/entity/Q11088045", + cordinates: "Point(16.6859717 49.4947892)", + locationLabel: "Wild West City", + }, + { + location: "http://www.wikidata.org/entity/Q8000710", + cordinates: "Point(151.202 -33.8698)", + locationLabel: "Wild Life Sydney", + }, + { + location: "http://www.wikidata.org/entity/Q2568865", + cordinates: "Point(16.3667 48.2151)", + locationLabel: "Wiener Börse", + }, + { + location: "http://www.wikidata.org/entity/Q54165863", + cordinates: "Point(1.0348 51.36426)", + locationLabel: "Whitstable Castle", + }, + { + location: "http://www.wikidata.org/entity/Q4081645", + cordinates: "Point(60.572472222 56.893194444)", + locationLabel: "White Tower", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "178092", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "182542", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "231627", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "357250", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "439725", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "454117", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "455643", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "481951", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "485974", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "491229", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "519011", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "526263", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "569391", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "570057", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "611207", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "616890", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "656949", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "696600", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "809600", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "826300", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "856042", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "870100", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "913300", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "921600", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "922335", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "963500", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "978617", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1015395", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1027479", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1060548", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1076713", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1077561", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1089967", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1090446", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1120926", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1132992", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1134625", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1144540", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1148290", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1154900", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1161674", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1169085", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1175714", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1179458", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1219000", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1227392", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1228097", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1259928", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1304300", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1313017", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1318583", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1322300", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1333170", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1349600", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1388600", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1391300", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1412753", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1492800", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1520200", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1521700", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1548300", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1561700", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1573500", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1673100", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1733900", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1840100", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "White House", + }, + { + location: "http://www.wikidata.org/entity/Q1636774", + cordinates: "Point(-2.22924 51.6059)", + locationLabel: "Westonbirt Arboretum", + }, + { + location: "http://www.wikidata.org/entity/Q5933", + cordinates: "Point(-0.127367 51.4994)", + locationLabel: "Westminster Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q4186593", + cordinates: "Point(30.231944444 60.0)", + locationLabel: "Western Rapid Diameter", + }, + { + location: "http://www.wikidata.org/entity/Q99767675", + cordinates: "Point(170.1827308 -43.3886203)", + locationLabel: "West Coast Wildlife Centre", + }, + { + location: "http://www.wikidata.org/entity/Q779605", + cordinates: "Point(6.77212 51.4407)", + locationLabel: "Werhahnmühle", + }, + { + location: "http://www.wikidata.org/entity/Q28968242", + cordinates: "Point(38.923055555 47.200277777)", + locationLabel: 'Weather station "Taganrog"', + }, + { + location: "http://www.wikidata.org/entity/Q60972441", + cordinates: "Point(32.515135 50.22215)", + locationLabel: "Water towers in Pyriatyn", + }, + { + location: "http://www.wikidata.org/entity/Q60203862", + cordinates: "Point(7.156321 53.708544)", + locationLabel: "Water tower Norderney", + }, + { + location: "http://www.wikidata.org/entity/Q52146942", + cordinates: "Point(20.154444444 54.943333333)", + locationLabel: "Water Tower, Svetlogorsk", + }, + { + location: "http://www.wikidata.org/entity/Q1045876", + cordinates: "Point(100.492777777 13.751388888)", + locationLabel: "Wat Phra Kaeo", + }, + { + location: "http://www.wikidata.org/entity/Q724970", + cordinates: "Point(100.488919444 13.743688888)", + locationLabel: "Wat Arun", + }, + { + location: "http://www.wikidata.org/entity/Q178114", + cordinates: "Point(-77.035244444 38.889475)", + locationLabel: "Washington Monument", + }, + { + location: "http://www.wikidata.org/entity/Q941276", + cordinates: "Point(-1.584166666 52.279722222)", + locationLabel: "Warwick Castle", + }, + { + location: "http://www.wikidata.org/entity/Q27924395", + cordinates: "Point(-0.418095 51.690447)", + locationLabel: + "Warner Bros. Studio Tour London – The Making of Harry Potter", + }, + { + location: "http://www.wikidata.org/entity/Q53679505", + cordinates: "Point(61.894685 56.418484)", + locationLabel: "Warehouses Kamensky plant", + }, + { + location: "http://www.wikidata.org/entity/Q206859", + cordinates: "Point(-81.5794 28.4038)", + locationLabel: "Walt Disney World Resort", + }, + { + location: "http://www.wikidata.org/entity/Q7962595", + cordinates: "Point(-102.241795 43.993231)", + locationLabel: "Wall Drug", + }, + { + location: "http://www.wikidata.org/entity/Q656280", + cordinates: "Point(-4.0 52.39)", + locationLabel: "Wales Coast Path", + }, + { + location: "http://www.wikidata.org/entity/Q12072389", + cordinates: "Point(-155.997 20.7858)", + locationLabel: "Wai'anapanapa State Park", + }, + { + location: "http://www.wikidata.org/entity/Q4120550", + cordinates: "Point(42.873055555 25.806111111)", + locationLabel: "Wadi al-Rummah", + }, + { + location: "http://www.wikidata.org/entity/Q1236708", + cordinates: "Point(16.54125 59.61252778)", + locationLabel: "Västerås Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q16667017", + cordinates: "Point(30.33038333 59.97721389)", + locationLabel: "Vyborgskaya cotton-spinning manufactory", + }, + { + location: "http://www.wikidata.org/entity/Q16710448", + cordinates: "Point(37.603846 55.747383)", + locationLabel: "Vyazemskiy-Dolgorukiy estate", + }, + { + location: "http://www.wikidata.org/entity/Q3279059", + cordinates: "Point(20.4528 44.8132)", + locationLabel: "Vučo’s House on the Sava River", + }, + { + location: "http://www.wikidata.org/entity/Q860536", + cordinates: "Point(15.51805556 58.48222222)", + locationLabel: "Vreta Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q4126817", + cordinates: "Point(32.619618 63.072341)", + locationLabel: "Vottovaara", + }, + { + location: "http://www.wikidata.org/entity/Q56854090", + cordinates: "Point(39.195833333 51.673888888)", + locationLabel: "Voronezh TV-tower", + }, + { + location: "http://www.wikidata.org/entity/Q16721871", + cordinates: "Point(44.4832 48.68834)", + locationLabel: "Volgograd Grain Elevator", + }, + { + location: "http://www.wikidata.org/entity/Q105719030", + cordinates: "Point(39.701098 47.218945)", + locationLabel: "Voitsekhovsky revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q66362077", + cordinates: "Point(26.563180555 48.674055555)", + locationLabel: "Vodyana Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4112958", + cordinates: "Point(131.8766 43.1224)", + locationLabel: "Vladivostok Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q65157143", + cordinates: "Point(44.681342 43.024523)", + locationLabel: "Vladikavkaz Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q385254", + cordinates: "Point(14.1452987 55.8552662)", + locationLabel: "Vittskövle Church", + }, + { + location: "http://www.wikidata.org/entity/Q14709314", + cordinates: "Point(-122.244 45.54)", + locationLabel: "Vista House", + }, + { + location: "http://www.wikidata.org/entity/Q26253138", + cordinates: "Point(18.10905 59.32523)", + locationLabel: "Village Hall of Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q19358939", + cordinates: "Point(8.81246 45.81679)", + locationLabel: "Villa Recalcati", + }, + { + location: "http://www.wikidata.org/entity/Q12099621", + cordinates: "Point(35.382285 45.037733)", + locationLabel: "Villa Milos, Feodosia", + }, + { + location: "http://www.wikidata.org/entity/Q4012306", + cordinates: "Point(8.8287 45.82572)", + locationLabel: "Villa Menafoglio Litta Panza", + }, + { + location: "http://www.wikidata.org/entity/Q4012306", + cordinates: "Point(8.829054 45.825005)", + locationLabel: "Villa Menafoglio Litta Panza", + }, + { + location: "http://www.wikidata.org/entity/Q4012260", + cordinates: "Point(9.39901 45.85254)", + locationLabel: "Villa Manzoni", + }, + { + location: "http://www.wikidata.org/entity/Q4142415", + cordinates: "Point(34.41357 44.675216)", + locationLabel: "Villa Golubka", + }, + { + location: "http://www.wikidata.org/entity/Q104713411", + cordinates: "Point(34.96488 44.84199)", + locationLabel: "Villa Funka", + }, + { + location: "http://www.wikidata.org/entity/Q60864294", + cordinates: "Point(34.164777777 44.494569444)", + locationLabel: "Villa Elena Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q644191", + cordinates: "Point(20.500724315 54.720072092)", + locationLabel: "Victory Square", + }, + { + location: "http://www.wikidata.org/entity/Q155643", + cordinates: "Point(114.173619444 22.287752777)", + locationLabel: "Victoria Harbour", + }, + { + location: "http://www.wikidata.org/entity/Q10715038", + cordinates: "Point(20.61279 66.4179)", + locationLabel: "Victoria Fort", + }, + { + location: "http://www.wikidata.org/entity/Q1792133", + cordinates: "Point(9.33183 46.5163)", + locationLabel: "Via Spluga", + }, + { + location: "http://www.wikidata.org/entity/Q641556", + cordinates: "Point(10.994444444 45.438888888)", + locationLabel: "Verona Arena", + }, + { + location: "http://www.wikidata.org/entity/Q41805883", + cordinates: "Point(22.7363598 43.6304464)", + locationLabel: "Venetsa", + }, + { + location: "http://www.wikidata.org/entity/Q10713484", + cordinates: "Point(18.35945 59.402883)", + locationLabel: "Vaxholm Fortress Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2627611", + cordinates: "Point(18.35972222 59.40305556)", + locationLabel: "Vaxholm Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q2119637", + cordinates: "Point(12.453293 41.902301)", + locationLabel: "Vatican Necropolis", + }, + { + location: "http://www.wikidata.org/entity/Q20656072", + cordinates: "Point(18.10671 59.32889)", + locationLabel: "Vastveit Storehouse, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q16646116", + cordinates: "Point(39.70983611 47.22444722)", + locationLabel: "Vasily Kushnarev revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q19731091", + cordinates: "Point(37.6333 55.7534)", + locationLabel: "Varvarsky Gate", + }, + { + location: "http://www.wikidata.org/entity/Q860739", + cordinates: "Point(13.654166666 58.384166666)", + locationLabel: "Varnhem Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q847100", + cordinates: "Point(12.241566666 57.1043)", + locationLabel: "Varberg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q2096449", + cordinates: "Point(17.62638889 59.92611111)", + locationLabel: "Valsgärde", + }, + { + location: "http://www.wikidata.org/entity/Q2096449", + cordinates: "Point(17.626612 59.926113)", + locationLabel: "Valsgärde", + }, + { + location: "http://www.wikidata.org/entity/Q26253697", + cordinates: "Point(14.8876 58.4472)", + locationLabel: "Vadstena Town Hall", + }, + { + location: "http://www.wikidata.org/entity/Q1757808", + cordinates: "Point(14.88361111 58.44597222)", + locationLabel: "Vadstena Castle", + }, + { + location: "http://www.wikidata.org/entity/Q513949", + cordinates: "Point(14.891388888 58.450555555)", + locationLabel: "Vadstena Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q12085271", + cordinates: "Point(31.325467 51.502261)", + locationLabel: "V. Tarnovskyi House Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1095336", + cordinates: "Point(40.294444444 40.619444444)", + locationLabel: "Uzungöl", + }, + { + location: "http://www.wikidata.org/entity/Q4477796", + cordinates: "Point(39.759554 52.023204)", + locationLabel: "Usmansky Defensive Wall", + }, + { + location: "http://www.wikidata.org/entity/Q3552548", + cordinates: "Point(-1.66116 54.78818)", + locationLabel: "Ushaw College", + }, + { + location: "http://www.wikidata.org/entity/Q913981", + cordinates: "Point(-4.442 57.324)", + locationLabel: "Urquhart Castle", + }, + { + location: "http://www.wikidata.org/entity/Q30064161", + cordinates: "Point(19.075747191 50.221234161)", + locationLabel: "Urban layout of Giszowiec housing estate", + }, + { + location: "http://www.wikidata.org/entity/Q850042", + cordinates: "Point(17.633333333 59.858055555)", + locationLabel: "Uppsala Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q1475894", + cordinates: "Point(17.63543 59.85359)", + locationLabel: "Uppsala Castle", + }, + { + location: "http://www.wikidata.org/entity/Q65028032", + cordinates: "Point(9.95006 48.38211)", + locationLabel: "Upper Kuhberg Fort", + }, + { + location: "http://www.wikidata.org/entity/Q72176536", + cordinates: "Point(30.7269123 36.9638177)", + locationLabel: "Upper Düden Waterfalls", + }, + { + location: "http://www.wikidata.org/entity/Q7897545", + cordinates: "Point(-79.051769 35.913662)", + locationLabel: "Unsung Founders Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q1186714", + cordinates: "Point(103.821666666 1.255)", + locationLabel: "Universal Studios Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q29000829", + cordinates: "Point(38.9173 47.220983)", + locationLabel: "Underpasses of Taganrog", + }, + { + location: "http://www.wikidata.org/entity/Q2293110", + cordinates: "Point(20.161666666 63.836666666)", + locationLabel: "Umedalen skulpturpark", + }, + { + location: "http://www.wikidata.org/entity/Q925688", + cordinates: "Point(29.218055555 40.0725)", + locationLabel: "Uludağ", + }, + { + location: "http://www.wikidata.org/entity/Q190497", + cordinates: "Point(32.87305556 39.93833333)", + locationLabel: "Ulucanlar Prison Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56063386", + cordinates: "Point(128.471396558 38.195743268)", + locationLabel: "Ulsanbawi", + }, + { + location: "http://www.wikidata.org/entity/Q176860", + cordinates: "Point(18.016944444 59.390277777)", + locationLabel: "Ulriksdal Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4342477", + cordinates: "Point(37.642777777 55.755833333)", + locationLabel: "Ukraintsev chambers", + }, + { + location: "http://www.wikidata.org/entity/Q2475430", + cordinates: "Point(24.660061 41.514161)", + locationLabel: "Uhlovitsa", + }, + { + location: "http://www.wikidata.org/entity/Q322286", + cordinates: "Point(10.5531 52.9697)", + locationLabel: "Uelzen station", + }, + { + location: "http://www.wikidata.org/entity/Q131875", + cordinates: "Point(80.888455555 6.438344444)", + locationLabel: "Udawalawe National Park", + }, + { + location: "http://www.wikidata.org/entity/Q210654", + cordinates: "Point(115.262358 -8.506875)", + locationLabel: "Ubud", + }, + { + location: "http://www.wikidata.org/entity/Q23018405", + cordinates: "Point(-122.67916667 45.61555556)", + locationLabel: "USS LCI(L)-713", + }, + { + location: "http://www.wikidata.org/entity/Q253430", + cordinates: "Point(18.30472222 59.23527778)", + locationLabel: "Tyresö Palace", + }, + { + location: "http://www.wikidata.org/entity/Q57555918", + cordinates: "Point(-88.49558 39.45888)", + locationLabel: "Two-Story Outhouse", + }, + { + location: "http://www.wikidata.org/entity/Q4453284", + cordinates: "Point(35.91777778 56.86388889)", + locationLabel: "Tver River Terminal", + }, + { + location: "http://www.wikidata.org/entity/Q55559766", + cordinates: "Point(35.070333333 32.922527777)", + locationLabel: "Turkish bazaar", + }, + { + location: "http://www.wikidata.org/entity/Q72706801", + cordinates: "Point(7.684784 45.081235)", + locationLabel: "Turin Eye", + }, + { + location: "http://www.wikidata.org/entity/Q16673121", + cordinates: "Point(55.21849 54.60489)", + locationLabel: "Tura-khan Mausoleum", + }, + { + location: "http://www.wikidata.org/entity/Q4115280", + cordinates: "Point(114.171 22.3191)", + locationLabel: "Tung Choi Street", + }, + { + location: "http://www.wikidata.org/entity/Q26246069", + cordinates: "Point(112.916939 -8.230408)", + locationLabel: "Tumpak Sewu Waterfalls", + }, + { + location: "http://www.wikidata.org/entity/Q725883", + cordinates: "Point(-87.428888888 20.214722222)", + locationLabel: "Tulum", + }, + { + location: "http://www.wikidata.org/entity/Q396496", + cordinates: "Point(17.584444444 58.950277777)", + locationLabel: "Tullgarn Palace", + }, + { + location: "http://www.wikidata.org/entity/Q29146953", + cordinates: "Point(42.029383 46.885718)", + locationLabel: "Tulips peninsula", + }, + { + location: "http://www.wikidata.org/entity/Q99541305", + cordinates: "Point(139.773389 35.712587)", + locationLabel: "Tsuki no Matsu", + }, + { + location: "http://www.wikidata.org/entity/Q1621200", + cordinates: "Point(30.415833333 59.723333333)", + locationLabel: "Tsarskoye Selo", + }, + { + location: "http://www.wikidata.org/entity/Q147994", + cordinates: "Point(37.682777777 55.616111111)", + locationLabel: "Tsaritsyno Park", + }, + { + location: "http://www.wikidata.org/entity/Q1822330", + cordinates: "Point(37.61638 55.75064)", + locationLabel: "Tsarina's Golden Chamber", + }, + { + location: "http://www.wikidata.org/entity/Q28372895", + cordinates: "Point(39.74 47.228888888)", + locationLabel: "Tsar Nicholas City Hospital, Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q147875", + cordinates: "Point(37.618333333 55.750833333)", + locationLabel: "Tsar Bell", + }, + { + location: "http://www.wikidata.org/entity/Q868772", + cordinates: "Point(-73.974166666 40.7625)", + locationLabel: "Trump Tower", + }, + { + location: "http://www.wikidata.org/entity/Q56118401", + cordinates: "Point(78.6350133 10.877862)", + locationLabel: "Tropical butterfly conservatory, Trichy", + }, + { + location: "http://www.wikidata.org/entity/Q4463524", + cordinates: "Point(37.613611111 55.752222222)", + locationLabel: "Troitsky Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q28667669", + cordinates: "Point(127.521648 50.256857)", + locationLabel: "Triumphal arch in Blagoveshchensk", + }, + { + location: "http://www.wikidata.org/entity/Q21644718", + cordinates: "Point(36.249048 54.507474)", + locationLabel: "Trinity Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q684774", + cordinates: "Point(8.3575 46.694166666)", + locationLabel: "Trift Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q185382", + cordinates: "Point(12.483166666 41.900875)", + locationLabel: "Trevi Fountain", + }, + { + location: "http://www.wikidata.org/entity/Q4167354", + cordinates: "Point(37.623177777 55.76235)", + locationLabel: "Tretyakovs revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q10384502", + cordinates: "Point(-2.2018 52.9634)", + locationLabel: "Trentham Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q9337727", + cordinates: "Point(18.0722 59.3261)", + locationLabel: "Treasury of Sweden", + }, + { + location: "http://www.wikidata.org/entity/Q56347234", + cordinates: "Point(-51.0495699 0.0348631)", + locationLabel: "Trapiche Eliezer Levy", + }, + { + location: "http://www.wikidata.org/entity/Q2942893", + cordinates: "Point(135.066944444 48.466111111)", + locationLabel: "Transfiguration Cathedral, Khabarovsk", + }, + { + location: "http://www.wikidata.org/entity/Q129143", + cordinates: "Point(-0.128055555 51.508055555)", + locationLabel: "Trafalgar Square", + }, + { + location: "http://www.wikidata.org/entity/Q4461031", + cordinates: "Point(40.4483 56.4197)", + locationLabel: "Trade Rows in Suzdal", + }, + { + location: "http://www.wikidata.org/entity/Q51225255", + cordinates: "Point(37.646944444 55.745833333)", + locationLabel: "Town estate of D. F. Belyaev", + }, + { + location: "http://www.wikidata.org/entity/Q4080249", + cordinates: "Point(37.620821 54.196037)", + locationLabel: "Tower of Water Gate", + }, + { + location: "http://www.wikidata.org/entity/Q4080270", + cordinates: "Point(37.618519 54.195869)", + locationLabel: "Tower of Pyatnitsky Gate", + }, + { + location: "http://www.wikidata.org/entity/Q1523761", + cordinates: "Point(23.979839 40.325036)", + locationLabel: "Tower of Ouranopolis", + }, + { + location: "http://www.wikidata.org/entity/Q4080266", + cordinates: "Point(37.619339 54.194242)", + locationLabel: "Tower of Odoevsky Gate", + }, + { + location: "http://www.wikidata.org/entity/Q62378", + visitors: "2741126", + cordinates: "Point(-0.076198055 51.5082)", + locationLabel: "Tower of London", + }, + { + location: "http://www.wikidata.org/entity/Q4080256", + cordinates: "Point(37.622228 54.194239)", + locationLabel: "Tower of Ivanovsky Gate", + }, + { + location: "http://www.wikidata.org/entity/Q4080262", + cordinates: "Point(37.621974 54.195476)", + locationLabel: "Tower Na Pogrebu", + }, + { + location: "http://www.wikidata.org/entity/Q105576136", + cordinates: "Point(-80.0277223 45.3393756)", + locationLabel: "Tower Hill Lookout", + }, + { + location: "http://www.wikidata.org/entity/Q83125", + cordinates: "Point(-0.075405555 51.5055)", + locationLabel: "Tower Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q17640070", + cordinates: "Point(2.23528 48.8889)", + locationLabel: "Tour Hekla", + }, + { + location: "http://www.wikidata.org/entity/Q901646", + cordinates: "Point(-72.96638889 -50.98305556)", + locationLabel: "Torres del Paine National Park", + }, + { + location: "http://www.wikidata.org/entity/Q19368528", + cordinates: "Point(8.792603 45.840251)", + locationLabel: "Torre di Velate", + }, + { + location: "http://www.wikidata.org/entity/Q61992405", + cordinates: "Point(-43.978888888 -20.195166666)", + locationLabel: "Topo do Mundo", + }, + { + location: "http://www.wikidata.org/entity/Q170495", + visitors: "1932726", + cordinates: "Point(28.984 41.013)", + locationLabel: "Topkapı Palace", + }, + { + location: "http://www.wikidata.org/entity/Q63863132", + cordinates: "Point(35.445522 30.320461)", + locationLabel: "Tomb of the Roman Soldier", + }, + { + location: "http://www.wikidata.org/entity/Q12838148", + cordinates: "Point(46.35827 40.677456)", + locationLabel: "Tomb of Javad Khan", + }, + { + location: "http://www.wikidata.org/entity/Q2635530", + cordinates: "Point(53.167188 30.193921)", + locationLabel: "Tomb of Cyrus the Great", + }, + { + location: "http://www.wikidata.org/entity/Q11897960", + cordinates: "Point(25.745 62.237222)", + locationLabel: "Toivola Old Courtyard", + }, + { + location: "http://www.wikidata.org/entity/Q13098007", + cordinates: "Point(110.3483 -7.5309)", + locationLabel: "Tlatar", + }, + { + location: "http://www.wikidata.org/entity/Q16703978", + cordinates: "Point(30.341944 59.91535)", + locationLabel: "Tkachy", + }, + { + location: "http://www.wikidata.org/entity/Q7810631", + cordinates: "Point(98.68033 3.58545)", + locationLabel: "Tjong A Fie Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q7810147", + cordinates: "Point(8.426169444 46.770663888)", + locationLabel: "Titlis Cliff Walk", + }, + { + location: "http://www.wikidata.org/entity/Q35342", + cordinates: "Point(-69.416666666 -15.75)", + locationLabel: "Titicaca", + }, + { + location: "http://www.wikidata.org/entity/Q924254", + visitors: "650000", + cordinates: "Point(-5.90975 54.6083)", + locationLabel: "Titanic Belfast", + }, + { + location: "http://www.wikidata.org/entity/Q17094038", + cordinates: "Point(39.187 -6.16403)", + locationLabel: "Tippu Tip's House", + }, + { + location: "http://www.wikidata.org/entity/Q18333940", + cordinates: "Point(18.610983333 57.735566666)", + locationLabel: "Tingstäde Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q66309177", + cordinates: "Point(31.563055555 -24.961666666)", + locationLabel: "Tinga private lodges", + }, + { + location: "http://www.wikidata.org/entity/Q11259", + cordinates: "Point(-73.985708 40.75773)", + locationLabel: "Times Square", + }, + { + location: "http://www.wikidata.org/entity/Q7802833", + cordinates: "Point(-122.482 47.5417)", + locationLabel: "Tillicum Village", + }, + { + location: "http://www.wikidata.org/entity/Q7800937", + cordinates: "Point(16.4783 59.5056)", + locationLabel: "Tidö Castle", + }, + { + location: "http://www.wikidata.org/entity/Q528079", + cordinates: "Point(113.905144444 22.254105555)", + locationLabel: "Tian Tan Buddha", + }, + { + location: "http://www.wikidata.org/entity/Q47419907", + cordinates: "Point(2.337833333 48.871083333)", + locationLabel: "Théâtre Favart", + }, + { + location: "http://www.wikidata.org/entity/Q9347441", + cordinates: "Point(18.6309 49.7484)", + locationLabel: "Three Brothers Well", + }, + { + location: "http://www.wikidata.org/entity/Q252259", + visitors: "76334", + cordinates: "Point(18.14861111 59.32222222)", + locationLabel: "Thiel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4304294", + cordinates: "Point(37.59961111 55.76647222)", + locationLabel: "Theatre of the Young Spectator", + }, + { + location: "http://www.wikidata.org/entity/Q260592", + cordinates: "Point(18.01731944 59.38629167)", + locationLabel: "Theater Confidencen", + }, + { + location: "http://www.wikidata.org/entity/Q10434994", + cordinates: "Point(18.10813 59.3273)", + locationLabel: "The tower Bredablick, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q1493142", + cordinates: "Point(15.58972222 58.40583333)", + locationLabel: "The open-air museum Old Linköping", + }, + { + location: "http://www.wikidata.org/entity/Q55586076", + cordinates: "Point(10.226111111 45.539722222)", + locationLabel: + "The monumental area with the monastic complex of San Salvatore-Santa Giulia", + }, + { + location: "http://www.wikidata.org/entity/Q10572820", + cordinates: "Point(17.384722222 62.557777777)", + locationLabel: "The iron factory Lögdö bruk", + }, + { + location: "http://www.wikidata.org/entity/Q4091854", + cordinates: "Point(-0.29578333 51.47129167)", + locationLabel: "The great Pagoda (London)", + }, + { + location: "http://www.wikidata.org/entity/Q13667977", + cordinates: "Point(39.716666666 47.233333333)", + locationLabel: "The fountain on the Theater Square", + }, + { + location: "http://www.wikidata.org/entity/Q10510287", + cordinates: "Point(17.020917921 62.660728642)", + locationLabel: "The farm Gudmundstjärn", + }, + { + location: "http://www.wikidata.org/entity/Q16913064", + cordinates: "Point(17.23694 40.7825)", + locationLabel: "The Trulli of Alberobello", + }, + { + location: "http://www.wikidata.org/entity/Q28946377", + cordinates: "Point(26.4055136 40.152175)", + locationLabel: "The Trojan Horse Statue", + }, + { + location: "http://www.wikidata.org/entity/Q4211290", + cordinates: "Point(37.627917 55.83222)", + locationLabel: "The Stone Flower Fountain", + }, + { + location: "http://www.wikidata.org/entity/Q7762396", + cordinates: "Point(-79.944 40.4992)", + locationLabel: "The ScareHouse", + }, + { + location: "http://www.wikidata.org/entity/Q28843420", + cordinates: "Point(39.741666666 47.232777777)", + locationLabel: "The Rostov Waterpipe Museum", + }, + { + location: "http://www.wikidata.org/entity/Q29168648", + cordinates: "Point(39.733878 47.219629)", + locationLabel: "The Rich Well", + }, + { + location: "http://www.wikidata.org/entity/Q10638094", + cordinates: "Point(18.10321389 59.32648056)", + locationLabel: "The Post Office (the exhibit of Skansen)", + }, + { + location: "http://www.wikidata.org/entity/Q11208", + cordinates: "Point(-77.055833 38.871111)", + locationLabel: "The Pentagon", + }, + { + location: "http://www.wikidata.org/entity/Q2047427", + cordinates: "Point(116.39083333 39.91555556)", + locationLabel: "The Palace Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15961492", + cordinates: "Point(28.97982222 41.03093056)", + locationLabel: "The Museum of Innocence", + }, + { + location: "http://www.wikidata.org/entity/Q1601986", + cordinates: "Point(44.537083333 48.742277777)", + locationLabel: "The Motherland Calls", + }, + { + location: "http://www.wikidata.org/entity/Q60154741", + cordinates: "Point(110.451413 -7.60424)", + locationLabel: "The Lost World Castle", + }, + { + location: "http://www.wikidata.org/entity/Q7748032", + cordinates: "Point(-0.0881 51.5065)", + locationLabel: "The London Bridge Experience", + }, + { + location: "http://www.wikidata.org/entity/Q28871811", + cordinates: "Point(39.424174 47.111847)", + locationLabel: "The House of Kovalev", + }, + { + location: "http://www.wikidata.org/entity/Q10680993", + cordinates: "Point(18.1005 59.32540833)", + locationLabel: "The Hook Big Swing, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q2681107", + cordinates: "Point(103.861 1.28762)", + locationLabel: "The Helix Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q130958", + cordinates: "Point(31.137777777 29.975277777)", + locationLabel: "The Great Sphinx", + }, + { + location: "http://www.wikidata.org/entity/Q1138030", + cordinates: "Point(-73.9319 40.8648)", + locationLabel: "The Cloisters", + }, + { + location: "http://www.wikidata.org/entity/Q16710572", + cordinates: "Point(30.275555555 59.933333333)", + locationLabel: "The Church of the Dormition of the Mother of God", + }, + { + location: "http://www.wikidata.org/entity/Q17543757", + cordinates: "Point(0.160687 52.6641)", + locationLabel: "The Castle", + }, + { + location: "http://www.wikidata.org/entity/Q7715823", + cordinates: "Point(103.8462345 1.296123)", + locationLabel: "The Battle Box", + }, + { + location: "http://www.wikidata.org/entity/Q11995904", + cordinates: "Point(15.32363056 66.55258333)", + locationLabel: "The Arctic Circle Centre", + }, + { + location: "http://www.wikidata.org/entity/Q4109187", + cordinates: "Point(37.616297 55.75077)", + locationLabel: "Terem Churches", + }, + { + location: "http://www.wikidata.org/entity/Q55344728", + cordinates: "Point(30.3972816 59.7193526)", + locationLabel: "Tepper's House in Tsarskoye Selo", + }, + { + location: "http://www.wikidata.org/entity/Q40846", + cordinates: "Point(-16.605555555 28.268611111)", + locationLabel: "Tenerife", + }, + { + location: "http://www.wikidata.org/entity/Q66362610", + cordinates: "Point(26.562638888 48.673166666)", + locationLabel: "Tenchinska Tower", + }, + { + location: "http://www.wikidata.org/entity/Q289175", + cordinates: "Point(80.64125783 7.29365017)", + locationLabel: "Temple of the Tooth", + }, + { + location: "http://www.wikidata.org/entity/Q59809776", + cordinates: "Point(42.736494444 43.897044444)", + locationLabel: "Temple of Air", + }, + { + location: "http://www.wikidata.org/entity/Q19909509", + cordinates: "Point(39.2051625 51.6644338)", + locationLabel: "Teatralnaya Street, 36", + }, + { + location: "http://www.wikidata.org/entity/Q28359751", + cordinates: "Point(39.705 47.2244)", + locationLabel: "Teatr-cirk Mashonkinykh", + }, + { + location: "http://www.wikidata.org/entity/Q97039797", + cordinates: "Point(176.25057 -38.1644)", + locationLabel: "Te Aronui-a-Rua", + }, + { + location: "http://www.wikidata.org/entity/Q51949859", + cordinates: "Point(43.997351 56.327621)", + locationLabel: "Taynitskaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q1486703", + cordinates: "Point(44.580722222 33.093722222)", + locationLabel: "Taq-i Kisra", + }, + { + location: "http://www.wikidata.org/entity/Q7684107", + cordinates: "Point(39.275814 -6.802356)", + locationLabel: "Tanzania Buddhist Temple and Meditation Center", + }, + { + location: "http://www.wikidata.org/entity/Q18346699", + cordinates: "Point(27.094444444 68.179166666)", + locationLabel: "Tankavaara", + }, + { + location: "http://www.wikidata.org/entity/Q18346699", + cordinates: "Point(27.1001554 68.1806379)", + locationLabel: "Tankavaara", + }, + { + location: "http://www.wikidata.org/entity/Q16437052", + cordinates: "Point(79.230089 45.198078)", + locationLabel: "Taneke Batyr", + }, + { + location: "http://www.wikidata.org/entity/Q3736402", + cordinates: "Point(26.57666667 57.91722222)", + locationLabel: "Tamme-Lauri oak", + }, + { + location: "http://www.wikidata.org/entity/Q61779285", + cordinates: "Point(25.61057 45.53371)", + locationLabel: "Tamina Gorge", + }, + { + location: "http://www.wikidata.org/entity/Q12342921", + cordinates: "Point(8.61109 55.64908)", + locationLabel: "Tambours have", + }, + { + location: "http://www.wikidata.org/entity/Q66309100", + cordinates: "Point(31.403888888 -24.455555555)", + locationLabel: "Tamboti Camp", + }, + { + location: "http://www.wikidata.org/entity/Q13097646", + cordinates: "Point(110.368 -7.80056)", + locationLabel: "Taman Pintar Yogyakarta", + }, + { + location: "http://www.wikidata.org/entity/Q7680272", + cordinates: "Point(144.737 13.3237)", + locationLabel: "Talofofo Falls", + }, + { + location: "http://www.wikidata.org/entity/Q9141", + visitors: "10000000", + cordinates: "Point(78.042222222 27.174166666)", + locationLabel: "Taj Mahal", + }, + { + location: "http://www.wikidata.org/entity/Q4452833", + cordinates: "Point(28.083333333 63.208333333)", + locationLabel: "Tahkovuori", + }, + { + location: "http://www.wikidata.org/entity/Q28966963", + cordinates: "Point(38.945939 47.202236)", + locationLabel: "Taganrog lighthouse", + }, + { + location: "http://www.wikidata.org/entity/Q16653756", + cordinates: "Point(38.9255 47.2172)", + locationLabel: "Taganrog Town Council Building", + }, + { + location: "http://www.wikidata.org/entity/Q4242002", + cordinates: "Point(38.913158333 47.217527777)", + locationLabel: "Taganrog Round House", + }, + { + location: "http://www.wikidata.org/entity/Q28870366", + cordinates: "Point(38.928134 47.214213)", + locationLabel: "Taganrog Post Office", + }, + { + location: "http://www.wikidata.org/entity/Q4449562", + cordinates: "Point(38.9205 47.22)", + locationLabel: "Taganrog Palace of Youth", + }, + { + location: "http://www.wikidata.org/entity/Q7675155", + cordinates: "Point(38.95 47.205)", + locationLabel: "Taganrog Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q4399", + cordinates: "Point(46.292286111 38.080772222)", + locationLabel: "Tabriz Bazaar", + }, + { + location: "http://www.wikidata.org/entity/Q213360", + cordinates: "Point(18.403108333 -33.957313888)", + locationLabel: "Table Mountain", + }, + { + location: "http://www.wikidata.org/entity/Q939811", + cordinates: "Point(-2.45 37.0)", + locationLabel: "Tabernas Desert", + }, + { + location: "http://www.wikidata.org/entity/Q1419157", + cordinates: "Point(39.65833333 40.69)", + locationLabel: "Sümela Monastery", + }, + { + location: "http://www.wikidata.org/entity/Q63349559", + cordinates: "Point(40.23744 37.91157)", + locationLabel: "Sülüklü Inn", + }, + { + location: "http://www.wikidata.org/entity/Q178643", + cordinates: "Point(28.963888888 41.016111111)", + locationLabel: "Süleymaniye Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q65029016", + cordinates: "Point(9.95556 48.40459)", + locationLabel: "Söflinger Fort", + }, + { + location: "http://www.wikidata.org/entity/Q906846", + cordinates: "Point(15.88222222 59.04611111)", + locationLabel: "Sävstaholm Castle", + }, + { + location: "http://www.wikidata.org/entity/Q52080103", + cordinates: "Point(37.60147455 55.76424741)", + locationLabel: "Sytin's house in Sytinsky lane", + }, + { + location: "http://www.wikidata.org/entity/Q45178", + visitors: "7000000", + cordinates: "Point(151.214897 -33.857058)", + locationLabel: "Sydney Opera House", + }, + { + location: "http://www.wikidata.org/entity/Q25220", + cordinates: "Point(8.5 46.5)", + locationLabel: "Swiss Alps", + }, + { + location: "http://www.wikidata.org/entity/Q7653429", + cordinates: "Point(115.858 -31.9589)", + locationLabel: "Swan Bells", + }, + { + location: "http://www.wikidata.org/entity/Q630822", + cordinates: "Point(18.13 59.31)", + locationLabel: "Svindersvik", + }, + { + location: "http://www.wikidata.org/entity/Q4410311", + cordinates: "Point(108.758538 53.271458)", + locationLabel: "Svetlaya Polyana", + }, + { + location: "http://www.wikidata.org/entity/Q1059426", + cordinates: "Point(40.4431 56.4164)", + locationLabel: "Suzdal Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q503256", + cordinates: "Point(1.33882 52.0898)", + locationLabel: "Sutton Hoo", + }, + { + location: "http://www.wikidata.org/entity/Q16683722", + cordinates: "Point(39.70983611 47.22444722)", + locationLabel: "Suprunov mansion", + }, + { + location: "http://www.wikidata.org/entity/Q28975951", + cordinates: "Point(38.937486 47.212735)", + locationLabel: "Sundial, Taganrog", + }, + { + location: "http://www.wikidata.org/entity/Q54005402", + cordinates: "Point(60.40988 56.547665)", + locationLabel: "Sundial in Mramorskoye", + }, + { + location: "http://www.wikidata.org/entity/Q105047668", + cordinates: "Point(-71.87616 -14.25832)", + locationLabel: "Sun's Garden", + }, + { + location: "http://www.wikidata.org/entity/Q10123616", + cordinates: "Point(103.8471 1.3281)", + locationLabel: "Sun Yat Sen Nanyang Memorial Hall", + }, + { + location: "http://www.wikidata.org/entity/Q4446068", + cordinates: "Point(47.053743 41.467668)", + locationLabel: "Sumug-gala", + }, + { + location: "http://www.wikidata.org/entity/Q80541", + cordinates: "Point(28.9768247 41.0053851)", + locationLabel: "Sultan Ahmed Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q7636221", + cordinates: "Point(-61.0468 13.8382)", + locationLabel: "Sulfur Springs", + }, + { + location: "http://www.wikidata.org/entity/Q7636165", + cordinates: "Point(19.8219 41.3282)", + locationLabel: "Suleyman Pasha Tomb", + }, + { + location: "http://www.wikidata.org/entity/Q30890728", + cordinates: "Point(39.718646944 47.222443055)", + locationLabel: "Subways in Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q277305", + cordinates: "Point(17.75866667 59.25788889)", + locationLabel: "Sturehov Manor", + }, + { + location: "http://www.wikidata.org/entity/Q4444663", + cordinates: "Point(44.300917 46.301037)", + locationLabel: "Stupa Prosvetleniya", + }, + { + location: "http://www.wikidata.org/entity/Q5400669", + cordinates: "Point(25.06614 60.199068)", + locationLabel: "Strömsin kartano", + }, + { + location: "http://www.wikidata.org/entity/Q5400669", + cordinates: "Point(25.0661392 60.1991034)", + locationLabel: "Strömsin kartano", + }, + { + location: "http://www.wikidata.org/entity/Q5400669", + cordinates: "Point(25.066111 60.199167)", + locationLabel: "Strömsin kartano", + }, + { + location: "http://www.wikidata.org/entity/Q1416870", + cordinates: "Point(16.27 59.525)", + locationLabel: "Strömsholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1236697", + cordinates: "Point(17.03452 59.37558)", + locationLabel: "Strängnäs Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q301338", + cordinates: "Point(-2.317777777 51.106111111)", + locationLabel: "Stourhead", + }, + { + location: "http://www.wikidata.org/entity/Q39671", + cordinates: "Point(-1.826188888 51.178844444)", + locationLabel: "Stonehenge", + }, + { + location: "http://www.wikidata.org/entity/Q10679257", + cordinates: "Point(17.88688889 59.32147222)", + locationLabel: "Stone Hall of Drottningholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q26253125", + cordinates: "Point(18.10327 59.3276)", + locationLabel: "Stone Cottage, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q750444", + cordinates: "Point(18.071666666 59.326666666)", + locationLabel: "Stockholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1112746", + cordinates: "Point(18.04361111 59.33083333)", + locationLabel: "Stockholm Court House", + }, + { + location: "http://www.wikidata.org/entity/Q648483", + cordinates: "Point(18.054722 59.3275)", + locationLabel: "Stockholm City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q756268", + cordinates: "Point(-3.9481 56.124)", + locationLabel: "Stirling Castle", + }, + { + location: "http://www.wikidata.org/entity/Q85521329", + cordinates: "Point(13.0207028 47.7937051)", + locationLabel: "Stiegl-Brauwelt", + }, + { + location: "http://www.wikidata.org/entity/Q17038687", + cordinates: "Point(-97.750672 30.263109)", + locationLabel: "Stevie Ray Vaughan Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q7608503", + cordinates: "Point(23.5819 47.6583)", + locationLabel: "Stephen's Tower", + }, + { + location: "http://www.wikidata.org/entity/Q9202", + visitors: "4000000", + cordinates: "Point(-74.044425277 40.689209166)", + locationLabel: "Statue of Liberty", + }, + { + location: "http://www.wikidata.org/entity/Q53679492", + cordinates: "Point(59.9504802 57.906562)", + locationLabel: "Statue of Lenin in Nizhny Tagil", + }, + { + location: "http://www.wikidata.org/entity/Q10655274", + cordinates: "Point(17.88688889 59.32147222)", + locationLabel: "State Hall of Drottningholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4146750", + cordinates: "Point(76.86806944 43.22169444)", + locationLabel: "State Academic Russian Theatre for Children and Teenagers", + }, + { + location: "http://www.wikidata.org/entity/Q4439711", + cordinates: "Point(60.60611111 56.62583333)", + locationLabel: "Staraya Linza Quarry", + }, + { + location: "http://www.wikidata.org/entity/Q4155412", + cordinates: "Point(34.417983 44.675771)", + locationLabel: "Stakheev palace in Alushta", + }, + { + location: "http://www.wikidata.org/entity/Q1144973", + cordinates: "Point(-0.733333 52.009444)", + locationLabel: "Stadium mk", + }, + { + location: "http://www.wikidata.org/entity/Q50135339", + cordinates: "Point(30.334889 59.931833)", + locationLabel: "St. Petersburg Municipal Credit Society building", + }, + { + location: "http://www.wikidata.org/entity/Q12512", + visitors: "11000000", + cordinates: "Point(12.453305555 41.902194444)", + locationLabel: "St. Peter's Basilica", + }, + { + location: "http://www.wikidata.org/entity/Q1473597", + cordinates: "Point(6.84997 51.2975)", + locationLabel: "St. Peter und Paul, Ratingen", + }, + { + location: "http://www.wikidata.org/entity/Q1637128", + cordinates: "Point(30.300128 59.922378)", + locationLabel: "St. Nicholas Naval Cathedral, St. Petersburg", + }, + { + location: "http://www.wikidata.org/entity/Q4507644", + cordinates: "Point(82.92231 55.02713)", + locationLabel: "St. Nicholas Chappel in Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q28945791", + cordinates: "Point(39.948416666 47.438611111)", + locationLabel: "St. John the Evangelist Church", + }, + { + location: "http://www.wikidata.org/entity/Q28966124", + cordinates: "Point(40.90777778 48.025)", + locationLabel: "St. Catherine Church, Krasnodonetskaya", + }, + { + location: "http://www.wikidata.org/entity/Q129846", + cordinates: "Point(37.623055555 55.7525)", + locationLabel: "St. Basil's Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q173882", + cordinates: "Point(-0.098333 51.513611)", + locationLabel: "St Paul's Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q42298447", + cordinates: "Point(30.336807 59.940227)", + locationLabel: "St Michael's Church in St. Michael's Castle", + }, + { + location: "http://www.wikidata.org/entity/Q1335201", + cordinates: "Point(-0.126944444 51.508888888)", + locationLabel: "St Martin-in-the-Fields", + }, + { + location: "http://www.wikidata.org/entity/Q172988", + cordinates: "Point(12.339722222 45.434444444)", + locationLabel: "St Mark's Basilica", + }, + { + location: "http://www.wikidata.org/entity/Q7592419", + cordinates: "Point(-3.19306 55.9542)", + locationLabel: "St Andrew Square", + }, + { + location: "http://www.wikidata.org/entity/Q2428845", + cordinates: "Point(103.845 1.28261)", + locationLabel: "Sri Mariamman Temple, Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q7586152", + cordinates: "Point(101.696 3.14333)", + locationLabel: "Sri Mahamariamman Temple", + }, + { + location: "http://www.wikidata.org/entity/Q19915822", + cordinates: "Point(37.631111111 55.744444444)", + locationLabel: "Sredny Ovchinnikovsky Lane 10, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q19916717", + cordinates: "Point(43.976666666 56.334444444)", + locationLabel: "Spit of Nizhny Novgorod", + }, + { + location: "http://www.wikidata.org/entity/Q668641", + cordinates: "Point(28.970556 41.016389)", + locationLabel: "Spice Bazaar", + }, + { + location: "http://www.wikidata.org/entity/Q2416732", + cordinates: "Point(37.6214 55.7525)", + locationLabel: "Spasskaya Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4125276", + cordinates: "Point(37.545 55.71)", + locationLabel: "Sparrow Hills Sanctuary", + }, + { + location: "http://www.wikidata.org/entity/Q42412289", + cordinates: "Point(9.205011111 45.474380555)", + locationLabel: "Spanish walls of the historic center of Milan", + }, + { + location: "http://www.wikidata.org/entity/Q848072", + cordinates: "Point(12.48278 41.90611)", + locationLabel: "Spanish Steps", + }, + { + location: "http://www.wikidata.org/entity/Q206211", + cordinates: "Point(13.212222222 52.541388888)", + locationLabel: "Spandau Citadel", + }, + { + location: "http://www.wikidata.org/entity/Q5317", + cordinates: "Point(-122.3491 47.6204)", + locationLabel: "Space Needle", + }, + { + location: "http://www.wikidata.org/entity/Q50359413", + cordinates: "Point(82.93021 55.02571)", + locationLabel: "Soyuzzoloto House", + }, + { + location: "http://www.wikidata.org/entity/Q7570434", + cordinates: "Point(103.8165 1.2753)", + locationLabel: "Southern Ridges", + }, + { + location: "http://www.wikidata.org/entity/Q2339207", + cordinates: "Point(-0.116761111 51.505711111)", + locationLabel: "Southbank Centre", + }, + { + location: "http://www.wikidata.org/entity/Q223000", + cordinates: "Point(-74.0033 40.7061)", + locationLabel: "South Street Seaport", + }, + { + location: "http://www.wikidata.org/entity/Q20484149", + cordinates: "Point(69.586296111 42.31575)", + locationLabel: "South Kazakhstan regional drama theater", + }, + { + location: "http://www.wikidata.org/entity/Q1995470", + cordinates: "Point(30.393356 59.705172)", + locationLabel: "Sophia Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q65548755", + cordinates: "Point(121.967861111 29.443861111)", + locationLabel: "Songlanshan", + }, + { + location: "http://www.wikidata.org/entity/Q1344889", + visitors: "2841772", + cordinates: "Point(-0.117194 51.511)", + locationLabel: "Somerset House", + }, + { + location: "http://www.wikidata.org/entity/Q1344889", + visitors: "3143626", + cordinates: "Point(-0.117194 51.511)", + locationLabel: "Somerset House", + }, + { + location: "http://www.wikidata.org/entity/Q1344889", + visitors: "3235104", + cordinates: "Point(-0.117194 51.511)", + locationLabel: "Somerset House", + }, + { + location: "http://www.wikidata.org/entity/Q1140434", + cordinates: "Point(35.710555555 65.024444444)", + locationLabel: "Solovetsky Monastery", + }, + { + location: "http://www.wikidata.org/entity/Q201469", + visitors: "1100000", + cordinates: "Point(-73.958888888 40.783055555)", + locationLabel: "Solomon R. Guggenheim Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20032008", + cordinates: "Point(37.632726 55.789325)", + locationLabel: "Solodovnikov Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q51882002", + cordinates: "Point(-48.500925 1.4708694)", + locationLabel: "Solar da Beira", + }, + { + location: "http://www.wikidata.org/entity/Q4167351", + cordinates: "Point(37.616833333 55.761658333)", + locationLabel: "Sokol revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q3022307", + cordinates: "Point(39.742609 43.571141)", + locationLabel: "Sochi Arboretum", + }, + { + location: "http://www.wikidata.org/entity/Q2295825", + cordinates: "Point(24.2786114 42.0042017)", + locationLabel: "Snezhanka", + }, + { + location: "http://www.wikidata.org/entity/Q21680864", + cordinates: "Point(-7.254169 52.653918)", + locationLabel: "Smithwick's Experience Kilkenny", + }, + { + location: "http://www.wikidata.org/entity/Q211480", + cordinates: "Point(-3.8286 53.2823)", + locationLabel: "Smallest House in Great Britain", + }, + { + location: "http://www.wikidata.org/entity/Q66363589", + cordinates: "Point(26.562188888 48.673877777)", + locationLabel: "Small West tower", + }, + { + location: "http://www.wikidata.org/entity/Q2746222", + cordinates: "Point(-117.918971 33.812796)", + locationLabel: "Sleeping Beauty Castle", + }, + { + location: "http://www.wikidata.org/entity/Q2746222", + cordinates: "Point(2.8043 48.8694)", + locationLabel: "Sleeping Beauty Castle", + }, + { + location: "http://www.wikidata.org/entity/Q2746222", + cordinates: "Point(114.041666666 22.311111111)", + locationLabel: "Sleeping Beauty Castle", + }, + { + location: "http://www.wikidata.org/entity/Q17546462", + cordinates: "Point(1.59776 52.1375)", + locationLabel: "Slaughden Martello tower", + }, + { + location: "http://www.wikidata.org/entity/Q1565363", + cordinates: "Point(17.93583333 59.57833333)", + locationLabel: "Skånelaholm Castle", + }, + { + location: "http://www.wikidata.org/entity/Q64434397", + cordinates: "Point(-97.517419 35.456218)", + locationLabel: "Skydance Pedestrian Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q7537159", + cordinates: "Point(-122.349 47.6206)", + locationLabel: "SkyCity", + }, + { + location: "http://www.wikidata.org/entity/Q1013435", + cordinates: "Point(31.5919 -24.9958)", + locationLabel: "Skukuza", + }, + { + location: "http://www.wikidata.org/entity/Q1891413", + visitors: "86098", + cordinates: "Point(17.61941 59.7038)", + locationLabel: "Skokloster Castle", + }, + { + location: "http://www.wikidata.org/entity/Q15589208", + cordinates: "Point(20.544166666 69.524166666)", + locationLabel: "Sjit helvedes kåken", + }, + { + location: "http://www.wikidata.org/entity/Q697968", + cordinates: "Point(120.26277778 22.62916667)", + locationLabel: "Sizihwan Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q2943", + cordinates: "Point(12.454444444 41.903055555)", + locationLabel: "Sistine Chapel", + }, + { + location: "http://www.wikidata.org/entity/Q7524921", + cordinates: "Point(35.14305556 42.02444444)", + locationLabel: "Sinop Fortress Prison", + }, + { + location: "http://www.wikidata.org/entity/Q375634", + cordinates: "Point(80.28 6.24)", + locationLabel: "Sinharaja Forest Reserve", + }, + { + location: "http://www.wikidata.org/entity/Q4375694", + cordinates: "Point(39.720472 43.584083)", + locationLabel: "Singing fountains", + }, + { + location: "http://www.wikidata.org/entity/Q2709506", + cordinates: "Point(103.791139 1.404417)", + locationLabel: "Singapore Zoo", + }, + { + location: "http://www.wikidata.org/entity/Q618988", + cordinates: "Point(103.874222 1.300694)", + locationLabel: "Singapore Indoor Stadium", + }, + { + location: "http://www.wikidata.org/entity/Q752407", + cordinates: "Point(103.863222 1.289389)", + locationLabel: "Singapore Flyer", + }, + { + location: "http://www.wikidata.org/entity/Q7522958", + cordinates: "Point(103.679 1.33248)", + locationLabel: "Singapore Discovery Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3484004", + cordinates: "Point(-82.0545 29.2181)", + locationLabel: "Silver Springs", + }, + { + location: "http://www.wikidata.org/entity/Q4417443", + cordinates: "Point(30.3472 60.0035)", + locationLabel: "Silver Pond", + }, + { + location: "http://www.wikidata.org/entity/Q833520", + cordinates: "Point(18.992304 50.290654)", + locationLabel: "Silesian Planetarium", + }, + { + location: "http://www.wikidata.org/entity/Q28934003", + cordinates: "Point(22.6446 65.8707)", + locationLabel: "Siknäs Fort", + }, + { + location: "http://www.wikidata.org/entity/Q272153", + cordinates: "Point(80.759722222 7.956944444)", + locationLabel: "Sigiriya", + }, + { + location: "http://www.wikidata.org/entity/Q7511756", + cordinates: "Point(-82.5507 27.2648)", + locationLabel: "Siesta Beach", + }, + { + location: "http://www.wikidata.org/entity/Q10667206", + cordinates: "Point(18.62345 59.5549)", + locationLabel: "Siarö Fort", + }, + { + location: "http://www.wikidata.org/entity/Q99557139", + cordinates: "Point(139.74889 35.66467)", + locationLabel: "Shusse no Ishidan", + }, + { + location: "http://www.wikidata.org/entity/Q12169763", + cordinates: "Point(32.05916667 49.42722222)", + locationLabel: "Shukhov Tower Cherkasy", + }, + { + location: "http://www.wikidata.org/entity/Q81637407", + cordinates: "Point(121.8654577 25.1229386)", + locationLabel: "Shuinandong Fishing Port", + }, + { + location: "http://www.wikidata.org/entity/Q28921563", + cordinates: "Point(39.725 47.224166666)", + locationLabel: "Shtrom revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q16495930", + cordinates: "Point(38.9317 47.2135)", + locationLabel: "Shtrimer Pharmacy", + }, + { + location: "http://www.wikidata.org/entity/Q2972516", + cordinates: "Point(60.527777777 56.813888888)", + locationLabel: "Shirokorechenskoe Cemetery", + }, + { + location: "http://www.wikidata.org/entity/Q28223454", + cordinates: "Point(31.434166666 -23.107777777)", + locationLabel: "Shingwedzi", + }, + { + location: "http://www.wikidata.org/entity/Q1532916", + cordinates: "Point(138.491666666 36.7)", + locationLabel: "Shiga Highlands", + }, + { + location: "http://www.wikidata.org/entity/Q7496185", + cordinates: "Point(-116.267 33.707)", + locationLabel: "Shields Date Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q695604", + cordinates: "Point(54.474 24.412)", + locationLabel: "Sheikh Zayed Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q856356", + cordinates: "Point(51.678535 32.657454)", + locationLabel: "Sheikh Lotfollah Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q52157902", + cordinates: "Point(37.582209 55.753457)", + locationLabel: "Shcherbatov apartment house", + }, + { + location: "http://www.wikidata.org/entity/Q2036269", + cordinates: "Point(60.6784 56.8429)", + locationLabel: "Shartash Stone Tents Rocks", + }, + { + location: "http://www.wikidata.org/entity/Q12299303", + cordinates: "Point(24.915652777 41.489741666)", + locationLabel: "Sharenka", + }, + { + location: "http://www.wikidata.org/entity/Q7489287", + cordinates: "Point(90.42159 23.72662)", + locationLabel: "Shapla Square", + }, + { + location: "http://www.wikidata.org/entity/Q7488638", + visitors: "9151", + cordinates: "Point(-81.3167 48.4697)", + locationLabel: "Shania Twain Centre", + }, + { + location: "http://www.wikidata.org/entity/Q80852", + cordinates: "Point(121.502777777 31.236666666)", + locationLabel: "Shanghai World Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q28032816", + cordinates: "Point(49.119802 55.78775)", + locationLabel: "Shalyapin Palace Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7725501", + cordinates: "Point(-0.0972222 51.5081)", + locationLabel: "Shakespeare's Globe", + }, + { + location: "http://www.wikidata.org/entity/Q1770409", + cordinates: "Point(-1.708 52.1939)", + locationLabel: "Shakespeare's Birthplace", + }, + { + location: "http://www.wikidata.org/entity/Q1957722", + cordinates: "Point(52.5433 29.609605555)", + locationLabel: "Shah Cheragh", + }, + { + location: "http://www.wikidata.org/entity/Q51946123", + cordinates: "Point(43.998097 56.328751)", + locationLabel: "Severnaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q16695855", + cordinates: "Point(37.611667 55.819722)", + locationLabel: "Seventh Heaven", + }, + { + location: "http://www.wikidata.org/entity/Q7457313", + cordinates: "Point(25.64333333 45.5675)", + locationLabel: "Seven Ladders Canyon", + }, + { + location: "http://www.wikidata.org/entity/Q4115152", + cordinates: "Point(57.373449 -20.440309)", + locationLabel: "Seven Coloured Earths", + }, + { + location: "http://www.wikidata.org/entity/Q4165394", + cordinates: "Point(60.606388888 56.838888888)", + locationLabel: "Sevast'yanov house, Yekaterinburg", + }, + { + location: "http://www.wikidata.org/entity/Q11812902", + cordinates: "Point(34.566666666 -2.332777777)", + locationLabel: "Serengeti National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "796086", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "909274", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1002979", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1006583", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1039137", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1097464", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1106584", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1229594", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1246053", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1254688", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q152660", + visitors: "1291256", + cordinates: "Point(-118.773369444 36.564719444)", + locationLabel: "Sequoia National Park", + }, + { + location: "http://www.wikidata.org/entity/Q97143598", + cordinates: "Point(6.34462 43.73776)", + locationLabel: "Sentier de L'Imbut", + }, + { + location: "http://www.wikidata.org/entity/Q3478669", + cordinates: "Point(6.34529 43.74646)", + locationLabel: "Sentier Martel", + }, + { + location: "http://www.wikidata.org/entity/Q615183", + cordinates: "Point(139.796638888 35.714555555)", + locationLabel: "Sensō-ji", + }, + { + location: "http://www.wikidata.org/entity/Q29043080", + cordinates: "Point(38.49389 47.13833)", + locationLabel: "Semyonovsky Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q876176", + cordinates: "Point(27.366666666 37.95)", + locationLabel: "Selçuk", + }, + { + location: "http://www.wikidata.org/entity/Q10665137", + cordinates: "Point(18.1064 59.3262)", + locationLabel: "Seglora Church, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q4128054", + cordinates: "Point(60.597659 56.839992)", + locationLabel: "Second House of Soviets, Yekaterinburg", + }, + { + location: "http://www.wikidata.org/entity/Q629046", + cordinates: "Point(-122.334 47.602)", + locationLabel: "Seattle Underground", + }, + { + location: "http://www.wikidata.org/entity/Q3044487", + cordinates: "Point(-122.352033 47.622451)", + locationLabel: "Seattle Center", + }, + { + location: "http://www.wikidata.org/entity/Q10389768", + cordinates: "Point(113.912 22.486)", + locationLabel: "Sea World", + }, + { + location: "http://www.wikidata.org/entity/Q19788528", + cordinates: "Point(38.9455 47.2034)", + locationLabel: "Sea Stairs", + }, + { + location: "http://www.wikidata.org/entity/Q2591764", + cordinates: "Point(151.202 -33.8694)", + locationLabel: "Sea Life Sydney Aquarium", + }, + { + location: "http://www.wikidata.org/entity/Q10476993", + cordinates: "Point(17.87972222 59.32055556)", + locationLabel: "Sculpture Park of Drottningholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4422713", + cordinates: "Point(38.92608333 47.21761111)", + locationLabel: 'Sculptural composition "Egyptian Pyramid"', + }, + { + location: "http://www.wikidata.org/entity/Q4526278", + visitors: "238542", + cordinates: "Point(-3.19575 55.9488)", + locationLabel: "Scotch Whisky Heritage Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2638616", + visitors: "830000", + cordinates: "Point(-2.25556 53.4769)", + locationLabel: "Science and Industry Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2638616", + visitors: "830000", + cordinates: "Point(-2.255017 53.477269)", + locationLabel: "Science and Industry Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4210560", + cordinates: "Point(103.736 1.33287)", + locationLabel: "Science Centre Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q18407961", + cordinates: "Point(21.9072 55.0814)", + locationLabel: "Schloss Tilsit", + }, + { + location: "http://www.wikidata.org/entity/Q10663150", + cordinates: "Point(20.27138889 63.82361111)", + locationLabel: "Scharinska villa", + }, + { + location: "http://www.wikidata.org/entity/Q3068362", + cordinates: "Point(150.301 -33.7285)", + locationLabel: "Scenic World", + }, + { + location: "http://www.wikidata.org/entity/Q4404138", + cordinates: "Point(28.8975 57.064166666)", + locationLabel: "Savkino", + }, + { + location: "http://www.wikidata.org/entity/Q55423070", + cordinates: "Point(30.4023564 59.7207375)", + locationLabel: "Savitskaya's House", + }, + { + location: "http://www.wikidata.org/entity/Q1964607", + cordinates: "Point(31.311472222 58.497416666)", + locationLabel: "Saviour Church on Nereditsa", + }, + { + location: "http://www.wikidata.org/entity/Q60983194", + cordinates: "Point(31.780555555 -24.392222222)", + locationLabel: "Satara (Kruger National Park)", + }, + { + location: "http://www.wikidata.org/entity/Q28926827", + cordinates: "Point(38.933611111 47.213611111)", + locationLabel: "Sarmatova’s Garden", + }, + { + location: "http://www.wikidata.org/entity/Q55154923", + cordinates: "Point(-46.2591497 -23.9948438)", + locationLabel: "Santos Dumont's hearse", + }, + { + location: "http://www.wikidata.org/entity/Q129296", + cordinates: "Point(25.433333333 36.416666666)", + locationLabel: "Santorini", + }, + { + location: "http://www.wikidata.org/entity/Q20830699", + cordinates: "Point(25.845322 66.543633)", + locationLabel: "Santa Claus' Main Post Office", + }, + { + location: "http://www.wikidata.org/entity/Q13096785", + cordinates: "Point(115.206797 -8.481702)", + locationLabel: "Sangeh", + }, + { + location: "http://www.wikidata.org/entity/Q262459", + cordinates: "Point(100.88888889 12.97277778)", + locationLabel: "Sanctuary of Truth", + }, + { + location: "http://www.wikidata.org/entity/Q19367473", + cordinates: "Point(8.82726 45.81834)", + locationLabel: "San Vittore Bell Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4311109", + cordinates: "Point(-98.4916 29.4252)", + locationLabel: "San Antonio River Walk", + }, + { + location: "http://www.wikidata.org/entity/Q44293205", + cordinates: "Point(35.015396 55.764982)", + locationLabel: "Samuylovo", + }, + { + location: "http://www.wikidata.org/entity/Q16478899", + cordinates: "Point(22.371982 55.743992)", + locationLabel: "Samogitian Diocese Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11274051", + cordinates: "Point(-55.161538 -27.569441)", + locationLabel: "Salto Krysiuk", + }, + { + location: "http://www.wikidata.org/entity/Q85513950", + cordinates: "Point(101.70808 3.16104)", + locationLabel: "Saloma Link", + }, + { + location: "http://www.wikidata.org/entity/Q76122", + cordinates: "Point(-67.7 -20.33333)", + locationLabel: "Salar de Uyuni", + }, + { + location: "http://www.wikidata.org/entity/Q76122", + cordinates: "Point(-67.489133333 -20.133775)", + locationLabel: "Salar de Uyuni", + }, + { + location: "http://www.wikidata.org/entity/Q3314828", + cordinates: "Point(16.56666667 59.91666667)", + locationLabel: "Sala Silver Mine", + }, + { + location: "http://www.wikidata.org/entity/Q79753", + visitors: "t2026995", + cordinates: "Point(29.40544 36.46868)", + locationLabel: "Saklıkent Canyon", + }, + { + location: "http://www.wikidata.org/entity/Q830054", + cordinates: "Point(30.514444444 50.452777777)", + locationLabel: "Saint Sophia Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q4407734", + cordinates: "Point(30.311515 59.95529)", + locationLabel: "Saint Petersburg Planetarium", + }, + { + location: "http://www.wikidata.org/entity/Q3316628", + cordinates: "Point(5.68408 50.83612)", + locationLabel: "Saint Peter Fort", + }, + { + location: "http://www.wikidata.org/entity/Q4320849", + cordinates: "Point(40.441424 56.416412)", + locationLabel: "Saint Nicholas church from the village of Glotovo", + }, + { + location: "http://www.wikidata.org/entity/Q39085159", + cordinates: "Point(38.74378 55.19981)", + locationLabel: "Saint Nicholas Church in Starki Pogost", + }, + { + location: "http://www.wikidata.org/entity/Q1365942", + cordinates: "Point(44.001828 56.328281)", + locationLabel: "Saint Michael the Archangel Church", + }, + { + location: "http://www.wikidata.org/entity/Q4146373", + cordinates: "Point(20.5064 54.7011)", + locationLabel: "Saint George's Hospital", + }, + { + location: "http://www.wikidata.org/entity/Q55752855", + cordinates: "Point(9.192669444 45.475941666)", + locationLabel: "Saint Francis Fountain", + }, + { + location: "http://www.wikidata.org/entity/Q48435", + visitors: "4527427", + cordinates: "Point(2.174180555 41.403611111)", + locationLabel: "Sagrada Família", + }, + { + location: "http://www.wikidata.org/entity/Q48435", + visitors: "4561848", + cordinates: "Point(2.174180555 41.403611111)", + locationLabel: "Sagrada Família", + }, + { + location: "http://www.wikidata.org/entity/Q65055118", + cordinates: "Point(10.0089 48.41653)", + locationLabel: "Safranberg Fort", + }, + { + location: "http://www.wikidata.org/entity/Q2033070", + cordinates: "Point(100.70277778 13.865)", + locationLabel: "Safari World", + }, + { + location: "http://www.wikidata.org/entity/Q7398333", + cordinates: "Point(24.1879 43.047611111)", + locationLabel: "Saeva dupka", + }, + { + location: "http://www.wikidata.org/entity/Q28785", + visitors: "10000000", + cordinates: "Point(2.343 48.886694444)", + locationLabel: "Sacré-Cœur", + }, + { + location: "http://www.wikidata.org/entity/Q28785", + visitors: "11000000", + cordinates: "Point(2.343 48.886694444)", + locationLabel: "Sacré-Cœur", + }, + { + location: "http://www.wikidata.org/entity/Q1224490", + cordinates: "Point(8.79322222 45.86036111)", + locationLabel: "Sacro Monte di Varese", + }, + { + location: "http://www.wikidata.org/entity/Q2210832", + cordinates: "Point(20.53852778 54.70960556)", + locationLabel: "Sackheim Gate", + }, + { + location: "http://www.wikidata.org/entity/Q19911033", + cordinates: "Point(37.594305 55.754704)", + locationLabel: "Saarbekov House", + }, + { + location: "http://www.wikidata.org/entity/Q542329", + cordinates: "Point(8.56666 50.2715)", + locationLabel: "Saalburg Roman Fort", + }, + { + location: "http://www.wikidata.org/entity/Q1137511", + cordinates: "Point(28.96874786 41.01759104)", + locationLabel: "Rüstem Pasha Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q96218300", + cordinates: "Point(34.262777777 56.218611111)", + locationLabel: "Rzhev Memorial to Soviet Soldier", + }, + { + location: "http://www.wikidata.org/entity/Q28813084", + cordinates: "Point(39.716872 47.220401)", + locationLabel: "Ryndzyun hydropathic", + }, + { + location: "http://www.wikidata.org/entity/Q3534755", + cordinates: "Point(80.3964 8.35)", + locationLabel: "Ruwanmelisaya", + }, + { + location: "http://www.wikidata.org/entity/Q692269", + cordinates: "Point(24.793972 59.443386)", + locationLabel: "Russalka Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q4400354", + cordinates: "Point(30.580054 61.945293)", + locationLabel: "Ruskeala", + }, + { + location: "http://www.wikidata.org/entity/Q66486107", + cordinates: "Point(16.630022 38.827707)", + locationLabel: "Ruota panoramica di Catanzaro", + }, + { + location: "http://www.wikidata.org/entity/Q90801", + visitors: "t1117895932", + cordinates: "Point(29.056111111 41.084722222)", + locationLabel: "Rumelihisarı", + }, + { + location: "http://www.wikidata.org/entity/Q83188705", + cordinates: "Point(27.55107 53.89806)", + locationLabel: "Rubin House", + }, + { + location: "http://www.wikidata.org/entity/Q50906", + cordinates: "Point(29.946 59.317)", + locationLabel: "Rozhdestveno Memorial Estate", + }, + { + location: "http://www.wikidata.org/entity/Q4080269", + cordinates: "Point(26.562555555 48.673805555)", + locationLabel: "Rozhanka Tower", + }, + { + location: "http://www.wikidata.org/entity/Q171517", + cordinates: "Point(-3.714167 40.418333)", + locationLabel: "Royal Palace of Madrid", + }, + { + location: "http://www.wikidata.org/entity/Q192988", + cordinates: "Point(-0.001388888 51.477777777)", + locationLabel: "Royal Observatory", + }, + { + location: "http://www.wikidata.org/entity/Q1846516", + cordinates: "Point(-105.325 38.46167)", + locationLabel: "Royal Gorge Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q28246887", + cordinates: "Point(17.886380555 59.321688888)", + locationLabel: "Royal Domain of Drottningholm", + }, + { + location: "http://www.wikidata.org/entity/Q100242002", + cordinates: "Point(-72.220833333 19.604722222)", + locationLabel: "Royal Chapel of Milot", + }, + { + location: "http://www.wikidata.org/entity/Q1636176", + cordinates: "Point(18.071667 59.326667)", + locationLabel: "Royal Armoury", + }, + { + location: "http://www.wikidata.org/entity/Q1890450", + cordinates: "Point(-0.238611111 51.598888888)", + locationLabel: "Royal Air Force Museum London", + }, + { + location: "http://www.wikidata.org/entity/Q7373617", + cordinates: "Point(-2.3115 52.644)", + locationLabel: "Royal Air Force Museum Cosford", + }, + { + location: "http://www.wikidata.org/entity/Q153494", + cordinates: "Point(10.178888888 49.377222222)", + locationLabel: "Rothenburg ob der Tauber", + }, + { + location: "http://www.wikidata.org/entity/Q4398576", + cordinates: "Point(30.305833333 59.943888888)", + locationLabel: "Rostral columns on Spit of the Vasilievsky Island", + }, + { + location: "http://www.wikidata.org/entity/Q30890153", + cordinates: "Point(39.713333333 47.221666666)", + locationLabel: "Rostovenergo building", + }, + { + location: "http://www.wikidata.org/entity/Q105556717", + cordinates: "Point(39.70726 47.217549)", + locationLabel: "Rostov-on-Don technical school of cinema and television", + }, + { + location: "http://www.wikidata.org/entity/Q4398465", + cordinates: "Point(39.678333333 47.213611111)", + locationLabel: "Rostov TV tower", + }, + { + location: "http://www.wikidata.org/entity/Q28924791", + cordinates: "Point(39.738333333 47.226111111)", + locationLabel: "Rostov State Philharmonic", + }, + { + location: "http://www.wikidata.org/entity/Q16653700", + cordinates: "Point(39.416322 57.185652)", + locationLabel: "Rostov Kremlin. Bell Tower", + }, + { + location: "http://www.wikidata.org/entity/Q28778712", + cordinates: "Point(39.702777777 47.226666666)", + locationLabel: "Rostov Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q96180785", + cordinates: "Point(-5.082717 50.0452736)", + locationLabel: "Roskilly's", + }, + { + location: "http://www.wikidata.org/entity/Q1934091", + cordinates: "Point(17.84444444 59.57416667)", + locationLabel: "Rosersberg Palace", + }, + { + location: "http://www.wikidata.org/entity/Q59482", + cordinates: "Point(18.11833333 59.32888889)", + locationLabel: "Rosendal Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1408961", + cordinates: "Point(11.328 50.2449)", + locationLabel: "Rosenberg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q247033", + cordinates: "Point(20.532083333 54.683277777)", + locationLabel: "Rosenau Church", + }, + { + location: "http://www.wikidata.org/entity/Q1335490", + cordinates: "Point(40.332206 43.646447)", + locationLabel: "Rosa Khutor Alpine Resort", + }, + { + location: "http://www.wikidata.org/entity/Q1424835", + cordinates: "Point(-15.6125 27.970833333)", + locationLabel: "Roque Nublo", + }, + { + location: "http://www.wikidata.org/entity/Q7362141", + cordinates: "Point(-6.34313889 38.917)", + locationLabel: "Roman Provincial Forum", + }, + { + location: "http://www.wikidata.org/entity/Q180212", + cordinates: "Point(12.4852 41.8922)", + locationLabel: "Roman Forum", + }, + { + location: "http://www.wikidata.org/entity/Q7361967", + cordinates: "Point(-6.34313889 38.91694444)", + locationLabel: "Roman Forum", + }, + { + location: "http://www.wikidata.org/entity/Q2540426", + cordinates: "Point(-2.3595 51.3809)", + locationLabel: "Roman Baths", + }, + { + location: "http://www.wikidata.org/entity/Q11677337", + cordinates: "Point(142.540527777 43.312427777)", + locationLabel: "Rokugō no Mori", + }, + { + location: "http://www.wikidata.org/entity/Q1139488", + cordinates: "Point(-75.1802 39.9649)", + locationLabel: "Rocky Steps", + }, + { + location: "http://www.wikidata.org/entity/Q7355702", + visitors: "65000", + cordinates: "Point(-80.1456 43.6116)", + locationLabel: "Rockwood Conservation Area", + }, + { + location: "http://www.wikidata.org/entity/Q11277", + cordinates: "Point(-73.979194444 40.758611111)", + locationLabel: "Rockefeller Center", + }, + { + location: "http://www.wikidata.org/entity/Q7354320", + cordinates: "Point(-85.3486 34.9739)", + locationLabel: "Rock City", + }, + { + location: "http://www.wikidata.org/entity/Q7337785", + cordinates: "Point(103.79414 1.403782)", + locationLabel: "River Safari", + }, + { + location: "http://www.wikidata.org/entity/Q14875406", + cordinates: "Point(-79.38605 43.642481)", + locationLabel: "Ripley's Aquarium of Canada", + }, + { + location: "http://www.wikidata.org/entity/Q10655449", + cordinates: "Point(18.36694444 59.40611111)", + locationLabel: "Rindö Redoubt", + }, + { + location: "http://www.wikidata.org/entity/Q7334341", + cordinates: "Point(-122.143333 42.91)", + locationLabel: "Rim Village Historic District", + }, + { + location: "http://www.wikidata.org/entity/Q657118", + cordinates: "Point(18.064722222 59.324722222)", + locationLabel: "Riddarholm Church", + }, + { + location: "http://www.wikidata.org/entity/Q52505", + cordinates: "Point(12.335639 45.438008)", + locationLabel: "Rialto Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q28803074", + cordinates: "Point(39.706388888 47.219722222)", + locationLabel: "Revenue house of K. I. Yablokov", + }, + { + location: "http://www.wikidata.org/entity/Q53803959", + cordinates: "Point(44.51532 48.70025)", + locationLabel: "Restaurant Mayak, Volgograd", + }, + { + location: "http://www.wikidata.org/entity/Q5955134", + cordinates: "Point(103.821081 1.253232)", + locationLabel: "Resorts World Sentosa", + }, + { + location: "http://www.wikidata.org/entity/Q55456167", + cordinates: "Point(30.4094589 59.7209593)", + locationLabel: "Residential House of Police Officers", + }, + { + location: "http://www.wikidata.org/entity/Q4189950", + cordinates: "Point(37.608611111 55.761111111)", + locationLabel: "Residence of the Mayor of Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q242772", + cordinates: "Point(-2.535555555 53.580555555)", + locationLabel: "Reebok Stadium", + }, + { + location: "http://www.wikidata.org/entity/Q63863168", + cordinates: "Point(-123.998055555 41.373888888)", + locationLabel: "Redwood National and State Parks", + }, + { + location: "http://www.wikidata.org/entity/Q23047573", + cordinates: "Point(11.430833 48.760833)", + locationLabel: "Reduit Tilly", + }, + { + location: "http://www.wikidata.org/entity/Q41116", + cordinates: "Point(37.62 55.754166666)", + locationLabel: "Red Square", + }, + { + location: "http://www.wikidata.org/entity/Q21640688", + cordinates: "Point(82.894165 55.031651)", + locationLabel: "Red Barracks, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q19819628", + cordinates: "Point(37.626957 55.732777)", + locationLabel: "Reck mansion", + }, + { + location: "http://www.wikidata.org/entity/Q28967354", + cordinates: "Point(40.668157 47.555858)", + locationLabel: "Razdorskoie II", + }, + { + location: "http://www.wikidata.org/entity/Q1602700", + cordinates: "Point(-1.2539 51.7534)", + locationLabel: "Radcliffe Camera", + }, + { + location: "http://www.wikidata.org/entity/Q1753248", + cordinates: "Point(17.04458333 51.11013889)", + locationLabel: "Racławice Panorama", + }, + { + location: "http://www.wikidata.org/entity/Q5679170", + cordinates: "Point(-0.4742 51.313)", + locationLabel: "RHS Garden, Wisley", + }, + { + location: "http://www.wikidata.org/entity/Q4617946", + cordinates: "Point(-1.5725 53.9822)", + locationLabel: "RHS Garden Harlow Carr", + }, + { + location: "http://www.wikidata.org/entity/Q2657856", + cordinates: "Point(30.2908 59.937)", + locationLabel: "Quay with Sphinxes", + }, + { + location: "http://www.wikidata.org/entity/Q121198", + cordinates: "Point(49.105175 55.798094444)", + locationLabel: "Qolşärif Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q11078643", + cordinates: "Point(121.574262 25.166443)", + locationLabel: "Qingtiangang", + }, + { + location: "http://www.wikidata.org/entity/Q3412395", + cordinates: "Point(53.2122 29.7341)", + locationLabel: "Qadamgah", + }, + { + location: "http://www.wikidata.org/entity/Q28055077", + cordinates: "Point(-40.28804 -20.292149)", + locationLabel: "Píer de Iemanjá", + }, + { + location: "http://www.wikidata.org/entity/Q10647906", + cordinates: "Point(18.32138889 59.39777778)", + locationLabel: "Pålsund's Artillery Battery", + }, + { + location: "http://www.wikidata.org/entity/Q19916094", + cordinates: "Point(37.628888888 55.740555555)", + locationLabel: "Pyatnitskaya Street 31, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q4150351", + cordinates: "Point(34.295555555 44.546666666)", + locationLabel: "Pushkin Grotto (Feodosia)", + }, + { + location: "http://www.wikidata.org/entity/Q4150351", + cordinates: "Point(35.38055 45.042127777)", + locationLabel: "Pushkin Grotto (Feodosia)", + }, + { + location: "http://www.wikidata.org/entity/Q4150351", + cordinates: "Point(35.38055 45.04212778)", + locationLabel: "Pushkin Grotto (Feodosia)", + }, + { + location: "http://www.wikidata.org/entity/Q2220851", + cordinates: "Point(115.16658 -8.27061)", + locationLabel: "Pura Ulun Danu Bratan", + }, + { + location: "http://www.wikidata.org/entity/Q66230968", + cordinates: "Point(31.018611111 -22.692222222)", + locationLabel: "Punda Maria", + }, + { + location: "http://www.wikidata.org/entity/Q97625652", + cordinates: "Point(-4.777884095 37.876625479)", + locationLabel: "Puente romano", + }, + { + location: "http://www.wikidata.org/entity/Q2336867", + cordinates: "Point(-58.364911 -34.607939)", + locationLabel: "Puente de la Mujer", + }, + { + location: "http://www.wikidata.org/entity/Q2004707", + cordinates: "Point(-5.165853 36.740633)", + locationLabel: "Puente Nuevo", + }, + { + location: "http://www.wikidata.org/entity/Q3657889", + cordinates: "Point(24.0731 43.1758)", + locationLabel: "Prohodna", + }, + { + location: "http://www.wikidata.org/entity/Q28167423", + cordinates: "Point(39.718067 47.222023)", + locationLabel: "Profitable house of Sariyev", + }, + { + location: "http://www.wikidata.org/entity/Q28944460", + cordinates: "Point(39.711111111 47.220277777)", + locationLabel: "Profitable house of Pivovarova", + }, + { + location: "http://www.wikidata.org/entity/Q30132631", + cordinates: "Point(39.709722222 47.2275)", + locationLabel: "Profitable house of I. M. Trofimenko", + }, + { + location: "http://www.wikidata.org/entity/Q29350748", + cordinates: "Point(39.754722222 47.230833333)", + locationLabel: "Private male college of C. Ya. Yagubyants", + }, + { + location: "http://www.wikidata.org/entity/Q66229781", + cordinates: "Point(31.268611111 -25.168611111)", + locationLabel: "Pretoriuskop Rest Camp", + }, + { + location: "http://www.wikidata.org/entity/Q18324962", + cordinates: "Point(32.7989 39.9311)", + locationLabel: "Presidential Palace of Turkey", + }, + { + location: "http://www.wikidata.org/entity/Q1015958", + cordinates: "Point(-38.00532 -12.5775)", + locationLabel: "Praia do Forte", + }, + { + location: "http://www.wikidata.org/entity/Q193369", + cordinates: "Point(14.39556 50.08917)", + locationLabel: "Prague Castle", + }, + { + location: "http://www.wikidata.org/entity/Q11744625", + cordinates: "Point(16.934166666 52.408333333)", + locationLabel: "Poznań Goats", + }, + { + location: "http://www.wikidata.org/entity/Q61865767", + cordinates: "Point(34.969743 57.04076)", + locationLabel: "Pozharsky hotel in Torzhok", + }, + { + location: "http://www.wikidata.org/entity/Q100988197", + cordinates: "Point(38.364876 59.857807)", + locationLabel: "Povarennaya tower", + }, + { + location: "http://www.wikidata.org/entity/Q71229", + cordinates: "Point(91.116944444 29.657777777)", + locationLabel: "Potala Palace", + }, + { + location: "http://www.wikidata.org/entity/Q29017263", + cordinates: "Point(40.10292 47.413204)", + locationLabel: "Post station", + }, + { + location: "http://www.wikidata.org/entity/Q16706842", + cordinates: "Point(84.949948 56.480408)", + locationLabel: "Post office, Lenina 93, Tomsk", + }, + { + location: "http://www.wikidata.org/entity/Q46995572", + cordinates: "Point(110.024831 -7.3182815)", + locationLabel: "Posong", + }, + { + location: "http://www.wikidata.org/entity/Q28119932", + cordinates: "Point(-8.715 42.3898)", + locationLabel: "Portocelo Beach", + }, + { + location: "http://www.wikidata.org/entity/Q619558", + cordinates: "Point(1.144830555 52.055061111)", + locationLabel: "Portman Road", + }, + { + location: "http://www.wikidata.org/entity/Q2104856", + cordinates: "Point(9.20205278 45.45226111)", + locationLabel: "Porta Romana", + }, + { + location: "http://www.wikidata.org/entity/Q3908773", + cordinates: "Point(9.19324 45.4577)", + locationLabel: "Porta Romana", + }, + { + location: "http://www.wikidata.org/entity/Q51946190", + cordinates: "Point(44.007239 56.32859)", + locationLabel: "Porokhovaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q208633", + cordinates: "Point(11.253191666 43.767988888)", + locationLabel: "Ponte Vecchio", + }, + { + location: "http://www.wikidata.org/entity/Q189764", + cordinates: "Point(4.5355 43.9473)", + locationLabel: "Pont du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q335277", + cordinates: "Point(2.341666666 48.8575)", + locationLabel: "Pont Neuf", + }, + { + location: "http://www.wikidata.org/entity/Q20032009", + cordinates: "Point(37.606111111 55.749444444)", + locationLabel: "Ponomarev building", + }, + { + location: "http://www.wikidata.org/entity/Q7226616", + cordinates: "Point(-157.920269444 21.639063888)", + locationLabel: "Polynesian Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q21644004", + cordinates: "Point(37.653611111 55.77)", + locationLabel: "Polyclinic of Railways Commissariat, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q50359381", + cordinates: "Point(82.9254 55.02898)", + locationLabel: "Polyclinic No. 1", + }, + { + location: "http://www.wikidata.org/entity/Q7208411", + cordinates: "Point(-159.45416667 21.87333333)", + locationLabel: "Poipu Beach Park", + }, + { + location: "http://www.wikidata.org/entity/Q29388694", + cordinates: "Point(39.706712 47.218541)", + locationLabel: "Pogodin house", + }, + { + location: "http://www.wikidata.org/entity/Q3426178", + cordinates: "Point(-15.43761944 28.14008889)", + locationLabel: "Playa de Las Canteras", + }, + { + location: "http://www.wikidata.org/entity/Q3426178", + cordinates: "Point(-15.435299999 28.142199999)", + locationLabel: "Playa de Las Canteras", + }, + { + location: "http://www.wikidata.org/entity/Q95598843", + cordinates: "Point(7.42763 43.73939)", + locationLabel: "Place du Casino", + }, + { + location: "http://www.wikidata.org/entity/Q643520", + cordinates: "Point(2.329444444 48.8675)", + locationLabel: "Place Vendôme", + }, + { + location: "http://www.wikidata.org/entity/Q614", + cordinates: "Point(4.832222222 45.7575)", + locationLabel: "Place Bellecour", + }, + { + location: "http://www.wikidata.org/entity/Q1456119", + cordinates: "Point(-1.255 51.758611111)", + locationLabel: "Pitt Rivers Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15220592", + cordinates: "Point(73.06555556 33.76027778)", + locationLabel: "Pir Sohawa", + }, + { + location: "http://www.wikidata.org/entity/Q2096144", + cordinates: "Point(-98.9506 40.5047)", + locationLabel: "Pioneer Village", + }, + { + location: "http://www.wikidata.org/entity/Q2672104", + cordinates: "Point(80.38833333 7.30055556)", + locationLabel: "Pinnawala Elephant Orphanage", + }, + { + location: "http://www.wikidata.org/entity/Q106538964", + cordinates: "Point(116.077980555 5.986658333)", + locationLabel: "Pillars of Sabah", + }, + { + location: "http://www.wikidata.org/entity/Q1373418", + cordinates: "Point(-122.342 47.6094)", + locationLabel: "Pike Place Market", + }, + { + location: "http://www.wikidata.org/entity/Q1856083", + cordinates: "Point(-122.410357 37.809992)", + locationLabel: "Pier 39", + }, + { + location: "http://www.wikidata.org/entity/Q6150232", + cordinates: "Point(-43.94725 -19.986527777)", + locationLabel: "Piemonte Tower", + }, + { + location: "http://www.wikidata.org/entity/Q65949703", + cordinates: "Point(80.7584943 7.9654205)", + locationLabel: "Pidurangala Rock", + }, + { + location: "http://www.wikidata.org/entity/Q1865509", + cordinates: "Point(-15.571666666 27.961944444)", + locationLabel: "Pico de las Nieves", + }, + { + location: "http://www.wikidata.org/entity/Q215255", + cordinates: "Point(-0.134444444 51.51)", + locationLabel: "Piccadilly Circus", + }, + { + location: "http://www.wikidata.org/entity/Q88652658", + cordinates: "Point(27.580033 47.166383)", + locationLabel: "Piața Unirii", + }, + { + location: "http://www.wikidata.org/entity/Q88660965", + cordinates: "Point(27.586421 47.158054)", + locationLabel: "Piața Palatului Culturii", + }, + { + location: "http://www.wikidata.org/entity/Q88656915", + cordinates: "Point(27.584374 47.16775)", + locationLabel: "Piața Națiunii", + }, + { + location: "http://www.wikidata.org/entity/Q50320771", + cordinates: "Point(9.301455 45.959863)", + locationLabel: "Piazzetta Castiglioni", + }, + { + location: "http://www.wikidata.org/entity/Q15124814", + cordinates: "Point(12.48205833 41.90595)", + locationLabel: "Piazza di Spagna", + }, + { + location: "http://www.wikidata.org/entity/Q217527", + cordinates: "Point(12.338 45.434)", + locationLabel: "Piazza San Marco", + }, + { + location: "http://www.wikidata.org/entity/Q1235318", + cordinates: "Point(14.2521 40.8496)", + locationLabel: "Piazza Bellini", + }, + { + location: "http://www.wikidata.org/entity/Q1235318", + cordinates: "Point(14.252121 40.84958)", + locationLabel: "Piazza Bellini", + }, + { + location: "http://www.wikidata.org/entity/Q10416122", + cordinates: "Point(18.10075556 59.32618333)", + locationLabel: "Pharmacy, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q26399118", + cordinates: "Point(-86.013141388 13.092283611)", + locationLabel: "Peña of Cross", + }, + { + location: "http://www.wikidata.org/entity/Q20987458", + cordinates: "Point(79.85555556 6.93277778)", + locationLabel: "Pettah Floating Market", + }, + { + location: "http://www.wikidata.org/entity/Q28819412", + cordinates: "Point(39.703143 47.22654)", + locationLabel: "Petropavlovskaya Poorhouse", + }, + { + location: "http://www.wikidata.org/entity/Q83063", + cordinates: "Point(101.711667 3.157778)", + locationLabel: "Petronas Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5788", + cordinates: "Point(35.440277777 30.328888888)", + locationLabel: "Petra", + }, + { + location: "http://www.wikidata.org/entity/Q4360238", + cordinates: "Point(29.9 59.89)", + locationLabel: "Peterhof Museal Reserve", + }, + { + location: "http://www.wikidata.org/entity/Q736587", + cordinates: "Point(30.316666666 59.950277777)", + locationLabel: "Peter and Paul Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q4165829", + cordinates: "Point(43.995194444 56.325502777)", + locationLabel: "Peter I house in Nizhny Novgorod", + }, + { + location: "http://www.wikidata.org/entity/Q4191996", + cordinates: "Point(30.317794 59.942614)", + locationLabel: "Peter I Winter Palace", + }, + { + location: "http://www.wikidata.org/entity/Q129072", + cordinates: "Point(52.891388888 29.934444444)", + locationLabel: "Persepolis", + }, + { + location: "http://www.wikidata.org/entity/Q4350929", + cordinates: "Point(38.822803 56.721028)", + locationLabel: "Pereslavl-Zalessky Museum-Preserve", + }, + { + location: "http://www.wikidata.org/entity/Q39090954", + cordinates: "Point(103.839385937 1.301536297)", + locationLabel: "Peranakan Place", + }, + { + location: "http://www.wikidata.org/entity/Q7165644", + visitors: "289977", + cordinates: "Point(-4.23741624 55.851208554)", + locationLabel: "People's Palace", + }, + { + location: "http://www.wikidata.org/entity/Q7164734", + cordinates: "Point(-1.48087 54.8831)", + locationLabel: "Penshaw Monument", + }, + { + location: "http://www.wikidata.org/entity/Q7164674", + cordinates: "Point(-87.1375 30.333333333)", + locationLabel: "Pensacola Beach", + }, + { + location: "http://www.wikidata.org/entity/Q7163450", + cordinates: "Point(18.6725 59.68138889)", + locationLabel: "Penningby Castle", + }, + { + location: "http://www.wikidata.org/entity/Q10347239", + cordinates: "Point(-43.118257774 -22.905147566)", + locationLabel: "Pedra do Índio", + }, + { + location: "http://www.wikidata.org/entity/Q3860437", + cordinates: "Point(44.049722222 56.322777777)", + locationLabel: "Pechersky Ascension Monastery", + }, + { + location: "http://www.wikidata.org/entity/Q42181038", + cordinates: "Point(37.63142438 55.82846017)", + locationLabel: "Pavillion №2", + }, + { + location: "http://www.wikidata.org/entity/Q4341300", + cordinates: "Point(37.629197222 55.832888888)", + locationLabel: "Pavillion № 64 Optics", + }, + { + location: "http://www.wikidata.org/entity/Q48949021", + cordinates: "Point(37.62851384 55.83456267)", + locationLabel: "Pavillion № 61 Tsentrosoyuz", + }, + { + location: "http://www.wikidata.org/entity/Q48949014", + cordinates: "Point(37.61977323 55.83498227)", + locationLabel: "Pavillion № 31 Geology", + }, + { + location: "http://www.wikidata.org/entity/Q43150033", + cordinates: "Point(37.633659 55.830911)", + locationLabel: "Pavillion No. 68 Armenia at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q25394335", + cordinates: "Point(37.632623 55.83109)", + locationLabel: "Pavillion Karelia", + }, + { + location: "http://www.wikidata.org/entity/Q4341309", + cordinates: "Point(37.631947222 55.831680555)", + locationLabel: "Pavillion Culture (Uzbekistan, №66) (VDNKh)", + }, + { + location: "http://www.wikidata.org/entity/Q4341304", + cordinates: "Point(37.627038888 55.830988888)", + locationLabel: "Pavillion Azerbaijan", + }, + { + location: "http://www.wikidata.org/entity/Q19838573", + cordinates: "Point(37.626666666 55.831666666)", + locationLabel: "Pavilion Radioelektronika (VDNKh)", + }, + { + location: "http://www.wikidata.org/entity/Q42182071", + cordinates: "Point(37.627241666 55.828872222)", + locationLabel: "Pavilion No. 8 Young Naturalists at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48949017", + cordinates: "Point(37.63417 55.82972)", + locationLabel: "Pavilion No. 71 Nuclear Power at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48948743", + cordinates: "Point(37.626777777 55.827658333)", + locationLabel: "Pavilion No. 7 Seeds at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q4341303", + cordinates: "Point(37.627019444 55.832616666)", + locationLabel: "Pavilion No. 58 Ukraine at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48954235", + cordinates: "Point(37.623055555 55.835277777)", + locationLabel: "Pavilion No. 55 Electrification at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48954231", + cordinates: "Point(37.61939 55.83777)", + locationLabel: "Pavilion No. 50 Dairy Industry at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48954227", + cordinates: "Point(37.62194 55.83722)", + locationLabel: "Pavilion No. 48 Sheep Breeding at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48954224", + cordinates: "Point(37.62407 55.83732)", + locationLabel: "Pavilion No. 47 Pig Farming at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48954212", + cordinates: "Point(37.627777777 55.838055555)", + locationLabel: + "Pavilion No. 46 Economics and Organization of Agricultural Sector at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q30890343", + cordinates: "Point(37.625478 55.840624)", + locationLabel: "Pavilion No. 44 Cuniculture at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48952264", + cordinates: "Point(37.62417 55.83806)", + locationLabel: "Pavilion No. 43 Horse Breeding at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48952262", + cordinates: "Point(37.62271 55.83809)", + locationLabel: "Pavilion No. 41 Fodder at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q55658776", + cordinates: "Point(37.62143 55.83948)", + locationLabel: "Pavilion No. 38 Fishing at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q55658775", + cordinates: "Point(37.616388888 55.839444444)", + locationLabel: "Pavilion No. 36 Produce Processing at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48949050", + cordinates: "Point(37.61417 55.83833)", + locationLabel: "Pavilion No. 35 Tobacco at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q4341301", + cordinates: "Point(37.620938888 55.835536111)", + locationLabel: "Pavilion No. 32 Cosmos at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48949058", + cordinates: "Point(37.61889 55.83139)", + locationLabel: "Pavilion No. 311 Sericulture at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48948846", + cordinates: "Point(37.621111111 55.834166666)", + locationLabel: "Pavilion No. 26 Transport at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48948840", + cordinates: "Point(37.621944444 55.833055555)", + locationLabel: "Pavilion No. 20 Chemical Industry at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48948749", + cordinates: "Point(37.628611111 55.83)", + locationLabel: "Pavilion No. 11 Metallurgy at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48948746", + cordinates: "Point(37.629444444 55.829444444)", + locationLabel: "Pavilion No. 10 Standards at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q47633041", + cordinates: "Point(37.628055555 55.833888888)", + locationLabel: "Pavilion No 60 Consumer cooperatives", + }, + { + location: "http://www.wikidata.org/entity/Q48947509", + cordinates: "Point(37.62951097 55.82915794)", + locationLabel: "Pavilion No 6 Chemistry", + }, + { + location: "http://www.wikidata.org/entity/Q24843249", + cordinates: "Point(37.627952 55.833365)", + locationLabel: "Pavilion No 59 Cereals at the VDNKh", + }, + { + location: "http://www.wikidata.org/entity/Q48949045", + cordinates: "Point(37.61935102 55.83716617)", + locationLabel: "Pavilion No 51 Meat Industry", + }, + { + location: "http://www.wikidata.org/entity/Q48947506", + cordinates: "Point(37.62954 55.82877)", + locationLabel: "Pavilion No 5 Physics", + }, + { + location: "http://www.wikidata.org/entity/Q43139983", + cordinates: "Point(37.630388 55.828655)", + locationLabel: "Pavilion No 4 Kyrgyzstan", + }, + { + location: "http://www.wikidata.org/entity/Q48954208", + cordinates: "Point(37.61891085 55.83512383)", + locationLabel: "Pavilion No 30 Microbiology", + }, + { + location: "http://www.wikidata.org/entity/Q48948839", + cordinates: "Point(37.62774 55.83081)", + locationLabel: "Pavilion No 13 Healthcare", + }, + { + location: "http://www.wikidata.org/entity/Q97009680", + cordinates: "Point(-46.25725 -23.994916666)", + locationLabel: "Pavilhão da Maria Fumaça", + }, + { + location: "http://www.wikidata.org/entity/Q16683712", + cordinates: "Point(39.71903056 47.22545278)", + locationLabel: "Paul Cramer's mansion", + }, + { + location: "http://www.wikidata.org/entity/Q962445", + cordinates: "Point(37.591944444 55.763888888)", + locationLabel: "Patriarch Ponds", + }, + { + location: "http://www.wikidata.org/entity/Q6978175", + cordinates: "Point(29.2923562 36.269471)", + locationLabel: "Patara Beach", + }, + { + location: "http://www.wikidata.org/entity/Q10288", + cordinates: "Point(23.726601 37.971527)", + locationLabel: "Parthenon", + }, + { + location: "http://www.wikidata.org/entity/Q63243409", + cordinates: "Point(-16.722194444 28.366055555)", + locationLabel: "Parque del Drago", + }, + { + location: "http://www.wikidata.org/entity/Q4394390", + cordinates: "Point(39.7154 43.5894)", + locationLabel: "Park Riviera", + }, + { + location: "http://www.wikidata.org/entity/Q64066244", + cordinates: "Point(18.158861111 43.994111111)", + locationLabel: "Park Ravne 2", + }, + { + location: "http://www.wikidata.org/entity/Q747541", + cordinates: "Point(2.373611111 48.844722222)", + locationLabel: "Paris-Gare-de-Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q99991126", + cordinates: "Point(-46.324916666 -20.627027777)", + locationLabel: "Paraíso Perdido", + }, + { + location: "http://www.wikidata.org/entity/Q4344956", + cordinates: "Point(39.726936111 47.2182)", + locationLabel: "Paramonov Warehouses", + }, + { + location: "http://www.wikidata.org/entity/Q66362623", + cordinates: "Point(26.563722222 48.672916666)", + locationLabel: "Papska Tower of Kamyanets Podilsky Castle", + }, + { + location: "http://www.wikidata.org/entity/Q28732731", + cordinates: "Point(39.515467 47.304542)", + locationLabel: "Pantheon of Glory", + }, + { + location: "http://www.wikidata.org/entity/Q99309", + visitors: "30000000", + cordinates: "Point(12.47685 41.898561)", + locationLabel: "Pantheon", + }, + { + location: "http://www.wikidata.org/entity/Q232734", + cordinates: "Point(29.123888888 37.923055555)", + locationLabel: "Pamukkale", + }, + { + location: "http://www.wikidata.org/entity/Q2048357", + cordinates: "Point(74.02277778 15.00888889)", + locationLabel: "Palolem Beach", + }, + { + location: "http://www.wikidata.org/entity/Q28975630", + cordinates: "Point(15.2 37.733333333)", + locationLabel: "Palazzo dei Principi Natoli", + }, + { + location: "http://www.wikidata.org/entity/Q271928", + cordinates: "Point(11.256174 43.769315)", + locationLabel: "Palazzo Vecchio", + }, + { + location: "http://www.wikidata.org/entity/Q143463", + visitors: "616210", + cordinates: "Point(4.8075 43.9508)", + locationLabel: "Palais des Papes", + }, + { + location: "http://www.wikidata.org/entity/Q7126325", + cordinates: "Point(-5.989166666 37.394722222)", + locationLabel: "Palacio de las Dueñas", + }, + { + location: "http://www.wikidata.org/entity/Q2442235", + cordinates: "Point(-105.938194 35.687783)", + locationLabel: "Palace of the Governors", + }, + { + location: "http://www.wikidata.org/entity/Q18406359", + cordinates: "Point(39.6854 47.2198)", + locationLabel: "Palace of culture of railwaymen in Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q62408", + cordinates: "Point(-0.124166666 51.499444444)", + locationLabel: "Palace of Westminster", + }, + { + location: "http://www.wikidata.org/entity/Q27306482", + cordinates: "Point(34.993888888 48.474722222)", + locationLabel: "Palace of Labour", + }, + { + location: "http://www.wikidata.org/entity/Q4155890", + cordinates: "Point(71.470833333 51.122222222)", + locationLabel: "Palace of Independence", + }, + { + location: "http://www.wikidata.org/entity/Q12840535", + cordinates: "Point(46.407799 39.64436)", + locationLabel: "Palace of Hamza Sultan", + }, + { + location: "http://www.wikidata.org/entity/Q29565959", + cordinates: "Point(50.10719 53.189454)", + locationLabel: "Palace of Culture of Railwaymen AS Pushkin", + }, + { + location: "http://www.wikidata.org/entity/Q27943134", + cordinates: "Point(25.49398 45.57443)", + locationLabel: "Pagans' Temple", + }, + { + location: "http://www.wikidata.org/entity/Q30588326", + cordinates: "Point(-97.51944444 35.48527778)", + locationLabel: "Overholser Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q10300530", + cordinates: "Point(-44.576111111 -20.079444444)", + locationLabel: "Our Lady of the Rosary Church", + }, + { + location: "http://www.wikidata.org/entity/Q3358350", + cordinates: "Point(-3.17437 55.9506)", + locationLabel: "Our Dynamic Earth", + }, + { + location: "http://www.wikidata.org/entity/Q65175589", + cordinates: "Point(76.950595 43.260699)", + locationLabel: "Otrar Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q956911", + cordinates: "Point(68.3029696 42.8514829)", + locationLabel: "Otrar", + }, + { + location: "http://www.wikidata.org/entity/Q5761051", + cordinates: "Point(-99.5238054 19.5304188)", + locationLabel: "Otomí Ceremonial Center", + }, + { + location: "http://www.wikidata.org/entity/Q181324", + cordinates: "Point(37.611666666 55.819722222)", + locationLabel: "Ostankino Tower", + }, + { + location: "http://www.wikidata.org/entity/Q25338950", + cordinates: "Point(29.5167 40.755)", + locationLabel: "Osmangazi Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q43280", + cordinates: "Point(10.753611111 59.906944444)", + locationLabel: "Oslo Opera House", + }, + { + location: "http://www.wikidata.org/entity/Q61726087", + cordinates: "Point(18.435277777 59.398611111)", + locationLabel: "Oskar-Fredriksborg fort", + }, + { + location: "http://www.wikidata.org/entity/Q10612991", + cordinates: "Point(18.43527778 59.39861111)", + locationLabel: "Oskar-Fredriksborg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q79326946", + cordinates: "Point(78.453801 44.335154)", + locationLabel: "Oshaktas Monument", + }, + { + location: "http://www.wikidata.org/entity/Q553038", + cordinates: "Point(140.22416667 35.11611111)", + locationLabel: "Osenkorogashi", + }, + { + location: "http://www.wikidata.org/entity/Q61910611", + cordinates: "Point(11.852222222 57.674722222)", + locationLabel: "Oscar II Fort", + }, + { + location: "http://www.wikidata.org/entity/Q10924", + cordinates: "Point(12.113272222 42.717011111)", + locationLabel: "Orvieto Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q79325270", + cordinates: "Point(5.55346 50.6296)", + locationLabel: + "Orthodox church of Saints Alexander Nevsky and Seraphim of Sarov in Liège", + }, + { + location: "http://www.wikidata.org/entity/Q79325270", + cordinates: "Point(5.553454 50.629662)", + locationLabel: + "Orthodox church of Saints Alexander Nevsky and Seraphim of Sarov in Liège", + }, + { + location: "http://www.wikidata.org/entity/Q966643", + cordinates: "Point(22.244235 55.987243)", + locationLabel: "Orthodox church in Telšiai", + }, + { + location: "http://www.wikidata.org/entity/Q966643", + cordinates: "Point(22.244417 55.987297)", + locationLabel: "Orthodox church in Telšiai", + }, + { + location: "http://www.wikidata.org/entity/Q1899549", + cordinates: "Point(71.481481 51.149603)", + locationLabel: "Orthodox cathedral in Nur-Sultan", + }, + { + location: "http://www.wikidata.org/entity/Q176380", + cordinates: "Point(29.026894 41.047351)", + locationLabel: "Ortaköy Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q2249546", + cordinates: "Point(29.0281901 41.0546272)", + locationLabel: "Ortaköy", + }, + { + location: "http://www.wikidata.org/entity/Q15975928", + cordinates: "Point(33.877182 44.749818)", + locationLabel: "Orta Cami", + }, + { + location: "http://www.wikidata.org/entity/Q3886164", + visitors: "30000", + cordinates: "Point(9.30508 46.04249)", + locationLabel: "Orrido di Bellano", + }, + { + location: "http://www.wikidata.org/entity/Q7103973", + cordinates: "Point(-97.335322 37.6881)", + locationLabel: "Orpheum Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q12289333", + cordinates: "Point(25.9603 43.5899)", + locationLabel: "Orlova Chuka", + }, + { + location: "http://www.wikidata.org/entity/Q4336575", + cordinates: "Point(39.823722222 43.560138888)", + locationLabel: "Orlinye Skaly", + }, + { + location: "http://www.wikidata.org/entity/Q16896241", + cordinates: "Point(-122.34261 47.61013)", + locationLabel: "Original Starbucks", + }, + { + location: "http://www.wikidata.org/entity/Q223207", + cordinates: "Point(121.494716666 31.241669444)", + locationLabel: "Oriental Pearl Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14690", + cordinates: "Point(31.039116 59.954012)", + locationLabel: "Oreshek fortress", + }, + { + location: "http://www.wikidata.org/entity/Q4336185", + cordinates: "Point(55.090308 51.771432)", + locationLabel: "Orenburgskiĭ Nepli͡uevskiĭ kadetskiĭ korpus", + }, + { + location: "http://www.wikidata.org/entity/Q1425301", + cordinates: "Point(-123.085 42.4931)", + locationLabel: "Oregon Vortex", + }, + { + location: "http://www.wikidata.org/entity/Q2735712", + cordinates: "Point(103.831908333 1.305083333)", + locationLabel: "Orchard Road", + }, + { + location: "http://www.wikidata.org/entity/Q10611052", + cordinates: "Point(18.01361111 59.39055556)", + locationLabel: "Orangery Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5773209", + cordinates: "Point(18.855808 -33.939542)", + locationLabel: "Oom Samie se Winkel", + }, + { + location: "http://www.wikidata.org/entity/Q2585609", + cordinates: "Point(36.029 61.673)", + locationLabel: "Onega petroglyphs", + }, + { + location: "http://www.wikidata.org/entity/Q11245", + cordinates: "Point(-74.0135 40.713)", + locationLabel: "One World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q66309027", + cordinates: "Point(31.738611111 -24.004444444)", + locationLabel: "Olifants Camp", + }, + { + location: "http://www.wikidata.org/entity/Q55439926", + cordinates: "Point(30.3997707 59.7235882)", + locationLabel: "Olenins' House", + }, + { + location: "http://www.wikidata.org/entity/Q75191039", + cordinates: "Point(27.56664 53.90069)", + locationLabel: "Old building of National Library of Belarus", + }, + { + location: "http://www.wikidata.org/entity/Q4441179", + cordinates: "Point(28.183203 59.374933)", + locationLabel: "Old Town", + }, + { + location: "http://www.wikidata.org/entity/Q16656355", + cordinates: "Point(44.55055556 48.51222222)", + locationLabel: "Old Sarepta", + }, + { + location: "http://www.wikidata.org/entity/Q1753590", + cordinates: "Point(-0.005944444 51.483666666)", + locationLabel: "Old Royal Naval College", + }, + { + location: "http://www.wikidata.org/entity/Q2018436", + cordinates: "Point(144.965277777 -37.808055555)", + locationLabel: "Old Melbourne Gaol", + }, + { + location: "http://www.wikidata.org/entity/Q10502451", + cordinates: "Point(20.25483333 63.82611111)", + locationLabel: "Old House of Bank", + }, + { + location: "http://www.wikidata.org/entity/Q3748659", + cordinates: "Point(39.1892 -6.16139)", + locationLabel: "Old Fort of Zanzibar", + }, + { + location: "http://www.wikidata.org/entity/Q858794", + cordinates: "Point(-110.82816 44.46023)", + locationLabel: "Old Faithful", + }, + { + location: "http://www.wikidata.org/entity/Q4009183", + cordinates: "Point(39.19262 -6.15839)", + locationLabel: "Old Dispensary", + }, + { + location: "http://www.wikidata.org/entity/Q439484", + cordinates: "Point(10.9722 49.031)", + locationLabel: "Old City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q26253129", + cordinates: "Point(18.10783 59.32558)", + locationLabel: "Oktorp Farmstead, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q7082256", + cordinates: "Point(-95.9906 36.1567)", + locationLabel: "Oklahoma Jazz Hall of Fame", + }, + { + location: "http://www.wikidata.org/entity/Q638272", + cordinates: "Point(-97.517222 35.472778)", + locationLabel: "Oklahoma City National Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q7082143", + cordinates: "Point(-97.5206 35.4697)", + locationLabel: "Oklahoma City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q16373887", + cordinates: "Point(44.79698 41.699311)", + locationLabel: "Officers House, Tbilisi", + }, + { + location: "http://www.wikidata.org/entity/Q2646785", + cordinates: "Point(132.86783 -23.73171)", + locationLabel: "Ochre Pits", + }, + { + location: "http://www.wikidata.org/entity/Q4112966", + cordinates: "Point(131.8761389 43.12124167)", + locationLabel: "Oceanarium of Vladivostok", + }, + { + location: "http://www.wikidata.org/entity/Q4332495", + visitors: "600000", + cordinates: "Point(30.3389 59.9191)", + locationLabel: "Oceanarium in Saint Petersburg", + }, + { + location: "http://www.wikidata.org/entity/Q21639727", + cordinates: "Point(82.919506 55.031199)", + locationLabel: "Oblpotrebsoyuz Building, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q48955083", + cordinates: "Point(82.91948 55.03761)", + locationLabel: "Oblplan House", + }, + { + location: "http://www.wikidata.org/entity/Q25437138", + cordinates: "Point(23.84278 49.25194)", + locationLabel: "Oak Ivan Franko", + }, + { + location: "http://www.wikidata.org/entity/Q461314", + cordinates: "Point(11.0776 49.4552)", + locationLabel: "Nürnberger Rathaus", + }, + { + location: "http://www.wikidata.org/entity/Q489902", + cordinates: "Point(10.5 48.85)", + locationLabel: "Nördlingen", + }, + { + location: "http://www.wikidata.org/entity/Q49102019", + cordinates: "Point(17.366111111 58.808333333)", + locationLabel: "Nynäs Castle Orangery", + }, + { + location: "http://www.wikidata.org/entity/Q2242752", + cordinates: "Point(17.36611111 58.80833333)", + locationLabel: "Nynäs Castle", + }, + { + location: "http://www.wikidata.org/entity/Q21661315", + cordinates: "Point(24.113166666 56.950222222)", + locationLabel: "Nymph Fountain", + }, + { + location: "http://www.wikidata.org/entity/Q7071172", + cordinates: "Point(-0.197 51.05)", + locationLabel: "Nymans", + }, + { + location: "http://www.wikidata.org/entity/Q1779071", + cordinates: "Point(17.01166667 58.74847222)", + locationLabel: "Nyköping Castle", + }, + { + location: "http://www.wikidata.org/entity/Q51308584", + cordinates: "Point(50.1067436 53.1941044)", + locationLabel: "Nuychev House, Samara", + }, + { + location: "http://www.wikidata.org/entity/Q1430090", + cordinates: "Point(28.970277777 41.010277777)", + locationLabel: "Nuruosmaniye Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q42440624", + cordinates: "Point(83.035 54.98)", + locationLabel: "Novosibirsk Planetarium", + }, + { + location: "http://www.wikidata.org/entity/Q4322964", + cordinates: "Point(37.627691666 55.771811111)", + locationLabel: "Novo-Sukharev Market", + }, + { + location: "http://www.wikidata.org/entity/Q55098971", + cordinates: "Point(-0.1231524 51.5184022)", + locationLabel: "Novelty Automation", + }, + { + location: "http://www.wikidata.org/entity/Q2981", + visitors: "12000000", + cordinates: "Point(2.3498 48.853)", + locationLabel: "Notre-Dame de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q251601", + cordinates: "Point(28.991388888 41.051666666)", + locationLabel: "Nişantaşı", + }, + { + location: "http://www.wikidata.org/entity/Q52834202", + cordinates: "Point(61.766091 57.947953)", + locationLabel: "Nizhnaya Sinyachikha Church", + }, + { + location: "http://www.wikidata.org/entity/Q19911342", + cordinates: "Point(37.6199 55.7558)", + locationLabel: "Nikolsky Trade Rows, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q51885222", + cordinates: "Point(44.00139 56.325628)", + locationLabel: "Nikolskaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q19909656", + cordinates: "Point(37.76641422 55.79154159)", + locationLabel: "Nikolaevskaya military almshouse", + }, + { + location: "http://www.wikidata.org/entity/Q19615098", + cordinates: "Point(46.023958333 51.532069444)", + locationLabel: "Nikitin House, Saratov", + }, + { + location: "http://www.wikidata.org/entity/Q1990266", + cordinates: "Point(19.0815867 50.2434308)", + locationLabel: "Nikiszowiec", + }, + { + location: "http://www.wikidata.org/entity/Q2234723", + cordinates: "Point(103.788 1.40226)", + locationLabel: "Night Safari", + }, + { + location: "http://www.wikidata.org/entity/Q64518136", + cordinates: "Point(27.56462 53.90282)", + locationLabel: "Niezaliežnasci Avenue, 26", + }, + { + location: "http://www.wikidata.org/entity/Q72682430", + cordinates: "Point(8.355027 39.067952)", + locationLabel: "Nido dei Passeri", + }, + { + location: "http://www.wikidata.org/entity/Q34221", + cordinates: "Point(-79.071 43.08)", + locationLabel: "Niagara Falls", + }, + { + location: "http://www.wikidata.org/entity/Q7020264", + cordinates: "Point(-4.0147 51.8841)", + locationLabel: "Newton House", + }, + { + location: "http://www.wikidata.org/entity/Q339503", + cordinates: "Point(-6.4755655 53.6947251)", + locationLabel: "Newgrange", + }, + { + location: "http://www.wikidata.org/entity/Q29018627", + cordinates: "Point(40.111712 47.411301)", + locationLabel: "New York Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q66363109", + cordinates: "Point(26.561861111 48.673722222)", + locationLabel: "New West Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11081514", + cordinates: "Point(121.85625 25.108349)", + locationLabel: "New Taipei City Gold Museum", + }, + { + location: "http://www.wikidata.org/entity/Q375375", + cordinates: "Point(-80.925277777 29.030555555)", + locationLabel: "New Smyrna Beach", + }, + { + location: "http://www.wikidata.org/entity/Q911720", + cordinates: "Point(28.972141 41.016875)", + locationLabel: "New Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q19857447", + cordinates: "Point(37.641111111 55.741666666)", + locationLabel: "New Krigskomissariat, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q1481707", + cordinates: "Point(11.83888889 57.685)", + locationLabel: "New Elfsborg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q66362283", + cordinates: "Point(26.564166666 48.673361111)", + locationLabel: "New East Tower", + }, + { + location: "http://www.wikidata.org/entity/Q82878", + cordinates: "Point(11.4306 48.7647)", + locationLabel: "New Castle", + }, + { + location: "http://www.wikidata.org/entity/Q21026905", + cordinates: "Point(30.336667 59.934444)", + locationLabel: "Nevskiy 54", + }, + { + location: "http://www.wikidata.org/entity/Q4152", + cordinates: "Point(10.7496457 47.55773)", + locationLabel: "Neuschwanstein Castle", + }, + { + location: "http://www.wikidata.org/entity/Q948747", + cordinates: "Point(42.241111111 38.619444444)", + locationLabel: "Nemrut", + }, + { + location: "http://www.wikidata.org/entity/Q6990632", + cordinates: "Point(28.0546 -26.1074)", + locationLabel: "Nelson Mandela Square", + }, + { + location: "http://www.wikidata.org/entity/Q20032007", + cordinates: "Point(37.592904 55.756018)", + locationLabel: "Nekrasov mansion", + }, + { + location: "http://www.wikidata.org/entity/Q3337338", + cordinates: "Point(-87.599722 41.891389)", + locationLabel: "Navy Pier", + }, + { + location: "http://www.wikidata.org/entity/Q6982123", + cordinates: "Point(-86.86218 30.37937)", + locationLabel: "Navarre Beach", + }, + { + location: "http://www.wikidata.org/entity/Q6982123", + cordinates: "Point(-86.862741666 30.381488888)", + locationLabel: "Navarre Beach", + }, + { + location: "http://www.wikidata.org/entity/Q10577450", + cordinates: "Point(15.5995 56.1614)", + locationLabel: "Naval Museum of Sweden", + }, + { + location: "http://www.wikidata.org/entity/Q3895458", + cordinates: "Point(9.2 45.4)", + locationLabel: "Natural Central Park of Milano", + }, + { + location: "http://www.wikidata.org/entity/Q1136137", + cordinates: "Point(-74.013611111 40.711388888)", + locationLabel: "National September 11 Memorial & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6974518", + cordinates: "Point(-1.109 50.801)", + locationLabel: "National Museum of the Royal Navy", + }, + { + location: "http://www.wikidata.org/entity/Q148554", + visitors: "6900000", + cordinates: "Point(-77.0259 38.8913)", + locationLabel: "National Museum of Natural History", + }, + { + location: "http://www.wikidata.org/entity/Q1074318", + visitors: "7390000", + cordinates: "Point(116.394444 39.903333)", + locationLabel: "National Museum of China", + }, + { + location: "http://www.wikidata.org/entity/Q1074318", + visitors: "7500000", + cordinates: "Point(116.394444 39.903333)", + locationLabel: "National Museum of China", + }, + { + location: "http://www.wikidata.org/entity/Q1074318", + visitors: "8610092", + cordinates: "Point(116.394444 39.903333)", + locationLabel: "National Museum of China", + }, + { + location: "http://www.wikidata.org/entity/Q99675884", + cordinates: "Point(170.9613693 -42.7168664)", + locationLabel: "National Kiwi Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1962312", + cordinates: "Point(52.548508 29.608614)", + locationLabel: "Nasir-ol-Molk Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q24935996", + cordinates: "Point(37.639722222 55.758611111)", + locationLabel: "Naschokin House", + }, + { + location: "http://www.wikidata.org/entity/Q19831748", + cordinates: "Point(37.635555555 55.757777777)", + locationLabel: "Naryshkin-Raguzinskye house", + }, + { + location: "http://www.wikidata.org/entity/Q4519", + cordinates: "Point(51.677322 32.658229)", + locationLabel: "Naqsh-e Jahan Square", + }, + { + location: "http://www.wikidata.org/entity/Q11353344", + cordinates: "Point(129.932444 33.549)", + locationLabel: "Nanatsugama", + }, + { + location: "http://www.wikidata.org/entity/Q11883965", + cordinates: "Point(25.412777777 65.031944444)", + locationLabel: "Nallikari", + }, + { + location: "http://www.wikidata.org/entity/Q1093757", + cordinates: "Point(30.3049 59.9319)", + locationLabel: "Nabokov House", + }, + { + location: "http://www.wikidata.org/entity/Q65718506", + cordinates: "Point(5.1580821 52.292957)", + locationLabel: "Naarden Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q18719541", + cordinates: "Point(61.417111111 55.147416666)", + locationLabel: "Na novyi put", + }, + { + location: "http://www.wikidata.org/entity/Q50359350", + cordinates: "Point(82.92576 55.02302)", + locationLabel: "NKVD House, Serebrebbikovskaya street 23", + }, + { + location: "http://www.wikidata.org/entity/Q50328933", + cordinates: "Point(82.926714 55.023025)", + locationLabel: "NKVD House, Serebrebbikovskaya street 16", + }, + { + location: "http://www.wikidata.org/entity/Q21660538", + cordinates: "Point(37.619722 55.626568)", + locationLabel: "NICEVT", + }, + { + location: "http://www.wikidata.org/entity/Q10796319", + cordinates: "Point(108.290833333 14.600277777)", + locationLabel: "Măng Đen", + }, + { + location: "http://www.wikidata.org/entity/Q10796319", + cordinates: "Point(108.3013889 14.62361111)", + locationLabel: "Măng Đen", + }, + { + location: "http://www.wikidata.org/entity/Q10796319", + cordinates: "Point(108.323333333 14.606388888)", + locationLabel: "Măng Đen", + }, + { + location: "http://www.wikidata.org/entity/Q1299695", + cordinates: "Point(9.16638889 56.45611111)", + locationLabel: "Mønsted Limestone Mine", + }, + { + location: "http://www.wikidata.org/entity/Q2242518", + cordinates: "Point(17.30666667 59.38416667)", + locationLabel: "Mälsåker House", + }, + { + location: "http://www.wikidata.org/entity/Q2917537", + cordinates: "Point(-122.002 37.0126)", + locationLabel: "Mystery Spot", + }, + { + location: "http://www.wikidata.org/entity/Q8342661", + cordinates: "Point(-112.062 33.3566)", + locationLabel: "Mystery Castle", + }, + { + location: "http://www.wikidata.org/entity/Q6027466", + cordinates: "Point(27.413412 37.037658)", + locationLabel: "Myndos Gate", + }, + { + location: "http://www.wikidata.org/entity/Q21636752", + cordinates: "Point(37.6485283 55.76371054)", + locationLabel: "Muzeĭ-kvartira A.M. Vasnet︠s︡ova", + }, + { + location: "http://www.wikidata.org/entity/Q97038486", + cordinates: "Point(9.392429 41.079556)", + locationLabel: "Mushroom rock", + }, + { + location: "http://www.wikidata.org/entity/Q1321141", + cordinates: "Point(-73.95188 40.79248)", + locationLabel: "Museum of the City of New York", + }, + { + location: "http://www.wikidata.org/entity/Q10590579", + cordinates: "Point(18.01605556 59.38852778)", + locationLabel: "Museum of Queen Kristina's coronation carriage", + }, + { + location: "http://www.wikidata.org/entity/Q4306218", + cordinates: "Point(45.18383611 54.18039444)", + locationLabel: "Museum of Military History 1941-1945", + }, + { + location: "http://www.wikidata.org/entity/Q1632115", + cordinates: "Point(18.070277777 59.328333333)", + locationLabel: "Museum of Medieval Stockholm", + }, + { + location: "http://www.wikidata.org/entity/Q4306041", + cordinates: "Point(44.018611111 56.322777777)", + locationLabel: "Museum of Maxim Gorky in Nizhny Novgorod", + }, + { + location: "http://www.wikidata.org/entity/Q65252133", + cordinates: "Point(69.360555555 53.281944444)", + locationLabel: "Museum of History of Kokshetau", + }, + { + location: "http://www.wikidata.org/entity/Q6940817", + cordinates: "Point(-83.0607 42.3527)", + locationLabel: "Museum of Contemporary Art Detroit", + }, + { + location: "http://www.wikidata.org/entity/Q10590596", + cordinates: "Point(17.88862222 59.32508611)", + locationLabel: "Museum of Adriaen de Vries", + }, + { + location: "http://www.wikidata.org/entity/Q10590595", + cordinates: "Point(18.071 59.3274)", + locationLabel: "Museum Tre Kronor", + }, + { + location: "http://www.wikidata.org/entity/Q151963", + cordinates: "Point(13.395555555 52.521388888)", + locationLabel: "Museum Island", + }, + { + location: "http://www.wikidata.org/entity/Q25409771", + cordinates: "Point(-100.978086369 22.149627293)", + locationLabel: "Museo Regional Potosino", + }, + { + location: "http://www.wikidata.org/entity/Q30889401", + cordinates: "Point(38.914984 52.680215)", + locationLabel: "Muravyov-Karsky estate", + }, + { + location: "http://www.wikidata.org/entity/Q4473263", + cordinates: "Point(135.062777777 48.475416666)", + locationLabel: "Muravyov-Amursky Street", + }, + { + location: "http://www.wikidata.org/entity/Q50035537", + cordinates: "Point(39.764254 47.227917)", + locationLabel: + 'Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health', + }, + { + location: "http://www.wikidata.org/entity/Q59421122", + cordinates: "Point(-6.264667 53.352734)", + locationLabel: "Moving Crib", + }, + { + location: "http://www.wikidata.org/entity/Q97958600", + cordinates: "Point(121.56999 24.1729)", + locationLabel: "Mountain-Moon Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q524", + cordinates: "Point(14.425555555 40.821388888)", + locationLabel: "Mount Vesuvius", + }, + { + location: "http://www.wikidata.org/entity/Q83497", + cordinates: "Point(-103.459825 43.878947222)", + locationLabel: "Mount Rushmore", + }, + { + location: "http://www.wikidata.org/entity/Q6922887", + cordinates: "Point(-75.199722 39.983333)", + locationLabel: "Mount Pleasant", + }, + { + location: "http://www.wikidata.org/entity/Q495431", + cordinates: "Point(128.200277777 38.688055555)", + locationLabel: "Mount Kumgang Tourist Region", + }, + { + location: "http://www.wikidata.org/entity/Q7296", + cordinates: "Point(37.359166666 -3.066666666)", + locationLabel: "Mount Kilimanjaro", + }, + { + location: "http://www.wikidata.org/entity/Q6054200", + cordinates: "Point(26.746666666 39.638611111)", + locationLabel: "Mount Ida National Park", + }, + { + location: "http://www.wikidata.org/entity/Q6054200", + cordinates: "Point(26.9455556 39.6636111)", + locationLabel: "Mount Ida National Park", + }, + { + location: "http://www.wikidata.org/entity/Q39231", + cordinates: "Point(138.730555555 35.3625)", + locationLabel: "Mount Fuji", + }, + { + location: "http://www.wikidata.org/entity/Q6920714", + cordinates: "Point(103.820833333 1.272222222)", + locationLabel: "Mount Faber", + }, + { + location: "http://www.wikidata.org/entity/Q6920714", + cordinates: "Point(103.817 1.277)", + locationLabel: "Mount Faber", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "0", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "2", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "3", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "4", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "6", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "106", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "146", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "547", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "641", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "648", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "658", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "807", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q513", + visitors: "891", + cordinates: "Point(86.925277777 27.988055555)", + locationLabel: "Mount Everest", + }, + { + location: "http://www.wikidata.org/entity/Q16990", + cordinates: "Point(14.993220288 37.750834514)", + locationLabel: "Mount Etna", + }, + { + location: "http://www.wikidata.org/entity/Q126804", + cordinates: "Point(35.48 38.52)", + locationLabel: "Mount Erciyes", + }, + { + location: "http://www.wikidata.org/entity/Q4027028", + cordinates: "Point(31.45523 40.74596)", + locationLabel: "Mount Bolu Tunnel", + }, + { + location: "http://www.wikidata.org/entity/Q72303", + cordinates: "Point(44.300380555 39.702761111)", + locationLabel: "Mount Ararat", + }, + { + location: "http://www.wikidata.org/entity/Q646940", + cordinates: "Point(37.602483333 55.753919444)", + locationLabel: "Mosselprom building", + }, + { + location: "http://www.wikidata.org/entity/Q21641834", + cordinates: "Point(37.618611111 55.833055555)", + locationLabel: "Moskvarium", + }, + { + location: "http://www.wikidata.org/entity/Q16678040", + cordinates: "Point(37.613055555 55.771944444)", + locationLabel: "Moscow diocesan house", + }, + { + location: "http://www.wikidata.org/entity/Q335134", + cordinates: "Point(37.62194444 55.7575)", + locationLabel: "Moscow Print Yard", + }, + { + location: "http://www.wikidata.org/entity/Q4304240", + cordinates: "Point(37.583611111 55.761388888)", + locationLabel: "Moscow Planetarium", + }, + { + location: "http://www.wikidata.org/entity/Q4341311", + cordinates: "Point(37.641666666 55.829166666)", + locationLabel: "Moscow Pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q133274", + cordinates: "Point(37.617777777 55.751666666)", + locationLabel: "Moscow Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q4304245", + cordinates: "Point(37.636647 55.76408)", + locationLabel: "Moscow Central Post Office", + }, + { + location: "http://www.wikidata.org/entity/Q20011655", + cordinates: "Point(37.653797 55.756033)", + locationLabel: "Morozovy estate", + }, + { + location: "http://www.wikidata.org/entity/Q106675191", + cordinates: "Point(116.799305555 6.037277777)", + locationLabel: "Moroli River", + }, + { + location: "http://www.wikidata.org/entity/Q4302553", + cordinates: "Point(45.18750556 54.17326944)", + locationLabel: "Mordovian History Museum", + }, + { + location: "http://www.wikidata.org/entity/Q66226771", + cordinates: "Point(31.399166666 -23.521666666)", + locationLabel: "Mopani Camp", + }, + { + location: "http://www.wikidata.org/entity/Q284624", + cordinates: "Point(110.46722222 24.72833333)", + locationLabel: "Moon Hill", + }, + { + location: "http://www.wikidata.org/entity/Q1807595", + cordinates: "Point(22.00472223 60.47305557)", + locationLabel: "Moomin World", + }, + { + location: "http://www.wikidata.org/entity/Q28668109", + cordinates: "Point(9.19396 45.51756)", + locationLabel: "Monumento ai Caduti di Niguarda", + }, + { + location: "http://www.wikidata.org/entity/Q53742335", + cordinates: "Point(44.561111111 48.766111111)", + locationLabel: "Monument to the heroes of defense of Red Tsaritsyn", + }, + { + location: "http://www.wikidata.org/entity/Q55664048", + cordinates: "Point(44.806479 41.693928)", + locationLabel: "Monument to the first Georgian printing house", + }, + { + location: "http://www.wikidata.org/entity/Q29019680", + cordinates: "Point(40.268444 48.324005)", + locationLabel: "Monument to the War Heroes, Kamensk-Shakhtinsky", + }, + { + location: "http://www.wikidata.org/entity/Q19842255", + cordinates: "Point(30.321944444 59.842916666)", + locationLabel: + "Monument to the Heroic Defenders of Leningrad on Victory Square (Saint Petersburg)", + }, + { + location: "http://www.wikidata.org/entity/Q51331060", + cordinates: "Point(37.594444444 55.757222222)", + locationLabel: "Monument to the Heroes – Schoolchildren", + }, + { + location: "http://www.wikidata.org/entity/Q11823227", + cordinates: "Point(60.6164 56.8398)", + locationLabel: "Monument to Yakov Sverdlov", + }, + { + location: "http://www.wikidata.org/entity/Q48946923", + cordinates: "Point(-169.7095808 66.0192979)", + locationLabel: "Monument to Semyon Dezhnev", + }, + { + location: "http://www.wikidata.org/entity/Q18407331", + cordinates: "Point(43.996666666 56.329722222)", + locationLabel: "Monument to Minin and Pozharsky", + }, + { + location: "http://www.wikidata.org/entity/Q53498088", + cordinates: "Point(37.5969 55.742663)", + locationLabel: "Monument to Leo Tolstoy on Prechistenka", + }, + { + location: "http://www.wikidata.org/entity/Q4343443", + cordinates: "Point(37.6175 55.753888888)", + locationLabel: "Monument to Grand Duke Sergey Alexandrovich", + }, + { + location: "http://www.wikidata.org/entity/Q28975942", + cordinates: "Point(39.421261 47.117061)", + locationLabel: "Monument to Alexander Suvorov", + }, + { + location: "http://www.wikidata.org/entity/Q192017", + cordinates: "Point(-110.1 36.983333333)", + locationLabel: "Monument Valley", + }, + { + location: "http://www.wikidata.org/entity/Q16431639", + cordinates: "Point(73.082675 49.809047)", + locationLabel: "Monument Miner's Glory", + }, + { + location: "http://www.wikidata.org/entity/Q323767", + cordinates: "Point(2.32198 48.84211)", + locationLabel: "Montparnasse Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7930443", + cordinates: "Point(-122.030278 37.240556)", + locationLabel: "Montalvo Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q14040866", + cordinates: "Point(-9.194064 38.72975)", + locationLabel: "Monsanto Forest Park", + }, + { + location: "http://www.wikidata.org/entity/Q1207691", + cordinates: "Point(114.170555555 22.3225)", + locationLabel: "Mong Kok", + }, + { + location: "http://www.wikidata.org/entity/Q21662351", + cordinates: "Point(43.78 54.429722222)", + locationLabel: + "Monastery of the Dormition of the Theotokos, Krasnoslobodsk", + }, + { + location: "http://www.wikidata.org/entity/Q201902", + visitors: "10000000", + cordinates: "Point(7.693055555 45.068888888)", + locationLabel: "Mole Antonelliana", + }, + { + location: "http://www.wikidata.org/entity/Q96945305", + cordinates: "Point(-8.720277777 42.385555555)", + locationLabel: "Mogor Beach", + }, + { + location: "http://www.wikidata.org/entity/Q1404414", + cordinates: "Point(6.88263 51.4935)", + locationLabel: "Modellbahnwelt Oberhausen", + }, + { + location: "http://www.wikidata.org/entity/Q70306288", + cordinates: "Point(112.622466666 31.204891666)", + locationLabel: "Mochou Village", + }, + { + location: "http://www.wikidata.org/entity/Q25438522", + cordinates: "Point(-42.984565997 -22.446467816)", + locationLabel: "Mirante da Granja Guarani", + }, + { + location: "http://www.wikidata.org/entity/Q56771273", + visitors: "650000", + cordinates: "Point(8.643 49.533)", + locationLabel: "Miramar", + }, + { + location: "http://www.wikidata.org/entity/Q66965689", + cordinates: "Point(-8.989333333 38.481472222)", + locationLabel: "Miradouro do Portinho da Arrábida", + }, + { + location: "http://www.wikidata.org/entity/Q51866948", + cordinates: "Point(37.620555555 55.77)", + locationLabel: "Mir Kino Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q1074829", + cordinates: "Point(114.237009 22.553772)", + locationLabel: "Minsk World", + }, + { + location: "http://www.wikidata.org/entity/Q98557050", + cordinates: "Point(150.72737 -34.6345)", + locationLabel: "Minnamurra Rainforest", + }, + { + location: "http://www.wikidata.org/entity/Q4078425", + cordinates: "Point(83.783397 53.329605)", + locationLabel: "Mining School, Barnaul", + }, + { + location: "http://www.wikidata.org/entity/Q1085952", + cordinates: "Point(28.948611111 41.06)", + locationLabel: "Miniatürk", + }, + { + location: "http://www.wikidata.org/entity/Q41135", + cordinates: "Point(116.2175 40.253333333)", + locationLabel: "Ming tombs", + }, + { + location: "http://www.wikidata.org/entity/Q6864246", + cordinates: "Point(-3.098059 53.055679)", + locationLabel: "Minera Lead Mines", + }, + { + location: "http://www.wikidata.org/entity/Q6864246", + cordinates: "Point(-3.096739 53.055392)", + locationLabel: "Minera Lead Mines", + }, + { + location: "http://www.wikidata.org/entity/Q667094", + cordinates: "Point(18.12139 59.35861)", + locationLabel: "Millesgården", + }, + { + location: "http://www.wikidata.org/entity/Q99236", + cordinates: "Point(3.022222222 44.079444444)", + locationLabel: "Millau Viaduct", + }, + { + location: "http://www.wikidata.org/entity/Q28122550", + cordinates: "Point(40.104705 47.412598)", + locationLabel: "Military prison, Novocherkassk", + }, + { + location: "http://www.wikidata.org/entity/Q16630931", + cordinates: "Point(135.05265 48.47339)", + locationLabel: + "Military History Museum of the Far Eastern Military District", + }, + { + location: "http://www.wikidata.org/entity/Q18068", + visitors: "2140786", + cordinates: "Point(9.191388888 45.464166666)", + locationLabel: "Milan Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q622796", + cordinates: "Point(51.375 35.744444444)", + locationLabel: "Milad Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4297751", + cordinates: "Point(30.332777777 59.939722222)", + locationLabel: "Mikhaylovsky Garden, Saint Petersburg", + }, + { + location: "http://www.wikidata.org/entity/Q869275", + cordinates: "Point(138.52277778 34.995)", + locationLabel: "Miho no Matsubara", + }, + { + location: "http://www.wikidata.org/entity/Q4438592", + cordinates: "Point(37.623954 55.753307)", + locationLabel: "Middle Trade Rows", + }, + { + location: "http://www.wikidata.org/entity/Q47501327", + cordinates: "Point(37.609813888 55.760097222)", + locationLabel: "Meĭerkholʹda", + }, + { + location: "http://www.wikidata.org/entity/Q16646134", + cordinates: "Point(37.625136111 55.754958333)", + locationLabel: "Metochion of Trinity Lavra of St. Sergius, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q431381", + cordinates: "Point(-111.023333333 35.028055555)", + locationLabel: "Meteor Crater", + }, + { + location: "http://www.wikidata.org/entity/Q6819812", + cordinates: "Point(103.855 1.28683)", + locationLabel: "Merlion Park", + }, + { + location: "http://www.wikidata.org/entity/Q51052940", + cordinates: "Point(60.60056 56.84)", + locationLabel: "Merchant Pshenichnikov's house", + }, + { + location: "http://www.wikidata.org/entity/Q61987420", + cordinates: "Point(-8.894264 38.522977)", + locationLabel: "Mercado do Livramento", + }, + { + location: "http://www.wikidata.org/entity/Q975426", + cordinates: "Point(30.295833333 59.938888888)", + locationLabel: "Menshikov Palace (Saint Petersburg)", + }, + { + location: "http://www.wikidata.org/entity/Q85379063", + cordinates: "Point(45.692394 43.31665)", + locationLabel: "Memorial to the victims of the fight against terrorism", + }, + { + location: "http://www.wikidata.org/entity/Q21641627", + cordinates: "Point(44.7691 43.19685)", + locationLabel: "Memorial of memory and glory in Nazran", + }, + { + location: "http://www.wikidata.org/entity/Q4057544", + cordinates: "Point(36.52344722 45.38096944)", + locationLabel: "Memorial complex of defense of Aji-Mushkay quarry", + }, + { + location: "http://www.wikidata.org/entity/Q19910586", + cordinates: "Point(38.917864 47.222335)", + locationLabel: "Memorable sign Barrier", + }, + { + location: "http://www.wikidata.org/entity/Q28654047", + cordinates: "Point(39.71888889 47.22277778)", + locationLabel: "Melkonov-Yezenkov House", + }, + { + location: "http://www.wikidata.org/entity/Q287165", + cordinates: "Point(139.699166666 35.676111111)", + locationLabel: "Meiji Shrine", + }, + { + location: "http://www.wikidata.org/entity/Q42340375", + cordinates: "Point(9.180961111 45.457591666)", + locationLabel: "Medieval walls of the historic center of Milan", + }, + { + location: "http://www.wikidata.org/entity/Q5806", + cordinates: "Point(39.826111111 21.4225)", + locationLabel: "Mecca", + }, + { + location: "http://www.wikidata.org/entity/Q4342480", + cordinates: "Point(34.944517 51.60635)", + locationLabel: "Mazepa Estate, Ivanovskoye", + }, + { + location: "http://www.wikidata.org/entity/Q326263", + cordinates: "Point(52.583183 29.622539)", + locationLabel: "Mausoleum of Saadi Shirazi", + }, + { + location: "http://www.wikidata.org/entity/Q17072432", + cordinates: "Point(85.134444444 25.609444444)", + locationLabel: "Maurya Lok", + }, + { + location: "http://www.wikidata.org/entity/Q20011649", + cordinates: "Point(37.6341 55.758547222)", + locationLabel: "Matvey Kazakov's Moscow house", + }, + { + location: "http://www.wikidata.org/entity/Q1374", + cordinates: "Point(7.658888888 45.976388888)", + locationLabel: "Matterhorn", + }, + { + location: "http://www.wikidata.org/entity/Q55425469", + cordinates: "Point(30.400259 59.720164)", + locationLabel: "Masterovoy Dvor", + }, + { + location: "http://www.wikidata.org/entity/Q3034490", + cordinates: "Point(34.186666666 44.516944444)", + locationLabel: "Massandra winery", + }, + { + location: "http://www.wikidata.org/entity/Q8770950", + cordinates: "Point(-15.5853 27.7417)", + locationLabel: "Maspalomas Dunes", + }, + { + location: "http://www.wikidata.org/entity/Q1907146", + cordinates: "Point(103.859 1.30214)", + locationLabel: "Masjid Sultan", + }, + { + location: "http://www.wikidata.org/entity/Q50328983", + cordinates: "Point(82.92191 55.02252)", + locationLabel: "Mashtakov House, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q3364400", + cordinates: "Point(30.24175 59.971861111)", + locationLabel: "Maritime Victory Park", + }, + { + location: "http://www.wikidata.org/entity/Q4303356", + cordinates: "Point(39.718479 43.58076)", + locationLabel: "Marine station", + }, + { + location: "http://www.wikidata.org/entity/Q42897167", + cordinates: "Point(22.93199 43.994438)", + locationLabel: "Marincu Palace", + }, + { + location: "http://www.wikidata.org/entity/Q40129", + cordinates: "Point(103.855833333 1.284444444)", + locationLabel: "Marina Bay", + }, + { + location: "http://www.wikidata.org/entity/Q6763788", + cordinates: "Point(103.87141 1.28054)", + locationLabel: "Marina Barrage", + }, + { + location: "http://www.wikidata.org/entity/Q207028", + cordinates: "Point(30.296111111 59.925555555)", + locationLabel: "Mariinsky Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q28871301", + cordinates: "Point(39.7552 47.2376)", + locationLabel: "Mariinskaya Hospital, Nakhichevan-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q12114501", + cordinates: "Point(33.401768 49.066189)", + locationLabel: "Mariinskaya Gymnasium", + }, + { + location: "http://www.wikidata.org/entity/Q1236679", + cordinates: "Point(13.8225 58.7125)", + locationLabel: "Mariestad Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q20650556", + cordinates: "Point(7.138388888 53.707027777)", + locationLabel: "Marienhöhe", + }, + { + location: "http://www.wikidata.org/entity/Q2681818", + cordinates: "Point(36.533333333 33.833333333)", + locationLabel: "Mar Sarkis", + }, + { + location: "http://www.wikidata.org/entity/Q53324980", + cordinates: "Point(37.618888888 55.739166666)", + locationLabel: "Mansion of Chizhov", + }, + { + location: "http://www.wikidata.org/entity/Q53211544", + cordinates: "Point(37.630555555 55.744722222)", + locationLabel: "Mansion L. I. Geltischeva", + }, + { + location: "http://www.wikidata.org/entity/Q55053038", + cordinates: "Point(37.639444444 55.7625)", + locationLabel: "Manor of Priklonskaya — Levashov — Kildyushevsky", + }, + { + location: "http://www.wikidata.org/entity/Q152072", + cordinates: "Point(4.349988 50.8449844)", + locationLabel: "Manneken Pis", + }, + { + location: "http://www.wikidata.org/entity/Q6750618", + cordinates: "Point(151.281 -33.7991)", + locationLabel: "Manly Sea Life Sanctuary", + }, + { + location: "http://www.wikidata.org/entity/Q4280811", + cordinates: "Point(-2.24191 53.4868)", + locationLabel: "Manchester Castle", + }, + { + location: "http://www.wikidata.org/entity/Q2574216", + cordinates: "Point(31.454468 36.813395)", + locationLabel: "Manavgat Waterfall", + }, + { + location: "http://www.wikidata.org/entity/Q820002", + cordinates: "Point(44.535277777 48.741388888)", + locationLabel: "Mamayev Kurgan", + }, + { + location: "http://www.wikidata.org/entity/Q820002", + cordinates: "Point(44.536944444 48.7425)", + locationLabel: "Mamayev Kurgan", + }, + { + location: "http://www.wikidata.org/entity/Q1810918", + cordinates: "Point(12.9875 55.605)", + locationLabel: "Malmö Castle", + }, + { + location: "http://www.wikidata.org/entity/Q3397053", + cordinates: "Point(41.203055555 38.155833333)", + locationLabel: "Malabadi Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q4165304", + cordinates: "Point(4.753463 45.804749)", + locationLabel: "Maison natale de Jean-Marie Vianney", + }, + { + location: "http://www.wikidata.org/entity/Q2136400", + cordinates: "Point(8.28133 50.0065)", + locationLabel: "Mainz Reduit", + }, + { + location: "http://www.wikidata.org/entity/Q206198", + cordinates: "Point(8.27417 49.9931)", + locationLabel: "Mainz Citadel", + }, + { + location: "http://www.wikidata.org/entity/Q18941620", + cordinates: "Point(27.551555555 53.896388888)", + locationLabel: "Main Post Office, Minsk", + }, + { + location: "http://www.wikidata.org/entity/Q11708267", + cordinates: "Point(18.783882 50.308666)", + locationLabel: "Main Key Hereditary Adit", + }, + { + location: "http://www.wikidata.org/entity/Q50808667", + cordinates: "Point(37.63901515 55.82664491)", + locationLabel: "Main Gate", + }, + { + location: "http://www.wikidata.org/entity/Q848397", + cordinates: "Point(29.00416667 41.02111111)", + locationLabel: "Maiden's Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1884722", + cordinates: "Point(22.600277777 43.718333333)", + locationLabel: "Magura Cave", + }, + { + location: "http://www.wikidata.org/entity/Q16535932", + cordinates: "Point(44.80236111 43.16683333)", + locationLabel: "Magas Consent Tower", + }, + { + location: "http://www.wikidata.org/entity/Q676203", + cordinates: "Point(-72.545555555 -13.163055555)", + locationLabel: "Machu Picchu", + }, + { + location: "http://www.wikidata.org/entity/Q3273471", + cordinates: "Point(114.059444444 22.348888888)", + locationLabel: "Ma Wan Park", + }, + { + location: "http://www.wikidata.org/entity/Q79355426", + cordinates: "Point(10.755194444 59.90575)", + locationLabel: "MUNCH", + }, + { + location: "http://www.wikidata.org/entity/Q19933526", + cordinates: "Point(37.6143 55.767)", + locationLabel: "MMSI na Petrovke", + }, + { + location: "http://www.wikidata.org/entity/Q438054", + cordinates: "Point(10.4134 53.2513)", + locationLabel: "Lüneburger Hafenkran", + }, + { + location: "http://www.wikidata.org/entity/Q366672", + cordinates: "Point(16.04069444 58.55047222)", + locationLabel: "Löfstad Castle", + }, + { + location: "http://www.wikidata.org/entity/Q935973", + cordinates: "Point(13.22 58.675)", + locationLabel: "Läckö Castle", + }, + { + location: "http://www.wikidata.org/entity/Q66361478", + cordinates: "Point(26.563236111 48.673541666)", + locationLabel: "Lyanckoronska tower", + }, + { + location: "http://www.wikidata.org/entity/Q66362591", + cordinates: "Point(26.562277777 48.673361111)", + locationLabel: "Lyacka Tower", + }, + { + location: "http://www.wikidata.org/entity/Q130514", + cordinates: "Point(32.642222222 25.696944444)", + locationLabel: "Luxor", + }, + { + location: "http://www.wikidata.org/entity/Q55285954", + cordinates: "Point(27.540701 55.878082)", + locationLabel: "Lutheran Church, Indra", + }, + { + location: "http://www.wikidata.org/entity/Q514648", + cordinates: "Point(-6.463 52.966)", + locationLabel: "Lugnaquilla", + }, + { + location: "http://www.wikidata.org/entity/Q65038056", + cordinates: "Point(9.96369 48.41061)", + locationLabel: "Lower Eselsberg Fort", + }, + { + location: "http://www.wikidata.org/entity/Q72177820", + cordinates: "Point(30.7834386 36.8509661)", + locationLabel: "Lower Düden Waterfalls", + }, + { + location: "http://www.wikidata.org/entity/Q567518", + cordinates: "Point(13.810833333 51.053611111)", + locationLabel: "Loschwitz Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q65560572", + cordinates: "Point(-105.9376 35.6856)", + locationLabel: "Loretto staircase", + }, + { + location: "http://www.wikidata.org/entity/Q4266548", + cordinates: "Point(39.601077 43.691585)", + locationLabel: "Loo Bysantine Church", + }, + { + location: "http://www.wikidata.org/entity/Q3364766", + cordinates: "Point(-2.261 51.19)", + locationLabel: "Longleat Safari Park", + }, + { + location: "http://www.wikidata.org/entity/Q101306352", + cordinates: "Point(121.918027777 25.101)", + locationLabel: "Longdong Four Seasons Bay", + }, + { + location: "http://www.wikidata.org/entity/Q10567385", + cordinates: "Point(121.918416666 25.110805555)", + locationLabel: "Longdong (Taiwan)", + }, + { + location: "http://www.wikidata.org/entity/Q160659", + cordinates: "Point(-0.119722222 51.503333333)", + locationLabel: "London Eye", + }, + { + location: "http://www.wikidata.org/entity/Q1513107", + cordinates: "Point(-0.085830555 51.505561111)", + locationLabel: "London Dungeon", + }, + { + location: "http://www.wikidata.org/entity/Q930276", + cordinates: "Point(-122.418888888 37.801944444)", + locationLabel: "Lombard Street", + }, + { + location: "http://www.wikidata.org/entity/Q6667833", + cordinates: "Point(-76.8389 45.6042)", + locationLabel: "Logos Land", + }, + { + location: "http://www.wikidata.org/entity/Q19857945", + cordinates: "Point(37.603333333 55.767222222)", + locationLabel: "Loan Treasury building", + }, + { + location: "http://www.wikidata.org/entity/Q85673779", + cordinates: "Point(-3.9403 53.0046)", + locationLabel: "Llechwedd Slate Caverns", + }, + { + location: "http://www.wikidata.org/entity/Q6659178", + cordinates: "Point(-2.165 49.22)", + locationLabel: "Living Legend", + }, + { + location: "http://www.wikidata.org/entity/Q2392844", + cordinates: "Point(103.8525 1.307777777)", + locationLabel: "Little India", + }, + { + location: "http://www.wikidata.org/entity/Q1144576", + cordinates: "Point(28.971944 41.002778)", + locationLabel: "Little Hagia Sophia", + }, + { + location: "http://www.wikidata.org/entity/Q10669723", + cordinates: "Point(11.98944444 57.71430556)", + locationLabel: "Lion Redoubt", + }, + { + location: "http://www.wikidata.org/entity/Q1236659", + cordinates: "Point(15.616666666 58.411111111)", + locationLabel: "Linköping Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q6554440", + cordinates: "Point(15.61583333 58.41055556)", + locationLabel: "Linköping Castle", + }, + { + location: "http://www.wikidata.org/entity/Q213559", + cordinates: "Point(-77.050138888 38.889277777)", + locationLabel: "Lincoln Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q744406", + cordinates: "Point(27.34075 37.939138888)", + locationLabel: "Library of Celsus", + }, + { + location: "http://www.wikidata.org/entity/Q16912811", + cordinates: "Point(20.266667 63.829722)", + locationLabel: "Lev!", + }, + { + location: "http://www.wikidata.org/entity/Q1821446", + visitors: "40000", + cordinates: "Point(7.2296 53.7093)", + locationLabel: "Leuchtturm Norderney", + }, + { + location: "http://www.wikidata.org/entity/Q66232115", + cordinates: "Point(31.574444444 -23.854444444)", + locationLabel: "Letaba", + }, + { + location: "http://www.wikidata.org/entity/Q29410007", + cordinates: "Point(39.702562 47.218718)", + locationLabel: "Leonidov House", + }, + { + location: "http://www.wikidata.org/entity/Q54841671", + cordinates: "Point(82.898875 55.036578)", + locationLabel: "Lenina Street 86, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q47493727", + cordinates: "Point(39.603353 52.611187)", + locationLabel: "Lenin Street 7 - Gubin House", + }, + { + location: "http://www.wikidata.org/entity/Q16710460", + cordinates: "Point(65.5325 57.1553)", + locationLabel: "Lenin Street 47, Tyumen", + }, + { + location: "http://www.wikidata.org/entity/Q48841286", + cordinates: "Point(-102.15111111 45.9375)", + locationLabel: "Lemmon Petrified Park", + }, + { + location: "http://www.wikidata.org/entity/Q22087791", + cordinates: "Point(9.114958 55.730688)", + locationLabel: "Lego House", + }, + { + location: "http://www.wikidata.org/entity/Q4260388", + cordinates: "Point(37.685623 55.767881)", + locationLabel: "Lefortovo palace", + }, + { + location: "http://www.wikidata.org/entity/Q1517071", + cordinates: "Point(23.491111111 43.204444444)", + locationLabel: "Ledenika", + }, + { + location: "http://www.wikidata.org/entity/Q20892", + cordinates: "Point(-1.510277777 48.635833333)", + locationLabel: "Le Mont-Saint-Michel", + }, + { + location: "http://www.wikidata.org/entity/Q3224227", + cordinates: "Point(2.35372 48.8748)", + locationLabel: "Le Manoir de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q7697795", + cordinates: "Point(103.85 1.28061)", + locationLabel: "Lau Pa Sat", + }, + { + location: "http://www.wikidata.org/entity/Q16646128", + cordinates: "Point(39.70932222 47.22428611)", + locationLabel: "Lash revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q745608", + cordinates: "Point(-115.172222222 36.120833333)", + locationLabel: "Las Vegas Strip", + }, + { + location: "http://www.wikidata.org/entity/Q1882784", + cordinates: "Point(30.812927 36.849211)", + locationLabel: "Lara", + }, + { + location: "http://www.wikidata.org/entity/Q5195257", + cordinates: "Point(-157.71342 21.39014)", + locationLabel: "Lanikai Beach", + }, + { + location: "http://www.wikidata.org/entity/Q5195257", + cordinates: "Point(-157.715 21.39222222)", + locationLabel: "Lanikai Beach", + }, + { + location: "http://www.wikidata.org/entity/Q10397095", + cordinates: "Point(17.86609 58.73975)", + locationLabel: "Landsort 152-mm. Artillery Battery", + }, + { + location: "http://www.wikidata.org/entity/Q10478848", + cordinates: "Point(17.86416667 58.76444444)", + locationLabel: "Landsort 120-mm. Heavy Artillery Battery", + }, + { + location: "http://www.wikidata.org/entity/Q1801099", + cordinates: "Point(-92.299611111 47.857908333)", + locationLabel: "Lake Vermilion", + }, + { + location: "http://www.wikidata.org/entity/Q126307", + cordinates: "Point(42.816666666 38.633333333)", + locationLabel: "Lake Van", + }, + { + location: "http://www.wikidata.org/entity/Q4809067", + cordinates: "Point(28.583333333 40.166666666)", + locationLabel: "Lake Uluabat", + }, + { + location: "http://www.wikidata.org/entity/Q211823", + cordinates: "Point(33.333333333 38.833333333)", + locationLabel: "Lake Tuz", + }, + { + location: "http://www.wikidata.org/entity/Q667507", + cordinates: "Point(-111.484166666 36.936111111)", + locationLabel: "Lake Powell", + }, + { + location: "http://www.wikidata.org/entity/Q6477258", + cordinates: "Point(-97.6796 35.4977)", + locationLabel: "Lake Overholser", + }, + { + location: "http://www.wikidata.org/entity/Q1334148", + cordinates: "Point(30.884722222 38.010555555)", + locationLabel: "Lake Eğirdir", + }, + { + location: "http://www.wikidata.org/entity/Q15523", + cordinates: "Point(9.266666666 46.0)", + locationLabel: "Lake Como", + }, + { + location: "http://www.wikidata.org/entity/Q1128082", + cordinates: "Point(-97.786333333 30.294333333)", + locationLabel: "Lake Austin", + }, + { + location: "http://www.wikidata.org/entity/Q28555527", + cordinates: "Point(37.637353 55.762865)", + locationLabel: "Lado Palace", + }, + { + location: "http://www.wikidata.org/entity/Q99984255", + cordinates: "Point(10.1464 44.854)", + locationLabel: "Labarinto della Masone", + }, + { + location: "http://www.wikidata.org/entity/Q55616428", + cordinates: "Point(120.582222222 16.451944444)", + locationLabel: "La Trinidad Strawberry Farm", + }, + { + location: "http://www.wikidata.org/entity/Q5471", + cordinates: "Point(9.189166666 45.4675)", + locationLabel: "La Scala", + }, + { + location: "http://www.wikidata.org/entity/Q1245666", + cordinates: "Point(-99.91555556 16.84611111)", + locationLabel: "La Quebrada, Mexico", + }, + { + location: "http://www.wikidata.org/entity/Q86960240", + cordinates: "Point(15.6756739 48.4759107)", + locationLabel: "LOISIUM WeinErlebnisWelt & Vinothek", + }, + { + location: "http://www.wikidata.org/entity/Q6046415", + cordinates: "Point(32.85361111 39.92055556)", + locationLabel: "Kızılay Meydanı", + }, + { + location: "http://www.wikidata.org/entity/Q1018772", + cordinates: "Point(34.145 36.460555555)", + locationLabel: "Kızkalesi", + }, + { + location: "http://www.wikidata.org/entity/Q643592", + cordinates: "Point(23.97638889 55.29138889)", + locationLabel: "Kėdainiai minaret", + }, + { + location: "http://www.wikidata.org/entity/Q28657490", + cordinates: "Point(29.065472222 41.016444444)", + locationLabel: "Küçük Çamlıca Radio and TV Tower", + }, + { + location: "http://www.wikidata.org/entity/Q225459", + cordinates: "Point(20.511666666 54.706388888)", + locationLabel: "Königsberg Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q60852880", + cordinates: "Point(10.17827 49.37672)", + locationLabel: "Käthe Wohlfahrt Weihnachtsdorf in Rothenburg ob der Tauber", + }, + { + location: "http://www.wikidata.org/entity/Q12109790", + cordinates: "Point(33.735861 44.617093)", + locationLabel: "Kyz-Kule", + }, + { + location: "http://www.wikidata.org/entity/Q18291548", + cordinates: "Point(18.106305555 59.326638888)", + locationLabel: "Kyrkhult Farmhouse, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q4440047", + cordinates: "Point(30.520343 50.465592)", + locationLabel: "Kyiv-Mohyla Academy old academic building", + }, + { + location: "http://www.wikidata.org/entity/Q93494466", + cordinates: "Point(101.69762 3.14152)", + locationLabel: "Kwai Chai Hong", + }, + { + location: "http://www.wikidata.org/entity/Q28880122", + cordinates: "Point(37.633266 55.782218)", + locationLabel: "Kuznetsova's mansion", + }, + { + location: "http://www.wikidata.org/entity/Q4167344", + cordinates: "Point(37.619122222 55.761761111)", + locationLabel: "Kuznetsky Most 7", + }, + { + location: "http://www.wikidata.org/entity/Q47005800", + cordinates: "Point(82.917745 55.037414)", + locationLabel: "Kuzbassugol Building Complex", + }, + { + location: "http://www.wikidata.org/entity/Q50809141", + cordinates: "Point(50.094895 53.195796)", + locationLabel: "Kuybyshev Street 151, Samara", + }, + { + location: "http://www.wikidata.org/entity/Q97383148", + cordinates: "Point(73.830888888 34.550669444)", + locationLabel: "Kutton Waterfall", + }, + { + location: "http://www.wikidata.org/entity/Q15911156", + cordinates: "Point(121.272611111 24.122722222)", + locationLabel: "Kunyang, Nantou", + }, + { + location: "http://www.wikidata.org/entity/Q15911156", + cordinates: "Point(121.272571 24.122775)", + locationLabel: "Kunyang, Nantou", + }, + { + location: "http://www.wikidata.org/entity/Q1043953", + cordinates: "Point(129.6 33.16666667)", + locationLabel: "Kujūku Islands", + }, + { + location: "http://www.wikidata.org/entity/Q1043953", + cordinates: "Point(129.54 33.268333333)", + locationLabel: "Kujūku Islands", + }, + { + location: "http://www.wikidata.org/entity/Q5712187", + cordinates: "Point(51.276027777 35.778638888)", + locationLabel: "Kuhsar Park", + }, + { + location: "http://www.wikidata.org/entity/Q21523423", + cordinates: "Point(82.916944444 55.026666666)", + locationLabel: "Kryukov House", + }, + { + location: "http://www.wikidata.org/entity/Q16710452", + cordinates: "Point(92.890724 56.011868)", + locationLabel: "Krutovsky homestead", + }, + { + location: "http://www.wikidata.org/entity/Q10549534", + cordinates: "Point(18.35361111 59.40527778)", + locationLabel: "Kronudden's Artillery Battery", + }, + { + location: "http://www.wikidata.org/entity/Q442135", + cordinates: "Point(14.7947217 56.9417293)", + locationLabel: "Kronoberg Castle Ruin", + }, + { + location: "http://www.wikidata.org/entity/Q1789892", + cordinates: "Point(13.73301 51.05269)", + locationLabel: "Kronentor (Zwinger, Dresden)", + }, + { + location: "http://www.wikidata.org/entity/Q4240947", + cordinates: "Point(36.281733333 53.48195)", + locationLabel: "Krivtsovo memorial", + }, + { + location: "http://www.wikidata.org/entity/Q475573", + cordinates: "Point(20.522805555 54.705722222)", + locationLabel: "Kreuzkirche", + }, + { + location: "http://www.wikidata.org/entity/Q4165669", + cordinates: "Point(20.526609 54.712849)", + locationLabel: "Kreuz Apotheke Building, Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q2512830", + cordinates: "Point(30.3644 59.9537)", + locationLabel: "Kresty Prison", + }, + { + location: "http://www.wikidata.org/entity/Q4468944", + cordinates: "Point(38.3174 57.5288)", + locationLabel: "Kremlin of Uglich", + }, + { + location: "http://www.wikidata.org/entity/Q25589", + cordinates: "Point(37.75027778 55.79472222)", + locationLabel: "Kremlin in Izmailovo", + }, + { + location: "http://www.wikidata.org/entity/Q42290099", + cordinates: "Point(82.91906 55.03338)", + locationLabel: "Krasny Prospekt 33, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q42289732", + cordinates: "Point(82.922285 55.026415)", + locationLabel: "Krasny Avenue 30, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q24936549", + cordinates: "Point(82.92184 55.02308)", + locationLabel: "Krasny Avenue 11, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q24686045", + cordinates: "Point(37.562222222 55.823888888)", + locationLabel: "Krasnostudenchesky Passage Tram Stop", + }, + { + location: "http://www.wikidata.org/entity/Q39085154", + cordinates: "Point(37.29236 55.42618)", + locationLabel: "Krasnoe estate", + }, + { + location: "http://www.wikidata.org/entity/Q6055245", + cordinates: "Point(29.063528 40.184333)", + locationLabel: "Koza Han", + }, + { + location: "http://www.wikidata.org/entity/Q66362643", + cordinates: "Point(26.56225 48.673361111)", + locationLabel: "Kovpak Tower", + }, + { + location: "http://www.wikidata.org/entity/Q51885129", + cordinates: "Point(43.999041 56.325747)", + locationLabel: "Koromyslova Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q6013884", + cordinates: "Point(27.139444444 38.435555555)", + locationLabel: "Kordon", + }, + { + location: "http://www.wikidata.org/entity/Q30065674", + cordinates: "Point(18.806478 50.296991)", + locationLabel: "Kopalnia Luiza", + }, + { + location: "http://www.wikidata.org/entity/Q28667286", + cordinates: "Point(40.035 47.271666666)", + locationLabel: "Kondraty Bulavin house", + }, + { + location: "http://www.wikidata.org/entity/Q6428726", + cordinates: "Point(27.128664 38.418862)", + locationLabel: "Konak Square", + }, + { + location: "http://www.wikidata.org/entity/Q4391508", + cordinates: "Point(55.9353 54.7283)", + locationLabel: "Kommunisticheskaya 23 (Ufa)", + }, + { + location: "http://www.wikidata.org/entity/Q66361844", + cordinates: "Point(26.562888888 48.673652777)", + locationLabel: "Komendantska Tower", + }, + { + location: "http://www.wikidata.org/entity/Q652464", + cordinates: "Point(37.668888888 55.669444444)", + locationLabel: "Kolomenskoye", + }, + { + location: "http://www.wikidata.org/entity/Q55433768", + cordinates: "Point(30.4128492 59.717286)", + locationLabel: "Kokorev mansion", + }, + { + location: "http://www.wikidata.org/entity/Q1795699", + cordinates: "Point(76.976111111 43.233055555)", + locationLabel: "Kok Tobe", + }, + { + location: "http://www.wikidata.org/entity/Q173527", + visitors: "611455", + cordinates: "Point(25.163155555 35.297961111)", + locationLabel: "Knossos", + }, + { + location: "http://www.wikidata.org/entity/Q173527", + visitors: "634710", + cordinates: "Point(25.163155555 35.297961111)", + locationLabel: "Knossos", + }, + { + location: "http://www.wikidata.org/entity/Q173527", + visitors: "855663", + cordinates: "Point(25.163155555 35.297961111)", + locationLabel: "Knossos", + }, + { + location: "http://www.wikidata.org/entity/Q51946155", + cordinates: "Point(44.003499 56.326505)", + locationLabel: "Kladovaya Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4220287", + cordinates: "Point(35.221784 62.074202)", + locationLabel: "Kizhi museum", + }, + { + location: "http://www.wikidata.org/entity/Q101042850", + cordinates: "Point(138.523594 35.050973)", + locationLabel: "Kiyomi gata", + }, + { + location: "http://www.wikidata.org/entity/Q28653760", + cordinates: "Point(39.716567 47.218847)", + locationLabel: "Kisin House", + }, + { + location: "http://www.wikidata.org/entity/Q4221719", + cordinates: "Point(30.273296 59.900037)", + locationLabel: "Kirovsky department store", + }, + { + location: "http://www.wikidata.org/entity/Q4165512", + cordinates: "Point(60.4595 57.396167)", + locationLabel: "Kirillov's house", + }, + { + location: "http://www.wikidata.org/entity/Q20077696", + cordinates: "Point(30.513512 50.444758)", + locationLabel: "Kiev Teacher's House", + }, + { + location: "http://www.wikidata.org/entity/Q11871304", + cordinates: "Point(25.948055555 65.360555555)", + locationLabel: "Kierikki Stone Age Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3196329", + cordinates: "Point(135.76277778 35.12166667)", + locationLabel: "Kibune", + }, + { + location: "http://www.wikidata.org/entity/Q4273792", + cordinates: "Point(55.416944444 54.580833333)", + locationLabel: "Khusein-bek Mausoleum", + }, + { + location: "http://www.wikidata.org/entity/Q6401196", + cordinates: "Point(29.0738 41.105)", + locationLabel: "Khedive Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1203550", + cordinates: "Point(100.497222222 13.758888888)", + locationLabel: "Khaosan Road", + }, + { + location: "http://www.wikidata.org/entity/Q1740490", + cordinates: "Point(51.683333333 32.636666666)", + locationLabel: "Khaju Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q55702542", + cordinates: "Point(49.71113 40.57466)", + locationLabel: "Khaji Majid hammam", + }, + { + location: "http://www.wikidata.org/entity/Q578796", + cordinates: "Point(135.072713888 48.496569444)", + locationLabel: "Khabarovsk-1 Station", + }, + { + location: "http://www.wikidata.org/entity/Q4494348", + cordinates: "Point(135.05056 48.47333)", + locationLabel: "Khabarovsk museum named after Grodekov", + }, + { + location: "http://www.wikidata.org/entity/Q6777525", + cordinates: "Point(35.299166666 32.756833333)", + locationLabel: "Kfar Kedem", + }, + { + location: "http://www.wikidata.org/entity/Q2037145", + cordinates: "Point(60.607572 56.832328)", + locationLabel: "Keyboard monument", + }, + { + location: "http://www.wikidata.org/entity/Q31266130", + cordinates: "Point(103.78306 1.29333)", + locationLabel: "Kent Ridge", + }, + { + location: "http://www.wikidata.org/entity/Q6389603", + cordinates: "Point(-70.30236 41.62998)", + locationLabel: "Kennedy Compound", + }, + { + location: "http://www.wikidata.org/entity/Q6386795", + cordinates: "Point(38.928825 47.202368)", + locationLabel: "Kelya of Saint Pavel of Taganrog", + }, + { + location: "http://www.wikidata.org/entity/Q20011629", + cordinates: "Point(37.598403 55.741016)", + locationLabel: "Kekusheva revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q2666727", + cordinates: "Point(29.883333333 36.183333333)", + locationLabel: "Kekova", + }, + { + location: "http://www.wikidata.org/entity/Q822518", + cordinates: "Point(100.27305556 5.39833333)", + locationLabel: "Kek Lok Si", + }, + { + location: "http://www.wikidata.org/entity/Q25421992", + cordinates: "Point(33.368453 45.184715)", + locationLabel: "Kazas Dacha", + }, + { + location: "http://www.wikidata.org/entity/Q4207773", + cordinates: "Point(49.113730555 55.798805555)", + locationLabel: "Kazansky Bogoroditsky Monastery", + }, + { + location: "http://www.wikidata.org/entity/Q404571", + cordinates: "Point(30.324594444 59.934227777)", + locationLabel: "Kazan Cathedral, St. Petersburg", + }, + { + location: "http://www.wikidata.org/entity/Q686011", + cordinates: "Point(13.341111111 52.501666666)", + locationLabel: "Kaufhaus des Westens", + }, + { + location: "http://www.wikidata.org/entity/Q98642646", + cordinates: "Point(150.301307 -33.728993)", + locationLabel: "Katoomba Scenic Railway", + }, + { + location: "http://www.wikidata.org/entity/Q1735335", + cordinates: "Point(20.0806612 60.2329039)", + locationLabel: "Kastelholm Castle", + }, + { + location: "http://www.wikidata.org/entity/Q1735335", + cordinates: "Point(20.08055556 60.23305556)", + locationLabel: "Kastelholm Castle", + }, + { + location: "http://www.wikidata.org/entity/Q28049505", + cordinates: "Point(60.603222222 56.835)", + locationLabel: "Kasli cast iron pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q4215402", + cordinates: "Point(34.117415 44.961693)", + locationLabel: "Karman Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q737220", + cordinates: "Point(13.5065 59.3815)", + locationLabel: "Karlstad Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q1408923", + cordinates: "Point(14.53055556 58.53194444)", + locationLabel: "Karlsborg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q92722865", + cordinates: "Point(109.672777777 -7.546111111)", + locationLabel: "Karangsambung-Karangbolong Geopark", + }, + { + location: "http://www.wikidata.org/entity/Q1062421", + cordinates: "Point(30.570833333 37.077777777)", + locationLabel: "Karain Cave", + }, + { + location: "http://www.wikidata.org/entity/Q284093", + cordinates: "Point(29.4492 36.2292)", + locationLabel: "Kaputaş Beach", + }, + { + location: "http://www.wikidata.org/entity/Q10531668", + cordinates: "Point(17.185594 59.692685)", + locationLabel: "Kaplan farm of Härkeberga", + }, + { + location: "http://www.wikidata.org/entity/Q20646084", + cordinates: "Point(7.156666666 53.710277777)", + locationLabel: "Kap Norderney", + }, + { + location: "http://www.wikidata.org/entity/Q2025866", + cordinates: "Point(34.1600561 67.0426389)", + locationLabel: "Kanozero Petroglyphs", + }, + { + location: "http://www.wikidata.org/entity/Q6362535", + cordinates: "Point(145.224 -37.6885)", + locationLabel: "Kangaroo Ground War Memorial Park", + }, + { + location: "http://www.wikidata.org/entity/Q2378708", + cordinates: "Point(139.796325 35.71113333)", + locationLabel: "Kaminarimon", + }, + { + location: "http://www.wikidata.org/entity/Q1048234", + cordinates: "Point(137.633333333 36.246969444)", + locationLabel: "Kamikōchi", + }, + { + location: "http://www.wikidata.org/entity/Q54488891", + cordinates: "Point(61.893333333 56.416666666)", + locationLabel: "Kamensk-Uralsky Cannon", + }, + { + location: "http://www.wikidata.org/entity/Q30064681", + cordinates: "Point(18.946748149 50.381889063)", + locationLabel: "Kalwaria Piekarska", + }, + { + location: "http://www.wikidata.org/entity/Q1236665", + cordinates: "Point(16.36694444 56.66472222)", + locationLabel: "Kalmar Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q648226", + cordinates: "Point(16.35527778 56.65805556)", + locationLabel: "Kalmar Castle", + }, + { + location: "http://www.wikidata.org/entity/Q4216846", + cordinates: "Point(103.865637 1.31078)", + locationLabel: "Kallang", + }, + { + location: "http://www.wikidata.org/entity/Q51078856", + cordinates: "Point(20.5145 54.7051)", + locationLabel: "Kaliningrad Viewing Tower Lighthouse", + }, + { + location: "http://www.wikidata.org/entity/Q55424288", + cordinates: "Point(30.4062027 59.7173103)", + locationLabel: "Kalashnikova's House", + }, + { + location: "http://www.wikidata.org/entity/Q19660003", + cordinates: "Point(33.6091 44.6029)", + locationLabel: "Kalamita fortress", + }, + { + location: "http://www.wikidata.org/entity/Q20650566", + cordinates: "Point(7.143527777 53.706944444)", + locationLabel: "Kaiserliches Postamt", + }, + { + location: "http://www.wikidata.org/entity/Q20650568", + cordinates: "Point(7.144805555 53.708527777)", + locationLabel: "Kaiser-Wilhelm-Denkmal (Norderney)", + }, + { + location: "http://www.wikidata.org/entity/Q1268562", + cordinates: "Point(75.17916667 20.02388889)", + locationLabel: "Kailashnath Temple", + }, + { + location: "http://www.wikidata.org/entity/Q81526546", + cordinates: "Point(66.984449 39.677485)", + locationLabel: "Kafir-kala (Uzbekistan)", + }, + { + location: "http://www.wikidata.org/entity/Q1547682", + cordinates: "Point(103.70703 1.32101)", + locationLabel: "Jurong Bird Park", + }, + { + location: "http://www.wikidata.org/entity/Q10541271", + cordinates: "Point(16.03916667 59.15111111)", + locationLabel: "Julita manor", + }, + { + location: "http://www.wikidata.org/entity/Q26647525", + cordinates: "Point(-2.452602 50.614415)", + locationLabel: "Jubilee Clock Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3569408", + cordinates: "Point(-79.0784 43.0792)", + locationLabel: "Journey Behind the Falls", + }, + { + location: "http://www.wikidata.org/entity/Q79944673", + cordinates: "Point(-73.9239 40.8359)", + locationLabel: "Joker Stairs", + }, + { + location: "http://www.wikidata.org/entity/Q1236267", + cordinates: "Point(-2.2487 53.4803)", + locationLabel: "John Rylands Library", + }, + { + location: "http://www.wikidata.org/entity/Q26250235", + cordinates: "Point(110.6741744 -8.1801139)", + locationLabel: "Jogan Beach", + }, + { + location: "http://www.wikidata.org/entity/Q21026877", + cordinates: "Point(37.660772 55.790043)", + locationLabel: "Jochann-Leonard Ding House", + }, + { + location: "http://www.wikidata.org/entity/Q11589493", + cordinates: "Point(139.7023 35.6697)", + locationLabel: "Jingu Bashi", + }, + { + location: "http://www.wikidata.org/entity/Q28419359", + cordinates: "Point(103.98976 1.36022)", + locationLabel: "Jewel Changi Airport", + }, + { + location: "http://www.wikidata.org/entity/Q258348", + cordinates: "Point(-7.989098 31.625971)", + locationLabel: "Jemaa el-Fnaa", + }, + { + location: "http://www.wikidata.org/entity/Q6761875", + cordinates: "Point(126.622187277 37.169682273)", + locationLabel: "Jebudo", + }, + { + location: "http://www.wikidata.org/entity/Q1303386", + cordinates: "Point(-15.46333 28.06361)", + locationLabel: "Jardín Botánico Canario Viera y Clavijo", + }, + { + location: "http://www.wikidata.org/entity/Q13181236", + cordinates: "Point(87.47 26.52)", + locationLabel: "Jamunkhadi Simsar", + }, + { + location: "http://www.wikidata.org/entity/Q2620602", + cordinates: "Point(14.635833333 63.186388888)", + locationLabel: "Jamtli", + }, + { + location: "http://www.wikidata.org/entity/Q1454816", + cordinates: "Point(54.368611 31.901389)", + locationLabel: "Jameh Mosque of Yazd", + }, + { + location: "http://www.wikidata.org/entity/Q19745600", + cordinates: "Point(110.437327777 -5.874611111)", + locationLabel: "Jaka Tuwa Hill", + }, + { + location: "http://www.wikidata.org/entity/Q18358503", + cordinates: "Point(-0.18004 51.5627)", + locationLabel: "Jack Straw's Castle", + }, + { + location: "http://www.wikidata.org/entity/Q47536037", + cordinates: "Point(-86.368056 35.284722)", + locationLabel: "Jack Daniel's Distillery", + }, + { + location: "http://www.wikidata.org/entity/Q19692529", + cordinates: "Point(43.999535 56.329992)", + locationLabel: "Ivanovskaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q19817876", + cordinates: "Point(37.587666666 55.743194444)", + locationLabel: "Italian Embassy, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q19817876", + cordinates: "Point(37.587694444 55.743305555)", + locationLabel: "Italian Embassy, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q1410335", + cordinates: "Point(40.894444444 57.776388888)", + locationLabel: "Ipatiev Monastery", + }, + { + location: "http://www.wikidata.org/entity/Q6064218", + cordinates: "Point(-92.0074 42.3147)", + locationLabel: "Iowa's Largest Frying Pan", + }, + { + location: "http://www.wikidata.org/entity/Q4133525", + cordinates: "Point(37.606111111 55.793611111)", + locationLabel: "Intourist garage", + }, + { + location: "http://www.wikidata.org/entity/Q1642613", + cordinates: "Point(7.15639 53.7061)", + locationLabel: "Inselmühle Norderney", + }, + { + location: "http://www.wikidata.org/entity/Q10708899", + cordinates: "Point(18.01954167 59.38618611)", + locationLabel: "Inn of Ulriksdal", + }, + { + location: "http://www.wikidata.org/entity/Q4365837", + cordinates: "Point(37.623091666 55.834272222)", + locationLabel: "Industry Square at the VDNkh", + }, + { + location: "http://www.wikidata.org/entity/Q51719869", + cordinates: "Point(37.651277777 55.775916666)", + locationLabel: "Imperial railway pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q55517486", + cordinates: "Point(30.39755 59.724408333)", + locationLabel: "Imperial Garage, Tsarskoye Selo", + }, + { + location: "http://www.wikidata.org/entity/Q28718495", + cordinates: "Point(40.730277777 48.209722222)", + locationLabel: "Immortality height", + }, + { + location: "http://www.wikidata.org/entity/Q658437", + cordinates: "Point(25.844444444 40.160833333)", + locationLabel: "Imbros", + }, + { + location: "http://www.wikidata.org/entity/Q6003536", + cordinates: "Point(103.815 1.256)", + locationLabel: "Imbiah Lookout", + }, + { + location: "http://www.wikidata.org/entity/Q16935322", + cordinates: "Point(76.78333333 9.7)", + locationLabel: "Illickal Kallu", + }, + { + location: "http://www.wikidata.org/entity/Q98716525", + cordinates: "Point(150.709516 -34.620438)", + locationLabel: "Illawarra Fly Treetop Walk", + }, + { + location: "http://www.wikidata.org/entity/Q50359363", + cordinates: "Point(82.91639 55.02536)", + locationLabel: "Ikonnikova House", + }, + { + location: "http://www.wikidata.org/entity/Q36332", + cordinates: "Point(-54.436666666 -25.695277777)", + locationLabel: "Iguaçu Falls", + }, + { + location: "http://www.wikidata.org/entity/Q4520379", + cordinates: "Point(37.06367 56.83003)", + locationLabel: "Ignatovo Sphere", + }, + { + location: "http://www.wikidata.org/entity/Q5991788", + cordinates: "Point(-70.649311111 -33.440827777)", + locationLabel: "Iglesia de San Agustín", + }, + { + location: "http://www.wikidata.org/entity/Q28870360", + cordinates: "Point(38.922214 47.211918)", + locationLabel: "Idelson Pharmacy", + }, + { + location: "http://www.wikidata.org/entity/Q28669285", + cordinates: "Point(69.757225 42.299364)", + locationLabel: "Ibragim Ata mausoleum", + }, + { + location: "http://www.wikidata.org/entity/Q3142395", + cordinates: "Point(2.2843 48.8802)", + locationLabel: "Hyatt Regency Paris Etoile", + }, + { + location: "http://www.wikidata.org/entity/Q15911078", + cordinates: "Point(120.33694444 23.02694444)", + locationLabel: "Hutoupi Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q493126", + cordinates: "Point(16.3939 48.2075)", + locationLabel: "Hundertwasserhaus", + }, + { + location: "http://www.wikidata.org/entity/Q96395755", + cordinates: "Point(10.0249 55.4652)", + locationLabel: "Humlemagasinet", + }, + { + location: "http://www.wikidata.org/entity/Q69981542", + cordinates: "Point(111.553802777 31.213933333)", + locationLabel: "Huilongwan Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q1939159", + cordinates: "Point(13.7125 56.104444444)", + locationLabel: "Hovdala Castle", + }, + { + location: "http://www.wikidata.org/entity/Q31195369", + cordinates: "Point(44.512888888 40.1885)", + locationLabel: "Houses of scientists in Armenia", + }, + { + location: "http://www.wikidata.org/entity/Q54996579", + cordinates: "Point(37.586022222 55.760161111)", + locationLabel: "House-museum of Chekhov", + }, + { + location: "http://www.wikidata.org/entity/Q4165202", + cordinates: "Point(43.242 54.0749)", + locationLabel: "House-Museum of M.P. Devyatayev", + }, + { + location: "http://www.wikidata.org/entity/Q52663468", + cordinates: "Point(61.889305 56.417632)", + locationLabel: "House-Estate of the merchant Vorobyov", + }, + { + location: "http://www.wikidata.org/entity/Q19615110", + cordinates: "Point(21.8983 55.0818)", + locationLabel: "House with the knight statue, Sovetsk", + }, + { + location: "http://www.wikidata.org/entity/Q28653765", + cordinates: "Point(38.941761 47.210443)", + locationLabel: "House with bullets in Taganrog", + }, + { + location: "http://www.wikidata.org/entity/Q28657035", + cordinates: "Point(40.099825 47.417639)", + locationLabel: "House with an owl", + }, + { + location: "http://www.wikidata.org/entity/Q23687347", + cordinates: "Point(37.64039 55.752409)", + locationLabel: "House with Atlantes (Solyanka)", + }, + { + location: "http://www.wikidata.org/entity/Q28922874", + cordinates: "Point(38.943888888 47.209722222)", + locationLabel: "House of the merchant Kudrin", + }, + { + location: "http://www.wikidata.org/entity/Q21172181", + cordinates: "Point(55.095833333 51.767222222)", + locationLabel: "House of the Soviets", + }, + { + location: "http://www.wikidata.org/entity/Q28920330", + cordinates: "Point(38.929722222 47.211944444)", + locationLabel: "House of Zolotaryov", + }, + { + location: "http://www.wikidata.org/entity/Q2568900", + cordinates: "Point(39.1896 -6.1609)", + locationLabel: "House of Wonders", + }, + { + location: "http://www.wikidata.org/entity/Q28920049", + cordinates: "Point(38.941944444 47.210833333)", + locationLabel: "House of Voroshilkin", + }, + { + location: "http://www.wikidata.org/entity/Q28752000", + cordinates: "Point(39.710243 47.220065)", + locationLabel: "House of Tuvardzhiyev", + }, + { + location: "http://www.wikidata.org/entity/Q28966117", + cordinates: "Point(38.939416 47.210247)", + locationLabel: "House of Tsysarenko", + }, + { + location: "http://www.wikidata.org/entity/Q15226028", + cordinates: "Point(145.61972222 14.96555556)", + locationLabel: "House of Taga", + }, + { + location: "http://www.wikidata.org/entity/Q28966135", + cordinates: "Point(38.930119 47.212438)", + locationLabel: "House of Szymanowski", + }, + { + location: "http://www.wikidata.org/entity/Q29001010", + cordinates: "Point(38.917222222 47.223611111)", + locationLabel: "House of Subsovich", + }, + { + location: "http://www.wikidata.org/entity/Q27013708", + cordinates: "Point(31.268596 58.522984)", + locationLabel: "House of Soviets, Veliky Novgorod", + }, + { + location: "http://www.wikidata.org/entity/Q28032873", + cordinates: "Point(44.005591 56.328815)", + locationLabel: "House of Soviets (Nizhny Novgorod)", + }, + { + location: "http://www.wikidata.org/entity/Q30540734", + cordinates: "Point(56.232381 58.01077)", + locationLabel: "House of Soviets", + }, + { + location: "http://www.wikidata.org/entity/Q27013662", + cordinates: "Point(36.063137 52.971215)", + locationLabel: "House of Soviets", + }, + { + location: "http://www.wikidata.org/entity/Q48062028", + cordinates: "Point(82.923054 55.026958)", + locationLabel: "House of Socialist Agriculture", + }, + { + location: "http://www.wikidata.org/entity/Q28933159", + cordinates: "Point(38.936666666 47.212222222)", + locationLabel: "House of Skizerl", + }, + { + location: "http://www.wikidata.org/entity/Q28950274", + cordinates: "Point(38.933559 47.212273)", + locationLabel: "House of Skaramangi", + }, + { + location: "http://www.wikidata.org/entity/Q28950270", + cordinates: "Point(38.926723 47.209329)", + locationLabel: "House of Sirotinykh", + }, + { + location: "http://www.wikidata.org/entity/Q28950258", + cordinates: "Point(38.933119 47.214856)", + locationLabel: "House of Sinodi-Popov", + }, + { + location: "http://www.wikidata.org/entity/Q28937093", + cordinates: "Point(38.93796 47.20571)", + locationLabel: "House of Simonovich", + }, + { + location: "http://www.wikidata.org/entity/Q29479197", + cordinates: "Point(30.319668 59.943404)", + locationLabel: "House of Scientists (St. Petersburg)", + }, + { + location: "http://www.wikidata.org/entity/Q4165619", + cordinates: "Point(83.101235 54.835825)", + locationLabel: "House of Scientists (Akademgorodok)", + }, + { + location: "http://www.wikidata.org/entity/Q53616115", + cordinates: "Point(37.609444444 55.7675)", + locationLabel: "House of S. I. Elagin", + }, + { + location: "http://www.wikidata.org/entity/Q28953056", + cordinates: "Point(38.929722222 47.215277777)", + locationLabel: "House of Razi-Bondarenko", + }, + { + location: "http://www.wikidata.org/entity/Q28514928", + cordinates: "Point(38.942527777 47.210277777)", + locationLabel: "House of Popkov", + }, + { + location: "http://www.wikidata.org/entity/Q28950529", + cordinates: "Point(38.935555555 47.213611111)", + locationLabel: "House of Perestiani", + }, + { + location: "http://www.wikidata.org/entity/Q16645424", + cordinates: "Point(39.71140833 47.22475278)", + locationLabel: "House of P. M. Zaslavskaya (Ivan Zvorykin)", + }, + { + location: "http://www.wikidata.org/entity/Q42296354", + cordinates: "Point(60.59945 56.8338)", + locationLabel: "House of Offices", + }, + { + location: "http://www.wikidata.org/entity/Q12557874", + cordinates: "Point(76.957286 43.259087)", + locationLabel: "House of Officers (Almaty)", + }, + { + location: "http://www.wikidata.org/entity/Q28945413", + cordinates: "Point(38.9399 47.2101)", + locationLabel: "House of Nomikos", + }, + { + location: "http://www.wikidata.org/entity/Q1547268", + cordinates: "Point(18.06573 59.32593)", + locationLabel: "House of Nobility", + }, + { + location: "http://www.wikidata.org/entity/Q53497817", + cordinates: "Point(37.618333333 55.747777777)", + locationLabel: "House of Lobkov on the Sophia Embankment", + }, + { + location: "http://www.wikidata.org/entity/Q28975251", + cordinates: "Point(38.945823 47.208106)", + locationLabel: "House of Leshukov", + }, + { + location: "http://www.wikidata.org/entity/Q28938075", + cordinates: "Point(38.94159 47.208741)", + locationLabel: "House of Laskin", + }, + { + location: "http://www.wikidata.org/entity/Q28924006", + cordinates: "Point(38.941 47.2098)", + locationLabel: "House of Lakiyerov", + }, + { + location: "http://www.wikidata.org/entity/Q28938372", + cordinates: "Point(38.936666666 47.212222222)", + locationLabel: "House of Lakiyer", + }, + { + location: "http://www.wikidata.org/entity/Q28938023", + cordinates: "Point(38.932059 47.213785)", + locationLabel: "House of Kukolnik", + }, + { + location: "http://www.wikidata.org/entity/Q19909101", + cordinates: "Point(38.936388888 47.210555555)", + locationLabel: "House of Krasnushkin", + }, + { + location: "http://www.wikidata.org/entity/Q28919930", + cordinates: "Point(38.943423 47.209941)", + locationLabel: "House of Keren", + }, + { + location: "http://www.wikidata.org/entity/Q53779693", + cordinates: "Point(37.62 55.743055555)", + locationLabel: "House of Gusiatnikovs", + }, + { + location: "http://www.wikidata.org/entity/Q28790979", + cordinates: "Point(30.308116 59.968344)", + locationLabel: "House of Emir of Bukhara", + }, + { + location: "http://www.wikidata.org/entity/Q53627189", + cordinates: "Point(37.601944444 55.7475)", + locationLabel: "House of Denis Davydov in Bolshoy Znamensky Lane", + }, + { + location: "http://www.wikidata.org/entity/Q28973881", + cordinates: "Point(38.940674 47.20939)", + locationLabel: "House of Deminoj-Cachoni", + }, + { + location: "http://www.wikidata.org/entity/Q18180055", + cordinates: "Point(39.207407 51.667741)", + locationLabel: "House of Communication", + }, + { + location: "http://www.wikidata.org/entity/Q28935481", + cordinates: "Point(38.936111111 47.211944444)", + locationLabel: "House of Bagdasarovs", + }, + { + location: "http://www.wikidata.org/entity/Q28872380", + cordinates: "Point(38.939166666 47.210833333)", + locationLabel: "House of Averino", + }, + { + location: "http://www.wikidata.org/entity/Q53151618", + cordinates: "Point(37.609403 55.765055)", + locationLabel: "House of A. I. Lobkova", + }, + { + location: "http://www.wikidata.org/entity/Q53151532", + cordinates: "Point(37.619722222 55.740277777)", + locationLabel: "House E. S. Lobkova", + }, + { + location: "http://www.wikidata.org/entity/Q41233105", + cordinates: "Point(55.9455 54.7213)", + locationLabel: "Hotel Metropol, Ufa", + }, + { + location: "http://www.wikidata.org/entity/Q92236826", + cordinates: "Point(151.210572222 -33.879611111)", + locationLabel: "Hotel Holllywood", + }, + { + location: "http://www.wikidata.org/entity/Q4232004", + cordinates: "Point(38.46878889 53.26301944)", + locationLabel: "Horse stone in Tula oblast", + }, + { + location: "http://www.wikidata.org/entity/Q61992365", + cordinates: "Point(-46.849 -19.708805555)", + locationLabel: "Horizonte Perdido", + }, + { + location: "http://www.wikidata.org/entity/Q49469048", + cordinates: "Point(-112.15461 36.07609)", + locationLabel: "Hopi Point", + }, + { + location: "http://www.wikidata.org/entity/Q172822", + cordinates: "Point(-114.737778 36.015556)", + locationLabel: "Hoover Dam", + }, + { + location: "http://www.wikidata.org/entity/Q97155557", + cordinates: "Point(105.9375 26.26)", + locationLabel: "Hongshan Reservoir", + }, + { + location: "http://www.wikidata.org/entity/Q52207904", + cordinates: "Point(36.688036 53.932728)", + locationLabel: "Holy Trinity church in Odoyev", + }, + { + location: "http://www.wikidata.org/entity/Q18409614", + cordinates: "Point(30.898966 59.418355)", + locationLabel: "Holy Trinity Church, Maryino Estate", + }, + { + location: "http://www.wikidata.org/entity/Q30887686", + cordinates: "Point(47.877463 57.306402)", + locationLabel: "Holy Trinity Church in Yaransk", + }, + { + location: "http://www.wikidata.org/entity/Q10525352", + cordinates: "Point(20.863916666 63.804216666)", + locationLabel: "Holmöns Boat Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3545909", + cordinates: "Point(20.85 63.716666666)", + locationLabel: "Holmöarna", + }, + { + location: "http://www.wikidata.org/entity/Q71719", + visitors: "10000000", + cordinates: "Point(-118.344966666 34.1014)", + locationLabel: "Hollywood Walk of Fame", + }, + { + location: "http://www.wikidata.org/entity/Q180376", + cordinates: "Point(-118.321694444 34.134102777)", + locationLabel: "Hollywood Sign", + }, + { + location: "http://www.wikidata.org/entity/Q356289", + cordinates: "Point(11.3944 47.2689)", + locationLabel: "Hofburg, Innsbruck", + }, + { + location: "http://www.wikidata.org/entity/Q3348373", + cordinates: "Point(141.39472222 42.99916667)", + locationLabel: "Hitsujigaoka Observation Hill", + }, + { + location: "http://www.wikidata.org/entity/Q32979655", + cordinates: "Point(54.366666666 31.85)", + locationLabel: "Historic City of Yazd", + }, + { + location: "http://www.wikidata.org/entity/Q5472448", + cordinates: "Point(72.5875 23.0256)", + locationLabel: "Historic City of Ahmadabad", + }, + { + location: "http://www.wikidata.org/entity/Q18408097", + cordinates: "Point(39.708937 47.21775)", + locationLabel: "High party school building", + }, + { + location: "http://www.wikidata.org/entity/Q892103", + cordinates: "Point(-115.16815 36.117698)", + locationLabel: "High Roller", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "3120170", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "3668031", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4119103", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4200000", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4220000", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4956529", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12059853", + cordinates: "Point(-86.58305556 30.39388889)", + locationLabel: "Henderson Beach State Park", + }, + { + location: "http://www.wikidata.org/entity/Q10521853", + cordinates: "Point(18.12122 62.72351)", + locationLabel: "Hemsö Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q738015", + cordinates: "Point(24.95212383 60.17038775)", + locationLabel: "Helsinki Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q738015", + cordinates: "Point(24.952177 60.170378)", + locationLabel: "Helsinki Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q1602448", + cordinates: "Point(19.13238889 57.98055556)", + locationLabel: "Helgumannen", + }, + { + location: "http://www.wikidata.org/entity/Q5699120", + cordinates: "Point(-1.56511 53.1238)", + locationLabel: "Heights of Abraham", + }, + { + location: "http://www.wikidata.org/entity/Q4189930", + cordinates: "Point(60.59195 56.85184)", + locationLabel: "Headquarters of Sverdlovsk railway", + }, + { + location: "http://www.wikidata.org/entity/Q18396589", + cordinates: "Point(39.2108944 51.6741852)", + locationLabel: "Headquarters of South Eastern Railway", + }, + { + location: "http://www.wikidata.org/entity/Q1018484", + cordinates: "Point(103.782 1.28426)", + locationLabel: "Haw Par Villa", + }, + { + location: "http://www.wikidata.org/entity/Q1314130", + cordinates: "Point(51.669969 32.653428)", + locationLabel: "Hasht Behesht", + }, + { + location: "http://www.wikidata.org/entity/Q756957", + cordinates: "Point(41.413055555 37.714722222)", + locationLabel: "Hasankeyf", + }, + { + location: "http://www.wikidata.org/entity/Q6017381", + cordinates: "Point(39.2574 38.7034)", + locationLabel: "Harput Castle", + }, + { + location: "http://www.wikidata.org/entity/Q41263848", + cordinates: "Point(11.4204912 48.7676602)", + locationLabel: "Hard Bastion", + }, + { + location: "http://www.wikidata.org/entity/Q12494385", + cordinates: "Point(100.666157 -0.099855)", + locationLabel: "Harau Valley", + }, + { + location: "http://www.wikidata.org/entity/Q66720575", + cordinates: "Point(76.449947 20.834419)", + locationLabel: "Hanuman Statue, Nandura", + }, + { + location: "http://www.wikidata.org/entity/Q97657475", + cordinates: "Point(121.470396 -30.727273)", + locationLabel: "Hannans North Tourist Mine", + }, + { + location: "http://www.wikidata.org/entity/Q5646872", + cordinates: "Point(-159.50709 22.20889)", + locationLabel: "Hanalei Bay", + }, + { + location: "http://www.wikidata.org/entity/Q5646872", + cordinates: "Point(-159.498 22.2144)", + locationLabel: "Hanalei Bay", + }, + { + location: "http://www.wikidata.org/entity/Q3632906", + cordinates: "Point(39.19098 -6.16233)", + locationLabel: "Hamamni Persian Baths", + }, + { + location: "http://www.wikidata.org/entity/Q14680373", + cordinates: "Point(-111.953 33.4474)", + locationLabel: "Hall of Flame Fire Museum", + }, + { + location: "http://www.wikidata.org/entity/Q80800867", + cordinates: "Point(39.708568 47.218903)", + locationLabel: "Hahlajev revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q12506", + cordinates: "Point(28.979916666 41.008527777)", + locationLabel: "Hagia Sophia", + }, + { + location: "http://www.wikidata.org/entity/Q736676", + cordinates: "Point(28.98111 41.00972)", + locationLabel: "Hagia Irene", + }, + { + location: "http://www.wikidata.org/entity/Q10515883", + cordinates: "Point(18.03055556 59.36472222)", + locationLabel: "Haga Park museum", + }, + { + location: "http://www.wikidata.org/entity/Q57357", + cordinates: "Point(-2.2925 55.024166666)", + locationLabel: "Hadrian's Wall", + }, + { + location: "http://www.wikidata.org/entity/Q769575", + cordinates: "Point(32.85777778 39.94444444)", + locationLabel: "Hacı Bayram Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q5637175", + cordinates: "Point(-2.5307 53.0268)", + locationLabel: "Hack Green Secret Nuclear Bunker", + }, + { + location: "http://www.wikidata.org/entity/Q6064113", + cordinates: "Point(36.1656367 36.2016763)", + locationLabel: "Habib-i Neccar Camii", + }, + { + location: "http://www.wikidata.org/entity/Q11861108", + cordinates: "Point(24.4603394 62.2437727)", + locationLabel: "Haapamäki Steam Locomotive Park", + }, + { + location: "http://www.wikidata.org/entity/Q190128", + cordinates: "Point(107.2 20.9)", + locationLabel: "Ha Long Bay", + }, + { + location: "http://www.wikidata.org/entity/Q3403972", + cordinates: "Point(-5.942 54.609)", + locationLabel: "HM Prison Crumlin Road", + }, + { + location: "http://www.wikidata.org/entity/Q1560106", + cordinates: "Point(28.98 41.01222222)", + locationLabel: "Gülhane Park", + }, + { + location: "http://www.wikidata.org/entity/Q482485", + cordinates: "Point(126.977222222 37.578611111)", + locationLabel: "Gyeongbokgung", + }, + { + location: "http://www.wikidata.org/entity/Q28534641", + cordinates: "Point(37.641728 55.764703)", + locationLabel: "Gusyatnikov Lane, 7", + }, + { + location: "http://www.wikidata.org/entity/Q1506922", + visitors: "90069", + cordinates: "Point(17.63172222 59.85797222)", + locationLabel: "Gustavianum", + }, + { + location: "http://www.wikidata.org/entity/Q9282793", + cordinates: "Point(18.0711 59.3269)", + locationLabel: "Gustav III's museum of antiquities", + }, + { + location: "http://www.wikidata.org/entity/Q1191599", + cordinates: "Point(18.03916667 59.36277778)", + locationLabel: "Gustav III's Pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q60455365", + cordinates: "Point(75.144832134 31.365959194)", + locationLabel: "Gurdwara Sri Chubara Sahib", + }, + { + location: "http://www.wikidata.org/entity/Q2741116", + cordinates: "Point(116.38963611 39.94018889)", + locationLabel: "Gulou and Zhonglou", + }, + { + location: "http://www.wikidata.org/entity/Q261012", + cordinates: "Point(-6.2867093 53.341874)", + locationLabel: "Guinness Storehouse", + }, + { + location: "http://www.wikidata.org/entity/Q820499", + cordinates: "Point(18.79166667 50.28972222)", + locationLabel: "Guido Mine and Coal Mining Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10712071", + cordinates: "Point(17.8775 59.31805556)", + locationLabel: "Guard Tent of Drottningholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q100369412", + cordinates: "Point(6.664773003 53.594035245)", + locationLabel: "Großes Kaap", + }, + { + location: "http://www.wikidata.org/entity/Q21639958", + cordinates: "Point(37.615555555 55.753611111)", + locationLabel: "Grotto in Alexander Garden", + }, + { + location: "http://www.wikidata.org/entity/Q19951965", + cordinates: "Point(4.428055555 44.406944444)", + locationLabel: "Grotte Chauvet 2 - Ardèche", + }, + { + location: "http://www.wikidata.org/entity/Q714783", + cordinates: "Point(17.219167 59.256111)", + locationLabel: "Gripsholm Castle", + }, + { + location: "http://www.wikidata.org/entity/Q5608768", + cordinates: "Point(30.2836 59.9381)", + locationLabel: "Griffin's tower", + }, + { + location: "http://www.wikidata.org/entity/Q1450669", + cordinates: "Point(18.65573 54.34794)", + locationLabel: "Green Gate", + }, + { + location: "http://www.wikidata.org/entity/Q61744101", + cordinates: "Point(30.392964 59.715525)", + locationLabel: "Green Dining Room of the Catherine Palace", + }, + { + location: "http://www.wikidata.org/entity/Q28859199", + cordinates: "Point(38.938333333 47.211111111)", + locationLabel: "Grecheskaya Street 61, Taganrog", + }, + { + location: "http://www.wikidata.org/entity/Q12501", + visitors: "15000000", + cordinates: "Point(116.083333333 40.416666666)", + locationLabel: "Great Wall of China", + }, + { + location: "http://www.wikidata.org/entity/Q12501", + visitors: "16000000", + cordinates: "Point(116.083333333 40.416666666)", + locationLabel: "Great Wall of China", + }, + { + location: "http://www.wikidata.org/entity/Q1360486", + cordinates: "Point(-83.4986 35.5628)", + locationLabel: "Great Smoky Mountains", + }, + { + location: "http://www.wikidata.org/entity/Q1360486", + cordinates: "Point(-83.50822 35.58343)", + locationLabel: "Great Smoky Mountains", + }, + { + location: "http://www.wikidata.org/entity/Q37200", + cordinates: "Point(31.13425 29.979138888)", + locationLabel: "Great Pyramid of Giza", + }, + { + location: "http://www.wikidata.org/entity/Q85941446", + cordinates: "Point(-3.847348055 53.330173055)", + locationLabel: "Great Orme Bronze Age Mines", + }, + { + location: "http://www.wikidata.org/entity/Q216846", + cordinates: "Point(-20.30082 64.31271)", + locationLabel: "Great Geysir", + }, + { + location: "http://www.wikidata.org/entity/Q2088410", + cordinates: "Point(3.72083 51.055)", + locationLabel: "Graslei", + }, + { + location: "http://www.wikidata.org/entity/Q60455675", + cordinates: "Point(-80.02931 43.099578)", + locationLabel: "Grand River Dinner Cruises", + }, + { + location: "http://www.wikidata.org/entity/Q1370087", + cordinates: "Point(37.615833333 55.75)", + locationLabel: "Grand Kremlin Palace", + }, + { + location: "http://www.wikidata.org/entity/Q28920211", + cordinates: "Point(39.707777777 47.22)", + locationLabel: "Grand Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1504036", + cordinates: "Point(30.292 59.925)", + locationLabel: "Grand Choral Synagogue", + }, + { + location: "http://www.wikidata.org/entity/Q11290", + cordinates: "Point(-73.977222222 40.752777777)", + locationLabel: "Grand Central Terminal", + }, + { + location: "http://www.wikidata.org/entity/Q118841", + cordinates: "Point(-112.095278 36.0975)", + locationLabel: "Grand Canyon", + }, + { + location: "http://www.wikidata.org/entity/Q309243", + cordinates: "Point(12.326388888 45.442222222)", + locationLabel: "Grand Canal", + }, + { + location: "http://www.wikidata.org/entity/Q505954", + cordinates: "Point(28.967933333 41.010580555)", + locationLabel: "Grand Bazaar", + }, + { + location: "http://www.wikidata.org/entity/Q15298889", + cordinates: "Point(39.707883333 47.225563888)", + locationLabel: "Grammar school № 36 (Rostov-on-Don)", + }, + { + location: "http://www.wikidata.org/entity/Q545360", + visitors: "650000", + cordinates: "Point(-90.025833333 35.046111111)", + locationLabel: "Graceland", + }, + { + location: "http://www.wikidata.org/entity/Q27013825", + cordinates: "Point(45.018665 53.195971)", + locationLabel: "Government buildings in Penza Oblast", + }, + { + location: "http://www.wikidata.org/entity/Q844124", + cordinates: "Point(37.573146 55.754935)", + locationLabel: "Government House of the Russian Federation", + }, + { + location: "http://www.wikidata.org/entity/Q10512976", + cordinates: "Point(17.87111111 59.32305556)", + locationLabel: "Gothic Tower of Drottningholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q55436725", + cordinates: "Point(30.4059613 59.7195311)", + locationLabel: "Gostiny dvor, Pushkin", + }, + { + location: "http://www.wikidata.org/entity/Q55400381", + cordinates: "Point(61.895277777 56.416944444)", + locationLabel: "Gostiny Dvor, Kamensk-Uralsky", + }, + { + location: "http://www.wikidata.org/entity/Q4133524", + cordinates: "Point(37.719713888 55.739488888)", + locationLabel: "Gosplan garage", + }, + { + location: "http://www.wikidata.org/entity/Q21639721", + cordinates: "Point(82.918934 55.03034)", + locationLabel: "Gosbank Building, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q4172783", + cordinates: "Point(37.667644444 55.765675)", + locationLabel: "Gorokhovsky Lane 17, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q4145398", + cordinates: "Point(60.620972222 56.841888888)", + locationLabel: "Gorodok Chekistov", + }, + { + location: "http://www.wikidata.org/entity/Q16678355", + cordinates: "Point(37.59638889 55.75833333)", + locationLabel: "Gorky House Museum", + }, + { + location: "http://www.wikidata.org/entity/Q19462023", + cordinates: "Point(-111.488 33.4578)", + locationLabel: "Goldfield Ghost Town", + }, + { + location: "http://www.wikidata.org/entity/Q1535454", + cordinates: "Point(10.8987 48.3687)", + locationLabel: "Goldener Saal", + }, + { + location: "http://www.wikidata.org/entity/Q635559", + cordinates: "Point(-122.476944444 37.769722222)", + locationLabel: "Golden Gate Park", + }, + { + location: "http://www.wikidata.org/entity/Q44440", + cordinates: "Point(-122.478611111 37.819722222)", + locationLabel: "Golden Gate Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q3848967", + cordinates: "Point(35.231388888 44.914722222)", + locationLabel: "Golden Gate", + }, + { + location: "http://www.wikidata.org/entity/Q55954790", + cordinates: "Point(107.99525515 15.99894525)", + locationLabel: "Golden Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q1534505", + cordinates: "Point(9.50166667 40.18527778)", + locationLabel: "Gola Su Gorropu", + }, + { + location: "http://www.wikidata.org/entity/Q5571009", + cordinates: "Point(-0.118611 51.5131)", + locationLabel: "Globe Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q1530983", + cordinates: "Point(-5.45 56.866666666)", + locationLabel: "Glenfinnan", + }, + { + location: "http://www.wikidata.org/entity/Q1412726", + cordinates: "Point(-2.698611111 51.144444444)", + locationLabel: "Glastonbury Tor", + }, + { + location: "http://www.wikidata.org/entity/Q1473348", + cordinates: "Point(-4.2346 55.8631)", + locationLabel: "Glasgow Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q106187", + cordinates: "Point(-6.511666666 55.240833333)", + locationLabel: "Giant's Causeway", + }, + { + location: "http://www.wikidata.org/entity/Q106458771", + cordinates: "Point(117.338445312 -33.310709887)", + locationLabel: "Giant Ram, Wagin", + }, + { + location: "http://www.wikidata.org/entity/Q2202092", + cordinates: "Point(3.56938 51.44201)", + locationLabel: "Gevangentoren (Vlissingen)", + }, + { + location: "http://www.wikidata.org/entity/Q55523843", + cordinates: "Point(37.683088888 55.771958333)", + locationLabel: "German market", + }, + { + location: "http://www.wikidata.org/entity/Q52663818", + cordinates: "Point(61.893888888 56.417222222)", + locationLabel: "Gerasimov Merchant’s Shop", + }, + { + location: "http://www.wikidata.org/entity/Q27781792", + cordinates: "Point(44.008787 56.330191)", + locationLabel: "Georgiyevskaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q2622043", + cordinates: "Point(30.3172 59.9381)", + locationLabel: "General Staff Building", + }, + { + location: "http://www.wikidata.org/entity/Q4139229", + cordinates: "Point(79.843416666 6.935944444)", + locationLabel: "General Post Office, Colombo", + }, + { + location: "http://www.wikidata.org/entity/Q3314843", + cordinates: "Point(-5.67583 50.1525)", + locationLabel: "Geevor Tin Mine", + }, + { + location: "http://www.wikidata.org/entity/Q97930208", + cordinates: "Point(2.179861111 41.391638888)", + locationLabel: "Geek Triangle", + }, + { + location: "http://www.wikidata.org/entity/Q63372490", + cordinates: "Point(40.229198 37.895626)", + locationLabel: "Gazi Pavillion", + }, + { + location: "http://www.wikidata.org/entity/Q1566076", + cordinates: "Point(18.4279184 43.8586287)", + locationLabel: "Gazi Husrev-beg bezistan", + }, + { + location: "http://www.wikidata.org/entity/Q16652091", + cordinates: "Point(39.71224444 47.22488333)", + locationLabel: "Gavala house", + }, + { + location: "http://www.wikidata.org/entity/Q2027162", + cordinates: "Point(-90.1847 38.6245)", + locationLabel: "Gateway Arch", + }, + { + location: "http://www.wikidata.org/entity/Q10306385", + cordinates: "Point(-8.62646 41.14706)", + locationLabel: "Gardens of the Palácio de Cristal", + }, + { + location: "http://www.wikidata.org/entity/Q42699071", + cordinates: "Point(56.107111111 29.404611111)", + locationLabel: "Garden of Stones", + }, + { + location: "http://www.wikidata.org/entity/Q4504054", + visitors: "882000", + cordinates: "Point(37.6016 55.7278)", + locationLabel: "Garage Center for Contemporary Culture", + }, + { + location: "http://www.wikidata.org/entity/Q11412492", + cordinates: "Point(140.779166666 40.83)", + locationLabel: "Gappo Park", + }, + { + location: "http://www.wikidata.org/entity/Q126847", + cordinates: "Point(60.47333333 56.94222222)", + locationLabel: "Ganina Yama", + }, + { + location: "http://www.wikidata.org/entity/Q15938168", + cordinates: "Point(120.910339 24.822819)", + locationLabel: "Gangnan Coastal Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q1756286", + cordinates: "Point(22.02861 65.64611)", + locationLabel: "Gammelstad Church Town", + }, + { + location: "http://www.wikidata.org/entity/Q28002826", + cordinates: "Point(36.487757 55.204198)", + locationLabel: "Gallery of Repressed (Borovsk)", + }, + { + location: "http://www.wikidata.org/entity/Q91274", + cordinates: "Point(28.974167 41.025556)", + locationLabel: "Galata Tower", + }, + { + location: "http://www.wikidata.org/entity/Q81523", + cordinates: "Point(28.973055555 41.02)", + locationLabel: "Galata Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q49324260", + cordinates: "Point(-8.96835 38.48387)", + locationLabel: "Galapinhos beach", + }, + { + location: "http://www.wikidata.org/entity/Q38095", + cordinates: "Point(-90.55 -0.666666666)", + locationLabel: "Galapagos Islands", + }, + { + location: "http://www.wikidata.org/entity/Q549498", + cordinates: "Point(37.6215 55.754722222)", + locationLabel: "GUM", + }, + { + location: "http://www.wikidata.org/entity/Q48945208", + cordinates: "Point(37.612778 55.742778)", + locationLabel: "GES-2 in Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q4306300", + cordinates: "Point(43.8927639 56.2544775)", + locationLabel: "GAZ museum", + }, + { + location: "http://www.wikidata.org/entity/Q21654514", + cordinates: "Point(130.19663889 33.64047222)", + locationLabel: "Futamigaura", + }, + { + location: "http://www.wikidata.org/entity/Q11371796", + cordinates: "Point(136.788536 34.509628)", + locationLabel: "Futami ga ura", + }, + { + location: "http://www.wikidata.org/entity/Q11371796", + cordinates: "Point(136.7909 34.50929)", + locationLabel: "Futami ga ura", + }, + { + location: "http://www.wikidata.org/entity/Q4845494", + cordinates: "Point(103.84875 1.282919444)", + locationLabel: "Fuk Tak Chi Temple", + }, + { + location: "http://www.wikidata.org/entity/Q4158808", + cordinates: "Point(39.747461 43.567978)", + locationLabel: "Friendship Tree", + }, + { + location: "http://www.wikidata.org/entity/Q51811816", + cordinates: "Point(-77.021699631 38.899834108)", + locationLabel: "Friendship Archway", + }, + { + location: "http://www.wikidata.org/entity/Q65084857", + cordinates: "Point(10.01342 48.40611)", + locationLabel: "Friedrichsau Fort", + }, + { + location: "http://www.wikidata.org/entity/Q3089169", + visitors: "130000", + cordinates: "Point(115.753177 -32.055039)", + locationLabel: "Fremantle Prison", + }, + { + location: "http://www.wikidata.org/entity/Q16712611", + cordinates: "Point(38.932113 47.210749)", + locationLabel: "Freken Bock (Cafe)", + }, + { + location: "http://www.wikidata.org/entity/Q5492831", + cordinates: "Point(25.5254 45.3683)", + locationLabel: "Franz Joseph Cliffs", + }, + { + location: "http://www.wikidata.org/entity/Q77833129", + cordinates: "Point(37.612982 55.757364)", + locationLabel: "Fragment Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11695630", + cordinates: "Point(17.023591 51.109722)", + locationLabel: "Four Denominations District", + }, + { + location: "http://www.wikidata.org/entity/Q540237", + cordinates: "Point(-1.58139 54.1097)", + locationLabel: "Fountains Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q1984710", + cordinates: "Point(33.88138889 44.74861111)", + locationLabel: "Fountain of Tears in Bakhchisaray Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4168757", + cordinates: "Point(37.631725 55.8298)", + locationLabel: "Fountain Friendship of Nations", + }, + { + location: "http://www.wikidata.org/entity/Q48331950", + cordinates: "Point(22.7564 37.730808333)", + locationLabel: "Fortifications of Mycenae", + }, + { + location: "http://www.wikidata.org/entity/Q21662394", + cordinates: "Point(20.567554 54.656847)", + locationLabel: "Fort № 11 Denkhoff", + }, + { + location: "http://www.wikidata.org/entity/Q64989606", + cordinates: "Point(9.982777777 48.411944444)", + locationLabel: "Fort Wilhelmsburg", + }, + { + location: "http://www.wikidata.org/entity/Q4492032", + cordinates: "Point(20.431086 54.664397)", + locationLabel: "Fort VIII in Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q4492031", + cordinates: "Point(20.387895 54.693701)", + locationLabel: "Fort VII in Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q4492029", + cordinates: "Point(20.42753 54.739496)", + locationLabel: "Fort V-a in Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q4934042", + cordinates: "Point(4.840833 52.540556)", + locationLabel: "Fort Spijkerboor", + }, + { + location: "http://www.wikidata.org/entity/Q4419293", + cordinates: "Point(103.80805556 1.25888889)", + locationLabel: "Fort Siloso", + }, + { + location: "http://www.wikidata.org/entity/Q15694886", + cordinates: "Point(11.526 48.7869)", + locationLabel: "Fort Prince Karl", + }, + { + location: "http://www.wikidata.org/entity/Q4492026", + cordinates: "Point(20.546151 54.761143)", + locationLabel: "Fort III in Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q4492023", + cordinates: "Point(20.601424 54.748941)", + locationLabel: "Fort II in Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q1438470", + cordinates: "Point(103.847 1.29444)", + locationLabel: "Fort Canning Hill", + }, + { + location: "http://www.wikidata.org/entity/Q4492028", + cordinates: "Point(20.443108333 54.752619444)", + locationLabel: "Fort 5 - King Frederick Wilhelm III", + }, + { + location: "http://www.wikidata.org/entity/Q3748453", + cordinates: "Point(14.53823056 41.3008)", + locationLabel: "Forre del Titerno", + }, + { + location: "http://www.wikidata.org/entity/Q33308503", + cordinates: "Point(14.249487 53.91361)", + locationLabel: "Former Lutheran church in Świnoujście", + }, + { + location: "http://www.wikidata.org/entity/Q98710256", + cordinates: "Point(107.5847608 51.8287861)", + locationLabel: "Former Kapelman building", + }, + { + location: "http://www.wikidata.org/entity/Q5469244", + cordinates: "Point(-119.880833 36.807222)", + locationLabel: "Forestiere Underground Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q80290", + visitors: "14000000", + cordinates: "Point(116.390555555 39.914722222)", + locationLabel: "Forbidden City", + }, + { + location: "http://www.wikidata.org/entity/Q87266132", + cordinates: "Point(-46.570341666 -21.779461111)", + locationLabel: "Fonte dos Amores (Poços de Caldas)", + }, + { + location: "http://www.wikidata.org/entity/Q43145343", + cordinates: "Point(30.28255 59.915765)", + locationLabel: "Fontanka Embankment 154", + }, + { + location: "http://www.wikidata.org/entity/Q16321260", + cordinates: "Point(51.6986 32.6392)", + locationLabel: "Flower Garden of Isfahan", + }, + { + location: "http://www.wikidata.org/entity/Q3058122", + cordinates: "Point(-3.37028 47.7292)", + locationLabel: "Flore submarine, Submarine Discovery Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1421440", + visitors: "364269", + cordinates: "Point(0.119444 52.200278)", + locationLabel: "Fitzwilliam Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4492620", + cordinates: "Point(7.99583333 58.14083333)", + locationLabel: "Fiskebrygga", + }, + { + location: "http://www.wikidata.org/entity/Q3051820", + cordinates: "Point(20.51583334 54.70222223)", + locationLabel: "Fishing Village Kaliningrad", + }, + { + location: "http://www.wikidata.org/entity/Q1324280", + cordinates: "Point(-122.415673 37.808313)", + locationLabel: "Fisherman's Wharf", + }, + { + location: "http://www.wikidata.org/entity/Q4349845", + cordinates: "Point(88.208533 69.34591)", + locationLabel: "First house Norilsk", + }, + { + location: "http://www.wikidata.org/entity/Q55449580", + cordinates: "Point(30.4096735 59.7183626)", + locationLabel: "First Town hall, Pushkin town", + }, + { + location: "http://www.wikidata.org/entity/Q16684909", + cordinates: "Point(76.887 43.188)", + locationLabel: "First President's Park", + }, + { + location: "http://www.wikidata.org/entity/Q27890571", + cordinates: "Point(60.610463 56.837252)", + locationLabel: "First Gymnasium for girls", + }, + { + location: "http://www.wikidata.org/entity/Q1412718", + cordinates: "Point(37.48333333 55.75)", + locationLabel: "Filyovsky park", + }, + { + location: "http://www.wikidata.org/entity/Q151356", + cordinates: "Point(13.409444444 52.520833333)", + locationLabel: "Fernsehturm Berlin", + }, + { + location: "http://www.wikidata.org/entity/Q3366184", + cordinates: "Point(17.108383 58.648983)", + locationLabel: "Femöre Coastal Artillery Battery", + }, + { + location: "http://www.wikidata.org/entity/Q100307835", + cordinates: "Point(9.982702777 51.467186111)", + locationLabel: "Felsentreppe Reinhausen", + }, + { + location: "http://www.wikidata.org/entity/Q251712", + cordinates: "Point(11.57726 48.14166)", + locationLabel: "Feldherrnhalle", + }, + { + location: "http://www.wikidata.org/entity/Q57812673", + visitors: "t1558199112", + cordinates: "Point(-0.911138888 51.567138888)", + locationLabel: "Fawley Hill Railway", + }, + { + location: "http://www.wikidata.org/entity/Q369967", + cordinates: "Point(29.061111 41.091111)", + locationLabel: "Fatih Sultan Mehmet Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q756189", + cordinates: "Point(28.949722 41.019722)", + locationLabel: "Fatih Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q29006943", + cordinates: "Point(38.918188 47.215872)", + locationLabel: "Fat and Thin", + }, + { + location: "http://www.wikidata.org/entity/Q5435417", + cordinates: "Point(-75.660634 41.408203)", + locationLabel: "Farley's Eatery and Pub", + }, + { + location: "http://www.wikidata.org/entity/Q49137", + cordinates: "Point(-71.056315 42.359987)", + locationLabel: "Faneuil Hall", + }, + { + location: "http://www.wikidata.org/entity/Q15107508", + cordinates: "Point(15.615683 60.6004)", + locationLabel: "Falun Mine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q619409", + cordinates: "Point(-0.083277777 50.861822222)", + locationLabel: "Falmer Stadium", + }, + { + location: "http://www.wikidata.org/entity/Q3906405", + cordinates: "Point(35.566666666 33.7)", + locationLabel: "Fakhredine Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q16084604", + cordinates: "Point(20.47234 44.807265)", + locationLabel: "Faculty of Law Building in Belgrade", + }, + { + location: "http://www.wikidata.org/entity/Q43087023", + cordinates: "Point(11.4066849 44.5139341)", + locationLabel: "FICO Eataly World", + }, + { + location: "http://www.wikidata.org/entity/Q956677", + cordinates: "Point(28.933786111 41.047947222)", + locationLabel: "Eyüp Sultan Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q2023657", + cordinates: "Point(37.605 55.74722222)", + locationLabel: "Expocentre", + }, + { + location: "http://www.wikidata.org/entity/Q855493", + cordinates: "Point(37.632222222 55.829722222)", + locationLabel: "Exhibition of achievements of national economy", + }, + { + location: "http://www.wikidata.org/entity/Q11859216", + cordinates: "Point(25.1 61.228)", + locationLabel: "Evo Hiking Area", + }, + { + location: "http://www.wikidata.org/entity/Q274131", + visitors: "930907", + cordinates: "Point(-80.6875 25.3125)", + locationLabel: "Everglades National Park", + }, + { + location: "http://www.wikidata.org/entity/Q274131", + visitors: "934351", + cordinates: "Point(-80.6875 25.3125)", + locationLabel: "Everglades National Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "250000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "700000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "800000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1000000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1100000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1120000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1300000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1400000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1500000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1600000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1700000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "1800000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2000000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2100000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2200000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2300000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2400000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2500000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "2700000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "3000000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "3280000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "3550000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "3600000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "3700000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "3900000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "4000000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "4250000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "4500000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "4600000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "4900000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "5000000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "5500000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "5600000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q159144", + visitors: "5700000", + cordinates: "Point(7.720833 48.268333)", + locationLabel: "Europa-Park", + }, + { + location: "http://www.wikidata.org/entity/Q1968469", + cordinates: "Point(33.374166666 45.198611111)", + locationLabel: "Eupatorian Kenassas", + }, + { + location: "http://www.wikidata.org/entity/Q10276527", + cordinates: "Point(-46.555 -23.91388889)", + locationLabel: "Estrada de manutenção da Ecovias", + }, + { + location: "http://www.wikidata.org/entity/Q1370434", + cordinates: "Point(40.260833333 43.684722222)", + locationLabel: "Estosadok", + }, + { + location: "http://www.wikidata.org/entity/Q10276249", + cordinates: "Point(-48.50014 -1.448605)", + locationLabel: "Estação das Docas", + }, + { + location: "http://www.wikidata.org/entity/Q559113", + cordinates: "Point(103.855 1.28989)", + locationLabel: "Esplanade – Theatres on the Bay", + }, + { + location: "http://www.wikidata.org/entity/Q558856", + cordinates: "Point(33.8475 44.74888889)", + locationLabel: "Eski Yurt", + }, + { + location: "http://www.wikidata.org/entity/Q63410218", + cordinates: "Point(-43.15286 -22.95014)", + locationLabel: "Escalada do Costão", + }, + { + location: "http://www.wikidata.org/entity/Q127963", + cordinates: "Point(52.525555555 29.635833333)", + locationLabel: "Eram Garden", + }, + { + location: "http://www.wikidata.org/entity/Q47611", + cordinates: "Point(27.348611 37.939722)", + locationLabel: "Ephesus", + }, + { + location: "http://www.wikidata.org/entity/Q64699469", + cordinates: "Point(27.35944 37.92917)", + locationLabel: "Ephesus", + }, + { + location: "http://www.wikidata.org/entity/Q4066910", + cordinates: "Point(49.532777777 53.464444444)", + locationLabel: "Ensemble of building of Shluzovoy", + }, + { + location: "http://www.wikidata.org/entity/Q69445547", + cordinates: "Point(-117.9196505 33.8116941)", + locationLabel: "Enchanted Tiki Room at Disneyland", + }, + { + location: "http://www.wikidata.org/entity/Q21512567", + cordinates: "Point(121.655441666 31.145622222)", + locationLabel: "Enchanted Storybook Castle", + }, + { + location: "http://www.wikidata.org/entity/Q9188", + cordinates: "Point(-73.985277777 40.748333333)", + locationLabel: "Empire State Building", + }, + { + location: "http://www.wikidata.org/entity/Q31173176", + cordinates: "Point(110.546933 -7.847053)", + locationLabel: "Embung Nglanggeran", + }, + { + location: "http://www.wikidata.org/entity/Q4374032", + cordinates: "Point(37.588224 55.764653)", + locationLabel: "Embassies of Pakistan", + }, + { + location: "http://www.wikidata.org/entity/Q202175", + cordinates: "Point(-74.039444444 40.699166666)", + locationLabel: "Ellis Island", + }, + { + location: "http://www.wikidata.org/entity/Q19858017", + cordinates: "Point(37.694980555 55.782302777)", + locationLabel: "Elizabeth of Russia palace in Sokolniki", + }, + { + location: "http://www.wikidata.org/entity/Q5363395", + cordinates: "Point(115.857 -31.9575)", + locationLabel: "Elizabeth Quay", + }, + { + location: "http://www.wikidata.org/entity/Q10725744", + cordinates: "Point(11.85222222 57.67472222)", + locationLabel: "Elfsborg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q5359415", + cordinates: "Point(-73.9783 40.5767)", + locationLabel: "Elephantine Colossus", + }, + { + location: "http://www.wikidata.org/entity/Q85673722", + cordinates: "Point(-4.121691 53.118526)", + locationLabel: "Electric Mountain", + }, + { + location: "http://www.wikidata.org/entity/Q673223", + cordinates: "Point(9.98419444 53.54141667)", + locationLabel: "Elbe Philharmonic Hall", + }, + { + location: "http://www.wikidata.org/entity/Q4810167", + cordinates: "Point(46.365597222 38.025322222)", + locationLabel: "El-Goli", + }, + { + location: "http://www.wikidata.org/entity/Q65043584", + cordinates: "Point(39.619722222 39.719722222)", + locationLabel: "Ekşisu Picnic Area", + }, + { + location: "http://www.wikidata.org/entity/Q10480765", + cordinates: "Point(18.10876111 59.32575)", + locationLabel: "Ekshärad Farmstead, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q1011625", + cordinates: "Point(16.486111111 56.295555555)", + locationLabel: "Eketorp Fort", + }, + { + location: "http://www.wikidata.org/entity/Q5350380", + cordinates: "Point(17.81472222 59.28277778)", + locationLabel: "Ekebyhov Castle", + }, + { + location: "http://www.wikidata.org/entity/Q71940009", + cordinates: "Point(40.828546 53.003293)", + locationLabel: "Ekaterinino Arboretum", + }, + { + location: "http://www.wikidata.org/entity/Q243", + visitors: "6207303", + cordinates: "Point(2.294479 48.858296)", + locationLabel: "Eiffel Tower", + }, + { + location: "http://www.wikidata.org/entity/Q212065", + cordinates: "Point(-3.20073 55.9487)", + locationLabel: "Edinburgh Castle", + }, + { + location: "http://www.wikidata.org/entity/Q2558264", + cordinates: "Point(5.06722 52.51778)", + locationLabel: "Edam Fort", + }, + { + location: "http://www.wikidata.org/entity/Q29388914", + cordinates: "Point(39.715489 47.219789)", + locationLabel: "Eberg's house in Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q3521764", + cordinates: "Point(103.926373 1.303956)", + locationLabel: "East Coast Park, Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q5327834", + cordinates: "Point(-119.682 34.4142)", + locationLabel: "East Beach", + }, + { + location: "http://www.wikidata.org/entity/Q5327834", + cordinates: "Point(-119.66402 34.41666)", + locationLabel: "East Beach", + }, + { + location: "http://www.wikidata.org/entity/Q2666468", + cordinates: "Point(30.780555555 36.848611111)", + locationLabel: "Düden Waterfalls", + }, + { + location: "http://www.wikidata.org/entity/Q2666468", + cordinates: "Point(30.7269123 36.9638177)", + locationLabel: "Düden Waterfalls", + }, + { + location: "http://www.wikidata.org/entity/Q878560", + cordinates: "Point(11.2457 53.1424)", + locationLabel: "Dömitz Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q47471691", + cordinates: "Point(40.993541 56.99954)", + locationLabel: "Dyuringer Mansion, Ivanovo", + }, + { + location: "http://www.wikidata.org/entity/Q5317653", + cordinates: "Point(-70.63559167 42.04176944)", + locationLabel: "Duxbury Beach", + }, + { + location: "http://www.wikidata.org/entity/Q21639134", + cordinates: "Point(37.625277777 55.743333333)", + locationLabel: "Durilin revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q642772", + cordinates: "Point(11.4275 48.7636)", + locationLabel: "Duke's Chest Castle", + }, + { + location: "http://www.wikidata.org/entity/Q10477004", + cordinates: "Point(15.564336 56.110167)", + locationLabel: "Drottningskär Citadel", + }, + { + location: "http://www.wikidata.org/entity/Q3058143", + cordinates: "Point(17.885 59.32306667)", + locationLabel: "Drottningholm Palace Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q10476996", + cordinates: "Point(17.88766667 59.32283333)", + locationLabel: "Drottningholm Palace Stables", + }, + { + location: "http://www.wikidata.org/entity/Q10476995", + cordinates: "Point(17.88633889 59.32226111)", + locationLabel: "Drottningholm Palace Chapel", + }, + { + location: "http://www.wikidata.org/entity/Q208559", + cordinates: "Point(17.886383 59.321694)", + locationLabel: "Drottningholm Palace", + }, + { + location: "http://www.wikidata.org/entity/Q42429620", + cordinates: "Point(10.511125 51.7324047)", + locationLabel: "Dreibrodesteine", + }, + { + location: "http://www.wikidata.org/entity/Q23461928", + cordinates: "Point(-0.118889 51.501944)", + locationLabel: "Dreamworks Tours", + }, + { + location: "http://www.wikidata.org/entity/Q17122888", + cordinates: "Point(12.373 51.341)", + locationLabel: "Drallewatsch", + }, + { + location: "http://www.wikidata.org/entity/Q950970", + cordinates: "Point(1.3235035 51.128268)", + locationLabel: "Dover Castle", + }, + { + location: "http://www.wikidata.org/entity/Q950970", + cordinates: "Point(1.32277 51.1286)", + locationLabel: "Dover Castle", + }, + { + location: "http://www.wikidata.org/entity/Q748910", + cordinates: "Point(37.616944444 55.751111111)", + locationLabel: "Dormition Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q12540812", + cordinates: "Point(69.6698 42.875084)", + locationLabel: "Domalak Ana mausoleum", + }, + { + location: "http://www.wikidata.org/entity/Q1235312", + cordinates: "Point(-3.9510506 52.042709)", + locationLabel: "Dolaucothi Gold Mines", + }, + { + location: "http://www.wikidata.org/entity/Q1235312", + cordinates: "Point(-3.9498 52.0446)", + locationLabel: "Dolaucothi Gold Mines", + }, + { + location: "http://www.wikidata.org/entity/Q85673714", + cordinates: "Point(-3.9498 52.0446)", + locationLabel: "Dolaucothi Gold Mine", + }, + { + location: "http://www.wikidata.org/entity/Q68824772", + cordinates: "Point(-117.9212633 33.8146277)", + locationLabel: "Dok-Ondar's Den of Antiquities", + }, + { + location: "http://www.wikidata.org/entity/Q189883", + cordinates: "Point(12.34 45.4339)", + locationLabel: "Doge's Palace", + }, + { + location: "http://www.wikidata.org/entity/Q53844346", + cordinates: "Point(24.872898 41.891492)", + locationLabel: "Dobrostanski biser", + }, + { + location: "http://www.wikidata.org/entity/Q5286542", + cordinates: "Point(-80.0907 42.1377)", + locationLabel: "Dobbins Landing", + }, + { + location: "http://www.wikidata.org/entity/Q18406802", + cordinates: "Point(44.005697 56.327064)", + locationLabel: "Dmitrievskaya Tower", + }, + { + location: "http://www.wikidata.org/entity/Q581641", + cordinates: "Point(38.121583333 39.371222222)", + locationLabel: "Divriği Great Mosque and Hospital", + }, + { + location: "http://www.wikidata.org/entity/Q1229098", + cordinates: "Point(-117.919167 33.807778)", + locationLabel: "Disney California Adventure", + }, + { + location: "http://www.wikidata.org/entity/Q41806750", + cordinates: "Point(112.477067 27.923722)", + locationLabel: "Dishui Cave", + }, + { + location: "http://www.wikidata.org/entity/Q5278642", + cordinates: "Point(-103.247989 44.078428)", + locationLabel: "Dinosaur Park", + }, + { + location: "http://www.wikidata.org/entity/Q21638884", + cordinates: "Point(59.696830555 56.818733333)", + locationLabel: "Didinsky Tunnel", + }, + { + location: "http://www.wikidata.org/entity/Q958144", + cordinates: "Point(27.266666666 37.383333333)", + locationLabel: "Didim", + }, + { + location: "http://www.wikidata.org/entity/Q64585021", + cordinates: "Point(92.121941 25.157125)", + locationLabel: "Dibir Haor", + }, + { + location: "http://www.wikidata.org/entity/Q944686", + cordinates: "Point(-157.81175 21.259722222)", + locationLabel: "Diamond Head", + }, + { + location: "http://www.wikidata.org/entity/Q2628618", + cordinates: "Point(37.61361111 55.74944444)", + locationLabel: "Diamond Fund", + }, + { + location: "http://www.wikidata.org/entity/Q84446338", + cordinates: "Point(25.8524 -17.9236)", + locationLabel: "Devils Pool", + }, + { + location: "http://www.wikidata.org/entity/Q91121660", + cordinates: "Point(-60.029036111 45.978175)", + locationLabel: "Devils Hill Falls", + }, + { + location: "http://www.wikidata.org/entity/Q5267232", + cordinates: "Point(24.3794667 41.6150629)", + locationLabel: "Devil's Throat Cave", + }, + { + location: "http://www.wikidata.org/entity/Q5267212", + cordinates: "Point(-0.72887 51.11689)", + locationLabel: "Devil's Punch Bowl", + }, + { + location: "http://www.wikidata.org/entity/Q2756370", + cordinates: "Point(24.886861111 43.232944444)", + locationLabel: "Devetashka cave", + }, + { + location: "http://www.wikidata.org/entity/Q1201561", + cordinates: "Point(37.624811111 55.76015)", + locationLabel: "Detsky Mir", + }, + { + location: "http://www.wikidata.org/entity/Q66363192", + cordinates: "Point(26.561944444 48.67375)", + locationLabel: "Denna tower", + }, + { + location: "http://www.wikidata.org/entity/Q5254299", + cordinates: "Point(-81.82805556 26.28111111)", + locationLabel: "Delnor-Wiggins Pass State Park", + }, + { + location: "http://www.wikidata.org/entity/Q5252914", + cordinates: "Point(-117.262 32.9761)", + locationLabel: "Del Mar Fairgrounds", + }, + { + location: "http://www.wikidata.org/entity/Q18287841", + cordinates: "Point(14.09226389 55.83873611)", + locationLabel: "Degeberga Church", + }, + { + location: "http://www.wikidata.org/entity/Q118388", + cordinates: "Point(-116.865278 36.456944)", + locationLabel: "Death Valley", + }, + { + location: "http://www.wikidata.org/entity/Q10825643", + cordinates: "Point(108.44875 11.901583333)", + locationLabel: "Datanla falls", + }, + { + location: "http://www.wikidata.org/entity/Q44296050", + cordinates: "Point(37.136002 54.880596)", + locationLabel: "Dashkova Estate", + }, + { + location: "http://www.wikidata.org/entity/Q5222054", + cordinates: "Point(39.19371 -6.16244)", + locationLabel: "Darajani Market", + }, + { + location: "http://www.wikidata.org/entity/Q3363806", + cordinates: "Point(51.40695 35.700775)", + locationLabel: "Daneshjoo Park", + }, + { + location: "http://www.wikidata.org/entity/Q1158600", + cordinates: "Point(31.988222222 36.542330555)", + locationLabel: "Damlataş Cave", + }, + { + location: "http://www.wikidata.org/entity/Q1158600", + cordinates: "Point(31.99 36.542222222)", + locationLabel: "Damlataş Cave", + }, + { + location: "http://www.wikidata.org/entity/Q40758", + cordinates: "Point(52.109166666 35.955277777)", + locationLabel: "Damavand", + }, + { + location: "http://www.wikidata.org/entity/Q5211938", + cordinates: "Point(73.055581 33.739936)", + locationLabel: "Daman-e-Koh", + }, + { + location: "http://www.wikidata.org/entity/Q4154138", + cordinates: "Point(18.39027778 59.11277778)", + locationLabel: "Dalarö Fort", + }, + { + location: "http://www.wikidata.org/entity/Q5209933", + cordinates: "Point(120.58144 22.98663)", + locationLabel: "Dakeng Scenic Area", + }, + { + location: "http://www.wikidata.org/entity/Q55434454", + cordinates: "Point(128.255138888 26.861944444)", + locationLabel: "Daisekirinzan", + }, + { + location: "http://www.wikidata.org/entity/Q43325447", + cordinates: "Point(30.25878 59.983545)", + locationLabel: "Dacha Shishmareva", + }, + { + location: "http://www.wikidata.org/entity/Q55344780", + cordinates: "Point(30.3994703 59.7185465)", + locationLabel: "Dacha Patkul", + }, + { + location: "http://www.wikidata.org/entity/Q192721", + cordinates: "Point(106.526 11.061)", + locationLabel: "Củ Chi tunnels", + }, + { + location: "http://www.wikidata.org/entity/Q27345371", + cordinates: "Point(14.824022 50.870568)", + locationLabel: "Czech Republic–Germany–Poland tripoint", + }, + { + location: "http://www.wikidata.org/entity/Q1897419", + cordinates: "Point(29.172109 40.176599)", + locationLabel: "Cumalıkızık", + }, + { + location: "http://www.wikidata.org/entity/Q1142351", + cordinates: "Point(-117.84 33.5739)", + locationLabel: "Crystal Cove State Park", + }, + { + location: "http://www.wikidata.org/entity/Q86974802", + cordinates: "Point(57.33757 -20.41428)", + locationLabel: "Crystal Coral rock", + }, + { + location: "http://www.wikidata.org/entity/Q1570303", + cordinates: "Point(11.95514 57.696136)", + locationLabel: "Crown Redoubt", + }, + { + location: "http://www.wikidata.org/entity/Q56844158", + cordinates: "Point(31.892777777 -25.358055555)", + locationLabel: "Crocodile Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q71888724", + cordinates: "Point(148.020569 -34.637149)", + locationLabel: "Cricket Captains' Walk", + }, + { + location: "http://www.wikidata.org/entity/Q34374", + cordinates: "Point(24.893333333 35.309722222)", + locationLabel: "Crete", + }, + { + location: "http://www.wikidata.org/entity/Q5181997", + cordinates: "Point(-70.7696 42.6874)", + locationLabel: "Crane Beach", + }, + { + location: "http://www.wikidata.org/entity/Q5181997", + cordinates: "Point(-70.76616 42.6862)", + locationLabel: "Crane Beach", + }, + { + location: "http://www.wikidata.org/entity/Q55019", + cordinates: "Point(-0.123456 51.512)", + locationLabel: "Covent Garden", + }, + { + location: "http://www.wikidata.org/entity/Q5177557", + cordinates: "Point(-78.996388888 -8.139722222)", + locationLabel: "Countryside of Moche", + }, + { + location: "http://www.wikidata.org/entity/Q28365725", + cordinates: "Point(42.110277777 47.555277777)", + locationLabel: "Cossacks", + }, + { + location: "http://www.wikidata.org/entity/Q5172985", + cordinates: "Point(-118.649167 34.266667)", + locationLabel: "Corriganville Movie Ranch", + }, + { + location: "http://www.wikidata.org/entity/Q2997434", + cordinates: "Point(-98.026 43.7146)", + locationLabel: "Corn Palace", + }, + { + location: "http://www.wikidata.org/entity/Q17117538", + cordinates: "Point(-8.995 38.47388889)", + locationLabel: "Convento de Nossa Senhora da Arrábida", + }, + { + location: "http://www.wikidata.org/entity/Q20074001", + cordinates: "Point(30.515111111 50.45175)", + locationLabel: "Consistory building of Saint Sophia Monastery", + }, + { + location: "http://www.wikidata.org/entity/Q78330931", + cordinates: "Point(109.093833333 15.384472222)", + locationLabel: "Cong To Vo", + }, + { + location: "http://www.wikidata.org/entity/Q1123960", + cordinates: "Point(-81.784166666 24.559166666)", + locationLabel: "Conch Republic", + }, + { + location: "http://www.wikidata.org/entity/Q21026867", + cordinates: "Point(37.488644 55.795031)", + locationLabel: + "Complex of apartment buildings on Oktyabrskoe Pole in Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q29367879", + cordinates: "Point(37.7217 55.7443)", + locationLabel: "Communal House in 4th Syromyatnichesky Lane", + }, + { + location: "http://www.wikidata.org/entity/Q1247287", + cordinates: "Point(28.971111 41.008611)", + locationLabel: "Column of Constantine", + }, + { + location: "http://www.wikidata.org/entity/Q10285", + visitors: "7400000", + cordinates: "Point(12.492222222 41.890277777)", + locationLabel: "Colosseum", + }, + { + location: "http://www.wikidata.org/entity/Q561923", + cordinates: "Point(10.9814 50.2639)", + locationLabel: "Coburg Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q51830556", + cordinates: "Point(37.519694 55.841889)", + locationLabel: "Club of the factory named after Peter Alekseev", + }, + { + location: "http://www.wikidata.org/entity/Q589099", + cordinates: "Point(-87.6233 41.8827)", + locationLabel: "Cloud Gate", + }, + { + location: "http://www.wikidata.org/entity/Q4507657", + cordinates: "Point(31.275323 58.522773)", + locationLabel: "Clock-tower, Velikiy Novgorod Detinets", + }, + { + location: "http://www.wikidata.org/entity/Q17279667", + cordinates: "Point(24.88752778 41.13966667)", + locationLabel: "Clock Tower of Xanthi", + }, + { + location: "http://www.wikidata.org/entity/Q5133241", + cordinates: "Point(-79.0745 43.0912)", + locationLabel: "Clifton Hill", + }, + { + location: "http://www.wikidata.org/entity/Q239477", + cordinates: "Point(-9.470833333 52.936111111)", + locationLabel: "Cliffs of Moher", + }, + { + location: "http://www.wikidata.org/entity/Q729177", + cordinates: "Point(-0.120296 51.508503)", + locationLabel: "Cleopatra's Needle", + }, + { + location: "http://www.wikidata.org/entity/Q1095828", + cordinates: "Point(103.846 1.29002)", + locationLabel: "Clarke Quay", + }, + { + location: "http://www.wikidata.org/entity/Q1474383", + cordinates: "Point(18.294444444 57.640277777)", + locationLabel: "City wall of Visby", + }, + { + location: "http://www.wikidata.org/entity/Q106477221", + cordinates: "Point(69.377222222 53.285277777)", + locationLabel: "City Park, Kokshetau", + }, + { + location: "http://www.wikidata.org/entity/Q913711", + cordinates: "Point(51.413442 35.683164)", + locationLabel: "City Park (Tehran)", + }, + { + location: "http://www.wikidata.org/entity/Q3531770", + cordinates: "Point(103.851805555 1.290555555)", + locationLabel: "City Hall, Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q63970219", + cordinates: "Point(1.968404 47.673012)", + locationLabel: "Château les Muids", + }, + { + location: "http://www.wikidata.org/entity/Q36698440", + cordinates: "Point(0.062222222 47.215555555)", + locationLabel: "Château de Montsoreau-Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q76078196", + cordinates: "Point(43.819722222 43.593055555)", + locationLabel: "Château Erken", + }, + { + location: "http://www.wikidata.org/entity/Q20895985", + cordinates: "Point(37.628744 55.7524)", + locationLabel: "Church of the Theotokos of the Sign (Znamensky Monastery)", + }, + { + location: "http://www.wikidata.org/entity/Q215208", + cordinates: "Point(30.328611111 59.94)", + locationLabel: "Church of the Savior on Blood", + }, + { + location: "http://www.wikidata.org/entity/Q52207044", + cordinates: "Point(38.273424 54.346494)", + locationLabel: "Church of the Resurrection of Christ, Venyov", + }, + { + location: "http://www.wikidata.org/entity/Q2200001", + cordinates: "Point(37.539933 55.615269)", + locationLabel: "Church of the Intercession, Yasenevo", + }, + { + location: "http://www.wikidata.org/entity/Q16686790", + cordinates: "Point(39.732106 47.225896)", + locationLabel: "Church of the Intercession, Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q4501059", + cordinates: "Point(37.728819 55.629851)", + locationLabel: "Church of the Holy Trinity in Borisovo", + }, + { + location: "http://www.wikidata.org/entity/Q52057588", + cordinates: "Point(62.03833 56.43059)", + locationLabel: "Church of the Entry of the Theotokos into the Temple", + }, + { + location: "http://www.wikidata.org/entity/Q28123311", + cordinates: "Point(40.02 48.347777777)", + locationLabel: "Church of the Dormition of the Theotokos", + }, + { + location: "http://www.wikidata.org/entity/Q30890496", + cordinates: "Point(34.823556 52.504917)", + locationLabel: "Church of the Dormition of the Theotokos", + }, + { + location: "http://www.wikidata.org/entity/Q62092371", + cordinates: "Point(37.918304 55.294976)", + locationLabel: "Church of the Dormition of the Theotokos", + }, + { + location: "http://www.wikidata.org/entity/Q64667363", + cordinates: "Point(22.256628 55.983487)", + locationLabel: "Church of the Assumption, Telšiai", + }, + { + location: "http://www.wikidata.org/entity/Q25411676", + cordinates: "Point(37.40574 55.7905)", + locationLabel: "Church of the Assumption of the Blessed Virgin Mary", + }, + { + location: "http://www.wikidata.org/entity/Q29351618", + cordinates: "Point(40.7025 47.427777777)", + locationLabel: "Church of the Ascension, Susat", + }, + { + location: "http://www.wikidata.org/entity/Q4504723", + cordinates: "Point(45.178888888 54.1825)", + locationLabel: "Church of St. John the Theologian (Saransk)", + }, + { + location: "http://www.wikidata.org/entity/Q1341217", + cordinates: "Point(8.246033333 50.080030555)", + locationLabel: "Church of St Augustine of Canterbury, Wiesbaden", + }, + { + location: "http://www.wikidata.org/entity/Q2093476", + cordinates: "Point(37.638333333 55.757777777)", + locationLabel: "Church of Saints Cosmas and Damian in Maroseyka", + }, + { + location: "http://www.wikidata.org/entity/Q4501013", + cordinates: "Point(38.670137 53.606854)", + locationLabel: "Church of Saint Sergius of Radonezh on the Kulikovo Field", + }, + { + location: "http://www.wikidata.org/entity/Q19365921", + cordinates: "Point(37.702777777 55.740277777)", + locationLabel: "Church of Saint Nicholas in Rogozhskoe cemetery", + }, + { + location: "http://www.wikidata.org/entity/Q51134518", + cordinates: "Point(37.65566 55.76368)", + locationLabel: "Church of Saint John the Baptist on Pokrovka Street", + }, + { + location: "http://www.wikidata.org/entity/Q4500777", + cordinates: "Point(37.512138888 55.732333333)", + locationLabel: "Church of Saint George in Poklonnaya Hill", + }, + { + location: "http://www.wikidata.org/entity/Q55344615", + cordinates: "Point(61.665914 56.347304)", + locationLabel: "Church of Our Lady of Tikhvin", + }, + { + location: "http://www.wikidata.org/entity/Q28363238", + cordinates: "Point(40.08833 47.40583)", + locationLabel: "Church of Michael the Archangel, Novocherkassk", + }, + { + location: "http://www.wikidata.org/entity/Q631979", + cordinates: "Point(60.609111111 56.844388888)", + locationLabel: "Church of All Saints", + }, + { + location: "http://www.wikidata.org/entity/Q1742580", + cordinates: "Point(19.938889 54.866111)", + locationLabel: "Church in Yantarny", + }, + { + location: "http://www.wikidata.org/entity/Q27982445", + cordinates: "Point(7.360067 48.076573)", + locationLabel: "Christmas markets in Colmar", + }, + { + location: "http://www.wikidata.org/entity/Q79961", + cordinates: "Point(-43.210369444 -22.952330555)", + locationLabel: "Christ the Redeemer", + }, + { + location: "http://www.wikidata.org/entity/Q106504831", + cordinates: "Point(-51.912112077 -29.235276952)", + locationLabel: "Christ the Protector", + }, + { + location: "http://www.wikidata.org/entity/Q4516884", + cordinates: "Point(44.009444444 56.330833333)", + locationLabel: "Chkalov Stairs", + }, + { + location: "http://www.wikidata.org/entity/Q37877513", + cordinates: "Point(26.141024 38.366613)", + locationLabel: "Chios Medical Museum", + }, + { + location: "http://www.wikidata.org/entity/Q38097127", + cordinates: "Point(26.133869 38.367074)", + locationLabel: "Chios Maritime Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2227225", + cordinates: "Point(17.87861111 59.31694444)", + locationLabel: "Chinese Pavilion at Drottningholm", + }, + { + location: "http://www.wikidata.org/entity/Q28224034", + cordinates: "Point(103.85197222 1.29816667)", + locationLabel: "China Cultural Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5096226", + cordinates: "Point(-118.1942 34.10848)", + locationLabel: "Chicken Boy", + }, + { + location: "http://www.wikidata.org/entity/Q5859", + cordinates: "Point(-88.568611111 20.683055555)", + locationLabel: "Chichen Itza", + }, + { + location: "http://www.wikidata.org/entity/Q2398614", + cordinates: "Point(-87.625006 41.883889)", + locationLabel: "Chicago Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q4518960", + cordinates: "Point(60.347222222 56.941666666)", + locationLabel: "Chertovo Gorodishche Rocks", + }, + { + location: "http://www.wikidata.org/entity/Q4514172", + cordinates: "Point(49.116529 55.793566)", + locationLabel: "Chernoyarovsky Passage, Kazan", + }, + { + location: "http://www.wikidata.org/entity/Q28950304", + cordinates: "Point(38.942983 47.208337)", + locationLabel: "Chernoyarova House", + }, + { + location: "http://www.wikidata.org/entity/Q102410064", + cordinates: "Point(39.755078 47.230804)", + locationLabel: "Cheprastov house", + }, + { + location: "http://www.wikidata.org/entity/Q55978940", + cordinates: "Point(36.229444444 49.989166666)", + locationLabel: "Chemical Building of Kharkiv University", + }, + { + location: "http://www.wikidata.org/entity/Q4508674", + cordinates: "Point(61.401361111 55.164527777)", + locationLabel: "Chelyabinsk-City", + }, + { + location: "http://www.wikidata.org/entity/Q5090112", + cordinates: "Point(-74.0061 40.7425)", + locationLabel: "Chelsea Market", + }, + { + location: "http://www.wikidata.org/entity/Q36734394", + cordinates: "Point(56.253015 58.007403)", + locationLabel: "Chekists' house", + }, + { + location: "http://www.wikidata.org/entity/Q16566", + cordinates: "Point(51.671805555 32.657361111)", + locationLabel: "Chehel Sotun", + }, + { + location: "http://www.wikidata.org/entity/Q68689", + cordinates: "Point(13.39027 52.5075)", + locationLabel: "Checkpoint Charlie", + }, + { + location: "http://www.wikidata.org/entity/Q1068311", + cordinates: "Point(100.551388888 13.800833333)", + locationLabel: "Chatuchak Weekend Market", + }, + { + location: "http://www.wikidata.org/entity/Q51885220", + cordinates: "Point(43.998955 56.328733)", + locationLabel: "Chasovaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q10708901", + cordinates: "Point(18.01833889 59.38862222)", + locationLabel: "Chapel of Ulriksdal Palace", + }, + { + location: "http://www.wikidata.org/entity/Q19909073", + cordinates: "Point(24.2142 52.5546)", + locationLabel: "Chapel in Šarašova", + }, + { + location: "http://www.wikidata.org/entity/Q5071985", + cordinates: "Point(104.001666666 1.383333333)", + locationLabel: "Changi Beach Park", + }, + { + location: "http://www.wikidata.org/entity/Q53327875", + cordinates: "Point(37.648333333 55.765833333)", + locationLabel: "Chamber of the deacon Andreyan Ratmanov", + }, + { + location: "http://www.wikidata.org/entity/Q104836063", + cordinates: "Point(-65.355 -16.8225)", + locationLabel: "Centro Acuático Porvenir", + }, + { + location: "http://www.wikidata.org/entity/Q322701", + cordinates: "Point(-3.84043 52.623)", + locationLabel: "Centre for Alternative Technology Railway", + }, + { + location: "http://www.wikidata.org/entity/Q4139210", + cordinates: "Point(37.633939 55.82858)", + locationLabel: "Central pavilion (VDNKh)", + }, + { + location: "http://www.wikidata.org/entity/Q3354383", + cordinates: "Point(18.0582 59.3323)", + locationLabel: "Central Post Office of Stockholm", + }, + { + location: "http://www.wikidata.org/entity/Q160409", + visitors: "40000000", + cordinates: "Point(-73.966111111 40.7825)", + locationLabel: "Central Park", + }, + { + location: "http://www.wikidata.org/entity/Q65127590", + cordinates: "Point(82.923287 55.041912)", + locationLabel: "Central Market, Novosibirsk", + }, + { + location: "http://www.wikidata.org/entity/Q4246746", + cordinates: "Point(37.6176 55.7819)", + locationLabel: "Central House of Officers of the Russian Army", + }, + { + location: "http://www.wikidata.org/entity/Q431326", + cordinates: "Point(2.23947222 48.89277778)", + locationLabel: "Center of New Industries and Technologies", + }, + { + location: "http://www.wikidata.org/entity/Q106508393", + cordinates: "Point(117.159779211 -33.837249267)", + locationLabel: "Centenary of Federation Wool Wagon, Kojonup", + }, + { + location: "http://www.wikidata.org/entity/Q474939", + cordinates: "Point(34.105555555 36.4525)", + locationLabel: "Cennet and Cehennem", + }, + { + location: "http://www.wikidata.org/entity/Q5055269", + cordinates: "Point(-0.135139 51.4986)", + locationLabel: "Caxton Hall", + }, + { + location: "http://www.wikidata.org/entity/Q17642895", + cordinates: "Point(-1.1463 52.9507)", + locationLabel: "Caves at Drury Hill", + }, + { + location: "http://www.wikidata.org/entity/Q16681267", + cordinates: "Point(37.612 55.7685)", + locationLabel: "Catherine's Hospital", + }, + { + location: "http://www.wikidata.org/entity/Q53540753", + cordinates: "Point(42.19177 55.315211)", + locationLabel: "Cathedral of the Nativity of Jesus Christ in Vyksa", + }, + { + location: "http://www.wikidata.org/entity/Q2494499", + cordinates: "Point(40.4425 56.416666666)", + locationLabel: "Cathedral of the Nativity in Suzdal", + }, + { + location: "http://www.wikidata.org/entity/Q917830", + cordinates: "Point(37.617777777 55.750277777)", + locationLabel: "Cathedral of the Archangel", + }, + { + location: "http://www.wikidata.org/entity/Q2328333", + cordinates: "Point(45.18156001 54.18149001)", + locationLabel: "Cathedral of St. Theodore Ushakov", + }, + { + location: "http://www.wikidata.org/entity/Q106705737", + cordinates: "Point(49.114122 55.790362)", + locationLabel: "Category:Sveshnikov house (Kazan, Kavi Nadzhmi street)", + }, + { + location: "http://www.wikidata.org/entity/Q62559874", + cordinates: "Point(38.654444444 55.773611111)", + locationLabel: "Category:Museum of history and arts (Pavlovsky Posad)", + }, + { + location: "http://www.wikidata.org/entity/Q63684529", + cordinates: "Point(36.738597 55.388165)", + locationLabel: "Category:Monument to City of Military Glory (Naro-Fominsk)", + }, + { + location: "http://www.wikidata.org/entity/Q63684410", + cordinates: "Point(34.359536 53.266831)", + locationLabel: "Category:Monument to City of Military Glory (Bryansk)", + }, + { + location: "http://www.wikidata.org/entity/Q63243643", + cordinates: "Point(73.095156 49.810317)", + locationLabel: "Category:Eternal flame, Karaganda", + }, + { + location: "http://www.wikidata.org/entity/Q5050371", + cordinates: "Point(-7.30554167 41.20275833)", + locationLabel: "Castle of Carrazeda (ruins)", + }, + { + location: "http://www.wikidata.org/entity/Q1049016", + cordinates: "Point(10.98777778 45.43972222)", + locationLabel: "Castelvecchio", + }, + { + location: "http://www.wikidata.org/entity/Q55684", + cordinates: "Point(-0.45680278 39.457825)", + locationLabel: "Castell-Palau dels Aguilar", + }, + { + location: "http://www.wikidata.org/entity/Q215897", + visitors: "206924", + cordinates: "Point(16.2709346 41.0847535)", + locationLabel: "Castel del Monte", + }, + { + location: "http://www.wikidata.org/entity/Q73005497", + cordinates: "Point(11.264428 45.98936)", + locationLabel: "Castel Trapp", + }, + { + location: "http://www.wikidata.org/entity/Q3661678", + cordinates: "Point(-5.983994 54.573314)", + locationLabel: "Casement Park", + }, + { + location: "http://www.wikidata.org/entity/Q38580", + cordinates: "Point(12.7152476 42.551162)", + locationLabel: "Cascata delle Marmore", + }, + { + location: "http://www.wikidata.org/entity/Q67454961", + cordinates: "Point(-7.53168 41.19882)", + locationLabel: "Casal de Loivos viewpoint", + }, + { + location: "http://www.wikidata.org/entity/Q5364487", + cordinates: "Point(-65.20375 -26.833166666)", + locationLabel: "Casa Histórica de Tucumán", + }, + { + location: "http://www.wikidata.org/entity/Q461371", + cordinates: "Point(2.165 41.391666666)", + locationLabel: "Casa Batlló", + }, + { + location: "http://www.wikidata.org/entity/Q123017", + cordinates: "Point(1.308653 52.622128)", + locationLabel: "Carrow Road", + }, + { + location: "http://www.wikidata.org/entity/Q473467", + cordinates: "Point(-6.331028 55.240028)", + locationLabel: "Carrick-a-Rede Rope Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q503368", + cordinates: "Point(-9.742777777 51.998888888)", + locationLabel: "Carrauntoohil", + }, + { + location: "http://www.wikidata.org/entity/Q19871906", + cordinates: "Point(-79.0083 34.6192)", + locationLabel: "Carolina Civic Center", + }, + { + location: "http://www.wikidata.org/entity/Q1408867", + cordinates: "Point(11.578333333 57.886111111)", + locationLabel: "Carlsten Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q5042879", + cordinates: "Point(-117.3459 33.1473)", + locationLabel: "Carlsbad State Beach", + }, + { + location: "http://www.wikidata.org/entity/Q26299460", + cordinates: "Point(-1.258168898 51.75195695)", + locationLabel: "Carfax Tower Tower Of The Church Of St Martin Carfax", + }, + { + location: "http://www.wikidata.org/entity/Q528852", + cordinates: "Point(169.022169 -44.860432)", + locationLabel: "Cardrona Bra Fence", + }, + { + location: "http://www.wikidata.org/entity/Q217265", + cordinates: "Point(34.839167 38.670556)", + locationLabel: "Cappadocia", + }, + { + location: "http://www.wikidata.org/entity/Q2305815", + cordinates: "Point(-77.000277777 38.888888888)", + locationLabel: "Capitol Hill", + }, + { + location: "http://www.wikidata.org/entity/Q72686034", + cordinates: "Point(12.461643 41.891447)", + locationLabel: "Cannone di Mezzogiorno", + }, + { + location: "http://www.wikidata.org/entity/Q5032766", + cordinates: "Point(-1.5903 53.5719)", + locationLabel: "Cannon Hall Farm", + }, + { + location: "http://www.wikidata.org/entity/Q3395102", + cordinates: "Point(-8.830805555 42.39125)", + locationLabel: "Canelas", + }, + { + location: "http://www.wikidata.org/entity/Q5026993", + cordinates: "Point(-88.793333 36.572778)", + locationLabel: "Camp Beauregard Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q4211494", + cordinates: "Point(-3.19557 55.949)", + locationLabel: "Camera Obscura", + }, + { + location: "http://www.wikidata.org/entity/Q61852762", + cordinates: "Point(28.878777 40.99434)", + locationLabel: "Camera Museum, İstanbul", + }, + { + location: "http://www.wikidata.org/entity/Q1028420", + cordinates: "Point(-0.146388888 51.541388888)", + locationLabel: "Camden Market", + }, + { + location: "http://www.wikidata.org/entity/Q101680343", + cordinates: "Point(2.714735 48.419662)", + locationLabel: "Calvaire Cross", + }, + { + location: "http://www.wikidata.org/entity/Q950331", + cordinates: "Point(-4.779591666 37.880380555)", + locationLabel: "Calleja de las Flores", + }, + { + location: "http://www.wikidata.org/entity/Q275128", + cordinates: "Point(-4.276889 53.139306)", + locationLabel: "Caernarfon Castle", + }, + { + location: "http://www.wikidata.org/entity/Q254602", + cordinates: "Point(-101.98706667 35.18722222)", + locationLabel: "Cadillac Ranch", + }, + { + location: "http://www.wikidata.org/entity/Q1020776", + cordinates: "Point(-109.915555555 22.889722222)", + locationLabel: "Cabo San Lucas", + }, + { + location: "http://www.wikidata.org/entity/Q3661730", + cordinates: "Point(30.3308 59.9533)", + locationLabel: "Cabin of Peter the Great", + }, + { + location: "http://www.wikidata.org/entity/Q50848073", + cordinates: "Point(-41.34 -2.93)", + locationLabel: "Cabelo Penteado", + }, + { + location: "http://www.wikidata.org/entity/Q28119930", + cordinates: "Point(-8.682099999 42.4221)", + locationLabel: "Cabeceira Beach", + }, + { + location: "http://www.wikidata.org/entity/Q134883", + visitors: "1500000", + cordinates: "Point(-79.387147222 43.642752777)", + locationLabel: "CN Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1072593", + cordinates: "Point(103.852 1.29514)", + locationLabel: "CHIJMES", + }, + { + location: "http://www.wikidata.org/entity/Q5004737", + cordinates: "Point(140.791640262 35.707666772)", + locationLabel: "Byōbugaura", + }, + { + location: "http://www.wikidata.org/entity/Q10438363", + cordinates: "Point(18.42583333 59.39972222)", + locationLabel: "Byvik Fort", + }, + { + location: "http://www.wikidata.org/entity/Q5002964", + cordinates: "Point(-0.3697 51.7267)", + locationLabel: "Butterfly World", + }, + { + location: "http://www.wikidata.org/entity/Q6098733", + cordinates: "Point(29.1273 36.4968)", + locationLabel: "Butterfly Valley", + }, + { + location: "http://www.wikidata.org/entity/Q11814740", + cordinates: "Point(26.112517 52.114356)", + locationLabel: "Butrymovič Palace in Pinsk", + }, + { + location: "http://www.wikidata.org/entity/Q11814740", + cordinates: "Point(26.113174 52.114867)", + locationLabel: "Butrymovič Palace in Pinsk", + }, + { + location: "http://www.wikidata.org/entity/Q16628722", + cordinates: "Point(38.9281 47.2156)", + locationLabel: "Bust of Lenin", + }, + { + location: "http://www.wikidata.org/entity/Q4157217", + cordinates: "Point(37.63353 55.752864)", + locationLabel: "Business Court (Moscow)", + }, + { + location: "http://www.wikidata.org/entity/Q32339", + visitors: "t568176698", + cordinates: "Point(29.061944444 40.183888888)", + locationLabel: "Bursa Grand Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q12495", + cordinates: "Point(55.274167 25.197222)", + locationLabel: "Burj Khalifa", + }, + { + location: "http://www.wikidata.org/entity/Q16654307", + cordinates: "Point(61.281666666 55.161111111)", + locationLabel: "Burial places on the Zolotaya gora", + }, + { + location: "http://www.wikidata.org/entity/Q53679508", + cordinates: "Point(61.892673 56.418642)", + locationLabel: "Bureau Kamensky plant", + }, + { + location: "http://www.wikidata.org/entity/Q28492326", + cordinates: "Point(39.4248 47.104069)", + locationLabel: "Bulanov Mill", + }, + { + location: "http://www.wikidata.org/entity/Q385725", + cordinates: "Point(103.778 1.35278)", + locationLabel: "Bukit Timah Nature Reserve", + }, + { + location: "http://www.wikidata.org/entity/Q385725", + cordinates: "Point(103.800833333 1.386944444)", + locationLabel: "Bukit Timah Nature Reserve", + }, + { + location: "http://www.wikidata.org/entity/Q22970788", + cordinates: "Point(103.776375 1.35468056)", + locationLabel: "Bukit Timah", + }, + { + location: "http://www.wikidata.org/entity/Q20011660", + cordinates: "Point(37.61181 55.755377)", + locationLabel: "Buildings of Moscow State University (Mokhovaya Street)", + }, + { + location: "http://www.wikidata.org/entity/Q52411638", + cordinates: "Point(37.6075 55.751944444)", + locationLabel: "Building of the Alexander Podvorie", + }, + { + location: "http://www.wikidata.org/entity/Q25443494", + cordinates: "Point(33.59905 44.504585)", + locationLabel: "Building of power plant in Sevastopol", + }, + { + location: "http://www.wikidata.org/entity/Q100968564", + cordinates: "Point(39.421819444 47.107061111)", + locationLabel: "Building of first Azov power plant", + }, + { + location: "http://www.wikidata.org/entity/Q12085281", + cordinates: "Point(33.4043 49.063554)", + locationLabel: "Building of State Bank", + }, + { + location: "http://www.wikidata.org/entity/Q16653740", + cordinates: "Point(37.623794444 55.762430555)", + locationLabel: "Building of Moscow International Trade Bank, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q458599", + cordinates: "Point(24.12180556 56.94327778)", + locationLabel: "Building of Latvian Academy of Sciences", + }, + { + location: "http://www.wikidata.org/entity/Q85069981", + cordinates: "Point(35.071369 32.921894)", + locationLabel: "Building 18013-238", + }, + { + location: "http://www.wikidata.org/entity/Q44856187", + cordinates: "Point(43.997432 56.329485)", + locationLabel: "Bugrov Homeless Shelter", + }, + { + location: "http://www.wikidata.org/entity/Q839965", + cordinates: "Point(103.844 1.28155)", + locationLabel: "Buddha Tooth Relic Temple and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q46313", + cordinates: "Point(19.039722222 47.496111111)", + locationLabel: "Buda Castle", + }, + { + location: "http://www.wikidata.org/entity/Q42182", + cordinates: "Point(-0.142 51.501)", + locationLabel: "Buckingham Palace", + }, + { + location: "http://www.wikidata.org/entity/Q25711", + cordinates: "Point(13.740206 51.053427)", + locationLabel: "Brühl's Terrace", + }, + { + location: "http://www.wikidata.org/entity/Q55402193", + cordinates: "Point(30.40469 59.716964)", + locationLabel: "Brulkin's Manor House", + }, + { + location: "http://www.wikidata.org/entity/Q125006", + cordinates: "Point(-73.996333333 40.705666666)", + locationLabel: "Brooklyn Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q1678639", + cordinates: "Point(18.47469444 57.67008333)", + locationLabel: "Bro Church, Gotland", + }, + { + location: "http://www.wikidata.org/entity/Q23308", + visitors: "1579270", + cordinates: "Point(-0.126944 51.529444)", + locationLabel: "British Library", + }, + { + location: "http://www.wikidata.org/entity/Q2925178", + cordinates: "Point(-2.245833333 53.475277777)", + locationLabel: "Bridgewater Hall", + }, + { + location: "http://www.wikidata.org/entity/Q52063166", + cordinates: "Point(61.90056 56.41556)", + locationLabel: "Bridge over Kamenka river", + }, + { + location: "http://www.wikidata.org/entity/Q52517", + cordinates: "Point(12.340861111 45.434055555)", + locationLabel: "Bridge of Sighs", + }, + { + location: "http://www.wikidata.org/entity/Q64158851", + cordinates: "Point(-22.67546 63.86831)", + locationLabel: "Bridge between continents", + }, + { + location: "http://www.wikidata.org/entity/Q1194528", + cordinates: "Point(-0.071666666 51.521944444)", + locationLabel: "Brick Lane", + }, + { + location: "http://www.wikidata.org/entity/Q23868", + cordinates: "Point(23.652777777 52.083333333)", + locationLabel: "Brest Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q96187621", + cordinates: "Point(150.365178 -33.510985)", + locationLabel: "Breenhold Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q555977", + cordinates: "Point(20.494722 54.697222)", + locationLabel: "Brandenburg Gate", + }, + { + location: "http://www.wikidata.org/entity/Q4952904", + cordinates: "Point(39.731 40.995)", + locationLabel: "Boztepe hill, Trabzon", + }, + { + location: "http://www.wikidata.org/entity/Q10259759", + cordinates: "Point(26.028888888 39.821944444)", + locationLabel: "Bozcaada", + }, + { + location: "http://www.wikidata.org/entity/Q5470838", + cordinates: "Point(7.192 53.006)", + locationLabel: "Bourtange Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q1105882", + cordinates: "Point(-90.0655 29.9589)", + locationLabel: "Bourbon Street", + }, + { + location: "http://www.wikidata.org/entity/Q4095119", + cordinates: "Point(37.527222222 55.7075)", + locationLabel: "Botanical Garden of Moscow State University", + }, + { + location: "http://www.wikidata.org/entity/Q848109", + cordinates: "Point(18.45151944 47.21075)", + locationLabel: "Bory Castle", + }, + { + location: "http://www.wikidata.org/entity/Q42798", + cordinates: "Point(110.20384 -7.60793)", + locationLabel: "Borobudur", + }, + { + location: "http://www.wikidata.org/entity/Q30891111", + cordinates: "Point(44.006218 56.330767)", + locationLabel: "Borisoglebskaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q63205357", + cordinates: "Point(10.40224 43.71743)", + locationLabel: "Borgo Stretto", + }, + { + location: "http://www.wikidata.org/entity/Q1589230", + cordinates: "Point(16.643333333 56.870555555)", + locationLabel: "Borgholm Castle", + }, + { + location: "http://www.wikidata.org/entity/Q4941423", + cordinates: "Point(74.1136 15.4268)", + locationLabel: "Bondla Wildlife Sanctuary", + }, + { + location: "http://www.wikidata.org/entity/Q892231", + cordinates: "Point(18.066388888 59.326111111)", + locationLabel: "Bonde Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4940911", + cordinates: "Point(129.2841382 35.8426836)", + locationLabel: "Bomun Lake Resort", + }, + { + location: "http://www.wikidata.org/entity/Q11854477", + cordinates: "Point(29.170833 63.53375)", + locationLabel: "Bomba House", + }, + { + location: "http://www.wikidata.org/entity/Q4092983", + cordinates: "Point(37.604 55.7562)", + locationLabel: "Bol'shoy Zal Konservatorii", + }, + { + location: "http://www.wikidata.org/entity/Q1408860", + cordinates: "Point(11.999444444 57.861944444)", + locationLabel: "Bohus Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q1113602", + cordinates: "Point(27.429444444 37.031666666)", + locationLabel: "Bodrum Castle", + }, + { + location: "http://www.wikidata.org/entity/Q4936674", + cordinates: "Point(-4.72806 50.4747)", + locationLabel: "Bodmin Jail", + }, + { + location: "http://www.wikidata.org/entity/Q1408858", + cordinates: "Point(21.6572 65.7911)", + locationLabel: "Boden Fortress", + }, + { + location: "http://www.wikidata.org/entity/Q50823769", + cordinates: "Point(30.285144 59.930119)", + locationLabel: "Bobrinsky Palace", + }, + { + location: "http://www.wikidata.org/entity/Q4306060", + cordinates: "Point(37.013558 56.382191)", + locationLabel: "Boblovo (museum-estate)", + }, + { + location: "http://www.wikidata.org/entity/Q4931498", + cordinates: "Point(103.85 1.28685)", + locationLabel: "Boat Quay", + }, + { + location: "http://www.wikidata.org/entity/Q4420283", + cordinates: "Point(29.76212 59.989177)", + locationLabel: "Blue Bridge (Kronstadt)", + }, + { + location: "http://www.wikidata.org/entity/Q155921", + cordinates: "Point(-0.74256 51.99649)", + locationLabel: "Bletchley Park", + }, + { + location: "http://www.wikidata.org/entity/Q880905", + cordinates: "Point(-3.055277777 53.815833333)", + locationLabel: "Blackpool Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6475064", + cordinates: "Point(18.80056944 50.43025556)", + locationLabel: "Black Trout Adit", + }, + { + location: "http://www.wikidata.org/entity/Q1742839", + cordinates: "Point(13.74999 55.46254)", + locationLabel: "Bjäresjö Church", + }, + { + location: "http://www.wikidata.org/entity/Q66227898", + cordinates: "Point(31.710277777 -25.308055555)", + locationLabel: "Biyamiti Bushveld Camp", + }, + { + location: "http://www.wikidata.org/entity/Q28871678", + cordinates: "Point(38.918306 47.210461)", + locationLabel: "Bishop House", + }, + { + location: "http://www.wikidata.org/entity/Q3249777", + cordinates: "Point(103.851 1.35083)", + locationLabel: "Bishan", + }, + { + location: "http://www.wikidata.org/entity/Q52389799", + cordinates: "Point(-46.386337 -23.971393)", + locationLabel: "Biquinha de Anchieta", + }, + { + location: "http://www.wikidata.org/entity/Q4907986", + cordinates: "Point(-80.159444 25.673611)", + locationLabel: "Bill Baggs Cape Florida State Park", + }, + { + location: "http://www.wikidata.org/entity/Q859413", + cordinates: "Point(-121.625833333 36.1075)", + locationLabel: "Big Sur", + }, + { + location: "http://www.wikidata.org/entity/Q41225", + cordinates: "Point(-0.12457 51.50067)", + locationLabel: "Big Ben", + }, + { + location: "http://www.wikidata.org/entity/Q4904998", + cordinates: "Point(153.133916666 -30.274805555)", + locationLabel: "Big Banana", + }, + { + location: "http://www.wikidata.org/entity/Q48862982", + cordinates: "Point(-43.197006 -22.94078)", + locationLabel: "Bica da Rainha", + }, + { + location: "http://www.wikidata.org/entity/Q855274", + cordinates: "Point(8.3230394 45.0048877)", + locationLabel: "Bialbero di Casorzo", + }, + { + location: "http://www.wikidata.org/entity/Q794349", + cordinates: "Point(29.04 41.042777777)", + locationLabel: "Beylerbeyi Palace", + }, + { + location: "http://www.wikidata.org/entity/Q853029", + cordinates: "Point(28.964861111 41.012763888)", + locationLabel: "Beyazıt Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4899773", + cordinates: "Point(12.620156 56.9188225)", + locationLabel: "Bexell Cottage", + }, + { + location: "http://www.wikidata.org/entity/Q29033238", + cordinates: "Point(38.930514 47.21332)", + locationLabel: "Betulinsky house", + }, + { + location: "http://www.wikidata.org/entity/Q4085666", + cordinates: "Point(29.523017 59.582703)", + locationLabel: "Besov Stone", + }, + { + location: "http://www.wikidata.org/entity/Q829418", + cordinates: "Point(115.45222 -8.3741)", + locationLabel: "Besakih", + }, + { + location: "http://www.wikidata.org/entity/Q829418", + cordinates: "Point(115.452472222 -8.373916666)", + locationLabel: "Besakih", + }, + { + location: "http://www.wikidata.org/entity/Q5086", + cordinates: "Point(13.376888888 52.516111111)", + locationLabel: "Berlin Wall", + }, + { + location: "http://www.wikidata.org/entity/Q154563", + cordinates: "Point(13.401111111 52.519166666)", + locationLabel: "Berlin Cathedral", + }, + { + location: "http://www.wikidata.org/entity/Q2998295", + cordinates: "Point(101.71055556 3.14222222)", + locationLabel: "Berjaya Times Square Theme Park", + }, + { + location: "http://www.wikidata.org/entity/Q2998295", + cordinates: "Point(101.711 3.14218)", + locationLabel: "Berjaya Times Square Theme Park", + }, + { + location: "http://www.wikidata.org/entity/Q56844209", + cordinates: "Point(31.444444444 -25.428055555)", + locationLabel: "Berg-en-Dal (camp)", + }, + { + location: "http://www.wikidata.org/entity/Q105627643", + cordinates: "Point(39.760225 47.232126)", + locationLabel: "Berberov house", + }, + { + location: "http://www.wikidata.org/entity/Q104674", + cordinates: "Point(-5.003675 56.796891)", + locationLabel: "Ben Nevis", + }, + { + location: "http://www.wikidata.org/entity/Q215003", + cordinates: "Point(-9.215833333 38.691388888)", + locationLabel: "Belém Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4082597", + cordinates: "Point(34.6951 64.4946)", + locationLabel: "Belomorsk petroglyphs", + }, + { + location: "http://www.wikidata.org/entity/Q27781780", + cordinates: "Point(44.001767 56.330659)", + locationLabel: "Belaya Tower of Nizhny Novgorod Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q2894118", + cordinates: "Point(-0.644894444 51.613794444)", + locationLabel: "Bekonscot", + }, + { + location: "http://www.wikidata.org/entity/Q59712240", + cordinates: "Point(-44.3062725 -2.5286638)", + locationLabel: "Beco Catarina Mina", + }, + { + location: "http://www.wikidata.org/entity/Q21062061", + cordinates: "Point(-3.75594 50.60648)", + locationLabel: "Becky Falls", + }, + { + location: "http://www.wikidata.org/entity/Q2634270", + cordinates: "Point(33.78277778 44.40694444)", + locationLabel: "Baydar Gate", + }, + { + location: "http://www.wikidata.org/entity/Q687629", + cordinates: "Point(101.683905555 3.2374)", + locationLabel: "Batu Caves", + }, + { + location: "http://www.wikidata.org/entity/Q4867763", + cordinates: "Point(28.98111111 41.01638889)", + locationLabel: "Basketmakers' Kiosk", + }, + { + location: "http://www.wikidata.org/entity/Q207486", + cordinates: "Point(12.605555555 43.074722222)", + locationLabel: "Basilica of San Francesco d'Assisi", + }, + { + location: "http://www.wikidata.org/entity/Q305419", + visitors: "18000000", + cordinates: "Point(-99.117222 19.484444)", + locationLabel: "Basilica of Our Lady of Guadalupe", + }, + { + location: "http://www.wikidata.org/entity/Q1516", + cordinates: "Point(4.822555555 45.762291666)", + locationLabel: "Basilica of Notre-Dame de Fourvière", + }, + { + location: "http://www.wikidata.org/entity/Q810106", + cordinates: "Point(12.61694444 43.06888889)", + locationLabel: "Basilica di Santa Chiara", + }, + { + location: "http://www.wikidata.org/entity/Q550514", + visitors: "445000", + cordinates: "Point(16.870281 41.130261)", + locationLabel: "Basilica di San Nicola", + }, + { + location: "http://www.wikidata.org/entity/Q54811523", + cordinates: "Point(35.376305555 39.494916666)", + locationLabel: "Basilica Therma", + }, + { + location: "http://www.wikidata.org/entity/Q28540674", + cordinates: "Point(45.684444444 43.322222222)", + locationLabel: "Barskiy dom", + }, + { + location: "http://www.wikidata.org/entity/Q16914691", + cordinates: "Point(100.712394 13.603497)", + locationLabel: "Bang Phli floating market", + }, + { + location: "http://www.wikidata.org/entity/Q96373038", + cordinates: "Point(-87.567297222 30.331441666)", + locationLabel: "Bamahenge", + }, + { + location: "http://www.wikidata.org/entity/Q805908", + cordinates: "Point(38.78444444 37.14777778)", + locationLabel: "Balıklıgöl", + }, + { + location: "http://www.wikidata.org/entity/Q102346471", + cordinates: "Point(39.767726 47.230749)", + locationLabel: "Balobanov house", + }, + { + location: "http://www.wikidata.org/entity/Q2881327", + cordinates: "Point(2.27416667 48.84138889)", + locationLabel: "Ballon Generali", + }, + { + location: "http://www.wikidata.org/entity/Q804697", + cordinates: "Point(-117.145278 32.731389)", + locationLabel: "Balboa Park", + }, + { + location: "http://www.wikidata.org/entity/Q12820053", + cordinates: "Point(67.25112 37.376152)", + locationLabel: "Balalyk tepe", + }, + { + location: "http://www.wikidata.org/entity/Q29509722", + cordinates: "Point(39.709443 47.219697)", + locationLabel: "Balabina House, Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q20813015", + cordinates: "Point(49.86531 40.397601)", + locationLabel: "Baku Convention Center", + }, + { + location: "http://www.wikidata.org/entity/Q4075960", + cordinates: "Point(34.004475 44.810047)", + locationLabel: "Bakla", + }, + { + location: "http://www.wikidata.org/entity/Q19907426", + cordinates: "Point(37.65433142 55.80750618)", + locationLabel: "Bakhrushyn orphan asylum", + }, + { + location: "http://www.wikidata.org/entity/Q10424669", + cordinates: "Point(18.10044444 59.325775)", + locationLabel: "Bakery, Skansen", + }, + { + location: "http://www.wikidata.org/entity/Q28819020", + cordinates: "Point(39.706944444 47.221388888)", + locationLabel: "Baikovsky Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q100311922", + cordinates: "Point(9.41639 48.94079)", + locationLabel: "Backnang-Schriftzug", + }, + { + location: "http://www.wikidata.org/entity/Q4838907", + cordinates: "Point(25.430277777 42.946666666)", + locationLabel: "Bacho Kiro cave", + }, + { + location: "http://www.wikidata.org/entity/Q627928", + cordinates: "Point(46.980833 38.837222)", + locationLabel: "Babak Fort", + }, + { + location: "http://www.wikidata.org/entity/Q4837312", + cordinates: "Point(103.837311111 1.276944444)", + locationLabel: "Baba House", + }, + { + location: "http://www.wikidata.org/entity/Q699614", + visitors: "3000000", + cordinates: "Point(11.55667 48.17694)", + locationLabel: "BMW Welt", + }, + { + location: "http://www.wikidata.org/entity/Q4073835", + cordinates: "Point(20.493555555 54.706527777)", + locationLabel: "B-423", + }, + { + location: "http://www.wikidata.org/entity/Q2816015", + cordinates: "Point(29.85 41.13333333)", + locationLabel: "Ağva", + }, + { + location: "http://www.wikidata.org/entity/Q2582947", + cordinates: "Point(41.08333333 40.95)", + locationLabel: "Ayder", + }, + { + location: "http://www.wikidata.org/entity/Q403404", + cordinates: "Point(18.06916667 59.32583333)", + locationLabel: "Axel Oxenstierna Palace", + }, + { + location: "http://www.wikidata.org/entity/Q29410834", + cordinates: "Point(40.8048501 48.184172)", + locationLabel: "Avilova Cave", + }, + { + location: "http://www.wikidata.org/entity/Q550", + visitors: "100000000", + cordinates: "Point(2.30786 48.86967)", + locationLabel: "Avenue des Champs-Élysées", + }, + { + location: "http://www.wikidata.org/entity/Q4828119", + cordinates: "Point(-117.03647 32.53058)", + locationLabel: "Avenida Revolución", + }, + { + location: "http://www.wikidata.org/entity/Q4827942", + cordinates: "Point(-86.816389 34.175)", + locationLabel: "Ave Maria Grotto", + }, + { + location: "http://www.wikidata.org/entity/Q72073005", + cordinates: "Point(-118.769246 36.554361)", + locationLabel: "Auto Log", + }, + { + location: "http://www.wikidata.org/entity/Q778457", + cordinates: "Point(20.49088611 54.71218056)", + locationLabel: "Ausfall Gate", + }, + { + location: "http://www.wikidata.org/entity/Q180901", + cordinates: "Point(4.341388888 50.895)", + locationLabel: "Atomium", + }, + { + location: "http://www.wikidata.org/entity/Q2722966", + cordinates: "Point(-77.320833333 25.085)", + locationLabel: "Atlantis Paradise Island Bahamas", + }, + { + location: "http://www.wikidata.org/entity/Q5926368", + cordinates: "Point(-5.615958333 43.521563888)", + locationLabel: "Atlantic Botanical Garden", + }, + { + location: "http://www.wikidata.org/entity/Q755509", + cordinates: "Point(145.53333333 -17.16666667)", + locationLabel: "Atherton Tableland", + }, + { + location: "http://www.wikidata.org/entity/Q6100623", + cordinates: "Point(32.85555556 39.9075)", + locationLabel: "Atatürk Boulevard", + }, + { + location: "http://www.wikidata.org/entity/Q11257168", + cordinates: "Point(139.078611111 35.086388888)", + locationLabel: "Atami Castle", + }, + { + location: "http://www.wikidata.org/entity/Q28108849", + cordinates: "Point(40.101388888 47.410194444)", + locationLabel: "Ataman Palace", + }, + { + location: "http://www.wikidata.org/entity/Q29043307", + cordinates: "Point(40.094542 47.417699)", + locationLabel: "Ataman House", + }, + { + location: "http://www.wikidata.org/entity/Q753230", + cordinates: "Point(32.856111111 39.886111111)", + locationLabel: "Atakule", + }, + { + location: "http://www.wikidata.org/entity/Q53539858", + cordinates: "Point(38.0785 44.5598)", + locationLabel: "Ascencion Church, Gelendzhik", + }, + { + location: "http://www.wikidata.org/entity/Q54921488", + cordinates: "Point(-8.427155 41.561455)", + locationLabel: "Artur Soares Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q54921488", + cordinates: "Point(-8.421993 41.556143)", + locationLabel: "Artur Soares Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q10547720", + cordinates: "Point(18.07445278 59.33363889)", + locationLabel: "Artists' House of Stockholm", + }, + { + location: "http://www.wikidata.org/entity/Q15633843", + cordinates: "Point(-21.918888888 64.127777777)", + locationLabel: "Artificial geyser of Reykjavik", + }, + { + location: "http://www.wikidata.org/entity/Q47672", + cordinates: "Point(109.273111111 34.385055555)", + locationLabel: "Army of terracota", + }, + { + location: "http://www.wikidata.org/entity/Q673076", + cordinates: "Point(-92.289222222 34.74675)", + locationLabel: "Arkansas State Capitol", + }, + { + location: "http://www.wikidata.org/entity/Q32904803", + cordinates: "Point(19.122722222 59.861694444)", + locationLabel: "Arholma Coastal Artillery Battery", + }, + { + location: "http://www.wikidata.org/entity/Q28736334", + cordinates: "Point(39.699 47.21805556)", + locationLabel: "Argutinsky-Dolgorukov House", + }, + { + location: "http://www.wikidata.org/entity/Q102327045", + cordinates: "Point(-66.752777777 18.346611111)", + locationLabel: "Arecibo Observatory", + }, + { + location: "http://www.wikidata.org/entity/Q72706854", + cordinates: "Point(12.053573 36.792898)", + locationLabel: "Arco dell'elefante", + }, + { + location: "http://www.wikidata.org/entity/Q223969", + visitors: "1585718", + cordinates: "Point(-109.567 38.6833)", + locationLabel: "Arches National Park", + }, + { + location: "http://www.wikidata.org/entity/Q10726042", + cordinates: "Point(17.63124444 59.85743056)", + locationLabel: "Archbishop's Palace of Uppsala", + }, + { + location: "http://www.wikidata.org/entity/Q269373", + cordinates: "Point(37.590555555 55.749166666)", + locationLabel: "Arbat Street", + }, + { + location: "http://www.wikidata.org/entity/Q19915820", + cordinates: "Point(37.60467255 55.75710046)", + locationLabel: "Araslanov House, Bryusov Lane", + }, + { + location: "http://www.wikidata.org/entity/Q952924", + cordinates: "Point(28.955556 41.015944)", + locationLabel: "Aqueduct of Valens", + }, + { + location: "http://www.wikidata.org/entity/Q4165257", + cordinates: "Point(37.647936344 55.759534951)", + locationLabel: "Apraksiny-Trubetskie House", + }, + { + location: "http://www.wikidata.org/entity/Q16666072", + cordinates: "Point(37.2 50.666666666)", + locationLabel: "Apple orchards in Korochansky District", + }, + { + location: "http://www.wikidata.org/entity/Q2984248", + cordinates: "Point(-0.1427 51.4956)", + locationLabel: "Apollo Victoria Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q28667323", + cordinates: "Point(39.71 47.215555555)", + locationLabel: "Apartment house Recker and Chossudovskog of Rostov-on-Don", + }, + { + location: "http://www.wikidata.org/entity/Q37105676", + visitors: "780000", + cordinates: "Point(23.720782 38.039538)", + locationLabel: "Antonis Tritsis Metropolitan Park", + }, + { + location: "http://www.wikidata.org/entity/Q308926", + cordinates: "Point(-111.372222 36.857778)", + locationLabel: "Antelope Canyon", + }, + { + location: "http://www.wikidata.org/entity/Q949218", + cordinates: "Point(55.701667 -4.293611)", + locationLabel: "Anse Lazio", + }, + { + location: "http://www.wikidata.org/entity/Q56811712", + cordinates: "Point(-92.186388888 47.662777777)", + locationLabel: "Anna and Mikko Pyhala Farm", + }, + { + location: "http://www.wikidata.org/entity/Q206225", + cordinates: "Point(32.865 39.94166667)", + locationLabel: "Ankara Castle", + }, + { + location: "http://www.wikidata.org/entity/Q546010", + cordinates: "Point(43.572777777 40.5075)", + locationLabel: "Ani", + }, + { + location: "http://www.wikidata.org/entity/Q43473", + cordinates: "Point(103.866666666 13.4125)", + locationLabel: "Angkor Wat", + }, + { + location: "http://www.wikidata.org/entity/Q1069719", + cordinates: "Point(-118.250211 34.051339)", + locationLabel: "Angels Flight", + }, + { + location: "http://www.wikidata.org/entity/Q11291322", + cordinates: "Point(134.188556 34.477222)", + locationLabel: "Angel Road", + }, + { + location: "http://www.wikidata.org/entity/Q80299", + cordinates: "Point(-62.535555555 5.9675)", + locationLabel: "Angel Falls", + }, + { + location: "http://www.wikidata.org/entity/Q4065269", + cordinates: "Point(29.088611111 59.895)", + locationLabel: "Andersengrad", + }, + { + location: "http://www.wikidata.org/entity/Q6023471", + cordinates: "Point(27.4215425 37.040121)", + locationLabel: "Ancient Theatre of Halicarnassus", + }, + { + location: "http://www.wikidata.org/entity/Q96023632", + cordinates: "Point(19.083333333 47.52)", + locationLabel: "Ancient Buda Castle", + }, + { + location: "http://www.wikidata.org/entity/Q27955109", + cordinates: "Point(76.99638889 9.69583333)", + locationLabel: "Anchuruli", + }, + { + location: "http://www.wikidata.org/entity/Q21682902", + cordinates: "Point(26.020424 38.401098)", + locationLabel: "Anavatos, Chios", + }, + { + location: "http://www.wikidata.org/entity/Q66720413", + cordinates: "Point(76.695 20.773)", + locationLabel: "Anand Sagar", + }, + { + location: "http://www.wikidata.org/entity/Q81650", + cordinates: "Point(29.066944444 41.081944444)", + locationLabel: "Anadoluhisarı", + }, + { + location: "http://www.wikidata.org/entity/Q2087762", + cordinates: "Point(80.358 16.573)", + locationLabel: "Amaravathi", + }, + { + location: "http://www.wikidata.org/entity/Q61992432", + cordinates: "Point(16.364444444 48.208055555)", + locationLabel: "Amalienburg", + }, + { + location: "http://www.wikidata.org/entity/Q175551", + cordinates: "Point(9.95427 53.54561)", + locationLabel: "Altonaer Fischmarkt", + }, + { + location: "http://www.wikidata.org/entity/Q506234", + visitors: "1683070", + cordinates: "Point(12.482955785 41.894861015)", + locationLabel: "Altare della Patria", + }, + { + location: "http://www.wikidata.org/entity/Q4735767", + cordinates: "Point(27.143483 38.437808)", + locationLabel: "Alsancak", + }, + { + location: "http://www.wikidata.org/entity/Q51212511", + cordinates: "Point(37.622434 55.760647)", + locationLabel: "Alpine Rose", + }, + { + location: "http://www.wikidata.org/entity/Q205932", + cordinates: "Point(76.917268 43.239106)", + locationLabel: "Almaty National Circus", + }, + { + location: "http://www.wikidata.org/entity/Q48948624", + cordinates: "Point(37.6365 55.7565)", + locationLabel: "Alley of the rulers of Russia", + }, + { + location: "http://www.wikidata.org/entity/Q48948624", + cordinates: "Point(37.636507 55.756516)", + locationLabel: "Alley of the rulers of Russia", + }, + { + location: "http://www.wikidata.org/entity/Q28874398", + cordinates: "Point(38.91184 47.25003)", + locationLabel: "Alley of Immortality", + }, + { + location: "http://www.wikidata.org/entity/Q2429287", + cordinates: "Point(51.67667 32.657167)", + locationLabel: "Ali Qapu", + }, + { + location: "http://www.wikidata.org/entity/Q47476", + cordinates: "Point(-3.588212739 37.17633461)", + locationLabel: "Alhambra", + }, + { + location: "http://www.wikidata.org/entity/Q4721083", + cordinates: "Point(38.9225 47.21138889)", + locationLabel: "Alexandrovskiye Trade Rows", + }, + { + location: "http://www.wikidata.org/entity/Q4274080", + cordinates: "Point(38.716667 56.4)", + locationLabel: "Alexandrov Kremlin", + }, + { + location: "http://www.wikidata.org/entity/Q1186567", + cordinates: "Point(30.3363139 59.93177501)", + locationLabel: "Alexandrinsky Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q152783", + cordinates: "Point(13.413333333 52.521666666)", + locationLabel: "Alexanderplatz", + }, + { + location: "http://www.wikidata.org/entity/Q946428", + cordinates: "Point(30.388518 59.921084)", + locationLabel: "Alexander Nevsky Lavra", + }, + { + location: "http://www.wikidata.org/entity/Q81303457", + cordinates: "Point(35.893174 56.836629)", + locationLabel: "Alexander Nevsky Church, Tver", + }, + { + location: "http://www.wikidata.org/entity/Q726541", + cordinates: "Point(43.971308 56.333789)", + locationLabel: "Alexander Nevsky Cathedral, Nizhny Novgorod", + }, + { + location: "http://www.wikidata.org/entity/Q4061515", + cordinates: "Point(33.370747 45.190863)", + locationLabel: "Alexander Karaite religious school", + }, + { + location: "http://www.wikidata.org/entity/Q907366", + cordinates: "Point(30.315833333 59.939166666)", + locationLabel: "Alexander Column", + }, + { + location: "http://www.wikidata.org/entity/Q3127243", + cordinates: "Point(-4.415746493 36.721181444)", + locationLabel: "Alcazaba", + }, + { + location: "http://www.wikidata.org/entity/Q131354", + cordinates: "Point(-122.422838888 37.8266)", + locationLabel: "Alcatraz Island", + }, + { + location: "http://www.wikidata.org/entity/Q65038584", + cordinates: "Point(10.00142 48.4165)", + locationLabel: "Albeck Fort", + }, + { + location: "http://www.wikidata.org/entity/Q941328", + cordinates: "Point(26.374166666 38.281388888)", + locationLabel: "Alaçatı", + }, + { + location: "http://www.wikidata.org/entity/Q83528895", + cordinates: "Point(115.15593 -8.52958)", + locationLabel: "Alas Kedaton", + }, + { + location: "http://www.wikidata.org/entity/Q9357515", + cordinates: "Point(31.9987582 36.5342477)", + locationLabel: "Alanya Shipyard", + }, + { + location: "http://www.wikidata.org/entity/Q2636724", + cordinates: "Point(-98.486111 29.425833)", + locationLabel: "Alamo Mission in San Antonio", + }, + { + location: "http://www.wikidata.org/entity/Q22948627", + cordinates: "Point(35.504416666 33.900861111)", + locationLabel: "Al-Majidiyyeh Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q28108485", + cordinates: "Point(39.89643 47.26849)", + locationLabel: "Aksay customs outpost", + }, + { + location: "http://www.wikidata.org/entity/Q80087282", + cordinates: "Point(75.358408 43.596408)", + locationLabel: "Akkainar and Zhartas petroglyphs", + }, + { + location: "http://www.wikidata.org/entity/Q28908926", + cordinates: "Point(39.713333333 47.215277777)", + locationLabel: "Akimov revenue house", + }, + { + location: "http://www.wikidata.org/entity/Q10401895", + cordinates: "Point(11.86666667 57.76666667)", + locationLabel: 'Air Force Museum "Aeroseum"', + }, + { + location: "http://www.wikidata.org/entity/Q28119934", + cordinates: "Point(-8.731199999 42.374499999)", + locationLabel: "Aguete Beach", + }, + { + location: "http://www.wikidata.org/entity/Q14201574", + cordinates: "Point(73.9875984 15.0509057)", + locationLabel: "Agonda", + }, + { + location: "http://www.wikidata.org/entity/Q48061290", + cordinates: "Point(82.920076 55.033135)", + locationLabel: "Aeroflot House", + }, + { + location: "http://www.wikidata.org/entity/Q61602970", + cordinates: "Point(8.652997222 50.118316666)", + locationLabel: "Adorno-Ampel", + }, + { + location: "http://www.wikidata.org/entity/Q99773491", + cordinates: "Point(39.718408 47.222115)", + locationLabel: "Administrative building of Maslomolprom", + }, + { + location: "http://www.wikidata.org/entity/Q19909496", + cordinates: "Point(39.202174 51.660317)", + locationLabel: "Administration Building of Voronezh", + }, + { + location: "http://www.wikidata.org/entity/Q1981080", + cordinates: "Point(39.9492 43.4052)", + locationLabel: "Adler Arena Skating Center", + }, + { + location: "http://www.wikidata.org/entity/Q131013", + visitors: "1807580", + cordinates: "Point(23.726738 37.971851)", + locationLabel: "Acropolis of Athens", + }, + { + location: "http://www.wikidata.org/entity/Q131013", + visitors: "2766218", + cordinates: "Point(23.726738 37.971851)", + locationLabel: "Acropolis of Athens", + }, + { + location: "http://www.wikidata.org/entity/Q131013", + visitors: "3105604", + cordinates: "Point(23.726738 37.971851)", + locationLabel: "Acropolis of Athens", + }, + { + location: "http://www.wikidata.org/entity/Q12526528", + cordinates: "Point(69.380555555 53.285277777)", + locationLabel: "Abylai Khan monument", + }, + { + location: "http://www.wikidata.org/entity/Q19988301", + cordinates: "Point(37.5956 55.737443)", + locationLabel: "Abrikosovs' house (Ostozhenka)", + }, + { + location: "http://www.wikidata.org/entity/Q89272155", + cordinates: "Point(32.860833333 39.9425)", + locationLabel: "Abdülkadir İsfahani Masjid", + }, + { + location: "http://www.wikidata.org/entity/Q28943649", + cordinates: "Point(37.627166 55.755773)", + locationLabel: "ARKOS Building", + }, + { + location: "http://www.wikidata.org/entity/Q3329565", + cordinates: "Point(46.572249 56.343713)", + locationLabel: "A.V. Grigoriev Art and History Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16675806", + cordinates: "Point(44.771339 43.196898)", + locationLabel: "9 towers", + }, + { + location: "http://www.wikidata.org/entity/Q12110230", + cordinates: "Point(30.5266 50.4478)", + locationLabel: "9 Arkhitektora Horodetskoho Street", + }, + { + location: "http://www.wikidata.org/entity/Q18755239", + cordinates: "Point(37.607638888 55.754083333)", + locationLabel: "5th House of Soviets", + }, + { + location: "http://www.wikidata.org/entity/Q60852484", + cordinates: "Point(30.488911 50.583376)", + locationLabel: "58 Shkilna Street, Vyshhorod", + }, + { + location: "http://www.wikidata.org/entity/Q102233986", + cordinates: "Point(8.9992546 51.9985941)", + locationLabel: "52,9 marker post", + }, + { + location: "http://www.wikidata.org/entity/Q25445319", + cordinates: "Point(24.134983 49.814342)", + locationLabel: "5 Shevchenka Street, Vynnyky", + }, + { + location: "http://www.wikidata.org/entity/Q191161", + cordinates: "Point(-0.080277777 51.514444444)", + locationLabel: "30 St Mary Axe", + }, + { + location: "http://www.wikidata.org/entity/Q20082080", + cordinates: "Point(30.537861 50.443889)", + locationLabel: "26 Instytutska Street, Kiev", + }, + { + location: "http://www.wikidata.org/entity/Q19909518", + cordinates: "Point(37.441777777 55.717222222)", + locationLabel: "23 Zagorskogo Backroad, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q20083399", + cordinates: "Point(30.536667 50.446389)", + locationLabel: "22 Mykhaila Hrushevskoho Street, Kiev", + }, + { + location: "http://www.wikidata.org/entity/Q4484", + cordinates: "Point(29.034444 41.045247)", + locationLabel: "15 July Martyrs Bridge", + }, + { + location: "http://www.wikidata.org/entity/Q10397084", + cordinates: "Point(18.36361111 59.40611111)", + locationLabel: "12th Artillery Battery, Rindö", + }, + { + location: "http://www.wikidata.org/entity/Q16486121", + cordinates: "Point(18.39583333 59.39916667)", + locationLabel: "11th Artillery Battery, Rindö", + }, + { + location: "http://www.wikidata.org/entity/Q4442786", + cordinates: "Point(82.924618 55.020518)", + locationLabel: "100-flat building", + }, + { + location: "http://www.wikidata.org/entity/Q99772973", + cordinates: "Point(39.726062 47.224208)", + locationLabel: "Q99772973", + }, + { + location: "http://www.wikidata.org/entity/Q99516424", + cordinates: "Point(-4.2448 48.03533)", + locationLabel: "Q99516424", + }, + { + location: "http://www.wikidata.org/entity/Q98381302", + cordinates: "Point(9.5929912 51.4783662)", + locationLabel: "Q98381302", + }, + { + location: "http://www.wikidata.org/entity/Q98280244", + cordinates: "Point(45.967422 51.58653)", + locationLabel: "Q98280244", + }, + { + location: "http://www.wikidata.org/entity/Q97380647", + cordinates: "Point(38.128925 45.260707)", + locationLabel: "Q97380647", + }, + { + location: "http://www.wikidata.org/entity/Q97180897", + cordinates: "Point(14.333294 53.902176)", + locationLabel: "Q97180897", + }, + { + location: "http://www.wikidata.org/entity/Q97169271", + cordinates: "Point(111.13533 34.04013)", + locationLabel: "Q97169271", + }, + { + location: "http://www.wikidata.org/entity/Q9644649", + cordinates: "Point(-54.37861111 -23.10277778)", + locationLabel: "Q9644649", + }, + { + location: "http://www.wikidata.org/entity/Q9571167", + cordinates: "Point(-47.83194444 -15.80361111)", + locationLabel: "Q9571167", + }, + { + location: "http://www.wikidata.org/entity/Q94953451", + cordinates: "Point(32.797886 51.4002)", + locationLabel: "Q94953451", + }, + { + location: "http://www.wikidata.org/entity/Q92277355", + cordinates: "Point(23.253611111 49.294722222)", + locationLabel: "Q92277355", + }, + { + location: "http://www.wikidata.org/entity/Q89419196", + cordinates: "Point(27.57072 53.87631)", + locationLabel: "Q89419196", + }, + { + location: "http://www.wikidata.org/entity/Q89353118", + cordinates: "Point(36.06955 52.967508)", + locationLabel: "Q89353118", + }, + { + location: "http://www.wikidata.org/entity/Q85883931", + cordinates: "Point(140.858732 38.283273)", + locationLabel: "Q85883931", + }, + { + location: "http://www.wikidata.org/entity/Q85841916", + cordinates: "Point(45.67891 43.326364)", + locationLabel: "Q85841916", + }, + { + location: "http://www.wikidata.org/entity/Q85817337", + cordinates: "Point(8.9105594 45.401119)", + locationLabel: "Q85817337", + }, + { + location: "http://www.wikidata.org/entity/Q85815882", + cordinates: "Point(43.991562 56.324938)", + locationLabel: "Q85815882", + }, + { + location: "http://www.wikidata.org/entity/Q84608452", + cordinates: "Point(43.983897 56.327106)", + locationLabel: "Q84608452", + }, + { + location: "http://www.wikidata.org/entity/Q84606055", + cordinates: "Point(43.989754 56.328609)", + locationLabel: "Q84606055", + }, + { + location: "http://www.wikidata.org/entity/Q84534584", + cordinates: "Point(31.199928 52.102836)", + locationLabel: "Q84534584", + }, + { + location: "http://www.wikidata.org/entity/Q84534584", + cordinates: "Point(31.199886111 52.103013888)", + locationLabel: "Q84534584", + }, + { + location: "http://www.wikidata.org/entity/Q84492704", + cordinates: "Point(31.271582 52.1319)", + locationLabel: "Q84492704", + }, + { + location: "http://www.wikidata.org/entity/Q84175953", + cordinates: "Point(43.99412 56.328149)", + locationLabel: "Q84175953", + }, + { + location: "http://www.wikidata.org/entity/Q84175608", + cordinates: "Point(43.994192 56.328484)", + locationLabel: "Q84175608", + }, + { + location: "http://www.wikidata.org/entity/Q84175127", + cordinates: "Point(43.992386 56.325275)", + locationLabel: "Q84175127", + }, + { + location: "http://www.wikidata.org/entity/Q84149782", + cordinates: "Point(36.223961 54.511579)", + locationLabel: "Q84149782", + }, + { + location: "http://www.wikidata.org/entity/Q84134705", + cordinates: "Point(30.733726 46.471924)", + locationLabel: "Q84134705", + }, + { + location: "http://www.wikidata.org/entity/Q83857394", + cordinates: "Point(37.623448 55.737638)", + locationLabel: "Q83857394", + }, + { + location: "http://www.wikidata.org/entity/Q83850750", + cordinates: "Point(20.254881 54.697522)", + locationLabel: "Q83850750", + }, + { + location: "http://www.wikidata.org/entity/Q83800283", + cordinates: "Point(37.603414 55.746197)", + locationLabel: "Q83800283", + }, + { + location: "http://www.wikidata.org/entity/Q83789041", + cordinates: "Point(39.873277 47.251349)", + locationLabel: "Q83789041", + }, + { + location: "http://www.wikidata.org/entity/Q83563542", + cordinates: "Point(44.024052 56.323503)", + locationLabel: "Q83563542", + }, + { + location: "http://www.wikidata.org/entity/Q83031649", + cordinates: "Point(45.727603 43.104617)", + locationLabel: "Q83031649", + }, + { + location: "http://www.wikidata.org/entity/Q81782493", + cordinates: "Point(69.770937 40.780633)", + locationLabel: "Q81782493", + }, + { + location: "http://www.wikidata.org/entity/Q81711898", + cordinates: "Point(67.285617 37.276698)", + locationLabel: "Q81711898", + }, + { + location: "http://www.wikidata.org/entity/Q81711787", + cordinates: "Point(58.670692 43.242016)", + locationLabel: "Q81711787", + }, + { + location: "http://www.wikidata.org/entity/Q81705191", + cordinates: "Point(67.262919 37.270563)", + locationLabel: "Q81705191", + }, + { + location: "http://www.wikidata.org/entity/Q81662955", + cordinates: "Point(67.016794 37.692502)", + locationLabel: "Q81662955", + }, + { + location: "http://www.wikidata.org/entity/Q81662234", + cordinates: "Point(65.089516 39.283827)", + locationLabel: "Q81662234", + }, + { + location: "http://www.wikidata.org/entity/Q81659516", + cordinates: "Point(67.110147 37.259563)", + locationLabel: "Q81659516", + }, + { + location: "http://www.wikidata.org/entity/Q81658999", + cordinates: "Point(67.394051 37.318873)", + locationLabel: "Q81658999", + }, + { + location: "http://www.wikidata.org/entity/Q81656878", + cordinates: "Point(58.64563 43.187777)", + locationLabel: "Q81656878", + }, + { + location: "http://www.wikidata.org/entity/Q81562655", + cordinates: "Point(67.201682 37.372042)", + locationLabel: "Q81562655", + }, + { + location: "http://www.wikidata.org/entity/Q81525364", + cordinates: "Point(22.246313 55.981583)", + locationLabel: "Q81525364", + }, + { + location: "http://www.wikidata.org/entity/Q81268892", + cordinates: "Point(79.366968 44.23614)", + locationLabel: "Q81268892", + }, + { + location: "http://www.wikidata.org/entity/Q81268482", + cordinates: "Point(75.434597 43.870642)", + locationLabel: "Q81268482", + }, + { + location: "http://www.wikidata.org/entity/Q81268326", + cordinates: "Point(80.072679 43.48395)", + locationLabel: "Q81268326", + }, + { + location: "http://www.wikidata.org/entity/Q80796006", + cordinates: "Point(42.5035 48.531817)", + locationLabel: "Q80796006", + }, + { + location: "http://www.wikidata.org/entity/Q80210190", + cordinates: "Point(66.948437 39.626138)", + locationLabel: "Q80210190", + }, + { + location: "http://www.wikidata.org/entity/Q80209177", + cordinates: "Point(67.029085 39.065861)", + locationLabel: "Q80209177", + }, + { + location: "http://www.wikidata.org/entity/Q80157226", + cordinates: "Point(64.011673 39.58706)", + locationLabel: "Q80157226", + }, + { + location: "http://www.wikidata.org/entity/Q80078826", + cordinates: "Point(-7.62273 33.582249)", + locationLabel: "Q80078826", + }, + { + location: "http://www.wikidata.org/entity/Q80078582", + cordinates: "Point(33.28639 58.81306)", + locationLabel: "Q80078582", + }, + { + location: "http://www.wikidata.org/entity/Q80078112", + cordinates: "Point(67.266992 37.226206)", + locationLabel: "Q80078112", + }, + { + location: "http://www.wikidata.org/entity/Q80068546", + cordinates: "Point(69.608101 42.298632)", + locationLabel: "Q80068546", + }, + { + location: "http://www.wikidata.org/entity/Q79422224", + cordinates: "Point(76.785219 43.09273)", + locationLabel: "Q79422224", + }, + { + location: "http://www.wikidata.org/entity/Q79414122", + cordinates: "Point(36.054066 55.417402)", + locationLabel: "Q79414122", + }, + { + location: "http://www.wikidata.org/entity/Q79325157", + cordinates: "Point(41.730296 57.105265)", + locationLabel: "Q79325157", + }, + { + location: "http://www.wikidata.org/entity/Q79315822", + cordinates: "Point(79.846055 44.237658)", + locationLabel: "Q79315822", + }, + { + location: "http://www.wikidata.org/entity/Q79140652", + cordinates: "Point(51.372289 51.198014)", + locationLabel: "Q79140652", + }, + { + location: "http://www.wikidata.org/entity/Q78643029", + cordinates: "Point(30.3147 59.95157)", + locationLabel: "Q78643029", + }, + { + location: "http://www.wikidata.org/entity/Q78185261", + cordinates: "Point(76.876232 43.217364)", + locationLabel: "Q78185261", + }, + { + location: "http://www.wikidata.org/entity/Q78183773", + cordinates: "Point(43.993913 56.328075)", + locationLabel: "Q78183773", + }, + { + location: "http://www.wikidata.org/entity/Q77833372", + cordinates: "Point(4.390941 51.20876)", + locationLabel: "Q77833372", + }, + { + location: "http://www.wikidata.org/entity/Q77805902", + cordinates: "Point(51.375972 51.193245)", + locationLabel: "Q77805902", + }, + { + location: "http://www.wikidata.org/entity/Q77711940", + cordinates: "Point(76.94569 43.236572)", + locationLabel: "Q77711940", + }, + { + location: "http://www.wikidata.org/entity/Q77710021", + cordinates: "Point(51.374049 51.195847)", + locationLabel: "Q77710021", + }, + { + location: "http://www.wikidata.org/entity/Q77350858", + cordinates: "Point(-58.408702 -34.592093)", + locationLabel: "Q77350858", + }, + { + location: "http://www.wikidata.org/entity/Q77346002", + cordinates: "Point(30.636537 46.471948)", + locationLabel: "Q77346002", + }, + { + location: "http://www.wikidata.org/entity/Q77345283", + cordinates: "Point(44.006085 56.32523)", + locationLabel: "Q77345283", + }, + { + location: "http://www.wikidata.org/entity/Q77252445", + cordinates: "Point(51.374049 51.195847)", + locationLabel: "Q77252445", + }, + { + location: "http://www.wikidata.org/entity/Q77033148", + cordinates: "Point(51.369665 51.203827)", + locationLabel: "Q77033148", + }, + { + location: "http://www.wikidata.org/entity/Q77030872", + cordinates: "Point(37.604628 55.763336)", + locationLabel: "Q77030872", + }, + { + location: "http://www.wikidata.org/entity/Q77030759", + cordinates: "Point(51.372926 51.196756)", + locationLabel: "Q77030759", + }, + { + location: "http://www.wikidata.org/entity/Q76744547", + cordinates: "Point(37.573546 55.783959)", + locationLabel: "Q76744547", + }, + { + location: "http://www.wikidata.org/entity/Q76554788", + cordinates: "Point(30.304711 59.970056)", + locationLabel: "Q76554788", + }, + { + location: "http://www.wikidata.org/entity/Q75535699", + cordinates: "Point(23.835682 53.682868)", + locationLabel: "Q75535699", + }, + { + location: "http://www.wikidata.org/entity/Q7486283", + cordinates: "Point(37.664682 55.755697)", + locationLabel: "Q7486283", + }, + { + location: "http://www.wikidata.org/entity/Q73526922", + cordinates: "Point(30.488723 50.475789)", + locationLabel: "Q73526922", + }, + { + location: "http://www.wikidata.org/entity/Q66680064", + cordinates: "Point(49.418494 53.507582)", + locationLabel: "Q66680064", + }, + { + location: "http://www.wikidata.org/entity/Q65270530", + cordinates: "Point(140.275 35.131)", + locationLabel: "Q65270530", + }, + { + location: "http://www.wikidata.org/entity/Q65201784", + cordinates: "Point(37.61802 48.864212)", + locationLabel: "Q65201784", + }, + { + location: "http://www.wikidata.org/entity/Q65175748", + cordinates: "Point(76.920037 43.241256)", + locationLabel: "Q65175748", + }, + { + location: "http://www.wikidata.org/entity/Q65175285", + cordinates: "Point(76.940491 43.262897)", + locationLabel: "Q65175285", + }, + { + location: "http://www.wikidata.org/entity/Q65174665", + cordinates: "Point(76.955937 43.245016)", + locationLabel: "Q65174665", + }, + { + location: "http://www.wikidata.org/entity/Q65174079", + cordinates: "Point(76.950271 43.244295)", + locationLabel: "Q65174079", + }, + { + location: "http://www.wikidata.org/entity/Q65172799", + cordinates: "Point(7.361944 48.100056)", + locationLabel: "Q65172799", + }, + { + location: "http://www.wikidata.org/entity/Q65170647", + cordinates: "Point(126.921697 37.553463)", + locationLabel: "Q65170647", + }, + { + location: "http://www.wikidata.org/entity/Q65170377", + cordinates: "Point(7.112222222 51.4875)", + locationLabel: "Q65170377", + }, + { + location: "http://www.wikidata.org/entity/Q65169524", + cordinates: "Point(64.866669 38.066669)", + locationLabel: "Q65169524", + }, + { + location: "http://www.wikidata.org/entity/Q65169308", + cordinates: "Point(37.276329 49.190108)", + locationLabel: "Q65169308", + }, + { + location: "http://www.wikidata.org/entity/Q65169230", + cordinates: "Point(37.245258 49.163435)", + locationLabel: "Q65169230", + }, + { + location: "http://www.wikidata.org/entity/Q65152371", + cordinates: "Point(37.641649 47.81532)", + locationLabel: "Q65152371", + }, + { + location: "http://www.wikidata.org/entity/Q65146268", + cordinates: "Point(37.618577 55.737334)", + locationLabel: "Q65146268", + }, + { + location: "http://www.wikidata.org/entity/Q65130010", + cordinates: "Point(84.4 55.1)", + locationLabel: "Q65130010", + }, + { + location: "http://www.wikidata.org/entity/Q65127312", + cordinates: "Point(82.953088 55.015721)", + locationLabel: "Q65127312", + }, + { + location: "http://www.wikidata.org/entity/Q65127301", + cordinates: "Point(82.860915 54.986163)", + locationLabel: "Q65127301", + }, + { + location: "http://www.wikidata.org/entity/Q63986044", + cordinates: "Point(9.2087 55.6562)", + locationLabel: "Q63986044", + }, + { + location: "http://www.wikidata.org/entity/Q63372537", + cordinates: "Point(40.235582 37.911416)", + locationLabel: "Q63372537", + }, + { + location: "http://www.wikidata.org/entity/Q63372405", + cordinates: "Point(40.23649 37.915142)", + locationLabel: "Q63372405", + }, + { + location: "http://www.wikidata.org/entity/Q62091752", + cordinates: "Point(76.960983 43.225509)", + locationLabel: "Q62091752", + }, + { + location: "http://www.wikidata.org/entity/Q62059293", + cordinates: "Point(37.31625 49.21526)", + locationLabel: "Q62059293", + }, + { + location: "http://www.wikidata.org/entity/Q62059275", + cordinates: "Point(30.488587 50.446787)", + locationLabel: "Q62059275", + }, + { + location: "http://www.wikidata.org/entity/Q62059263", + cordinates: "Point(30.26075 53.863263)", + locationLabel: "Q62059263", + }, + { + location: "http://www.wikidata.org/entity/Q62059204", + cordinates: "Point(37.262526 49.219485)", + locationLabel: "Q62059204", + }, + { + location: "http://www.wikidata.org/entity/Q62050492", + cordinates: "Point(34.163308055 44.492366111)", + locationLabel: "Q62050492", + }, + { + location: "http://www.wikidata.org/entity/Q61990188", + cordinates: "Point(40.05357742 47.89326217)", + locationLabel: "Q61990188", + }, + { + location: "http://www.wikidata.org/entity/Q61890453", + cordinates: "Point(76.939168 43.252412)", + locationLabel: "Q61890453", + }, + { + location: "http://www.wikidata.org/entity/Q61866577", + cordinates: "Point(34.157934938 44.4856779)", + locationLabel: "Q61866577", + }, + { + location: "http://www.wikidata.org/entity/Q61865864", + cordinates: "Point(37.298635 49.219856)", + locationLabel: "Q61865864", + }, + { + location: "http://www.wikidata.org/entity/Q61718049", + cordinates: "Point(34.156944444 44.493333333)", + locationLabel: "Q61718049", + }, + { + location: "http://www.wikidata.org/entity/Q61115593", + cordinates: "Point(37.279096 49.191333)", + locationLabel: "Q61115593", + }, + { + location: "http://www.wikidata.org/entity/Q60978773", + cordinates: "Point(34.172638888 44.504027777)", + locationLabel: "Q60978773", + }, + { + location: "http://www.wikidata.org/entity/Q60972563", + cordinates: "Point(32.510956 50.243702)", + locationLabel: "Q60972563", + }, + { + location: "http://www.wikidata.org/entity/Q60971827", + cordinates: "Point(36.174922 51.780143)", + locationLabel: "Q60971827", + }, + { + location: "http://www.wikidata.org/entity/Q60945147", + cordinates: "Point(76.940551 43.242949)", + locationLabel: "Q60945147", + }, + { + location: "http://www.wikidata.org/entity/Q60873059", + cordinates: "Point(34.18375 44.501805555)", + locationLabel: "Q60873059", + }, + { + location: "http://www.wikidata.org/entity/Q60860708", + cordinates: "Point(34.158741496 44.491950167)", + locationLabel: "Q60860708", + }, + { + location: "http://www.wikidata.org/entity/Q60853014", + cordinates: "Point(10.178378 49.37719)", + locationLabel: "Q60853014", + }, + { + location: "http://www.wikidata.org/entity/Q60851856", + cordinates: "Point(32.510262 50.243361)", + locationLabel: "Q60851856", + }, + { + location: "http://www.wikidata.org/entity/Q60851526", + cordinates: "Point(30.299555 60.045183)", + locationLabel: "Q60851526", + }, + { + location: "http://www.wikidata.org/entity/Q60850983", + cordinates: "Point(60.7151377 58.0712552)", + locationLabel: "Q60850983", + }, + { + location: "http://www.wikidata.org/entity/Q60850757", + cordinates: "Point(31.640249 56.493447)", + locationLabel: "Q60850757", + }, + { + location: "http://www.wikidata.org/entity/Q60829651", + cordinates: "Point(47.248772 56.13979)", + locationLabel: "Q60829651", + }, + { + location: "http://www.wikidata.org/entity/Q60827589", + cordinates: "Point(45.005166 53.175275)", + locationLabel: "Q60827589", + }, + { + location: "http://www.wikidata.org/entity/Q60797881", + cordinates: "Point(34.177083333 44.509305555)", + locationLabel: "Q60797881", + }, + { + location: "http://www.wikidata.org/entity/Q60793366", + cordinates: "Point(34.163166666 44.490472222)", + locationLabel: "Q60793366", + }, + { + location: "http://www.wikidata.org/entity/Q60719890", + cordinates: "Point(34.162777777 44.491472222)", + locationLabel: "Q60719890", + }, + { + location: "http://www.wikidata.org/entity/Q60693592", + cordinates: "Point(34.161944444 44.495972222)", + locationLabel: "Q60693592", + }, + { + location: "http://www.wikidata.org/entity/Q60632723", + cordinates: "Point(30.315777777 59.939027777)", + locationLabel: "Q60632723", + }, + { + location: "http://www.wikidata.org/entity/Q60539774", + cordinates: "Point(44.658333 43.733056)", + locationLabel: "Q60539774", + }, + { + location: "http://www.wikidata.org/entity/Q60368049", + cordinates: "Point(32.510287 50.243334)", + locationLabel: "Q60368049", + }, + { + location: "http://www.wikidata.org/entity/Q59686225", + cordinates: "Point(42.724083333 43.911758333)", + locationLabel: "Q59686225", + }, + { + location: "http://www.wikidata.org/entity/Q59343241", + cordinates: "Point(-2.754 48.5212)", + locationLabel: "Q59343241", + }, + { + location: "http://www.wikidata.org/entity/Q58483283", + cordinates: "Point(39.707777777 47.225555555)", + locationLabel: "Q58483283", + }, + { + location: "http://www.wikidata.org/entity/Q5783330", + cordinates: "Point(-1.8179207 37.5645445)", + locationLabel: "Q5783330", + }, + { + location: "http://www.wikidata.org/entity/Q57020478", + cordinates: "Point(40.099028 44.607474)", + locationLabel: "Q57020478", + }, + { + location: "http://www.wikidata.org/entity/Q56876297", + cordinates: "Point(37.6225 55.762777777)", + locationLabel: "Q56876297", + }, + { + location: "http://www.wikidata.org/entity/Q56351035", + cordinates: "Point(-44.3055593 -2.5302892)", + locationLabel: "Q56351035", + }, + { + location: "http://www.wikidata.org/entity/Q56309070", + cordinates: "Point(82.914047 55.036756)", + locationLabel: "Q56309070", + }, + { + location: "http://www.wikidata.org/entity/Q56308574", + cordinates: "Point(20.519862 54.709836)", + locationLabel: "Q56308574", + }, + { + location: "http://www.wikidata.org/entity/Q56308163", + cordinates: "Point(37.618372 55.65948)", + locationLabel: "Q56308163", + }, + { + location: "http://www.wikidata.org/entity/Q56257798", + cordinates: "Point(37.589444444 55.756111111)", + locationLabel: "Q56257798", + }, + { + location: "http://www.wikidata.org/entity/Q56126428", + cordinates: "Point(42.057812 55.57923)", + locationLabel: "Q56126428", + }, + { + location: "http://www.wikidata.org/entity/Q55664239", + cordinates: "Point(17.081545 -22.566316)", + locationLabel: "Q55664239", + }, + { + location: "http://www.wikidata.org/entity/Q55655353", + cordinates: "Point(45.180372 54.181535)", + locationLabel: "Q55655353", + }, + { + location: "http://www.wikidata.org/entity/Q55655347", + cordinates: "Point(45.1818 54.183053)", + locationLabel: "Q55655347", + }, + { + location: "http://www.wikidata.org/entity/Q55655327", + cordinates: "Point(37.586667 55.757935)", + locationLabel: "Q55655327", + }, + { + location: "http://www.wikidata.org/entity/Q55580200", + cordinates: "Point(86.980698 23.389055)", + locationLabel: "Q55580200", + }, + { + location: "http://www.wikidata.org/entity/Q55522621", + cordinates: "Point(132.60366667 34.93508333)", + locationLabel: "Q55522621", + }, + { + location: "http://www.wikidata.org/entity/Q55502164", + cordinates: "Point(-55.71436 -34.74413)", + locationLabel: "Q55502164", + }, + { + location: "http://www.wikidata.org/entity/Q54870297", + cordinates: "Point(29.771682 59.99494)", + locationLabel: "Q54870297", + }, + { + location: "http://www.wikidata.org/entity/Q53998040", + cordinates: "Point(37.570277777 55.734444444)", + locationLabel: "Q53998040", + }, + { + location: "http://www.wikidata.org/entity/Q53997684", + cordinates: "Point(37.715277777 55.795277777)", + locationLabel: "Q53997684", + }, + { + location: "http://www.wikidata.org/entity/Q53913744", + cordinates: "Point(37.530555555 55.703055555)", + locationLabel: "Q53913744", + }, + { + location: "http://www.wikidata.org/entity/Q53865009", + cordinates: "Point(37.595277777 55.742777777)", + locationLabel: "Q53865009", + }, + { + location: "http://www.wikidata.org/entity/Q53796246", + cordinates: "Point(37.606666666 55.758888888)", + locationLabel: "Q53796246", + }, + { + location: "http://www.wikidata.org/entity/Q53786345", + cordinates: "Point(37.670555555 55.748333333)", + locationLabel: "Q53786345", + }, + { + location: "http://www.wikidata.org/entity/Q53679517", + cordinates: "Point(37.64888763 55.7671595)", + locationLabel: "Q53679517", + }, + { + location: "http://www.wikidata.org/entity/Q53625141", + cordinates: "Point(44.493888888 56.787777777)", + locationLabel: "Q53625141", + }, + { + location: "http://www.wikidata.org/entity/Q53621565", + cordinates: "Point(45.40484 50.07639)", + locationLabel: "Q53621565", + }, + { + location: "http://www.wikidata.org/entity/Q53256467", + cordinates: "Point(37.617777777 55.768333333)", + locationLabel: "Q53256467", + }, + { + location: "http://www.wikidata.org/entity/Q53240141", + cordinates: "Point(60.596944444 56.829444444)", + locationLabel: "Q53240141", + }, + { + location: "http://www.wikidata.org/entity/Q52985721", + cordinates: "Point(-4.322437 48.264174)", + locationLabel: "Q52985721", + }, + { + location: "http://www.wikidata.org/entity/Q52912471", + cordinates: "Point(37.629027777 55.741944444)", + locationLabel: "Q52912471", + }, + { + location: "http://www.wikidata.org/entity/Q52554875", + cordinates: "Point(61.557889 56.5245)", + locationLabel: "Q52554875", + }, + { + location: "http://www.wikidata.org/entity/Q52426562", + cordinates: "Point(37.652777777 55.765277777)", + locationLabel: "Q52426562", + }, + { + location: "http://www.wikidata.org/entity/Q52254783", + cordinates: "Point(50.098819 53.190262)", + locationLabel: "Q52254783", + }, + { + location: "http://www.wikidata.org/entity/Q52198648", + cordinates: "Point(37.051383 52.979298)", + locationLabel: "Q52198648", + }, + { + location: "http://www.wikidata.org/entity/Q52005640", + cordinates: "Point(50.132298 53.215943)", + locationLabel: "Q52005640", + }, + { + location: "http://www.wikidata.org/entity/Q51090488", + cordinates: "Point(107.654198 51.811556)", + locationLabel: "Q51090488", + }, + { + location: "http://www.wikidata.org/entity/Q51053952", + cordinates: "Point(50.096643 53.195892)", + locationLabel: "Q51053952", + }, + { + location: "http://www.wikidata.org/entity/Q50845607", + cordinates: "Point(33.078804 68.9690318)", + locationLabel: "Q50845607", + }, + { + location: "http://www.wikidata.org/entity/Q50821376", + cordinates: "Point(50.08225 53.184277777)", + locationLabel: "Q50821376", + }, + { + location: "http://www.wikidata.org/entity/Q50654221", + cordinates: "Point(37.819983 55.751866)", + locationLabel: "Q50654221", + }, + { + location: "http://www.wikidata.org/entity/Q50359307", + cordinates: "Point(60.609083333 56.840805555)", + locationLabel: "Q50359307", + }, + { + location: "http://www.wikidata.org/entity/Q50213469", + cordinates: "Point(55.961043 54.753472)", + locationLabel: "Q50213469", + }, + { + location: "http://www.wikidata.org/entity/Q48956553", + cordinates: "Point(82.920317 55.036379)", + locationLabel: "Q48956553", + }, + { + location: "http://www.wikidata.org/entity/Q48955567", + cordinates: "Point(36.133239 53.803178)", + locationLabel: "Q48955567", + }, + { + location: "http://www.wikidata.org/entity/Q48955346", + cordinates: "Point(30.293113 59.927468)", + locationLabel: "Q48955346", + }, + { + location: "http://www.wikidata.org/entity/Q48954415", + cordinates: "Point(36.235802 53.605544)", + locationLabel: "Q48954415", + }, + { + location: "http://www.wikidata.org/entity/Q48954414", + cordinates: "Point(36.847351 53.335442)", + locationLabel: "Q48954414", + }, + { + location: "http://www.wikidata.org/entity/Q48949065", + cordinates: "Point(37.6166 55.832)", + locationLabel: "Q48949065", + }, + { + location: "http://www.wikidata.org/entity/Q48948732", + cordinates: "Point(50.098175 53.189213)", + locationLabel: "Q48948732", + }, + { + location: "http://www.wikidata.org/entity/Q48945062", + cordinates: "Point(41.609156 46.555436)", + locationLabel: "Q48945062", + }, + { + location: "http://www.wikidata.org/entity/Q48025955", + cordinates: "Point(82.919284 55.032383)", + locationLabel: "Q48025955", + }, + { + location: "http://www.wikidata.org/entity/Q47493754", + cordinates: "Point(36.140985 53.803867)", + locationLabel: "Q47493754", + }, + { + location: "http://www.wikidata.org/entity/Q4504368", + cordinates: "Point(49.10833333 55.78638889)", + locationLabel: "Q4504368", + }, + { + location: "http://www.wikidata.org/entity/Q4504251", + cordinates: "Point(37.60008216 55.75340744)", + locationLabel: "Q4504251", + }, + { + location: "http://www.wikidata.org/entity/Q4503226", + cordinates: "Point(37.684596061 55.605791562)", + locationLabel: "Q4503226", + }, + { + location: "http://www.wikidata.org/entity/Q4500873", + cordinates: "Point(37.638027 55.865268)", + locationLabel: "Q4500873", + }, + { + location: "http://www.wikidata.org/entity/Q4494357", + cordinates: "Point(135.050624 48.476538)", + locationLabel: "Q4494357", + }, + { + location: "http://www.wikidata.org/entity/Q4466797", + cordinates: "Point(55.9439 54.7275)", + locationLabel: "Q4466797", + }, + { + location: "http://www.wikidata.org/entity/Q4463239", + cordinates: "Point(30.25976 59.869915)", + locationLabel: "Q4463239", + }, + { + location: "http://www.wikidata.org/entity/Q4461046", + cordinates: "Point(37.618083333 55.761255555)", + locationLabel: "Q4461046", + }, + { + location: "http://www.wikidata.org/entity/Q4444548", + cordinates: "Point(37.70592 55.759732)", + locationLabel: "Q4444548", + }, + { + location: "http://www.wikidata.org/entity/Q44297268", + cordinates: "Point(37.713066 55.792545)", + locationLabel: "Q44297268", + }, + { + location: "http://www.wikidata.org/entity/Q4416243", + cordinates: "Point(49.115 55.783055555)", + locationLabel: "Q4416243", + }, + { + location: "http://www.wikidata.org/entity/Q4402921", + cordinates: "Point(30.307344 59.905177)", + locationLabel: "Q4402921", + }, + { + location: "http://www.wikidata.org/entity/Q4399162", + cordinates: "Point(37.32 55.76833333)", + locationLabel: "Q4399162", + }, + { + location: "http://www.wikidata.org/entity/Q4396409", + cordinates: "Point(26.924592 55.889761)", + locationLabel: "Q4396409", + }, + { + location: "http://www.wikidata.org/entity/Q4385798", + cordinates: "Point(43.079689 44.035907)", + locationLabel: "Q4385798", + }, + { + location: "http://www.wikidata.org/entity/Q4377894", + cordinates: "Point(49.208888888 55.748333333)", + locationLabel: "Q4377894", + }, + { + location: "http://www.wikidata.org/entity/Q4374426", + cordinates: "Point(37.39611111 55.74222222)", + locationLabel: "Q4374426", + }, + { + location: "http://www.wikidata.org/entity/Q43631498", + cordinates: "Point(44.023806 42.824341)", + locationLabel: "Q43631498", + }, + { + location: "http://www.wikidata.org/entity/Q43568084", + cordinates: "Point(46.006256 51.521106)", + locationLabel: "Q43568084", + }, + { + location: "http://www.wikidata.org/entity/Q4351675", + cordinates: "Point(37.774722222 55.743333333)", + locationLabel: "Q4351675", + }, + { + location: "http://www.wikidata.org/entity/Q4346582", + cordinates: "Point(37.622213888 55.762313888)", + locationLabel: "Q4346582", + }, + { + location: "http://www.wikidata.org/entity/Q4344239", + cordinates: "Point(135.051 48.4733)", + locationLabel: "Q4344239", + }, + { + location: "http://www.wikidata.org/entity/Q4338211", + cordinates: "Point(37.59022222 55.75883333)", + locationLabel: "Q4338211", + }, + { + location: "http://www.wikidata.org/entity/Q4333563", + cordinates: "Point(33.4836245 69.2233071)", + locationLabel: "Q4333563", + }, + { + location: "http://www.wikidata.org/entity/Q4331491", + cordinates: "Point(30.720551 46.493639)", + locationLabel: "Q4331491", + }, + { + location: "http://www.wikidata.org/entity/Q43114610", + cordinates: "Point(40.977806 56.995889)", + locationLabel: "Q43114610", + }, + { + location: "http://www.wikidata.org/entity/Q4309599", + cordinates: "Point(37.655555555 55.828888888)", + locationLabel: "Q4309599", + }, + { + location: "http://www.wikidata.org/entity/Q4306290", + cordinates: "Point(39.920366666 43.420761111)", + locationLabel: "Q4306290", + }, + { + location: "http://www.wikidata.org/entity/Q4306098", + cordinates: "Point(135.013025 48.540563)", + locationLabel: "Q4306098", + }, + { + location: "http://www.wikidata.org/entity/Q4304273", + cordinates: "Point(49.07972222 55.82805556)", + locationLabel: "Q4304273", + }, + { + location: "http://www.wikidata.org/entity/Q4290232", + cordinates: "Point(68.067143 53.103065)", + locationLabel: "Q4290232", + }, + { + location: "http://www.wikidata.org/entity/Q4289957", + cordinates: "Point(60.592365 56.847833)", + locationLabel: "Q4289957", + }, + { + location: "http://www.wikidata.org/entity/Q4284831", + cordinates: "Point(30.280277777 59.923416666)", + locationLabel: "Q4284831", + }, + { + location: "http://www.wikidata.org/entity/Q42768422", + cordinates: "Point(71.433333333 51.133333333)", + locationLabel: "Q42768422", + }, + { + location: "http://www.wikidata.org/entity/Q4273755", + cordinates: "Point(60.36389 41.37833)", + locationLabel: "Q4273755", + }, + { + location: "http://www.wikidata.org/entity/Q4273749", + cordinates: "Point(67.843 48.367472222)", + locationLabel: "Q4273749", + }, + { + location: "http://www.wikidata.org/entity/Q4273746", + cordinates: "Point(67.548333333 43.514722222)", + locationLabel: "Q4273746", + }, + { + location: "http://www.wikidata.org/entity/Q4264199", + cordinates: "Point(37.585972 55.850678)", + locationLabel: "Q4264199", + }, + { + location: "http://www.wikidata.org/entity/Q4240176", + cordinates: "Point(37.61555556 55.75138889)", + locationLabel: "Q4240176", + }, + { + location: "http://www.wikidata.org/entity/Q4231896", + cordinates: "Point(60.612361111 56.842083333)", + locationLabel: "Q4231896", + }, + { + location: "http://www.wikidata.org/entity/Q42303155", + cordinates: "Point(37.5966 55.7512)", + locationLabel: "Q42303155", + }, + { + location: "http://www.wikidata.org/entity/Q4189959", + cordinates: "Point(37.621666666 55.761388888)", + locationLabel: "Q4189959", + }, + { + location: "http://www.wikidata.org/entity/Q4189945", + cordinates: "Point(26.516587 55.866612)", + locationLabel: "Q4189945", + }, + { + location: "http://www.wikidata.org/entity/Q4178907", + cordinates: "Point(20.49069444 54.7102)", + locationLabel: "Q4178907", + }, + { + location: "http://www.wikidata.org/entity/Q4167355", + cordinates: "Point(37.625733333 55.762102777)", + locationLabel: "Q4167355", + }, + { + location: "http://www.wikidata.org/entity/Q4167353", + cordinates: "Point(37.623702777 55.761416666)", + locationLabel: "Q4167353", + }, + { + location: "http://www.wikidata.org/entity/Q4167350", + cordinates: "Point(37.627591666 55.762386111)", + locationLabel: "Q4167350", + }, + { + location: "http://www.wikidata.org/entity/Q4167348", + cordinates: "Point(37.6206 55.761586111)", + locationLabel: "Q4167348", + }, + { + location: "http://www.wikidata.org/entity/Q4167343", + cordinates: "Point(37.623294444 55.761988888)", + locationLabel: "Q4167343", + }, + { + location: "http://www.wikidata.org/entity/Q4156398", + cordinates: "Point(25.889351 43.181161)", + locationLabel: "Q4156398", + }, + { + location: "http://www.wikidata.org/entity/Q4155910", + cordinates: "Point(37.720277 55.741779)", + locationLabel: "Q4155910", + }, + { + location: "http://www.wikidata.org/entity/Q4113396", + cordinates: "Point(31.27555556 58.5225)", + locationLabel: "Q4113396", + }, + { + location: "http://www.wikidata.org/entity/Q4110678", + cordinates: "Point(39.731465 43.580811)", + locationLabel: "Q4110678", + }, + { + location: "http://www.wikidata.org/entity/Q4059340", + cordinates: "Point(37.946628 55.774355)", + locationLabel: "Q4059340", + }, + { + location: "http://www.wikidata.org/entity/Q4038941", + cordinates: "Point(37.664903 55.755557)", + locationLabel: "Q4038941", + }, + { + location: "http://www.wikidata.org/entity/Q39085181", + cordinates: "Point(41.546049 46.475754)", + locationLabel: "Q39085181", + }, + { + location: "http://www.wikidata.org/entity/Q39085071", + cordinates: "Point(37.69169235 55.75807305)", + locationLabel: "Q39085071", + }, + { + location: "http://www.wikidata.org/entity/Q39083365", + cordinates: "Point(37.594944 55.73875)", + locationLabel: "Q39083365", + }, + { + location: "http://www.wikidata.org/entity/Q39083202", + cordinates: "Point(37.59264411 55.7445002)", + locationLabel: "Q39083202", + }, + { + location: "http://www.wikidata.org/entity/Q39082555", + cordinates: "Point(47.433389 48.77142)", + locationLabel: "Q39082555", + }, + { + location: "http://www.wikidata.org/entity/Q33308516", + cordinates: "Point(14.274812555 53.918664512)", + locationLabel: "Q33308516", + }, + { + location: "http://www.wikidata.org/entity/Q30963534", + cordinates: "Point(31.2921651 51.4966152)", + locationLabel: "Q30963534", + }, + { + location: "http://www.wikidata.org/entity/Q30890940", + cordinates: "Point(38.51542 55.0307)", + locationLabel: "Q30890940", + }, + { + location: "http://www.wikidata.org/entity/Q30890761", + cordinates: "Point(41.303086 46.092023)", + locationLabel: "Q30890761", + }, + { + location: "http://www.wikidata.org/entity/Q30890625", + cordinates: "Point(38.931944444 47.213333333)", + locationLabel: "Q30890625", + }, + { + location: "http://www.wikidata.org/entity/Q30890190", + cordinates: "Point(37.62278 55.76056)", + locationLabel: "Q30890190", + }, + { + location: "http://www.wikidata.org/entity/Q30890112", + cordinates: "Point(21.903091 55.083394)", + locationLabel: "Q30890112", + }, + { + location: "http://www.wikidata.org/entity/Q30890104", + cordinates: "Point(21.892147 55.081294)", + locationLabel: "Q30890104", + }, + { + location: "http://www.wikidata.org/entity/Q30889644", + cordinates: "Point(43.580538 43.458424)", + locationLabel: "Q30889644", + }, + { + location: "http://www.wikidata.org/entity/Q30888217", + cordinates: "Point(53.007109 67.641336)", + locationLabel: "Q30888217", + }, + { + location: "http://www.wikidata.org/entity/Q30879113", + cordinates: "Point(37.50833 55.60833)", + locationLabel: "Q30879113", + }, + { + location: "http://www.wikidata.org/entity/Q30637864", + cordinates: "Point(49.549602 55.401681)", + locationLabel: "Q30637864", + }, + { + location: "http://www.wikidata.org/entity/Q30531382", + cordinates: "Point(59.67069 55.13355)", + locationLabel: "Q30531382", + }, + { + location: "http://www.wikidata.org/entity/Q30309559", + cordinates: "Point(40.103647 47.412196)", + locationLabel: "Q30309559", + }, + { + location: "http://www.wikidata.org/entity/Q29884165", + cordinates: "Point(37.596174 55.760717)", + locationLabel: "Q29884165", + }, + { + location: "http://www.wikidata.org/entity/Q29534821", + cordinates: "Point(57.160521 65.115563)", + locationLabel: "Q29534821", + }, + { + location: "http://www.wikidata.org/entity/Q29528885", + cordinates: "Point(41.559188 48.7734)", + locationLabel: "Q29528885", + }, + { + location: "http://www.wikidata.org/entity/Q29514950", + cordinates: "Point(39.710072 47.219508)", + locationLabel: "Q29514950", + }, + { + location: "http://www.wikidata.org/entity/Q29508746", + cordinates: "Point(40.296666666 47.732222222)", + locationLabel: "Q29508746", + }, + { + location: "http://www.wikidata.org/entity/Q29479814", + cordinates: "Point(39.715049 47.217433)", + locationLabel: "Q29479814", + }, + { + location: "http://www.wikidata.org/entity/Q29479211", + cordinates: "Point(39.729745 47.224936)", + locationLabel: "Q29479211", + }, + { + location: "http://www.wikidata.org/entity/Q29471607", + cordinates: "Point(39.792374 47.24023)", + locationLabel: "Q29471607", + }, + { + location: "http://www.wikidata.org/entity/Q29401765", + cordinates: "Point(40.25 48.315)", + locationLabel: "Q29401765", + }, + { + location: "http://www.wikidata.org/entity/Q29389279", + cordinates: "Point(50.08338 53.18366)", + locationLabel: "Q29389279", + }, + { + location: "http://www.wikidata.org/entity/Q29389265", + cordinates: "Point(39.733862 47.226959)", + locationLabel: "Q29389265", + }, + { + location: "http://www.wikidata.org/entity/Q29389176", + cordinates: "Point(39.727607 47.224911)", + locationLabel: "Q29389176", + }, + { + location: "http://www.wikidata.org/entity/Q29366917", + cordinates: "Point(39.729166666 47.228888888)", + locationLabel: "Q29366917", + }, + { + location: "http://www.wikidata.org/entity/Q29366434", + cordinates: "Point(40.810314 47.517028)", + locationLabel: "Q29366434", + }, + { + location: "http://www.wikidata.org/entity/Q29169246", + cordinates: "Point(40.103888888 47.415833333)", + locationLabel: "Q29169246", + }, + { + location: "http://www.wikidata.org/entity/Q29168463", + cordinates: "Point(40.1154 47.41626)", + locationLabel: "Q29168463", + }, + { + location: "http://www.wikidata.org/entity/Q29165605", + cordinates: "Point(38.921666 47.217604)", + locationLabel: "Q29165605", + }, + { + location: "http://www.wikidata.org/entity/Q29165518", + cordinates: "Point(37.638027 55.760555)", + locationLabel: "Q29165518", + }, + { + location: "http://www.wikidata.org/entity/Q29109874", + cordinates: "Point(42.032611 49.612348)", + locationLabel: "Q29109874", + }, + { + location: "http://www.wikidata.org/entity/Q29064143", + cordinates: "Point(40.083499 47.417694)", + locationLabel: "Q29064143", + }, + { + location: "http://www.wikidata.org/entity/Q29049022", + cordinates: "Point(39.753799 47.228854)", + locationLabel: "Q29049022", + }, + { + location: "http://www.wikidata.org/entity/Q29043430", + cordinates: "Point(41.827194 48.352873)", + locationLabel: "Q29043430", + }, + { + location: "http://www.wikidata.org/entity/Q29043422", + cordinates: "Point(40.097031 47.416176)", + locationLabel: "Q29043422", + }, + { + location: "http://www.wikidata.org/entity/Q29043420", + cordinates: "Point(40.091344 47.417394)", + locationLabel: "Q29043420", + }, + { + location: "http://www.wikidata.org/entity/Q29043417", + cordinates: "Point(39.743888888 47.137222222)", + locationLabel: "Q29043417", + }, + { + location: "http://www.wikidata.org/entity/Q29043320", + cordinates: "Point(40.09226 47.41826)", + locationLabel: "Q29043320", + }, + { + location: "http://www.wikidata.org/entity/Q29043288", + cordinates: "Point(40.088532 47.416339)", + locationLabel: "Q29043288", + }, + { + location: "http://www.wikidata.org/entity/Q29042945", + cordinates: "Point(39.236491 47.192051)", + locationLabel: "Q29042945", + }, + { + location: "http://www.wikidata.org/entity/Q29042945", + cordinates: "Point(39.703508 47.208588)", + locationLabel: "Q29042945", + }, + { + location: "http://www.wikidata.org/entity/Q29039753", + cordinates: "Point(40.095441 47.416769)", + locationLabel: "Q29039753", + }, + { + location: "http://www.wikidata.org/entity/Q29033219", + cordinates: "Point(38.938055555 47.215)", + locationLabel: "Q29033219", + }, + { + location: "http://www.wikidata.org/entity/Q29017252", + cordinates: "Point(40.11323 47.409198)", + locationLabel: "Q29017252", + }, + { + location: "http://www.wikidata.org/entity/Q29017227", + cordinates: "Point(40.102986 47.413998)", + locationLabel: "Q29017227", + }, + { + location: "http://www.wikidata.org/entity/Q29016247", + cordinates: "Point(38.921972 47.219668)", + locationLabel: "Q29016247", + }, + { + location: "http://www.wikidata.org/entity/Q29006928", + cordinates: "Point(38.932086 47.214923)", + locationLabel: "Q29006928", + }, + { + location: "http://www.wikidata.org/entity/Q29005600", + cordinates: "Point(40.098207 47.415376)", + locationLabel: "Q29005600", + }, + { + location: "http://www.wikidata.org/entity/Q28975943", + cordinates: "Point(38.935069 47.213534)", + locationLabel: "Q28975943", + }, + { + location: "http://www.wikidata.org/entity/Q28975940", + cordinates: "Point(38.929739 47.213373)", + locationLabel: "Q28975940", + }, + { + location: "http://www.wikidata.org/entity/Q28974097", + cordinates: "Point(38.937818 47.211873)", + locationLabel: "Q28974097", + }, + { + location: "http://www.wikidata.org/entity/Q28973979", + cordinates: "Point(38.940306 47.210192)", + locationLabel: "Q28973979", + }, + { + location: "http://www.wikidata.org/entity/Q28967352", + cordinates: "Point(40.667544 47.542283)", + locationLabel: "Q28967352", + }, + { + location: "http://www.wikidata.org/entity/Q28966220", + cordinates: "Point(38.941205 47.209163)", + locationLabel: "Q28966220", + }, + { + location: "http://www.wikidata.org/entity/Q28954350", + cordinates: "Point(38.93037 47.214366)", + locationLabel: "Q28954350", + }, + { + location: "http://www.wikidata.org/entity/Q28953778", + cordinates: "Point(38.940555555 47.21)", + locationLabel: "Q28953778", + }, + { + location: "http://www.wikidata.org/entity/Q28951699", + cordinates: "Point(38.942057 47.208912)", + locationLabel: "Q28951699", + }, + { + location: "http://www.wikidata.org/entity/Q28951251", + cordinates: "Point(38.94239 47.208759)", + locationLabel: "Q28951251", + }, + { + location: "http://www.wikidata.org/entity/Q28950287", + cordinates: "Point(38.938015 47.211563)", + locationLabel: "Q28950287", + }, + { + location: "http://www.wikidata.org/entity/Q28950252", + cordinates: "Point(38.942596 47.208606)", + locationLabel: "Q28950252", + }, + { + location: "http://www.wikidata.org/entity/Q28950012", + cordinates: "Point(38.929444444 47.214722222)", + locationLabel: "Q28950012", + }, + { + location: "http://www.wikidata.org/entity/Q28944245", + cordinates: "Point(41.095 47.575833333)", + locationLabel: "Q28944245", + }, + { + location: "http://www.wikidata.org/entity/Q28944215", + cordinates: "Point(41.097222222 47.574722222)", + locationLabel: "Q28944215", + }, + { + location: "http://www.wikidata.org/entity/Q28943754", + cordinates: "Point(41.097222222 47.574722222)", + locationLabel: "Q28943754", + }, + { + location: "http://www.wikidata.org/entity/Q28938114", + cordinates: "Point(38.931466 47.208931)", + locationLabel: "Q28938114", + }, + { + location: "http://www.wikidata.org/entity/Q28937415", + cordinates: "Point(38.929722222 47.211666666)", + locationLabel: "Q28937415", + }, + { + location: "http://www.wikidata.org/entity/Q28923942", + cordinates: "Point(38.928055555 47.217222222)", + locationLabel: "Q28923942", + }, + { + location: "http://www.wikidata.org/entity/Q28921359", + cordinates: "Point(38.923055555 47.209444444)", + locationLabel: "Q28921359", + }, + { + location: "http://www.wikidata.org/entity/Q28919636", + cordinates: "Point(40.095 47.412222222)", + locationLabel: "Q28919636", + }, + { + location: "http://www.wikidata.org/entity/Q28913224", + cordinates: "Point(38.933888888 47.214444444)", + locationLabel: "Q28913224", + }, + { + location: "http://www.wikidata.org/entity/Q28910172", + cordinates: "Point(42.1966 47.5172)", + locationLabel: "Q28910172", + }, + { + location: "http://www.wikidata.org/entity/Q28884033", + cordinates: "Point(38.944166666 47.2075)", + locationLabel: "Q28884033", + }, + { + location: "http://www.wikidata.org/entity/Q28871991", + cordinates: "Point(38.928888888 47.215833333)", + locationLabel: "Q28871991", + }, + { + location: "http://www.wikidata.org/entity/Q28871242", + cordinates: "Point(39.7444 47.2293)", + locationLabel: "Q28871242", + }, + { + location: "http://www.wikidata.org/entity/Q28869852", + cordinates: "Point(38.932506766 47.215152851)", + locationLabel: "Q28869852", + }, + { + location: "http://www.wikidata.org/entity/Q28866275", + cordinates: "Point(39.460686 47.12548)", + locationLabel: "Q28866275", + }, + { + location: "http://www.wikidata.org/entity/Q28865028", + cordinates: "Point(40.10247 47.413716)", + locationLabel: "Q28865028", + }, + { + location: "http://www.wikidata.org/entity/Q28860830", + cordinates: "Point(38.930555555 47.215833333)", + locationLabel: "Q28860830", + }, + { + location: "http://www.wikidata.org/entity/Q28860592", + cordinates: "Point(38.929444444 47.216666666)", + locationLabel: "Q28860592", + }, + { + location: "http://www.wikidata.org/entity/Q28860018", + cordinates: "Point(38.940555555 47.208333333)", + locationLabel: "Q28860018", + }, + { + location: "http://www.wikidata.org/entity/Q28859441", + cordinates: "Point(38.941111111 47.208055555)", + locationLabel: "Q28859441", + }, + { + location: "http://www.wikidata.org/entity/Q28859178", + cordinates: "Point(42.183333333 47.512777777)", + locationLabel: "Q28859178", + }, + { + location: "http://www.wikidata.org/entity/Q28858102", + cordinates: "Point(38.928611111 47.216944444)", + locationLabel: "Q28858102", + }, + { + location: "http://www.wikidata.org/entity/Q28843702", + cordinates: "Point(40.10657 47.40951)", + locationLabel: "Q28843702", + }, + { + location: "http://www.wikidata.org/entity/Q28841551", + cordinates: "Point(39.767555 47.232512)", + locationLabel: "Q28841551", + }, + { + location: "http://www.wikidata.org/entity/Q28823683", + cordinates: "Point(38.935833333 47.210833333)", + locationLabel: "Q28823683", + }, + { + location: "http://www.wikidata.org/entity/Q28819947", + cordinates: "Point(38.928333333 47.208611111)", + locationLabel: "Q28819947", + }, + { + location: "http://www.wikidata.org/entity/Q28819938", + cordinates: "Point(39.711666666 47.223888888)", + locationLabel: "Q28819938", + }, + { + location: "http://www.wikidata.org/entity/Q28807086", + cordinates: "Point(38.929722222 47.210833333)", + locationLabel: "Q28807086", + }, + { + location: "http://www.wikidata.org/entity/Q28803854", + cordinates: "Point(39.712586111 47.221547222)", + locationLabel: "Q28803854", + }, + { + location: "http://www.wikidata.org/entity/Q28735431", + cordinates: "Point(39.499769 47.28431)", + locationLabel: "Q28735431", + }, + { + location: "http://www.wikidata.org/entity/Q28669055", + cordinates: "Point(66.98736 39.658408)", + locationLabel: "Q28669055", + }, + { + location: "http://www.wikidata.org/entity/Q28667928", + cordinates: "Point(39.855277777 47.433333333)", + locationLabel: "Q28667928", + }, + { + location: "http://www.wikidata.org/entity/Q28667860", + cordinates: "Point(40.104722222 47.411388888)", + locationLabel: "Q28667860", + }, + { + location: "http://www.wikidata.org/entity/Q28667682", + cordinates: "Point(131.891842 43.114009)", + locationLabel: "Q28667682", + }, + { + location: "http://www.wikidata.org/entity/Q28667414", + cordinates: "Point(35.422336 64.251189)", + locationLabel: "Q28667414", + }, + { + location: "http://www.wikidata.org/entity/Q28667332", + cordinates: "Point(45.694731 43.329462)", + locationLabel: "Q28667332", + }, + { + location: "http://www.wikidata.org/entity/Q28667287", + cordinates: "Point(38.942198753 47.210895961)", + locationLabel: "Q28667287", + }, + { + location: "http://www.wikidata.org/entity/Q28667203", + cordinates: "Point(37.608261111 55.753880555)", + locationLabel: "Q28667203", + }, + { + location: "http://www.wikidata.org/entity/Q28667156", + cordinates: "Point(39.7175 47.218611111)", + locationLabel: "Q28667156", + }, + { + location: "http://www.wikidata.org/entity/Q28666444", + cordinates: "Point(60.52778 56.81389)", + locationLabel: "Q28666444", + }, + { + location: "http://www.wikidata.org/entity/Q28666310", + cordinates: "Point(22.032138888 54.590111111)", + locationLabel: "Q28666310", + }, + { + location: "http://www.wikidata.org/entity/Q28664375", + cordinates: "Point(37.603888888 55.723055555)", + locationLabel: "Q28664375", + }, + { + location: "http://www.wikidata.org/entity/Q28657072", + cordinates: "Point(38.933953 47.212615)", + locationLabel: "Q28657072", + }, + { + location: "http://www.wikidata.org/entity/Q28601190", + cordinates: "Point(40.038973 47.237787)", + locationLabel: "Q28601190", + }, + { + location: "http://www.wikidata.org/entity/Q28531223", + cordinates: "Point(37.670357 55.776674)", + locationLabel: "Q28531223", + }, + { + location: "http://www.wikidata.org/entity/Q28529361", + cordinates: "Point(37.636536 55.73403)", + locationLabel: "Q28529361", + }, + { + location: "http://www.wikidata.org/entity/Q28525237", + cordinates: "Point(40.113337 47.412723)", + locationLabel: "Q28525237", + }, + { + location: "http://www.wikidata.org/entity/Q28521588", + cordinates: "Point(40.107777777 47.413611111)", + locationLabel: "Q28521588", + }, + { + location: "http://www.wikidata.org/entity/Q28491896", + cordinates: "Point(38.928125 47.217286)", + locationLabel: "Q28491896", + }, + { + location: "http://www.wikidata.org/entity/Q28488442", + cordinates: "Point(40.67494 47.56154)", + locationLabel: "Q28488442", + }, + { + location: "http://www.wikidata.org/entity/Q28465748", + cordinates: "Point(37.572675 55.735474)", + locationLabel: "Q28465748", + }, + { + location: "http://www.wikidata.org/entity/Q28465120", + cordinates: "Point(38.938706 47.209605)", + locationLabel: "Q28465120", + }, + { + location: "http://www.wikidata.org/entity/Q28465099", + cordinates: "Point(39.713899 47.225328)", + locationLabel: "Q28465099", + }, + { + location: "http://www.wikidata.org/entity/Q28333888", + cordinates: "Point(39.7036 47.224)", + locationLabel: "Q28333888", + }, + { + location: "http://www.wikidata.org/entity/Q28274541", + cordinates: "Point(39.732278 47.223736)", + locationLabel: "Q28274541", + }, + { + location: "http://www.wikidata.org/entity/Q28151187", + cordinates: "Point(38.931612 47.214107)", + locationLabel: "Q28151187", + }, + { + location: "http://www.wikidata.org/entity/Q28122748", + cordinates: "Point(38.926724 47.211714)", + locationLabel: "Q28122748", + }, + { + location: "http://www.wikidata.org/entity/Q28056533", + cordinates: "Point(37.612 55.7553)", + locationLabel: "Q28056533", + }, + { + location: "http://www.wikidata.org/entity/Q27980558", + cordinates: "Point(61.09098 58.70473)", + locationLabel: "Q27980558", + }, + { + location: "http://www.wikidata.org/entity/Q27919557", + cordinates: "Point(25.033692 48.532856)", + locationLabel: "Q27919557", + }, + { + location: "http://www.wikidata.org/entity/Q26742866", + cordinates: "Point(30.249444444 59.893333333)", + locationLabel: "Q26742866", + }, + { + location: "http://www.wikidata.org/entity/Q26742853", + cordinates: "Point(30.229722222 59.882777777)", + locationLabel: "Q26742853", + }, + { + location: "http://www.wikidata.org/entity/Q25422206", + cordinates: "Point(33.965 44.836329)", + locationLabel: "Q25422206", + }, + { + location: "http://www.wikidata.org/entity/Q25421516", + cordinates: "Point(34.179166666 44.901666666)", + locationLabel: "Q25421516", + }, + { + location: "http://www.wikidata.org/entity/Q25395325", + cordinates: "Point(44.52882 48.71712)", + locationLabel: "Q25395325", + }, + { + location: "http://www.wikidata.org/entity/Q25394377", + cordinates: "Point(42.08889 58.475)", + locationLabel: "Q25394377", + }, + { + location: "http://www.wikidata.org/entity/Q25389879", + cordinates: "Point(26.405076 54.788852)", + locationLabel: "Q25389879", + }, + { + location: "http://www.wikidata.org/entity/Q24935124", + cordinates: "Point(60.375555555 57.566388888)", + locationLabel: "Q24935124", + }, + { + location: "http://www.wikidata.org/entity/Q24934148", + cordinates: "Point(39.709335 47.218504)", + locationLabel: "Q24934148", + }, + { + location: "http://www.wikidata.org/entity/Q24932622", + cordinates: "Point(37.04435 52.97012)", + locationLabel: "Q24932622", + }, + { + location: "http://www.wikidata.org/entity/Q2448005", + cordinates: "Point(20.506576 54.714956)", + locationLabel: "Q2448005", + }, + { + location: "http://www.wikidata.org/entity/Q23072130", + cordinates: "Point(20.184189 49.153141)", + locationLabel: "Q23072130", + }, + { + location: "http://www.wikidata.org/entity/Q21662387", + cordinates: "Point(43.796957 54.420532)", + locationLabel: "Q21662387", + }, + { + location: "http://www.wikidata.org/entity/Q21662200", + cordinates: "Point(135.67837 34.728663)", + locationLabel: "Q21662200", + }, + { + location: "http://www.wikidata.org/entity/Q21644849", + cordinates: "Point(37.6625 55.769722222)", + locationLabel: "Q21644849", + }, + { + location: "http://www.wikidata.org/entity/Q21644848", + cordinates: "Point(37.663611111 55.769166666)", + locationLabel: "Q21644848", + }, + { + location: "http://www.wikidata.org/entity/Q21644765", + cordinates: "Point(37.6183 55.73480023)", + locationLabel: "Q21644765", + }, + { + location: "http://www.wikidata.org/entity/Q21643397", + cordinates: "Point(82.9075 55.0441)", + locationLabel: "Q21643397", + }, + { + location: "http://www.wikidata.org/entity/Q21642011", + cordinates: "Point(37.639977 55.780256)", + locationLabel: "Q21642011", + }, + { + location: "http://www.wikidata.org/entity/Q21639069", + cordinates: "Point(37.65611 55.76889)", + locationLabel: "Q21639069", + }, + { + location: "http://www.wikidata.org/entity/Q21638989", + cordinates: "Point(37.592932 55.75731)", + locationLabel: "Q21638989", + }, + { + location: "http://www.wikidata.org/entity/Q21638202", + cordinates: "Point(37.661666666 55.769444444)", + locationLabel: "Q21638202", + }, + { + location: "http://www.wikidata.org/entity/Q21637042", + cordinates: "Point(37.62722 55.72528)", + locationLabel: "Q21637042", + }, + { + location: "http://www.wikidata.org/entity/Q21449332", + cordinates: "Point(118.749953 32.067273)", + locationLabel: "Q21449332", + }, + { + location: "http://www.wikidata.org/entity/Q21393932", + cordinates: "Point(37.632943 55.754047)", + locationLabel: "Q21393932", + }, + { + location: "http://www.wikidata.org/entity/Q21393803", + cordinates: "Point(37.63278 55.753282)", + locationLabel: "Q21393803", + }, + { + location: "http://www.wikidata.org/entity/Q21393634", + cordinates: "Point(37.625367 55.759398)", + locationLabel: "Q21393634", + }, + { + location: "http://www.wikidata.org/entity/Q21236604", + cordinates: "Point(104.280367 52.285336)", + locationLabel: "Q21236604", + }, + { + location: "http://www.wikidata.org/entity/Q21030229", + cordinates: "Point(73.388788 50.240022)", + locationLabel: "Q21030229", + }, + { + location: "http://www.wikidata.org/entity/Q21026889", + cordinates: "Point(37.605059 55.744258)", + locationLabel: "Q21026889", + }, + { + location: "http://www.wikidata.org/entity/Q21026878", + cordinates: "Point(37.60614 55.75057)", + locationLabel: "Q21026878", + }, + { + location: "http://www.wikidata.org/entity/Q21026874", + cordinates: "Point(37.628707 55.749988)", + locationLabel: "Q21026874", + }, + { + location: "http://www.wikidata.org/entity/Q21026869", + cordinates: "Point(37.632335 55.750567)", + locationLabel: "Q21026869", + }, + { + location: "http://www.wikidata.org/entity/Q21011887", + cordinates: "Point(37.60071098 55.7462433)", + locationLabel: "Q21011887", + }, + { + location: "http://www.wikidata.org/entity/Q20650571", + cordinates: "Point(7.1541883 53.7065601)", + locationLabel: "Q20650571", + }, + { + location: "http://www.wikidata.org/entity/Q20536502", + cordinates: "Point(58.616791 43.276142)", + locationLabel: "Q20536502", + }, + { + location: "http://www.wikidata.org/entity/Q20536390", + cordinates: "Point(64.159665 39.845045)", + locationLabel: "Q20536390", + }, + { + location: "http://www.wikidata.org/entity/Q20502244", + cordinates: "Point(34.858194444 31.322138888)", + locationLabel: "Q20502244", + }, + { + location: "http://www.wikidata.org/entity/Q20484345", + cordinates: "Point(51.372098 51.200359)", + locationLabel: "Q20484345", + }, + { + location: "http://www.wikidata.org/entity/Q20235349", + cordinates: "Point(37.629735 55.760353)", + locationLabel: "Q20235349", + }, + { + location: "http://www.wikidata.org/entity/Q20083398", + cordinates: "Point(30.536566 50.445749)", + locationLabel: "Q20083398", + }, + { + location: "http://www.wikidata.org/entity/Q20054943", + cordinates: "Point(37.642222222 55.756111111)", + locationLabel: "Q20054943", + }, + { + location: "http://www.wikidata.org/entity/Q20054942", + cordinates: "Point(37.659166666 55.741111111)", + locationLabel: "Q20054942", + }, + { + location: "http://www.wikidata.org/entity/Q20054941", + cordinates: "Point(37.586944444 55.746944444)", + locationLabel: "Q20054941", + }, + { + location: "http://www.wikidata.org/entity/Q20054938", + cordinates: "Point(37.638611111 55.761666666)", + locationLabel: "Q20054938", + }, + { + location: "http://www.wikidata.org/entity/Q20032016", + cordinates: "Point(37.604166666 55.748888888)", + locationLabel: "Q20032016", + }, + { + location: "http://www.wikidata.org/entity/Q20032002", + cordinates: "Point(37.587842 55.743817)", + locationLabel: "Q20032002", + }, + { + location: "http://www.wikidata.org/entity/Q20032001", + cordinates: "Point(37.637696 55.761245)", + locationLabel: "Q20032001", + }, + { + location: "http://www.wikidata.org/entity/Q20018537", + cordinates: "Point(37.579722222 55.735277777)", + locationLabel: "Q20018537", + }, + { + location: "http://www.wikidata.org/entity/Q20018534", + cordinates: "Point(37.596944444 55.744444444)", + locationLabel: "Q20018534", + }, + { + location: "http://www.wikidata.org/entity/Q20018530", + cordinates: "Point(37.644444444 55.746388888)", + locationLabel: "Q20018530", + }, + { + location: "http://www.wikidata.org/entity/Q20018482", + cordinates: "Point(37.588888888 55.749444444)", + locationLabel: "Q20018482", + }, + { + location: "http://www.wikidata.org/entity/Q20018465", + cordinates: "Point(38.9222 47.2106)", + locationLabel: "Q20018465", + }, + { + location: "http://www.wikidata.org/entity/Q19916406", + cordinates: "Point(41.1184 44.9987)", + locationLabel: "Q19916406", + }, + { + location: "http://www.wikidata.org/entity/Q19915833", + cordinates: "Point(37.640277777 55.759972222)", + locationLabel: "Q19915833", + }, + { + location: "http://www.wikidata.org/entity/Q19907949", + cordinates: "Point(38.920694444 47.220416666)", + locationLabel: "Q19907949", + }, + { + location: "http://www.wikidata.org/entity/Q19857385", + cordinates: "Point(37.649194444 55.762833333)", + locationLabel: "Q19857385", + }, + { + location: "http://www.wikidata.org/entity/Q19844064", + cordinates: "Point(34.199166666 44.518611111)", + locationLabel: "Q19844064", + }, + { + location: "http://www.wikidata.org/entity/Q19819697", + cordinates: "Point(37.592777777 55.746111111)", + locationLabel: "Q19819697", + }, + { + location: "http://www.wikidata.org/entity/Q19776351", + cordinates: "Point(37.610555555 55.763055555)", + locationLabel: "Q19776351", + }, + { + location: "http://www.wikidata.org/entity/Q19754209", + cordinates: "Point(37.662242 55.766366)", + locationLabel: "Q19754209", + }, + { + location: "http://www.wikidata.org/entity/Q19615849", + cordinates: "Point(39.7026 47.2256)", + locationLabel: "Q19615849", + }, + { + location: "http://www.wikidata.org/entity/Q1900309", + cordinates: "Point(69.007026 60.98016)", + locationLabel: "Q1900309", + }, + { + location: "http://www.wikidata.org/entity/Q18755243", + cordinates: "Point(37.60725 55.752916666)", + locationLabel: "Q18755243", + }, + { + location: "http://www.wikidata.org/entity/Q18408098", + cordinates: "Point(21.888611111 55.078055555)", + locationLabel: "Q18408098", + }, + { + location: "http://www.wikidata.org/entity/Q18407470", + cordinates: "Point(21.878 55.075)", + locationLabel: "Q18407470", + }, + { + location: "http://www.wikidata.org/entity/Q18407464", + cordinates: "Point(21.889444444 55.083055555)", + locationLabel: "Q18407464", + }, + { + location: "http://www.wikidata.org/entity/Q18401988", + cordinates: "Point(21.885 55.0781)", + locationLabel: "Q18401988", + }, + { + location: "http://www.wikidata.org/entity/Q18401244", + cordinates: "Point(21.888939 55.081443)", + locationLabel: "Q18401244", + }, + { + location: "http://www.wikidata.org/entity/Q18400982", + cordinates: "Point(21.888563 55.082645)", + locationLabel: "Q18400982", + }, + { + location: "http://www.wikidata.org/entity/Q18400034", + cordinates: "Point(38.931666666 47.246388888)", + locationLabel: "Q18400034", + }, + { + location: "http://www.wikidata.org/entity/Q18242372", + cordinates: "Point(21.890958 55.081173)", + locationLabel: "Q18242372", + }, + { + location: "http://www.wikidata.org/entity/Q18199403", + cordinates: "Point(8.76242 55.32972)", + locationLabel: "Q18199403", + }, + { + location: "http://www.wikidata.org/entity/Q18170499", + cordinates: "Point(69.757777777 42.305833333)", + locationLabel: "Q18170499", + }, + { + location: "http://www.wikidata.org/entity/Q1796129", + cordinates: "Point(21.8911 55.0795)", + locationLabel: "Q1796129", + }, + { + location: "http://www.wikidata.org/entity/Q17462423", + cordinates: "Point(21.881388888 55.077777777)", + locationLabel: "Q17462423", + }, + { + location: "http://www.wikidata.org/entity/Q17462269", + cordinates: "Point(21.902777777 55.083055555)", + locationLabel: "Q17462269", + }, + { + location: "http://www.wikidata.org/entity/Q17210134", + cordinates: "Point(135.491388888 35.032083333)", + locationLabel: "Q17210134", + }, + { + location: "http://www.wikidata.org/entity/Q16714631", + cordinates: "Point(37.606144 55.743156)", + locationLabel: "Q16714631", + }, + { + location: "http://www.wikidata.org/entity/Q16708197", + cordinates: "Point(39.71588 47.22165)", + locationLabel: "Q16708197", + }, + { + location: "http://www.wikidata.org/entity/Q16703727", + cordinates: "Point(48.476273 53.157046)", + locationLabel: "Q16703727", + }, + { + location: "http://www.wikidata.org/entity/Q16702612", + cordinates: "Point(37.83527778 55.79277778)", + locationLabel: "Q16702612", + }, + { + location: "http://www.wikidata.org/entity/Q16687254", + cordinates: "Point(26.497654 55.882981)", + locationLabel: "Q16687254", + }, + { + location: "http://www.wikidata.org/entity/Q16684362", + cordinates: "Point(37.598888888 55.740833333)", + locationLabel: "Q16684362", + }, + { + location: "http://www.wikidata.org/entity/Q16684270", + cordinates: "Point(38.830555555 47.270555555)", + locationLabel: "Q16684270", + }, + { + location: "http://www.wikidata.org/entity/Q16683696", + cordinates: "Point(37.708334 55.784893)", + locationLabel: "Q16683696", + }, + { + location: "http://www.wikidata.org/entity/Q16675033", + cordinates: "Point(39.78909 43.545601)", + locationLabel: "Q16675033", + }, + { + location: "http://www.wikidata.org/entity/Q16665645", + cordinates: "Point(39.10722222 53.46555556)", + locationLabel: "Q16665645", + }, + { + location: "http://www.wikidata.org/entity/Q16653746", + cordinates: "Point(39.76476111 47.22906944)", + locationLabel: "Q16653746", + }, + { + location: "http://www.wikidata.org/entity/Q16653287", + cordinates: "Point(38.870694 54.757028)", + locationLabel: "Q16653287", + }, + { + location: "http://www.wikidata.org/entity/Q16533491", + cordinates: "Point(26.497962 55.887575)", + locationLabel: "Q16533491", + }, + { + location: "http://www.wikidata.org/entity/Q16488128", + cordinates: "Point(39.715277777 47.22975)", + locationLabel: "Q16488128", + }, + { + location: "http://www.wikidata.org/entity/Q16486427", + cordinates: "Point(37.59143 55.779862)", + locationLabel: "Q16486427", + }, + { + location: "http://www.wikidata.org/entity/Q16433519", + cordinates: "Point(71.416311 51.165219)", + locationLabel: "Q16433519", + }, + { + location: "http://www.wikidata.org/entity/Q16431774", + cordinates: "Point(77.471636 43.970076)", + locationLabel: "Q16431774", + }, + { + location: "http://www.wikidata.org/entity/Q16270982", + cordinates: "Point(39.010674 47.316691)", + locationLabel: "Q16270982", + }, + { + location: "http://www.wikidata.org/entity/Q15211078", + cordinates: "Point(23.830029 53.689196)", + locationLabel: "Q15211078", + }, + { + location: "http://www.wikidata.org/entity/Q13668700", + cordinates: "Point(56.82717 60.608896)", + locationLabel: "Q13668700", + }, + { + location: "http://www.wikidata.org/entity/Q12576099", + cordinates: "Point(69.589197 41.75304)", + locationLabel: "Q12576099", + }, + { + location: "http://www.wikidata.org/entity/Q12575551", + cordinates: "Point(79.705277777 47.2925)", + locationLabel: "Q12575551", + }, + { + location: "http://www.wikidata.org/entity/Q12575359", + cordinates: "Point(74.383518 43.227234)", + locationLabel: "Q12575359", + }, + { + location: "http://www.wikidata.org/entity/Q12550960", + cordinates: "Point(66.961111 44.156667)", + locationLabel: "Q12550960", + }, + { + location: "http://www.wikidata.org/entity/Q12545896", + cordinates: "Point(67.843723 48.385363)", + locationLabel: "Q12545896", + }, + { + location: "http://www.wikidata.org/entity/Q12537679", + cordinates: "Point(51.373645 51.192652)", + locationLabel: "Q12537679", + }, + { + location: "http://www.wikidata.org/entity/Q12537159", + cordinates: "Point(71.756663 40.90114)", + locationLabel: "Q12537159", + }, + { + location: "http://www.wikidata.org/entity/Q12534102", + visitors: "32689", + cordinates: "Point(51.3703 51.205061)", + locationLabel: "Q12534102", + }, + { + location: "http://www.wikidata.org/entity/Q12534102", + visitors: "32689", + cordinates: "Point(51.370303 51.205086)", + locationLabel: "Q12534102", + }, + { + location: "http://www.wikidata.org/entity/Q12531099", + cordinates: "Point(66.633796 45.140421)", + locationLabel: "Q12531099", + }, + { + location: "http://www.wikidata.org/entity/Q12528912", + cordinates: "Point(72.341978 48.25388)", + locationLabel: "Q12528912", + }, + { + location: "http://www.wikidata.org/entity/Q12307795", + cordinates: "Point(9.14167 56.4427)", + locationLabel: "Q12307795", + }, + { + location: "http://www.wikidata.org/entity/Q11427843", + cordinates: "Point(138.76 34.78)", + locationLabel: "Q11427843", + }, + { + location: "http://www.wikidata.org/entity/Q11299478", + cordinates: "Point(131.67763889 32.41761111)", + locationLabel: "Q11299478", + }, + { + location: "http://www.wikidata.org/entity/Q11272925", + cordinates: "Point(140.83277778 42.64675)", + locationLabel: "Q11272925", + }, + { + location: "http://www.wikidata.org/entity/Q11272526", + cordinates: "Point(141.834028 40.178472)", + locationLabel: "Q11272526", + }, + { + location: "http://www.wikidata.org/entity/Q106870615", + cordinates: "Point(47.020539 50.852715)", + locationLabel: "Q106870615", + }, + { + location: "http://www.wikidata.org/entity/Q106807138", + cordinates: "Point(131.961797 43.791382)", + locationLabel: "Q106807138", + }, + { + location: "http://www.wikidata.org/entity/Q106799751", + cordinates: "Point(1.290277777 42.850277777)", + locationLabel: "Q106799751", + }, + { + location: "http://www.wikidata.org/entity/Q106698216", + cordinates: "Point(13.381983503 52.571768644)", + locationLabel: "Q106698216", + }, + { + location: "http://www.wikidata.org/entity/Q106497750", + cordinates: "Point(18.944498497 50.323896794)", + locationLabel: "Q106497750", + }, + { + location: "http://www.wikidata.org/entity/Q105982087", + cordinates: "Point(33.38 45.198333333)", + locationLabel: "Q105982087", + }, + { + location: "http://www.wikidata.org/entity/Q105954411", + cordinates: "Point(7.916389 58.453611)", + locationLabel: "Q105954411", + }, + { + location: "http://www.wikidata.org/entity/Q105448979", + cordinates: "Point(139.193055555 35.299444444)", + locationLabel: "Q105448979", + }, + { + location: "http://www.wikidata.org/entity/Q105047710", + cordinates: "Point(-71.86735 -14.28461)", + locationLabel: "Q105047710", + }, + { + location: "http://www.wikidata.org/entity/Q104398537", + cordinates: "Point(139.518751 35.71264)", + locationLabel: "Q104398537", + }, + { + location: "http://www.wikidata.org/entity/Q104382928", + cordinates: "Point(39.713719 47.22523)", + locationLabel: "Q104382928", + }, + { + location: "http://www.wikidata.org/entity/Q10351898", + cordinates: "Point(-41.781422 -2.90057)", + locationLabel: "Q10351898", + }, + { + location: "http://www.wikidata.org/entity/Q10349573", + cordinates: "Point(-43.47466 -20.42942583)", + locationLabel: "Q10349573", + }, + { + location: "http://www.wikidata.org/entity/Q10292057", + cordinates: "Point(-49.28722222 -25.16833333)", + locationLabel: "Q10292057", + }, + { + location: "http://www.wikidata.org/entity/Q101243386", + cordinates: "Point(-0.647028 35.707584)", + locationLabel: "Q101243386", + }, + { + location: "http://www.wikidata.org/entity/Q101127558", + cordinates: "Point(60.224314 57.487495)", + locationLabel: "Q101127558", + }, +]; + +module.exports = attractions; diff --git a/wikidata/dummyData.js b/wikidata/dummyData.js new file mode 100644 index 0000000..a626b18 --- /dev/null +++ b/wikidata/dummyData.js @@ -0,0 +1,75 @@ +const dummyAttractionsData = [ + { + location: "http://www.wikidata.org/entity/Q4081645", + cordinates: "Point(60.572472222 56.893194444)", + locationLabel: "Attraction 1", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "Attraction 2", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "2", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "Attraction 2", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "3", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "Attraction 2", + }, + { + location: "http://www.wikidata.org/entity/Q408164", + cordinates: "Point(60.72222 56.893194)", + locationLabel: "Attraction 3", + }, + { + location: "http://www.wikidata.org/entity/Q408164", + cordinates: "Point(60.72222 56.893194)", + visitors: "19", + locationLabel: "Attraction 3", + }, +]; + +const dummyMuseumsData = [ + { + location: "http://www.wikidata.org/entity/Q4081645", + cordinates: "Point(60.572472222 56.893194444)", + locationLabel: "Museum 1", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "1", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "Museum 2", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "2", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "Museum 2", + }, + { + location: "http://www.wikidata.org/entity/Q35525", + visitors: "3", + cordinates: "Point(-77.03655 38.897669444)", + locationLabel: "Museum 2", + }, + { + location: "http://www.wikidata.org/entity/Q408164", + cordinates: "Point(60.72222 56.893194)", + locationLabel: "Museum 3", + }, + { + location: "http://www.wikidata.org/entity/Q408164", + cordinates: "Point(60.72222 56.893194)", + visitors: "19", + locationLabel: "Museum 3", + }, +]; + +module.exports = { dummyMuseumsData, dummyAttractionsData }; diff --git a/wikidata/graphql/index.js b/wikidata/graphql/index.js new file mode 100644 index 0000000..0546fe0 --- /dev/null +++ b/wikidata/graphql/index.js @@ -0,0 +1,15 @@ +const { ApolloServer } = require("apollo-server-express"); +const { typeDefs } = require('./schema/TypeDefs'); +const { resolvers } = require('./schema/Resolvers'); +const express = require('express'); +const app = express(); + +const server = new ApolloServer({ typeDefs, resolvers }); + +server.applyMiddleware({ app }); + +const PORT = 9001 + +app.listen({port: PORT}, () => { + console.log(`SERVER RUNNING ON PORT ${PORT}`); +}); \ No newline at end of file diff --git a/wikidata/graphql/schema/Resolvers.js b/wikidata/graphql/schema/Resolvers.js new file mode 100644 index 0000000..6a42254 --- /dev/null +++ b/wikidata/graphql/schema/Resolvers.js @@ -0,0 +1,50 @@ +const { fieldToFieldConfig } = require("@graphql-tools/utils"); +const { collateDataToObj } = require("../../parseData"); +const attractions = require("../../attractionsRawData"); +const museums = require("../../museumsRawData"); +const { dummyMuseumsData, dummyAttractionsData } = require("../../dummyData"); + +require("dotenv").config(); +let attractionsData = + process.env.NODE_ENV === "test" + ? collateDataToObj(dummyAttractionsData) + : collateDataToObj(attractions); +let museumsData = + process.env.NODE_ENV === "test" + ? collateDataToObj(dummyMuseumsData) + : collateDataToObj(museums); + +const resolvers = { + Query: { + getAttractions(parent, args) { + const { keyword } = args; + let filtered = attractionsData.filter((a) => + a["name"].toLowerCase().includes(keyword.toLowerCase()) + ); + return filtered; + }, + getMuseums(parent, args) { + const { keyword } = args; + let filtered = museumsData.filter((a) => + a["name"].toLowerCase().includes(keyword.toLowerCase()) + ); + return filtered; + }, + getVisitors(parent, args) { + const { type, operator, count } = args; + let dataType; + if (type === "museums") { + dataType = museumsData; + } else if (type === "attractions") { + dataType = attractionsData; + } + + // compares visitors to count using ">" ">=" "<" "<=" + return dataType.filter((data) => + eval(`${data["visitors"]} ${operator} ${count}`) + ); + }, + }, +}; + +module.exports = { resolvers }; diff --git a/wikidata/graphql/schema/TypeDefs.js b/wikidata/graphql/schema/TypeDefs.js new file mode 100644 index 0000000..f912c9d --- /dev/null +++ b/wikidata/graphql/schema/TypeDefs.js @@ -0,0 +1,18 @@ +const { gql } = require("apollo-server-express"); + +const typeDefs = gql` + type Destination { + name: String! + visitors: Int! + coordinates: String! + } + + # Queries + type Query { + getAttractions(keyword: String!): [Destination!]! + getMuseums(keyword: String!): [Destination!]! + getVisitors(type: String!, operator: String!, count: Int!): [Destination!]! + } +`; + +module.exports = { typeDefs }; diff --git a/wikidata/graphql/schema/schema.js b/wikidata/graphql/schema/schema.js new file mode 100644 index 0000000..eda6cdc --- /dev/null +++ b/wikidata/graphql/schema/schema.js @@ -0,0 +1,12 @@ +const { resolvers } = require("./resolvers"); +const { typeDefs } = require("./typeDefs"); +const { makeExecutableSchema } = require("graphql-tools"); + +const schema = makeExecutableSchema({ + typeDefs, + resolvers, +}); + +module.exports = { + schema, +}; diff --git a/wikidata/museumsRawData.js b/wikidata/museumsRawData.js new file mode 100644 index 0000000..96a0979 --- /dev/null +++ b/wikidata/museumsRawData.js @@ -0,0 +1,43843 @@ +const museums = [ + { + location: "http://www.wikidata.org/entity/Q26690096", + cordinates: "Point(27.57555556 53.91055556)", + locationLabel: "“Ў” Gallery of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q21294360", + cordinates: "Point(19.84567 45.252478)", + locationLabel: "Тhe Gallery of Matica srpska", + }, + { + location: "http://www.wikidata.org/entity/Q32963909", + cordinates: "Point(22.1925 41.7375)", + locationLabel: "Štip Bedesten", + }, + { + location: "http://www.wikidata.org/entity/Q3329659", + cordinates: "Point(134.638 34.2324)", + locationLabel: "Ōtsuka Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3815442", + cordinates: "Point(139.705 35.6694)", + locationLabel: "Ōta Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11377193", + cordinates: "Point(133.00333333 34.24908333)", + locationLabel: "Ōmishima Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11432755", + cordinates: "Point(131.60202778 33.22341667)", + locationLabel: "Ōita-shi Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11432896", + cordinates: "Point(131.634444444 33.238333333)", + locationLabel: "Ōita Kenritsu Geijutsu Kaikan", + }, + { + location: "http://www.wikidata.org/entity/Q9395039", + cordinates: "Point(19.457472 51.764917)", + locationLabel: "Łódź Kaliska", + }, + { + location: "http://www.wikidata.org/entity/Q384310", + cordinates: "Point(19.463389 51.748611)", + locationLabel: "Łódź Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q8426401", + cordinates: "Point(19.297139 49.081346)", + locationLabel: "Ľudovít Fulla Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6061648", + cordinates: "Point(27.125555555 38.415555555)", + locationLabel: "İzmir Art and Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1463961", + cordinates: "Point(28.982944 41.026)", + locationLabel: "İstanbul Modern", + }, + { + location: "http://www.wikidata.org/entity/Q1271865", + cordinates: "Point(21.437222222 42.001111111)", + locationLabel: "Čifte Hammam", + }, + { + location: "http://www.wikidata.org/entity/Q3430210", + cordinates: "Point(12.5729 55.7388)", + locationLabel: "Øregård Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10727363", + cordinates: "Point(20.0065125 60.118123)", + locationLabel: "Önningeby Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1529848", + cordinates: "Point(19.94472222 60.09694444)", + locationLabel: "Åland Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q58685181", + cordinates: "Point(25.7312 62.6002)", + locationLabel: "Äänekoski Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q8076866", + cordinates: "Point(-60.9464 -34.5906)", + locationLabel: "Ángel María de Rosa Municipal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q8076866", + cordinates: "Point(-60.9461 -34.5906)", + locationLabel: "Ángel María de Rosa Municipal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106427", + cordinates: "Point(-3.217672 51.57526)", + locationLabel: "y galeri caerffili", + }, + { + location: "http://www.wikidata.org/entity/Q3558766", + visitors: "57010", + cordinates: "Point(5.90104 43.0941)", + locationLabel: "villa Tamaris", + }, + { + location: "http://www.wikidata.org/entity/Q54854622", + cordinates: "Point(13.144962 43.487606)", + locationLabel: "town museum Villa Coppetti", + }, + { + location: "http://www.wikidata.org/entity/Q2000339", + cordinates: "Point(2.36222222 48.85055556)", + locationLabel: "pavillon de l'Arsenal", + }, + { + location: "http://www.wikidata.org/entity/Q28131538", + cordinates: "Point(-71.22507 46.801071)", + locationLabel: "pavillon Pierre-Lassonde", + }, + { + location: "http://www.wikidata.org/entity/Q86105889", + cordinates: "Point(-4.405785 52.892251)", + locationLabel: "nigelglaze.art", + }, + { + location: "http://www.wikidata.org/entity/Q3330837", + cordinates: "Point(6.86453 47.6367)", + locationLabel: "musées de Belfort", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "1711", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "2159", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "2177", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "2396", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "2856", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "2940", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "3198", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "3776", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "3966", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "4042", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "4067", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "5542", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "8002", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "10252", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "10876", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "11610", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q3330815", + visitors: "13904", + cordinates: "Point(7.23741 47.6236)", + locationLabel: "musée sundgauvien", + }, + { + location: "http://www.wikidata.org/entity/Q19697920", + cordinates: "Point(4.86271 50.463385)", + locationLabel: "musée provincial Félicien Rops", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "1543", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "2278", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "2583", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "2658", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "4437", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "5603", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "7624", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "9896", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "11086", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "13428", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "16355", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q1955698", + visitors: "16510", + cordinates: "Point(2.3077 48.883030555)", + locationLabel: "musée national Jean-Jacques Henner", + }, + { + location: "http://www.wikidata.org/entity/Q3330617", + cordinates: "Point(3.696111111 43.406111111)", + locationLabel: "musée international des arts modestes", + }, + { + location: "http://www.wikidata.org/entity/Q3330549", + visitors: "70000", + cordinates: "Point(2.341858 48.865069)", + locationLabel: "musée en herbe", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "16819", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "17262", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "17406", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "18174", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "18353", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "18480", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "19214", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "19568", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "19610", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "19857", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "21479", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "21514", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "21986", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "23968", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "25446", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "38829", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q3330532", + visitors: "44557", + cordinates: "Point(2.17105 45.9545)", + locationLabel: "musée départemental de la tapisserie d'Aubusson", + }, + { + location: "http://www.wikidata.org/entity/Q6943610", + cordinates: "Point(7.3556 48.9876)", + locationLabel: "musée du cristal", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "8783", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "14358", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "15945", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "16072", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "16537", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "17717", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "17856", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "18129", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "18573", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "19300", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "20475", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "20888", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "23648", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "24311", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "26199", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "26416", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330334", + visitors: "28729", + cordinates: "Point(6.8003 47.5091)", + locationLabel: "musée du Château des ducs de Wurtemberg", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "121014", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "155002", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "163806", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "244821", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "280863", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "297616", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "323615", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "324365", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "332804", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "361660", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q1889428", + visitors: "419406", + cordinates: "Point(2.289722222 48.863333333)", + locationLabel: "musée des monuments français", + }, + { + location: "http://www.wikidata.org/entity/Q3330248", + cordinates: "Point(1.53128 49.0763)", + locationLabel: "musée des impressionnismes Giverny", + }, + { + location: "http://www.wikidata.org/entity/Q3330174", + cordinates: "Point(7.31622 48.8565)", + locationLabel: + "musée des arts et traditions populaires de La Petite-Pierre", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "19158", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "19886", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "20384", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "22245", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "22734", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "23345", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "24481", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "25862", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "28005", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "28342", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "31389", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "36245", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "48738", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "48868", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "56012", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "61954", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330124", + visitors: "74658", + cordinates: "Point(2.23916667 48.83611111)", + locationLabel: "musée des années trente", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "2683", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "2851", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "2908", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3073", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3171", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3230", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3293", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3377", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3791", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "3902", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "4325", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "4819", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "4942", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "5259", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "5362", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330233", + visitors: "5439", + cordinates: "Point(4.87487 45.5238)", + locationLabel: "musée des Beaux-Arts et d'Archéologie de Vienne", + }, + { + location: "http://www.wikidata.org/entity/Q3330231", + cordinates: "Point(4.36332 48.9568)", + locationLabel: + "musée des Beaux-Arts et d'Archéologie de Châlons-en-Champagne", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "9158", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "9158", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "11505", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "11505", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "11627", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "11627", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "12471", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "12471", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "12634", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "12634", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "13442", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "13442", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "13475", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "13475", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "13520", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "13520", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "14618", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "14618", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "14675", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "14675", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "14713", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "14713", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "15023", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "15023", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "15781", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "15781", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "16634", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "16634", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "16783", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "16783", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "23385", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "23385", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "23985", + cordinates: "Point(4.069469 46.034953)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330228", + visitors: "23985", + cordinates: "Point(4.06979 46.035)", + locationLabel: "musée des Beaux-Arts et d'Archéologie Joseph-Déchelette", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "2197", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "10240", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "10503", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "10940", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "15577", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "19658", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "20974", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "22514", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "22735", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "26928", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "41455", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "46580", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "54035", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330224", + visitors: "64472", + cordinates: "Point(4.88944 44.9317)", + locationLabel: "musée des Beaux-Arts de Valence", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "6711", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "6711", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "6799", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "6799", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7054", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7054", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7076", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7076", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7434", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7434", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7743", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "7743", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "8189", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "8189", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "8300", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "8300", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "8493", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "8493", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "9313", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "9313", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "9464", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "9464", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "11327", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "11327", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "14576", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "14576", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "16175", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "16175", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "16237", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "16237", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "16287", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "16287", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "17652", + cordinates: "Point(-1.15167 46.1619)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330205", + visitors: "17652", + cordinates: "Point(-1.151667 46.161944)", + locationLabel: "musée des Beaux-Arts de La Rochelle", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "1905", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "6566", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "7837", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "8716", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "8876", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "8971", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "10329", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "10378", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "11622", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "13357", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "13910", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "17118", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "18067", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "19787", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330202", + visitors: "24942", + cordinates: "Point(2.38136 51.036)", + locationLabel: "musée des Beaux-Arts de Dunkerque", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "5731", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "11560", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "11735", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "12598", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "12922", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "12989", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "13621", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "14507", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "14905", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "14987", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "15328", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "15558", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "16172", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "16458", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "16465", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "17378", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "19710", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q3330193", + visitors: "23474", + cordinates: "Point(3.21051 43.3413)", + locationLabel: "musée des Beaux-Arts de Béziers", + }, + { + location: "http://www.wikidata.org/entity/Q1027402", + cordinates: "Point(0.597815 49.089505)", + locationLabel: "musée des Beaux-Arts de Bernay", + }, + { + location: "http://www.wikidata.org/entity/Q2796641", + cordinates: "Point(2.361667 48.846667)", + locationLabel: "musée de la sculpture en plein air", + }, + { + location: "http://www.wikidata.org/entity/Q3329984", + visitors: "14000", + cordinates: "Point(3.3321 46.566)", + locationLabel: "musée de la Visitation de Moulins", + }, + { + location: "http://www.wikidata.org/entity/Q3329984", + visitors: "15600", + cordinates: "Point(3.3321 46.566)", + locationLabel: "musée de la Visitation de Moulins", + }, + { + location: "http://www.wikidata.org/entity/Q3329984", + visitors: "18700", + cordinates: "Point(3.3321 46.566)", + locationLabel: "musée de la Visitation de Moulins", + }, + { + location: "http://www.wikidata.org/entity/Q3329984", + visitors: "19200", + cordinates: "Point(3.3321 46.566)", + locationLabel: "musée de la Visitation de Moulins", + }, + { + location: "http://www.wikidata.org/entity/Q3329956", + cordinates: "Point(2.33333 48.86306)", + locationLabel: "musée de la Publicité", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "11665", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "11665", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "15474", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "15474", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "15677", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "15677", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "16887", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "16887", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "18667", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "18667", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "20000", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "20000", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "26831", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "26831", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "29310", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "29310", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "29608", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "29608", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "30447", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "30447", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "36662", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "36662", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "44747", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "44747", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "119178", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "119178", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "139070", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "139070", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "143977", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "143977", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "150801", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "150801", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "214671", + cordinates: "Point(-2.75778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3329891", + visitors: "214671", + cordinates: "Point(-2.757778 47.6575)", + locationLabel: "musée de la Cohue", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "40365", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "40652", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "42584", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "42645", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "44111", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "47115", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "48056", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "48395", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "48895", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "50104", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "52000", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "54590", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "55182", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "55221", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "56116", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "59506", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "62194", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3277928", + visitors: "67950", + cordinates: "Point(6.16583333 48.68027778)", + locationLabel: "musée de l'École de Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "29611", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "34986", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "35434", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "37010", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "37318", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "38247", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "39445", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "39781", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "41417", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "42641", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "45974", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "48769", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "53892", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "55000", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "58054", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "67456", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q3329778", + visitors: "70098", + cordinates: "Point(6.637123 43.271079)", + locationLabel: "musée de l'Annonciade", + }, + { + location: "http://www.wikidata.org/entity/Q948051", + cordinates: "Point(1.16856 49.2147)", + locationLabel: "musée de Louviers", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "4932", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "5317", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "5560", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "6412", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "6593", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "6911", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "7082", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "7092", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "7137", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "7422", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "7708", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "8323", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "8549", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "8550", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "11383", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3329647", + visitors: "11582", + cordinates: "Point(5.038121 47.317729)", + locationLabel: "musée d'art sacré de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "86335", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "89976", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "105840", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "111746", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "125637", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "125779", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "135714", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "140260", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "140963", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "141346", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "152406", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "155092", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "155741", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "157670", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "158714", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "159195", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "163247", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q936859", + visitors: "163803", + cordinates: "Point(7.278453 43.701298)", + locationLabel: "musée d'art moderne et d'art contemporain de Nice", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "60937", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "82271", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "84609", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "84704", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "85807", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "89883", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "91228", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "91260", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "99507", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "100109", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "101031", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "104040", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "117644", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "122868", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "127221", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "137932", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q977732", + visitors: "150379", + cordinates: "Point(2.355278 48.861111)", + locationLabel: "musée d'art et d'histoire du judaïsme", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "15029", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "17013", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "17651", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "19941", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "20221", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "21428", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "23299", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "24133", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "26527", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "26934", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "27433", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "28898", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "29501", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "31853", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "32355", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "32756", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329627", + visitors: "35110", + cordinates: "Point(2.356388888 48.932222222)", + locationLabel: "musée d'art et d'histoire de Saint-Denis", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "640", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "6974", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "7712", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "7737", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "8730", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "9148", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "9330", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "9457", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "10073", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "10372", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "10381", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "10895", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "11261", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "11475", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "11797", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329618", + visitors: "13137", + cordinates: "Point(2.23472 48.8061)", + locationLabel: "musée d'art et d'histoire de Meudon", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "995", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "995", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "1132", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "1132", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "1712", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "1712", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "1989", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "1989", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "2035", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "2035", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "2957", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "2957", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "3065", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "3065", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "3073", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "3073", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4134", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4134", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4262", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4262", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4569", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4569", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4679", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4679", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4854", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "4854", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "5380", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "5380", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "5476", + cordinates: "Point(0.2193 49.14454)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329623", + visitors: "5476", + cordinates: "Point(0.21944444 49.14444444)", + locationLabel: "musée d'art et d'histoire de Lisieux", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "1172", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "2244", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "3731", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "3790", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4061", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4266", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4367", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4443", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4699", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4710", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4757", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4793", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "4879", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "5562", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "5785", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "6208", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q3329609", + visitors: "6420", + cordinates: "Point(3.52074 47.4607)", + locationLabel: "musée d'art et d'histoire Romain-Rolland", + }, + { + location: "http://www.wikidata.org/entity/Q1367990", + cordinates: "Point(7.56097 47.5848)", + locationLabel: "musée d'art contemporain Fernet-Branca", + }, + { + location: "http://www.wikidata.org/entity/Q1579504", + visitors: "732", + cordinates: "Point(2.281388888 48.871666666)", + locationLabel: "musée d'Ennery", + }, + { + location: "http://www.wikidata.org/entity/Q1579504", + visitors: "758", + cordinates: "Point(2.281388888 48.871666666)", + locationLabel: "musée d'Ennery", + }, + { + location: "http://www.wikidata.org/entity/Q1579504", + visitors: "777", + cordinates: "Point(2.281388888 48.871666666)", + locationLabel: "musée d'Ennery", + }, + { + location: "http://www.wikidata.org/entity/Q1579504", + visitors: "1077", + cordinates: "Point(2.281388888 48.871666666)", + locationLabel: "musée d'Ennery", + }, + { + location: "http://www.wikidata.org/entity/Q1579504", + visitors: "1111", + cordinates: "Point(2.281388888 48.871666666)", + locationLabel: "musée d'Ennery", + }, + { + location: "http://www.wikidata.org/entity/Q1579504", + visitors: "2040", + cordinates: "Point(2.281388888 48.871666666)", + locationLabel: "musée d'Ennery", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "7375", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "8174", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "8184", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "8973", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9077", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9078", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9193", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9256", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9431", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9956", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "9999", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "10019", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "10028", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "10212", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "10338", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "10352", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329537", + visitors: "11003", + cordinates: "Point(4.3657 44.1527)", + locationLabel: "musée d'Art sacré du Gard", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "24740", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "25773", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "27457", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "27694", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "27877", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "28913", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "30143", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "31150", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "31328", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "31452", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "32372", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "33471", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "35160", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "35319", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "42419", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "43447", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329650", + visitors: "46892", + cordinates: "Point(4.08027778 48.29972222)", + locationLabel: "musée d'Art moderne de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "60168", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "61148", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "63452", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "69617", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "71700", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "71892", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "73574", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "74086", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "76020", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "77993", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "79853", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "80000", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "80203", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "88003", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "90045", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "96086", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "100325", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329642", + visitors: "146485", + cordinates: "Point(2.74777778 42.48583333)", + locationLabel: "musée d'Art moderne de Céret", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "32606", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "56837", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "66662", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "67238", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "68383", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "68428", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "68620", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "68967", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "70000", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "70306", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "74234", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "75493", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "86221", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q3329594", + visitors: "107309", + cordinates: "Point(2.38722222 48.79277778)", + locationLabel: "musée d'Art contemporain du Val-de-Marne", + }, + { + location: "http://www.wikidata.org/entity/Q2090916", + cordinates: "Point(2.281389 48.871667)", + locationLabel: "musée arménien de France", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "6715", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "8710", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "13278", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "17074", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "17440", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "19786", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "19973", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "20749", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "21368", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "21370", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "22111", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "23249", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "26358", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "26696", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "30801", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "40324", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q2613771", + visitors: "48607", + cordinates: "Point(2.334166666 48.843055555)", + locationLabel: "musée Zadkine", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "9525", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "9937", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "10413", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "10738", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "11220", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "11317", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "11417", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "11418", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "11646", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "12134", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "12705", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "12735", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "13151", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "13462", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "13523", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "14552", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329386", + visitors: "15151", + cordinates: "Point(4.852293 46.780947)", + locationLabel: "musée Vivant-Denon", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "2527", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "2680", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "2765", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "3155", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "3212", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "3239", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "3423", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329331", + visitors: "3904", + cordinates: "Point(0.33831 46.58064)", + locationLabel: "musée Rupert-de-Chièvres", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "25312", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "27490", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "28691", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "29035", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "30181", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "30284", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "31089", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "33247", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "33769", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "34512", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "35454", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "42373", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "53752", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "60071", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "64708", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "82965", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q3329333", + visitors: "85291", + cordinates: "Point(5.044091 47.320896)", + locationLabel: "musée Rude", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "1287", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "14575", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "28682", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "30281", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "30539", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "35918", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "35936", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "36961", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "37573", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "38723", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "39040", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "39158", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "39730", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "42328", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "42715", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "44667", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q2317145", + visitors: "52819", + cordinates: "Point(7.156954 43.66758)", + locationLabel: "musée Renoir", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "210818", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "249775", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "342750", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "395339", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "440617", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "470500", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "471457", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "480299", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "501060", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "507321", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "538707", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "670000", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q743206", + visitors: "766764", + cordinates: "Point(2.362439 48.859731)", + locationLabel: "musée Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2403", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2447", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2520", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2645", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2654", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2761", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "2796", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "3016", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "3054", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "3286", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "3308", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "3399", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "3894", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "4374", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "4845", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "4898", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329310", + visitors: "5430", + cordinates: "Point(2.2144 43.05336)", + locationLabel: "musée Petiet de Limoux", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "1203", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "1248", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "1667", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "1839", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2158", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2229", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2486", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2648", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2720", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2738", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2886", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "2938", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "3060", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "3157", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "3224", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "3709", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329293", + visitors: "3961", + cordinates: "Point(1.42055556 49.24555556)", + locationLabel: "musée Nicolas-Poussin", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5035", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5081", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5165", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5179", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5240", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5850", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5901", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "5964", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "6032", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "6164", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "6340", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "7191", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "7310", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "8657", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "8869", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "9161", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329273", + visitors: "10000", + cordinates: "Point(-2.51561 48.4694)", + locationLabel: "musée Mathurin-Méheut", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "46405", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "50410", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "51063", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "53535", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "54097", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "66452", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "71042", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "72068", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "76836", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329270", + visitors: "78333", + cordinates: "Point(7.25894 43.6952)", + locationLabel: "musée Masséna", + }, + { + location: "http://www.wikidata.org/entity/Q3329265", + cordinates: "Point(7.269536 43.709167)", + locationLabel: "musée Marc-Chagall", + }, + { + location: "http://www.wikidata.org/entity/Q946883", + cordinates: "Point(2.324889 48.854778)", + locationLabel: "musée Maillol", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "193", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "264", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "280", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "300", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "306", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "335", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329249", + visitors: "458", + cordinates: "Point(5.12935 46.0996)", + locationLabel: "musée Louis-Jourdan de Saint-Paul-de-Varax", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "2681", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "2950", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "3434", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "3585", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "3611", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "3687", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "3870", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "4287", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "4358", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "4742", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "4842", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "4936", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "5002", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "5053", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "5378", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329237", + visitors: "5472", + cordinates: "Point(4.8328 46.3051)", + locationLabel: "musée Lamartine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10107", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10127", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10139", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10179", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10636", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10733", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "10906", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "11040", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "12481", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "12834", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "13849", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "13986", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "14045", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "14172", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "15078", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "15870", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q3329221", + visitors: "15963", + cordinates: "Point(3.399994 49.04675)", + locationLabel: "musée Jean de La Fontaine", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "45857", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "46582", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "50767", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "51519", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "52993", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "54133", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "55269", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "56355", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "56741", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "57323", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "58552", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "58888", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "59196", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "60446", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "61096", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "64506", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q1423719", + visitors: "72609", + cordinates: "Point(-0.55777778 47.47805556)", + locationLabel: "musée Jean Lurçat", + }, + { + location: "http://www.wikidata.org/entity/Q3329213", + visitors: "2530", + cordinates: "Point(2.32264 48.84736)", + locationLabel: "musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329213", + visitors: "3728", + cordinates: "Point(2.32264 48.84736)", + locationLabel: "musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329213", + visitors: "3737", + cordinates: "Point(2.32264 48.84736)", + locationLabel: "musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329213", + visitors: "4016", + cordinates: "Point(2.32264 48.84736)", + locationLabel: "musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "2970", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "3531", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "3647", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "3724", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "4094", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "4265", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "4269", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "4689", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "4875", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "5356", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "5357", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "5566", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "5653", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "5747", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "6429", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329173", + visitors: "8475", + cordinates: "Point(6.14012 47.6331)", + locationLabel: "musée Georges-Garret", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "549", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "549", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "556", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "556", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "619", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "619", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "676", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "676", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "706", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "706", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "716", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "716", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "725", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "725", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "779", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "779", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "782", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "782", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "808", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "808", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "925", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "925", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "948", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "948", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1009", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1009", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1087", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1087", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1231", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1231", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1266", + cordinates: "Point(4.3664 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329168", + visitors: "1266", + cordinates: "Point(4.36657 48.9559)", + locationLabel: "musée Garinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "22028", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "30097", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "30412", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "30489", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "30775", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "30817", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "30903", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "31633", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "32112", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "33810", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "35465", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "36598", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "37458", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "42008", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "45305", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329155", + visitors: "51614", + cordinates: "Point(0.23063 49.422299)", + locationLabel: "musée Eugène-Boudin de Honfleur", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "7426", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "7654", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "7761", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "10427", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "10722", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "10807", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "10875", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "10972", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "11315", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "12377", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "12873", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "13834", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "14177", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "15096", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "27557", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "35443", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q3329127", + visitors: "39915", + cordinates: "Point(-0.498889 43.8922)", + locationLabel: "musée Despiau-Wlérick", + }, + { + location: "http://www.wikidata.org/entity/Q2023566", + visitors: "40000", + cordinates: "Point(2.28805556 48.87166667)", + locationLabel: "musée Dapper", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "576", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "3003", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "3082", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "4171", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "17179", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "18348", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "19101", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "20732", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "23065", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "23210", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "24087", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "26547", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "28089", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329125", + visitors: "97391", + cordinates: "Point(3.88305556 45.03861111)", + locationLabel: "musée Crozatier", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "3886", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "17156", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "17881", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "19702", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "20072", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "20935", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "24113", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "30000", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "35208", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "48353", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "51975", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "58579", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "60556", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "66842", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "71689", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329121", + visitors: "83865", + cordinates: "Point(6.147719444 47.104975)", + locationLabel: "musée Courbet", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "4221", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "4449", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "4996", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "5435", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "5983", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "6077", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "6444", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "6598", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "6601", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "6653", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "7193", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "7337", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3329112", + visitors: "7365", + cordinates: "Point(4.9376 46.4312)", + locationLabel: "musée Chintreuil", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "23993", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "23993", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "23993", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "24353", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "24353", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "24353", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "26854", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "26854", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "26854", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "27721", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "27721", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "27721", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "27841", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "27841", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "27841", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "34527", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "34527", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "34527", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "36331", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "36331", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "36331", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "38233", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "38233", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "38233", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "43512", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "43512", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "43512", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "47323", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "47323", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "47323", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "60228", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "60228", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "60228", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "62268", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "62268", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "62268", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "72803", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "72803", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "72803", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "76298", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "76298", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "76298", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "100134", + cordinates: "Point(5.378056 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "100134", + cordinates: "Point(5.378111 43.292333)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q3086101", + visitors: "100134", + cordinates: "Point(5.378194 43.292222)", + locationLabel: "musée Cantini", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "30066", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "34920", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "37748", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "38752", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "39351", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "39377", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "40000", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "40989", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "42592", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "44059", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "48726", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "49810", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "62211", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "62408", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "64560", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "66603", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "117436", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q2715373", + visitors: "122524", + cordinates: "Point(2.318333 48.843056)", + locationLabel: "musée Bourdelle", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "6583", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "8589", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "8716", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "8929", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "9147", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "9219", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "9822", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "9839", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "10432", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "10666", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "11742", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "12014", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "12552", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "13145", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "13542", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "14997", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329099", + visitors: "18158", + cordinates: "Point(1.83278 50.1072)", + locationLabel: "musée Boucher-de-Perthes", + }, + { + location: "http://www.wikidata.org/entity/Q3329098", + cordinates: "Point(2.26583333 48.85347222)", + locationLabel: "musée Bouchard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "31407", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "34334", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "37760", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "38365", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "43424", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "52739", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "59430", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q15814098", + visitors: "75000", + cordinates: "Point(7.01958 43.5763)", + locationLabel: "musée Bonnard", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "9358", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "10126", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "10334", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "10492", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "11247", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "11308", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "11417", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "11540", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "12090", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "14659", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "16029", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "16275", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "16356", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "18435", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "21022", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "22789", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329085", + visitors: "23115", + cordinates: "Point(7.357726 48.076685)", + locationLabel: "musée Bartholdi", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "5350", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "6915", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "7522", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "7557", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "8585", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "9081", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "10138", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "10391", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "11696", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "13251", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "13586", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "14174", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "15500", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "15639", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "15677", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "16856", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329058", + visitors: "17372", + cordinates: "Point(2.8213 49.4176)", + locationLabel: "musée Antoine Vivenel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "2011", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "3012", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "3736", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "3774", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "4638", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "4994", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "5320", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "5449", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "5519", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "5612", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "5620", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "6225", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "6469", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329049", + visitors: "6923", + cordinates: "Point(0.515697 49.35674)", + locationLabel: "musée Alfred-Canel", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "2789", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "2949", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "3061", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "3089", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "3540", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "3761", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "3880", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "3963", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4015", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4066", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4198", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4309", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4487", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4547", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4684", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "4834", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q3329033", + visitors: "5150", + cordinates: "Point(4.61967 44.1619)", + locationLabel: "musée Albert-André", + }, + { + location: "http://www.wikidata.org/entity/Q53016463", + cordinates: "Point(12.823943 41.79091)", + locationLabel: "museo diocesano Prenestino di arte sacra", + }, + { + location: "http://www.wikidata.org/entity/Q3100297", + visitors: "150000", + cordinates: "Point(2.358922 48.855153)", + locationLabel: "maison européenne de la photographie", + }, + { + location: "http://www.wikidata.org/entity/Q6737062", + cordinates: "Point(7.8612 48.7662)", + locationLabel: "maison des arts", + }, + { + location: "http://www.wikidata.org/entity/Q6737061", + cordinates: "Point(2.34755 48.81409)", + locationLabel: "maison de la photographie Robert Doisneau", + }, + { + location: "http://www.wikidata.org/entity/Q1640215", + cordinates: "Point(2.1633 48.8896)", + locationLabel: "maison Fournaise", + }, + { + location: "http://www.wikidata.org/entity/Q87191584", + cordinates: "Point(15.4221912 47.0517846)", + locationLabel: "kunstGarten. Kulturraum & Open Air Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4791354", + cordinates: "Point(-111.836 33.4166)", + locationLabel: "i.d.e.a. Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3146224", + cordinates: "Point(5.92731 43.1263)", + locationLabel: "hôtel des Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3075583", + visitors: "40000", + cordinates: "Point(5.424693 43.521154)", + locationLabel: "fondation Vasarely", + }, + { + location: "http://www.wikidata.org/entity/Q1435689", + cordinates: "Point(7.115085 43.70059)", + locationLabel: "fondation Maeght", + }, + { + location: "http://www.wikidata.org/entity/Q1284688", + cordinates: "Point(2.33194 48.83722)", + locationLabel: "fondation Cartier pour l'art contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q1284688", + cordinates: "Point(2.331944 48.837222)", + locationLabel: "fondation Cartier pour l'art contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q1284688", + cordinates: "Point(2.3319 48.8373)", + locationLabel: "fondation Cartier pour l'art contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q1284688", + cordinates: "Point(2.331931 48.837322)", + locationLabel: "fondation Cartier pour l'art contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q282932", + cordinates: "Point(9.49917 51.3119)", + locationLabel: "documenta-Halle", + }, + { + location: "http://www.wikidata.org/entity/Q3330153", + cordinates: "Point(4.83305 46.30706)", + locationLabel: "couvent des Ursulines de Mâcon", + }, + { + location: "http://www.wikidata.org/entity/Q318289", + cordinates: "Point(7.494722222 46.815555555)", + locationLabel: "collection Abegg foundation", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "20594", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "21679", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "22497", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "23537", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "26515", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "27676", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "28699", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "30084", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "31798", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "32134", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "32284", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "33326", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "33526", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "34520", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "37207", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "38478", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "40168", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q2967822", + visitors: "118438", + cordinates: "Point(1.61694444 50.72555556)", + locationLabel: "château-musée de Boulogne-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q1012919", + cordinates: "Point(5.410278 45.973611)", + locationLabel: "château des Allymes", + }, + { + location: "http://www.wikidata.org/entity/Q2971334", + cordinates: "Point(6.943055555 43.523333333)", + locationLabel: "château de la Napoule", + }, + { + location: "http://www.wikidata.org/entity/Q1094822", + cordinates: "Point(0.6936 47.3971)", + locationLabel: "château de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "5903", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "6179", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "8121", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "8223", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "8263", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "8386", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "10026", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "10104", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "10971", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2970121", + visitors: "11847", + cordinates: "Point(2.69694444 48.26555556)", + locationLabel: "château de Nemours", + }, + { + location: "http://www.wikidata.org/entity/Q2969972", + cordinates: "Point(6.801111111 47.509444444)", + locationLabel: "château de Montbéliard", + }, + { + location: "http://www.wikidata.org/entity/Q1789926", + cordinates: "Point(3.132777777 50.635833333)", + locationLabel: "château de Flers", + }, + { + location: "http://www.wikidata.org/entity/Q2968829", + cordinates: "Point(2.22083333 48.51277778)", + locationLabel: "château de Chamarande", + }, + { + location: "http://www.wikidata.org/entity/Q2706740", + cordinates: "Point(2.336111111 44.388888888)", + locationLabel: "château de Belcastel", + }, + { + location: "http://www.wikidata.org/entity/Q2968385", + cordinates: "Point(4.50416667 47.30333333)", + locationLabel: "château d'Éguilly", + }, + { + location: "http://www.wikidata.org/entity/Q1817122", + cordinates: "Point(2.378333333 49.0175)", + locationLabel: "château d'Écouen", + }, + { + location: "http://www.wikidata.org/entity/Q2968054", + cordinates: "Point(4.59930556 44.55513889)", + locationLabel: "château d'Alba-la-Romaine", + }, + { + location: "http://www.wikidata.org/entity/Q27479449", + cordinates: "Point(8.641735 46.882871)", + locationLabel: "church treasure museum", + }, + { + location: "http://www.wikidata.org/entity/Q4656907", + cordinates: "Point(-0.2094 51.411)", + locationLabel: "chairman Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q27485055", + cordinates: "Point(7.62644 47.30705)", + locationLabel: "ceramics museum", + }, + { + location: "http://www.wikidata.org/entity/Q100761475", + cordinates: "Point(-73.702170219 46.043113656)", + locationLabel: "centre d'interprétation multiethnique de Rawdon", + }, + { + location: "http://www.wikidata.org/entity/Q2870557", + cordinates: "Point(-3.5460948 47.7671813)", + locationLabel: "auberge de Marie Henry", + }, + { + location: "http://www.wikidata.org/entity/Q1309669", + cordinates: "Point(7.633952777 46.755936111)", + locationLabel: "art museum Thun", + }, + { + location: "http://www.wikidata.org/entity/Q2072717", + cordinates: "Point(2.12047222 48.80472222)", + locationLabel: "appartement du roi", + }, + { + location: "http://www.wikidata.org/entity/Q27481252", + cordinates: "Point(6.14441 46.20171)", + locationLabel: "Zoubov Foundation Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17060840", + cordinates: "Point(-81.38204 28.61851)", + locationLabel: "Zora Neale Hurston Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q12291130", + cordinates: "Point(24.752597 42.149157)", + locationLabel: "Zlatyu Boyadzhiev Exposition", + }, + { + location: "http://www.wikidata.org/entity/Q3458883", + cordinates: "Point(-74.4459 40.5)", + locationLabel: "Zimmerli Art Museum at Rutgers University", + }, + { + location: "http://www.wikidata.org/entity/Q8071796", + cordinates: "Point(-92.6618 30.2255)", + locationLabel: "Zigler Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q55339447", + cordinates: "Point(20.455782 44.8186448)", + locationLabel: "Zepter Museum", + }, + { + location: "http://www.wikidata.org/entity/Q191189", + visitors: "148610", + cordinates: "Point(7.473889 46.949167)", + locationLabel: "Zentrum Paul Klee", + }, + { + location: "http://www.wikidata.org/entity/Q28003638", + cordinates: "Point(18.422777777 -33.908333333)", + locationLabel: "Zeitz Museum of Contemporary Art Africa", + }, + { + location: "http://www.wikidata.org/entity/Q4186921", + cordinates: "Point(35.13388889 47.84333333)", + locationLabel: "Zaporizhzhia Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1956195", + cordinates: "Point(26.091 44.46085)", + locationLabel: "Zambaccian Museum", + }, + { + location: "http://www.wikidata.org/entity/Q13059829", + cordinates: "Point(90.395088 24.77028)", + locationLabel: "Zainul Abedin Museum", + }, + { + location: "http://www.wikidata.org/entity/Q450241", + cordinates: "Point(21.01138889 52.23944444)", + locationLabel: "Zachęta", + }, + { + location: "http://www.wikidata.org/entity/Q106415100", + cordinates: "Point(34.8948493 32.4059562)", + locationLabel: "ZUZU Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11622794", + cordinates: "Point(135.781278 35.011694)", + locationLabel: "Yūrinkan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17225954", + cordinates: "Point(130.981583 32.280472)", + locationLabel: "Yunomae Manga Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2386994", + cordinates: "Point(133.934 34.6708)", + locationLabel: "Yumeji Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11577117", + cordinates: "Point(137.90397222 36.32555556)", + locationLabel: "Yukio Tabuchi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11563573", + cordinates: "Point(135.50225 34.6875)", + locationLabel: "Yuki Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q65980891", + cordinates: "Point(120.766583333 23.992805555)", + locationLabel: "Yu-hsiu Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1709971", + cordinates: "Point(13.824166666 55.428333333)", + locationLabel: "Ystad Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11385006", + cordinates: "Point(139.611139 36.401444)", + locationLabel: "Yoshizawa Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q8055361", + cordinates: "Point(-1.08628 53.9629)", + locationLabel: "York Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6355904", + cordinates: "Point(133.331 35.4287)", + locationLabel: "Yonago City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q30925115", + cordinates: "Point(139.768166 35.712095)", + locationLabel: "Yokoyama Taikan Memorial Hall", + }, + { + location: "http://www.wikidata.org/entity/Q17209883", + cordinates: "Point(133.54111111 33.55777778)", + locationLabel: "Yokoyama Ryūichi Kinen Mangakan", + }, + { + location: "http://www.wikidata.org/entity/Q42634129", + cordinates: "Point(136.91983611 35.1733)", + locationLabel: "Yokoyama Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q38266963", + cordinates: "Point(140.55047222 39.20466667)", + locationLabel: "Yokote-Masuda Manga Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11543551", + cordinates: "Point(139.737936 35.259442)", + locationLabel: "Yokosuka Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11542451", + cordinates: "Point(135.213389 34.708472)", + locationLabel: "Yokoo Tadanori Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11543026", + cordinates: "Point(139.55394444 35.56494444)", + locationLabel: "Yokohama Shimin Gyararī Azamino", + }, + { + location: "http://www.wikidata.org/entity/Q11543025", + cordinates: "Point(139.626944 35.449444)", + locationLabel: "Yokohama Shimin Gyararī", + }, + { + location: "http://www.wikidata.org/entity/Q861588", + cordinates: "Point(139.631 35.4571)", + locationLabel: "Yokohama Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11346041", + cordinates: "Point(139.65025 35.43852778)", + locationLabel: "Yokohama Cat Museum", + }, + { + location: "http://www.wikidata.org/entity/Q96002280", + cordinates: "Point(34.774745 32.085614)", + locationLabel: "Yodfat Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q22569305", + cordinates: "Point(121.75177778 24.755)", + locationLabel: "Yilan Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q8053498", + cordinates: "Point(23.8014 38.0633)", + locationLabel: "Yiannis Tsarouchis Foundation Museum", + }, + { + location: "http://www.wikidata.org/entity/Q8051982", + cordinates: "Point(-108.507 45.7858)", + locationLabel: "Yellowstone Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q8050640", + cordinates: "Point(-91.19 30.446389)", + locationLabel: "Yazoo and Mississippi Valley Railroad Company Depot", + }, + { + location: "http://www.wikidata.org/entity/Q11487473", + cordinates: "Point(139.732056 36.247833)", + locationLabel: "Yayoi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329597", + cordinates: "Point(39.897176 57.628135)", + locationLabel: "Yaroslavl Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11344966", + cordinates: "Point(139.489056 35.928556)", + locationLabel: "Yaoko Kawagoe Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2496737", + cordinates: "Point(133.78375 33.647694444)", + locationLabel: "Yanase Takashi Memorial Hall", + }, + { + location: "http://www.wikidata.org/entity/Q11345132", + cordinates: "Point(136.919869 35.17105)", + locationLabel: "Yamazaki Mazak Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3329572", + cordinates: "Point(139.7136407 35.6531744)", + locationLabel: "Yamatane Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11469731", + cordinates: "Point(138.53733333 35.66038889)", + locationLabel: "Yamanashi Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7881987", + cordinates: "Point(131.474 34.1795)", + locationLabel: "Yamaguchi Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11466848", + cordinates: "Point(131.46727778 34.16961111)", + locationLabel: "Yamaguchi Center for Arts and Media", + }, + { + location: "http://www.wikidata.org/entity/Q11468661", + cordinates: "Point(140.332402 38.255891)", + locationLabel: "Yamagata Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11467765", + cordinates: "Point(140.4395 38.308666666)", + locationLabel: "Yamadera Gotō Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1568434", + cordinates: "Point(-72.931 41.3085)", + locationLabel: "Yale University Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6352575", + cordinates: "Point(-72.9306 41.3079)", + locationLabel: "Yale Center for British Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106259", + cordinates: "Point(-4.495291 51.820291)", + locationLabel: "Y Gât - The Gate", + }, + { + location: "http://www.wikidata.org/entity/Q18613973", + cordinates: "Point(21.028417 52.189028)", + locationLabel: "Xawery Dunikowski Museum of Sculpture", + }, + { + location: "http://www.wikidata.org/entity/Q3019261", + visitors: "27143", + cordinates: "Point(22.2603 60.445)", + locationLabel: "Wäinö Aaltonen Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q8040514", + cordinates: "Point(-0.0697713 52.181856)", + locationLabel: "Wysing Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q8040162", + cordinates: "Point(-79.3948 43.6478)", + locationLabel: "Wynick/Tuck Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106058", + cordinates: "Point(-3.400206 52.150124)", + locationLabel: "Wyeside Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q86106414", + cordinates: "Point(-2.682336 51.735849)", + locationLabel: "Wye Valley Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q87189238", + cordinates: "Point(-88.39797 44.26068)", + locationLabel: "Wriston Art Center Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q8038231", + cordinates: "Point(-89.031528 42.502083)", + locationLabel: "Wright Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q8037224", + cordinates: "Point(-0.371775 50.8146)", + locationLabel: "Worthing Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q55439681", + cordinates: "Point(8.92543 53.22098)", + locationLabel: "Worpsweder Kunsthalle", + }, + { + location: "http://www.wikidata.org/entity/Q8036641", + cordinates: "Point(173.24 -41.2983)", + locationLabel: "World of Wearable Art", + }, + { + location: "http://www.wikidata.org/entity/Q8035684", + cordinates: "Point(-80.1321 25.7833)", + locationLabel: "World Erotic Art Museum Miami", + }, + { + location: "http://www.wikidata.org/entity/Q86106194", + cordinates: "Point(-4.985494 51.996575)", + locationLabel: "Workshop Wales Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q8034421", + cordinates: "Point(-72.6 42.3)", + locationLabel: "Words & Pictures Museum", + }, + { + location: "http://www.wikidata.org/entity/Q8034152", + cordinates: "Point(-2.2224 52.1963)", + locationLabel: "Worcester City Art Gallery & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q847508", + cordinates: "Point(-71.802 42.2731)", + locationLabel: "Worcester Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11289011", + cordinates: "Point(132.14363889 34.49891667)", + locationLabel: "Woodone Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2424929", + cordinates: "Point(-75.2197 40.0831)", + locationLabel: "Woodmere Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q8032941", + cordinates: "Point(0.0162769 51.4796)", + locationLabel: "Woodlands House", + }, + { + location: "http://www.wikidata.org/entity/Q16387864", + cordinates: "Point(44.496277777 40.183827777)", + locationLabel: "Wood-carving museum", + }, + { + location: "http://www.wikidata.org/entity/Q8030459", + visitors: "158658", + cordinates: "Point(-2.12704 52.5868)", + locationLabel: "Wolverhampton Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q98925426", + cordinates: "Point(150.8972264 -34.4263889)", + locationLabel: "Wollongong Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2178180", + cordinates: "Point(-80.1326 25.7808)", + locationLabel: "Wolfsonian-FIU", + }, + { + location: "http://www.wikidata.org/entity/Q86105982", + cordinates: "Point(-3.168608 52.968706)", + locationLabel: "Witzend Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q21016362", + cordinates: "Point(-85.388888888 31.223888888)", + locationLabel: "Wiregrass Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3813414", + cordinates: "Point(-97.150555555 49.889444444)", + locationLabel: "Winnipeg Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106024", + cordinates: "Point(-3.057148 52.860418)", + locationLabel: "Willow Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17531445", + cordinates: "Point(-0.51816 52.8122)", + locationLabel: "Willoughby Memorial Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16897654", + cordinates: "Point(-3.04333 53.3834)", + locationLabel: "Williamson Art Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16897654", + cordinates: "Point(-3.039918 53.38468)", + locationLabel: "Williamson Art Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12072937", + cordinates: "Point(-73.202694 42.711194)", + locationLabel: "Williams College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q8020723", + cordinates: "Point(-89.9222 38.5172)", + locationLabel: "William and Florence Schmidt Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q8015837", + cordinates: "Point(-0.02035 51.5913)", + locationLabel: "William Morris Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q8012674", + cordinates: "Point(24.7689 -28.7436)", + locationLabel: "William Humphreys Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1552421", + cordinates: "Point(8.10811 51.5711)", + locationLabel: "Wilhelm-Morgner-Haus", + }, + { + location: "http://www.wikidata.org/entity/Q316005", + cordinates: "Point(9.70778 52.38425)", + locationLabel: "Wilhelm Busch Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3152859", + cordinates: "Point(4.32556 50.82444)", + locationLabel: "Wiels", + }, + { + location: "http://www.wikidata.org/entity/Q7998113", + cordinates: "Point(-97.3564 37.6947)", + locationLabel: "Wichita Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3567825", + cordinates: "Point(-2.22944 53.4603)", + locationLabel: "Whitworth Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q639791", + cordinates: "Point(-74.0089 40.7396)", + locationLabel: "Whitney Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106562", + cordinates: "Point(-3.176158 51.480505)", + locationLabel: "Whitewall Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q1814654", + visitors: "490000", + cordinates: "Point(-0.070485 51.516)", + locationLabel: "Whitechapel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q26318777", + cordinates: "Point(-0.070103202 51.5161342)", + locationLabel: "Whitechapel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q85818445", + cordinates: "Point(-4.702239 51.672991)", + locationLabel: "White Lion Street Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q14706129", + cordinates: "Point(-105.927 35.6625)", + locationLabel: "Wheelwright Museum of the American Indian", + }, + { + location: "http://www.wikidata.org/entity/Q7991685", + cordinates: "Point(-122.48 48.7528)", + locationLabel: "Whatcom Museum of History and Art", + }, + { + location: "http://www.wikidata.org/entity/Q7990711", + cordinates: "Point(-75.493333 40.083611)", + locationLabel: "Wharton Esherick Studio", + }, + { + location: "http://www.wikidata.org/entity/Q7990635", + cordinates: "Point(126.966 37.5944)", + locationLabel: "Whanki Museum", + }, + { + location: "http://www.wikidata.org/entity/Q64852846", + cordinates: "Point(174.325593 -35.72501)", + locationLabel: "Whangarei Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2527311", + cordinates: "Point(-83.0094 40.0002)", + locationLabel: "Wexner Center for the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1798475", + cordinates: "Point(7.62444 51.9619)", + locationLabel: "Westphalian State Museum of Art and Cultural History", + }, + { + location: "http://www.wikidata.org/entity/Q7989293", + cordinates: "Point(-79.5448 40.306)", + locationLabel: "Westmoreland Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q18325625", + cordinates: "Point(-119.661967 34.449764)", + locationLabel: "Westmont Ridley-Tree Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106198", + cordinates: "Point(-4.977176 51.994176)", + locationLabel: "West Wales Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2563859", + cordinates: "Point(8.79889 53.0764)", + locationLabel: "Weserburg", + }, + { + location: "http://www.wikidata.org/entity/Q686488", + cordinates: "Point(16.363055555 48.205)", + locationLabel: "Weltmuseum Wien", + }, + { + location: "http://www.wikidata.org/entity/Q1431431", + cordinates: "Point(-93.238055555 44.972777777)", + locationLabel: "Weisman Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106483", + cordinates: "Point(-3.181711 51.475929)", + locationLabel: "Weird & Wonderful Wales Water Tower Mural", + }, + { + location: "http://www.wikidata.org/entity/Q7979215", + cordinates: "Point(-2.022078 52.550489)", + locationLabel: "Wednesbury Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7979215", + cordinates: "Point(-2.01948 52.5529)", + locationLabel: "Wednesbury Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q14711945", + cordinates: "Point(-73.2302 44.3758)", + locationLabel: "Webb Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7975022", + cordinates: "Point(-0.628889 51.2214)", + locationLabel: "Watts Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7974139", + cordinates: "Point(-74.1975 39.9532)", + locationLabel: "Waterhouse Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3915469", + cordinates: "Point(139.713388888 35.670722222)", + locationLabel: "Watari Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11562497", + cordinates: "Point(134.22730556 35.52080556)", + locationLabel: "Watanabe museum", + }, + { + location: "http://www.wikidata.org/entity/Q477189", + cordinates: "Point(8.543333333 47.369611111)", + locationLabel: "Wasserkirche", + }, + { + location: "http://www.wikidata.org/entity/Q7971783", + visitors: "50000", + cordinates: "Point(-77.7316 39.637)", + locationLabel: "Washington County Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q96781849", + cordinates: "Point(102.925833333 1.877361111)", + locationLabel: "Warisan 1953", + }, + { + location: "http://www.wikidata.org/entity/Q101226419", + cordinates: "Point(-80.199026 25.782793)", + locationLabel: "Ward Rooming House", + }, + { + location: "http://www.wikidata.org/entity/Q14692482", + cordinates: "Point(-75.5717 38.3514)", + locationLabel: "Ward Museum of Wildfowl Art", + }, + { + location: "http://www.wikidata.org/entity/Q210081", + cordinates: "Point(-76.616111111 39.296666666)", + locationLabel: "Walters Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27481515", + cordinates: "Point(7.83575 47.41157)", + locationLabel: "Walter-Eglin-Museum Känerkinden", + }, + { + location: "http://www.wikidata.org/entity/Q30102881", + cordinates: "Point(141.468174573 -31.956240396)", + locationLabel: "Walter Sully Emporium", + }, + { + location: "http://www.wikidata.org/entity/Q7965832", + cordinates: "Point(-115.5611 51.1717)", + locationLabel: "Walter Phillips Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16948471", + cordinates: "Point(-88.8275 30.4105)", + locationLabel: "Walter Anderson Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3352593", + cordinates: "Point(-81.5611 28.357)", + locationLabel: "Walt Disney Presents", + }, + { + location: "http://www.wikidata.org/entity/Q700959", + visitors: "131601", + cordinates: "Point(6.958611 50.9375)", + locationLabel: "Wallraf–Richartz Museum", + }, + { + location: "http://www.wikidata.org/entity/Q700959", + visitors: "153566", + cordinates: "Point(6.958611 50.9375)", + locationLabel: "Wallraf–Richartz Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1536471", + visitors: "337799", + cordinates: "Point(-2.979647 53.410067)", + locationLabel: "Walker Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1851516", + cordinates: "Point(-93.288611111 44.968055555)", + locationLabel: "Walker Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q11417477", + cordinates: "Point(135.171417 34.225)", + locationLabel: "Wakayama Kenritsu Kindai Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q97516506", + cordinates: "Point(171.0447474 -44.7316886)", + locationLabel: "Waimate Art Society Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q60164103", + cordinates: "Point(147.371751 -35.109687)", + locationLabel: "Wagga Wagga Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q403080", + cordinates: "Point(-72.673889 41.763333)", + locationLabel: "Wadsworth Atheneum Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7958477", + cordinates: "Point(115.744871 -32.05634)", + locationLabel: "W D Moore & Co Warehouse", + }, + { + location: "http://www.wikidata.org/entity/Q4221664", + cordinates: "Point(49.66965 58.60223)", + locationLabel: "Vyatskiy Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q36832570", + cordinates: "Point(20.792305555 41.118222222)", + locationLabel: "Voska Hamam", + }, + { + location: "http://www.wikidata.org/entity/Q7941879", + cordinates: "Point(23.8474 37.952)", + locationLabel: "Vorres Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4125421", + cordinates: "Point(39.20944444 51.67388889)", + locationLabel: "Voronezh Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11352217", + cordinates: "Point(136.094722 35.139861)", + locationLabel: "Vories Memorial Hall", + }, + { + location: "http://www.wikidata.org/entity/Q2533480", + cordinates: "Point(9.74667 47.5044)", + locationLabel: "Vorarlberg museum", + }, + { + location: "http://www.wikidata.org/entity/Q819504", + cordinates: "Point(7.14658 51.2573)", + locationLabel: "Von der Heydt Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16631343", + cordinates: "Point(44.523404 48.711615)", + locationLabel: "Volgograd Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1595593", + cordinates: "Point(14.5344444 50.6858333)", + locationLabel: "Vlastivědné museum Česká Lípa", + }, + { + location: "http://www.wikidata.org/entity/Q12298609", + cordinates: "Point(22.688955555 42.282227777)", + locationLabel: "Vladimir Dimitrov Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q26257853", + cordinates: "Point(6.91871 46.6946)", + locationLabel: "Vitromusée Romont", + }, + { + location: "http://www.wikidata.org/entity/Q1469906", + cordinates: "Point(30.205557 55.193342)", + locationLabel: "Vitebsk Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q4013975", + cordinates: "Point(-77.474722 37.556389)", + locationLabel: "Virginia Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q62630954", + cordinates: "Point(-118.147 34.0388)", + locationLabel: "Vincent Price Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1617748", + cordinates: "Point(7.13056 50.9908)", + locationLabel: "Villa Zanders", + }, + { + location: "http://www.wikidata.org/entity/Q2223322", + cordinates: "Point(6.1225 49.61305556)", + locationLabel: "Villa Vauban", + }, + { + location: "http://www.wikidata.org/entity/Q105599156", + cordinates: "Point(2.320842223 48.84342953)", + locationLabel: "Villa Vassilieff", + }, + { + location: "http://www.wikidata.org/entity/Q4012583", + cordinates: "Point(9.215130555 45.6173)", + locationLabel: "Villa Tittoni Traversi", + }, + { + location: "http://www.wikidata.org/entity/Q264573", + cordinates: "Point(11.5996 48.1407)", + locationLabel: "Villa Stuck", + }, + { + location: "http://www.wikidata.org/entity/Q2525507", + visitors: "67706", + cordinates: "Point(9.201814 45.46825)", + locationLabel: "Villa Necchi Campiglio", + }, + { + location: "http://www.wikidata.org/entity/Q4012306", + cordinates: "Point(8.8287 45.82572)", + locationLabel: "Villa Menafoglio Litta Panza", + }, + { + location: "http://www.wikidata.org/entity/Q4012306", + cordinates: "Point(8.829054 45.825005)", + locationLabel: "Villa Menafoglio Litta Panza", + }, + { + location: "http://www.wikidata.org/entity/Q10511304", + cordinates: "Point(24.852179 60.184035)", + locationLabel: "Villa Gyllenberg", + }, + { + location: "http://www.wikidata.org/entity/Q10511304", + cordinates: "Point(24.852238 60.184226)", + locationLabel: "Villa Gyllenberg", + }, + { + location: "http://www.wikidata.org/entity/Q3330090", + cordinates: "Point(10.512439 43.845493)", + locationLabel: "Villa Guinigi National Museum", + }, + { + location: "http://www.wikidata.org/entity/Q684556", + cordinates: "Point(8.73533 47.4964)", + locationLabel: "Villa Flora", + }, + { + location: "http://www.wikidata.org/entity/Q27484996", + cordinates: "Point(8.9566 46.00462)", + locationLabel: "Villa Ciani", + }, + { + location: "http://www.wikidata.org/entity/Q533156", + cordinates: "Point(9.230838888 45.9864)", + locationLabel: "Villa Carlotta", + }, + { + location: "http://www.wikidata.org/entity/Q3654706", + cordinates: "Point(105.836944 21.030556)", + locationLabel: "Vietnam National Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3654706", + cordinates: "Point(105.837 21.0306)", + locationLabel: "Vietnam National Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3654706", + cordinates: "Point(105.837066 21.030624)", + locationLabel: "Vietnam National Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q505873", + cordinates: "Point(16.3731 48.1989)", + locationLabel: "Vienna Museum", + }, + { + location: "http://www.wikidata.org/entity/Q284902", + cordinates: "Point(16.3717 48.2006)", + locationLabel: "Vienna Künstlerhaus", + }, + { + location: "http://www.wikidata.org/entity/Q12298612", + cordinates: "Point(22.878888888 43.985277777)", + locationLabel: "Vidin art gallery", + }, + { + location: "http://www.wikidata.org/entity/Q213322", + visitors: "3022086", + cordinates: "Point(-0.172078 51.496302)", + locationLabel: "Victoria and Albert Museum", + }, + { + location: "http://www.wikidata.org/entity/Q213322", + visitors: "3231700", + cordinates: "Point(-0.172078 51.496302)", + locationLabel: "Victoria and Albert Museum", + }, + { + location: "http://www.wikidata.org/entity/Q213322", + visitors: "3432325", + cordinates: "Point(-0.172078 51.496302)", + locationLabel: "Victoria and Albert Museum", + }, + { + location: "http://www.wikidata.org/entity/Q213322", + visitors: "3932738", + cordinates: "Point(-0.172078 51.496302)", + locationLabel: "Victoria and Albert Museum", + }, + { + location: "http://www.wikidata.org/entity/Q213322", + visitors: "3967566", + cordinates: "Point(-0.172078 51.496302)", + locationLabel: "Victoria and Albert Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7926720", + cordinates: "Point(-2.9664 53.4061)", + locationLabel: "Victoria Gallery & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7926563", + visitors: "92000", + cordinates: "Point(-2.3586 51.3826)", + locationLabel: "Victoria Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q13030278", + cordinates: "Point(30.205729 55.19336)", + locationLabel: "Viciebsk Regional Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3816570", + cordinates: "Point(1.93161 41.4731)", + locationLabel: "Vicenç Ros Municipal Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18810139", + cordinates: "Point(11.54931 45.549023)", + locationLabel: "Vicenza Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18810139", + cordinates: "Point(11.549167 45.549167)", + locationLabel: "Vicenza Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18810139", + cordinates: "Point(11.54927 45.549222)", + locationLabel: "Vicenza Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12304521", + cordinates: "Point(9.4157 56.4497)", + locationLabel: "Viborg Kunsthal", + }, + { + location: "http://www.wikidata.org/entity/Q7923439", + cordinates: "Point(9.8967 55.2698)", + locationLabel: "Vestfyns Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q7922318", + cordinates: "Point(-80.3659 27.6495)", + locationLabel: "Vero Beach Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q102427225", + cordinates: "Point(138.493361111 35.007583333)", + locationLabel: "Verkehr Shimizu Port Terminal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q15299085", + cordinates: "Point(-97.093306 18.850726)", + locationLabel: "Veracruz State Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12340696", + cordinates: "Point(9.9872 57.46098)", + locationLabel: "Vendsyssel Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q4121091", + cordinates: "Point(9.529733928 55.709365043)", + locationLabel: "Vejle Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q12343745", + cordinates: "Point(9.13985 55.47714)", + locationLabel: "Vejen Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329523", + cordinates: "Point(6.6254402 46.5179913)", + locationLabel: "Vaud Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q182955", + visitors: "5500000", + cordinates: "Point(12.454444444 41.906388888)", + locationLabel: "Vatican Museums", + }, + { + location: "http://www.wikidata.org/entity/Q182955", + visitors: "6756186", + cordinates: "Point(12.454444444 41.906388888)", + locationLabel: "Vatican Museums", + }, + { + location: "http://www.wikidata.org/entity/Q182955", + visitors: "6882931", + cordinates: "Point(12.454444444 41.906388888)", + locationLabel: "Vatican Museums", + }, + { + location: "http://www.wikidata.org/entity/Q58636646", + cordinates: "Point(27.88761 62.31328)", + locationLabel: "Varkaus Museums", + }, + { + location: "http://www.wikidata.org/entity/Q11900401", + cordinates: "Point(24.85380936 60.26128387)", + locationLabel: "Vantaa Art Museum Artsi", + }, + { + location: "http://www.wikidata.org/entity/Q18563658", + cordinates: "Point(-86.801389 36.145833)", + locationLabel: "Vanderbilt University Fine Arts Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q371960", + cordinates: "Point(-123.12 49.2829)", + locationLabel: "Vancouver Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12379157", + cordinates: "Point(26.992277777 57.846138888)", + locationLabel: "Vana-Võromaa Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7913781", + cordinates: "Point(28.24167222 -25.77303333)", + locationLabel: "Van Wouw Museum", + }, + { + location: "http://www.wikidata.org/entity/Q224124", + visitors: "1438000", + cordinates: "Point(4.881111111 52.358333333)", + locationLabel: "Van Gogh Museum", + }, + { + location: "http://www.wikidata.org/entity/Q224124", + visitors: "2100000", + cordinates: "Point(4.881111111 52.358333333)", + locationLabel: "Van Gogh Museum", + }, + { + location: "http://www.wikidata.org/entity/Q224124", + visitors: "2161160", + cordinates: "Point(4.881111111 52.358333333)", + locationLabel: "Van Gogh Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1782422", + cordinates: "Point(5.481944 51.434722)", + locationLabel: "Van Abbemuseum", + }, + { + location: "http://www.wikidata.org/entity/Q3868487", + cordinates: "Point(9.873292 46.1717)", + locationLabel: "Valtellina Museum of History and Art", + }, + { + location: "http://www.wikidata.org/entity/Q27488911", + cordinates: "Point(7.361666666 46.234166666)", + locationLabel: "Valais Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q48953878", + cordinates: "Point(37.799072222 55.753177777)", + locationLabel: "Vadim Sidur museum", + }, + { + location: "http://www.wikidata.org/entity/Q11449808", + cordinates: "Point(139.873972222 36.607166666)", + locationLabel: "Utsunomiya Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q17227774", + cordinates: "Point(139.886444 36.561528)", + locationLabel: "Utsunomiya Fairy Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11608719", + cordinates: "Point(138.14036111 36.23066667)", + locationLabel: "Utsukushi-ga-hara Open-Air Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2502866", + cordinates: "Point(-111.843 40.7602)", + locationLabel: "Utah Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q21016297", + cordinates: "Point(-111.894929 40.769294)", + locationLabel: "Utah Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11263124", + cordinates: "Point(135.190667 34.702961)", + locationLabel: "Uroko House & Observation Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2500370", + cordinates: "Point(-2.241944444 53.485555555)", + locationLabel: "Urbis", + }, + { + location: "http://www.wikidata.org/entity/Q11260799", + cordinates: "Point(139.652444 35.860667)", + locationLabel: "Urawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11558303", + cordinates: "Point(127.719472 26.249917)", + locationLabel: "Urasoe Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "150878", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "159511", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "177100", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "179140", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "183000", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "184759", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "192380", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "192530", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "193090", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "203494", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "209000", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "212222", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "213530", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "235157", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "237901", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "250000", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1851283", + visitors: "294000", + cordinates: "Point(7.355555555 48.079722222)", + locationLabel: "Unterlinden Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18343226", + cordinates: "Point(-105.56784 41.3148)", + locationLabel: "University of Wyoming Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22059322", + cordinates: "Point(-70.44805556 43.67972222)", + locationLabel: "University of Southern Maine Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16928213", + cordinates: "Point(-82.41563 28.063569)", + locationLabel: "University of South Florida Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325686", + cordinates: "Point(-72.72862 41.78098)", + locationLabel: "University of Saint Joseph Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7896183", + cordinates: "Point(153.012 -27.4965)", + locationLabel: "University of Queensland Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7895911", + cordinates: "Point(-106.62 35.0823)", + locationLabel: "University of New Mexico Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7895820", + cordinates: "Point(-89.5253 34.3643)", + locationLabel: "University of Mississippi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7895651", + cordinates: "Point(-68.7706 44.8026)", + locationLabel: "University of Maine Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7895586", + cordinates: "Point(-84.5012 38.0376)", + locationLabel: "University of Kentucky Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7895562", + cordinates: "Point(-91.5402 41.6653)", + locationLabel: "University of Iowa Stanley Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7895060", + cordinates: "Point(-110.956 32.2357)", + locationLabel: "University of Arizona Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3372066", + cordinates: "Point(-75.7522 39.6791)", + locationLabel: "University Museums at the University of Delaware", + }, + { + location: "http://www.wikidata.org/entity/Q21094945", + cordinates: "Point(-1.659719 42.8014)", + locationLabel: "University Museum of Navarra", + }, + { + location: "http://www.wikidata.org/entity/Q7894833", + cordinates: "Point(-72.5258 42.3882)", + locationLabel: "University Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q7894834", + cordinates: "Point(114.139 22.284)", + locationLabel: "University Museum and Art Gallery, Hong Kong", + }, + { + location: "http://www.wikidata.org/entity/Q16982578", + cordinates: "Point(-73.822899 42.686271)", + locationLabel: "University Art Museum at University at Albany", + }, + { + location: "http://www.wikidata.org/entity/Q18325653", + cordinates: "Point(-118.114658 33.78345)", + locationLabel: "University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56230575", + cordinates: "Point(-38.539485 -3.740858)", + locationLabel: "Universidade Federal do Ceará. Museu de Arte", + }, + { + location: "http://www.wikidata.org/entity/Q1979511", + cordinates: "Point(15.4368 47.0725)", + locationLabel: "Universalmuseum Joanneum: Neue Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q85934483", + cordinates: "Point(15.391305555 47.073888888)", + locationLabel: "Universalmuseum Joanneum: Alte Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q623017", + visitors: "494487", + cordinates: "Point(15.4368 47.0725)", + locationLabel: "Universalmuseum Joanneum", + }, + { + location: "http://www.wikidata.org/entity/Q86105969", + cordinates: "Point(-2.99562 53.046469)", + locationLabel: "UnDegUn", + }, + { + location: "http://www.wikidata.org/entity/Q12406414", + cordinates: "Point(35.154166666 32.523833333)", + locationLabel: "Umm al-Fahm Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7881605", + cordinates: "Point(-97.7658 30.2633)", + locationLabel: "Umlauf Sculpture Garden and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11558629", + cordinates: "Point(132.280278 34.326778)", + locationLabel: "Umi no Mieru Mori Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q18342468", + cordinates: "Point(-97.296591 37.717051)", + locationLabel: "Ulrich Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4470591", + cordinates: "Point(-73.9897 40.7278)", + locationLabel: "Ukrainian Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3547881", + cordinates: "Point(-87.6851 41.896)", + locationLabel: "Ukrainian Institute of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q76025597", + cordinates: "Point(-74.520283 40.542715)", + locationLabel: "Ukrainian History and Education Center", + }, + { + location: "http://www.wikidata.org/entity/Q106715016", + visitors: "2011219", + cordinates: "Point(11.2559 43.7684)", + locationLabel: "Uffizi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q106715016", + visitors: "2011219", + cordinates: "Point(11.255698 43.768997)", + locationLabel: "Uffizi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11360245", + cordinates: "Point(139.774806 35.712722)", + locationLabel: "Ueno Royal Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22032181", + cordinates: "Point(138.92569 34.728569)", + locationLabel: "Uehara Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q9047014", + cordinates: "Point(133.435833 35.389861)", + locationLabel: "Ueda Shōji Shashin Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q27924644", + cordinates: "Point(53.205841 56.860937)", + locationLabel: "Udmurt Republican Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q18325633", + cordinates: "Point(-118.287325 34.01863)", + locationLabel: "USC Fisher Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7864026", + cordinates: "Point(-118.443 34.0728)", + locationLabel: "UCLA Fowler Museum of Cultural History", + }, + { + location: "http://www.wikidata.org/entity/Q23303980", + cordinates: "Point(-0.1338033 51.5244896)", + locationLabel: "UCL Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q29181168", + cordinates: "Point(8.8663 54.9326)", + locationLabel: "Tønder Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2436253", + cordinates: "Point(11.3977336 47.2673275)", + locationLabel: "Tyrolean State Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7860098", + cordinates: "Point(-95.2819 32.3304)", + locationLabel: "Tyler Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86105972", + cordinates: "Point(-2.991709 53.046831)", + locationLabel: "Ty Pawb Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7857475", + cordinates: "Point(-92.0844 46.8186)", + locationLabel: "Tweed Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7856653", + cordinates: "Point(-87.505 33.2931)", + locationLabel: "Tuscaloosa Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q85684680", + cordinates: "Point(-3.170277777 51.429722222)", + locationLabel: "Turner House Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4502138", + visitors: "80848", + cordinates: "Point(22.2617 60.4542)", + locationLabel: "Turku Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3819018", + cordinates: "Point(7.68548 45.0711)", + locationLabel: "Turin City Museum of Ancient Art", + }, + { + location: "http://www.wikidata.org/entity/Q85684968", + cordinates: "Point(16.55133 47.81278)", + locationLabel: "Tulipan Galerie & Veranstaltungslokal", + }, + { + location: "http://www.wikidata.org/entity/Q18210612", + cordinates: "Point(28.805 45.1802)", + locationLabel: "Tulcea Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4465248", + cordinates: "Point(37.595 54.1775)", + locationLabel: "Tula Oblast Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325616", + cordinates: "Point(-110.9754 32.2234)", + locationLabel: "Tucson Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11499516", + cordinates: "Point(139.059583 37.914444)", + locationLabel: "Tsurui Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q17216016", + cordinates: "Point(130.457778 32.231611)", + locationLabel: "Tsunagi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11272278", + cordinates: "Point(140.11225 36.084472)", + locationLabel: "Tsukuba Cultural Center Ars", + }, + { + location: "http://www.wikidata.org/entity/Q30922740", + cordinates: "Point(140.67588889 40.60561111)", + locationLabel: "Tsugaru Traditional Crafts Center", + }, + { + location: "http://www.wikidata.org/entity/Q15958739", + cordinates: "Point(23.725918 37.975951)", + locationLabel: "Tsisdarakis Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q12007630", + cordinates: "Point(10.3944 63.4272)", + locationLabel: "Trondheim Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q14709294", + cordinates: "Point(-121.9552176 37.3561082)", + locationLabel: "Triton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q57262026", + cordinates: "Point(11.547 47.7597)", + locationLabel: "Trink- und Wandelhalle", + }, + { + location: "http://www.wikidata.org/entity/Q2705493", + cordinates: "Point(9.173708 45.471813)", + locationLabel: "Triennale di Milano", + }, + { + location: "http://www.wikidata.org/entity/Q30931573", + cordinates: "Point(139.701708333 36.78905)", + locationLabel: "Trick Art Pia Nikkō", + }, + { + location: "http://www.wikidata.org/entity/Q72980181", + cordinates: "Point(120.685638888 24.414388888)", + locationLabel: "Triangle Rush Exhibition Hall", + }, + { + location: "http://www.wikidata.org/entity/Q183334", + visitors: "1626825", + cordinates: "Point(37.620277777 55.741388888)", + locationLabel: "Tretyakov Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q183334", + visitors: "2148538", + cordinates: "Point(37.620277777 55.741388888)", + locationLabel: "Tretyakov Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q183334", + visitors: "2835836", + cordinates: "Point(37.620277777 55.741388888)", + locationLabel: "Tretyakov Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1816263", + visitors: "92518", + cordinates: "Point(9.53184 55.49942)", + locationLabel: "Trapholt", + }, + { + location: "http://www.wikidata.org/entity/Q7833157", + cordinates: "Point(-96.8 32.7878)", + locationLabel: "Trammell & Margaret Crow Collection of Asian Art", + }, + { + location: "http://www.wikidata.org/entity/Q4461630", + cordinates: "Point(137.152 35.0802)", + locationLabel: "Toyota Municipal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7830656", + cordinates: "Point(137.395 34.7692)", + locationLabel: "Toyohashi City Museum of Art and History", + }, + { + location: "http://www.wikidata.org/entity/Q28689689", + cordinates: "Point(137.21 36.71055556)", + locationLabel: "Toyama Prefectural Museum of Art and Design", + }, + { + location: "http://www.wikidata.org/entity/Q28687459", + cordinates: "Point(137.189444 36.710278)", + locationLabel: "Toyama Municipal Folkcraft Village", + }, + { + location: "http://www.wikidata.org/entity/Q21653817", + cordinates: "Point(137.21475 36.688583)", + locationLabel: "Toyama Glass Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11384443", + cordinates: "Point(137.211833 36.693889)", + locationLabel: "Toyama City Sato Memorial Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7830109", + visitors: "1500", + cordinates: "Point(0.2785 50.7666)", + locationLabel: "Towner Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12298608", + cordinates: "Point(25.638333333 43.081666666)", + locationLabel: "Town Gallery, Veliko Tarnovo", + }, + { + location: "http://www.wikidata.org/entity/Q86106383", + cordinates: "Point(-3.137531 51.85843)", + locationLabel: "Tower Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11315898", + cordinates: "Point(133.032444444 33.969055555)", + locationLabel: "Towel Museum Ichihiro", + }, + { + location: "http://www.wikidata.org/entity/Q11404944", + cordinates: "Point(141.20941 40.614039)", + locationLabel: "Towada Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q3330626", + cordinates: "Point(7.34195 47.36439)", + locationLabel: "Tour rouge", + }, + { + location: "http://www.wikidata.org/entity/Q7828737", + cordinates: "Point(-2.162188 53.615133)", + locationLabel: "Touchstones Rochdale", + }, + { + location: "http://www.wikidata.org/entity/Q7828504", + cordinates: "Point(134.227 35.4961)", + locationLabel: "Tottori Folk Crafts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3532720", + cordinates: "Point(-131.634 55.3426)", + locationLabel: "Totem Heritage Center", + }, + { + location: "http://www.wikidata.org/entity/Q7828041", + cordinates: "Point(126.976 37.612)", + locationLabel: "Total Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3388589", + cordinates: "Point(10.225837 45.534534)", + locationLabel: "Tosio Martinengo Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3388589", + cordinates: "Point(10.22611111 45.53472222)", + locationLabel: "Tosio Martinengo Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7824139", + cordinates: "Point(-79.9965 40.4435)", + locationLabel: "ToonSeum", + }, + { + location: "http://www.wikidata.org/entity/Q86106231", + cordinates: "Point(-5.264274 51.881286)", + locationLabel: "Tony Kitchell Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3788874", + cordinates: "Point(135.757 34.6041)", + locationLabel: "Tomimoto Kenkichi Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11279084", + cordinates: "Point(139.371388888 36.556666666)", + locationLabel: "Tomihio Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q59541095", + cordinates: "Point(-80.94511 44.56441)", + locationLabel: "Tom Thomson Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1743116", + visitors: "340000", + cordinates: "Point(-83.55944 41.65806)", + locationLabel: "Toledo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11524018", + cordinates: "Point(139.718028 35.689639)", + locationLabel: "Tokyo Toy Museum", + }, + { + location: "http://www.wikidata.org/entity/Q862884", + visitors: "415000", + cordinates: "Point(139.7132 35.6417)", + locationLabel: "Tokyo Photographic Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11524090", + cordinates: "Point(139.68680556 35.683)", + locationLabel: "Tokyo Opera City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q743773", + cordinates: "Point(139.719269 35.636862)", + locationLabel: "Tokyo Metropolitan Teien Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q864957", + visitors: "2772829", + cordinates: "Point(139.773 35.7172)", + locationLabel: "Tokyo Metropolitan Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q864957", + visitors: "2787770", + cordinates: "Point(139.773 35.7172)", + locationLabel: "Tokyo Metropolitan Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q864957", + visitors: "2873806", + cordinates: "Point(139.773 35.7172)", + locationLabel: "Tokyo Metropolitan Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1233913", + cordinates: "Point(139.329493 35.686455)", + locationLabel: "Tokyo Fuji Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11489939", + cordinates: "Point(134.554 34.080083)", + locationLabel: "Tokushima Prefectural Museum of Literature and Calligraphy", + }, + { + location: "http://www.wikidata.org/entity/Q11489972", + cordinates: "Point(134.526694 34.039806)", + locationLabel: "Tokushima Modern Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3077236", + cordinates: "Point(136.933 35.1837)", + locationLabel: "Tokugawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3077236", + cordinates: "Point(136.933189 35.183692)", + locationLabel: "Tokugawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3077236", + cordinates: "Point(136.933222 35.183861)", + locationLabel: "Tokugawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11273158", + cordinates: "Point(132.95197222 34.21502778)", + locationLabel: "Tokoro Museum Ōmishima", + }, + { + location: "http://www.wikidata.org/entity/Q78121486", + cordinates: "Point(140.885805555 38.260305555)", + locationLabel: + "Tohoku Fukushi University Serizawa Keisuke Art and Craft Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11496415", + cordinates: "Point(139.692931 35.6614)", + locationLabel: "Toguri Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q7812188", + cordinates: "Point(116.467673 39.899999)", + locationLabel: "Today Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2655386", + cordinates: "Point(139.861 36.5597)", + locationLabel: "Tochigi Prefectural Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q11273192", + cordinates: "Point(139.733398 36.380944)", + locationLabel: "Tochigi Kuranomachi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q14608065", + cordinates: "Point(121.469 25.1269)", + locationLabel: "Tittot Glass Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7807005", + cordinates: "Point(-65.2047 -26.8317)", + locationLabel: "Timoteo Navarro Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7807005", + cordinates: "Point(-65.2047 -26.8315)", + locationLabel: "Timoteo Navarro Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q585462", + cordinates: "Point(-117.1496 32.7318)", + locationLabel: "Timken Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3294735", + cordinates: "Point(28.981198 41.01203)", + locationLabel: "Tiled Kiosk", + }, + { + location: "http://www.wikidata.org/entity/Q2623739", + cordinates: "Point(34.9854 32.8093)", + locationLabel: "Tikotin Museum of Japanese Art", + }, + { + location: "http://www.wikidata.org/entity/Q10697844", + cordinates: "Point(21.6065 63.09461944)", + locationLabel: "Tikanoja Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106342", + cordinates: "Point(-3.993725 51.572756)", + locationLabel: "Tides Fine Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q54370216", + cordinates: "Point(4.596161 44.732091)", + locationLabel: "Théâtre de Privas", + }, + { + location: "http://www.wikidata.org/entity/Q176251", + visitors: "978064", + cordinates: "Point(-3.695 40.416111)", + locationLabel: "Thyssen-Bornemisza Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7798908", + cordinates: "Point(-89.2635 48.4053)", + locationLabel: "Thunder Bay Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12339179", + cordinates: "Point(9.81185 56.832)", + locationLabel: "Thingbæk Kalkminer", + }, + { + location: "http://www.wikidata.org/entity/Q252259", + visitors: "76334", + cordinates: "Point(18.14861111 59.32222222)", + locationLabel: "Thiel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105966", + cordinates: "Point(-2.99562 53.047295)", + locationLabel: "The Wrexham Independent Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q650299", + cordinates: "Point(8.730277777 47.501388888)", + locationLabel: "The Winterthur Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5090184", + cordinates: "Point(-2.07944 51.9018)", + locationLabel: "The Wilson", + }, + { + location: "http://www.wikidata.org/entity/Q86106252", + cordinates: "Point(-5.042556 51.713806)", + locationLabel: "The Waterfront Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2415036", + cordinates: "Point(10.0649 48.414)", + locationLabel: "The Walther Collection", + }, + { + location: "http://www.wikidata.org/entity/Q2415048", + cordinates: "Point(-122.458 37.8011)", + locationLabel: "The Walt Disney Family Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1327919", + cordinates: "Point(-0.153055555 51.5175)", + locationLabel: "The Wallace Collection", + }, + { + location: "http://www.wikidata.org/entity/Q85713430", + cordinates: "Point(-4.969763 51.801721)", + locationLabel: "The VC Galley", + }, + { + location: "http://www.wikidata.org/entity/Q11525123", + cordinates: "Point(139.7715 35.719194)", + locationLabel: "The University Art Museum, Tokyo University of the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q62534106", + cordinates: "Point(-1.2601 51.7554)", + locationLabel: + "The Taylor Institute, The Ashmolean Museum, and 41 Beaumont Street", + }, + { + location: "http://www.wikidata.org/entity/Q61797555", + cordinates: "Point(173.287757 -41.2728636)", + locationLabel: "The Suter Te Aratoi O Whakatū", + }, + { + location: "http://www.wikidata.org/entity/Q174911", + visitors: "87083", + cordinates: "Point(-52.7115 47.5661)", + locationLabel: "The Rooms", + }, + { + location: "http://www.wikidata.org/entity/Q7761208", + cordinates: "Point(-78.865689 43.895412)", + locationLabel: "The Robert McLaughlin Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86207880", + cordinates: "Point(-2.993611111 51.588305555)", + locationLabel: "The Riverfront Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7759539", + cordinates: "Point(-122.327 49.0528)", + locationLabel: "The Reach Gallery Museum", + }, + { + location: "http://www.wikidata.org/entity/Q42023914", + cordinates: "Point(10.72305556 59.91611111)", + locationLabel: "The Queen Sonja Art Stable", + }, + { + location: "http://www.wikidata.org/entity/Q4507714", + cordinates: "Point(37.64556 55.74631)", + locationLabel: "The Private Museum of Russian Icon", + }, + { + location: "http://www.wikidata.org/entity/Q21016266", + cordinates: "Point(-96.7712 32.7845)", + locationLabel: "The Power Station", + }, + { + location: "http://www.wikidata.org/entity/Q7757923", + visitors: "130000", + cordinates: "Point(-79.3821 43.6384)", + locationLabel: "The Power Plant", + }, + { + location: "http://www.wikidata.org/entity/Q86106082", + cordinates: "Point(-4.314051 52.037832)", + locationLabel: "The Power House Arts", + }, + { + location: "http://www.wikidata.org/entity/Q77893519", + cordinates: "Point(172.630243 -43.531389)", + locationLabel: "The Physics Room", + }, + { + location: "http://www.wikidata.org/entity/Q3522227", + cordinates: "Point(-0.1389 51.5148)", + locationLabel: "The Photographers' Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q578485", + cordinates: "Point(-77.046666666 38.911388888)", + locationLabel: "The Phillips Collection", + }, + { + location: "http://www.wikidata.org/entity/Q86105940", + cordinates: "Point(-3.740479 53.308519)", + locationLabel: "The Peculiar Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12759412", + cordinates: "Point(19.845921 45.252795)", + locationLabel: "The Pavle Beljanski Memorial Collection", + }, + { + location: "http://www.wikidata.org/entity/Q12759412", + cordinates: "Point(19.84611111 45.25277778)", + locationLabel: "The Pavle Beljanski Memorial Collection", + }, + { + location: "http://www.wikidata.org/entity/Q86106254", + cordinates: "Point(-4.971225 51.831487)", + locationLabel: "The Old Forge Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7753606", + cordinates: "Point(-114.063 51.0467)", + locationLabel: "The New Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7753511", + cordinates: "Point(-1.985908333 52.585666666)", + locationLabel: "The New Art Gallery Walsall", + }, + { + location: "http://www.wikidata.org/entity/Q1976985", + cordinates: "Point(-94.58083333 39.045)", + locationLabel: "The Nelson-Atkins Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1846603", + cordinates: "Point(34.78838611 31.24158611)", + locationLabel: "The Negev Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1359908", + cordinates: "Point(139.754642 35.690553)", + locationLabel: "The National Museum of Modern Art, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q7753156", + visitors: "90000", + cordinates: "Point(-0.407356 52.998679)", + locationLabel: "The National Centre for Craft & Design", + }, + { + location: "http://www.wikidata.org/entity/Q71711647", + cordinates: "Point(30.510877777 50.451655555)", + locationLabel: "The Naked Room", + }, + { + location: "http://www.wikidata.org/entity/Q14693087", + cordinates: "Point(-93.2758 44.9033)", + locationLabel: "The Museum of Russian Art", + }, + { + location: "http://www.wikidata.org/entity/Q4306405", + cordinates: "Point(45.0161 53.1836)", + locationLabel: "The Museum of One Painting named after G. V. Myasnikov", + }, + { + location: "http://www.wikidata.org/entity/Q58636629", + cordinates: "Point(27.3805 63.36319)", + locationLabel: "The Museum of Fine Arts Eemil", + }, + { + location: "http://www.wikidata.org/entity/Q2496483", + cordinates: "Point(133.573 33.5611)", + locationLabel: "The Museum of Art, Kōchi", + }, + { + location: "http://www.wikidata.org/entity/Q2356342", + cordinates: "Point(35.212836111 31.768727777)", + locationLabel: "The Museum for Islamic Art", + }, + { + location: "http://www.wikidata.org/entity/Q3389883", + cordinates: "Point(5.39037 52.15475)", + locationLabel: "The Mondriaan House", + }, + { + location: "http://www.wikidata.org/entity/Q23011166", + cordinates: "Point(-73.9638 40.7734)", + locationLabel: "The Met Breuer", + }, + { + location: "http://www.wikidata.org/entity/Q7751095", + cordinates: "Point(-118.343837 34.07143)", + locationLabel: "The Merry Karnowsky Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7751017", + cordinates: "Point(-81.3673 28.57)", + locationLabel: "The Mennello Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q75292848", + cordinates: "Point(-79.89397 40.86412)", + locationLabel: "The Maridon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3521692", + cordinates: "Point(-2.2964 53.4707)", + locationLabel: "The Lowry", + }, + { + location: "http://www.wikidata.org/entity/Q356308", + cordinates: "Point(-21.91952778 64.14561111)", + locationLabel: "The Living Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7747675", + cordinates: "Point(-6.258173 53.33948)", + locationLabel: "The Little Museum of Dublin", + }, + { + location: "http://www.wikidata.org/entity/Q85820568", + cordinates: "Point(-3.124952 52.074666)", + locationLabel: "The Lion Street Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7747302", + cordinates: "Point(-4.2555 55.8597)", + locationLabel: "The Lighthouse, Glasgow", + }, + { + location: "http://www.wikidata.org/entity/Q7747094", + cordinates: "Point(170.9680742 -45.1025278)", + locationLabel: "The Libratory", + }, + { + location: "http://www.wikidata.org/entity/Q86106081", + cordinates: "Point(-3.882845 51.937243)", + locationLabel: "The Last Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7745053", + cordinates: "Point(-105.078 39.709)", + locationLabel: "The Laboratory of Art and Ideas at Belmar", + }, + { + location: "http://www.wikidata.org/entity/Q99551687", + cordinates: "Point(135.752516655 35.011700488)", + locationLabel: "The Kyoto City University of Arts Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q10858945", + cordinates: "Point(14.4052564 50.0824444)", + locationLabel: "The Josef Sudek Studio", + }, + { + location: "http://www.wikidata.org/entity/Q7741188", + cordinates: "Point(-73.634444 43.310278)", + locationLabel: "The Hyde Collection", + }, + { + location: "http://www.wikidata.org/entity/Q1400558", + cordinates: "Point(-118.11 34.12722)", + locationLabel: "The Huntington Library, Art Museum, and Botanical Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q7739750", + cordinates: "Point(139.35213889 36.02825)", + locationLabel: "The Hiroshima Panels", + }, + { + location: "http://www.wikidata.org/entity/Q1567478", + cordinates: "Point(-1.491 53.676)", + locationLabel: "The Hepworth Wakefield", + }, + { + location: "http://www.wikidata.org/entity/Q86106066", + cordinates: "Point(-3.12476 52.074523)", + locationLabel: "The Haymakers Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7737424", + visitors: "60000", + cordinates: "Point(-99.7344 32.4497)", + locationLabel: "The Grace Museum", + }, + { + location: "http://www.wikidata.org/entity/Q634691", + cordinates: "Point(12.454722222 41.904166666)", + locationLabel: "The Gallery of Maps", + }, + { + location: "http://www.wikidata.org/entity/Q17076012", + cordinates: "Point(19.845283 45.252115)", + locationLabel: + "The Gallery of Fine Arts – Gift Collection of Rajko Mamuzić", + }, + { + location: "http://www.wikidata.org/entity/Q86106094", + cordinates: "Point(-4.833939 52.016062)", + locationLabel: "The Gallery Yr Oriel Newport Pembs", + }, + { + location: "http://www.wikidata.org/entity/Q86105924", + cordinates: "Point(-3.83474 53.327496)", + locationLabel: "The Gallery Tudno Lodge", + }, + { + location: "http://www.wikidata.org/entity/Q682827", + visitors: "330000", + cordinates: "Point(-73.9673 40.7712)", + locationLabel: "The Frick Collection", + }, + { + location: "http://www.wikidata.org/entity/Q7734409", + cordinates: "Point(-0.1433 51.5082)", + locationLabel: "The Fleming Collection", + }, + { + location: "http://www.wikidata.org/entity/Q86106034", + cordinates: "Point(-3.320884 52.641367)", + locationLabel: "The Farmhouse Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3520818", + cordinates: "Point(-75.1602 39.9539)", + locationLabel: "The Fabric Workshop and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28812020", + cordinates: "Point(34.778194444 32.068055555)", + locationLabel: "The Edmond de Rothschild Center", + }, + { + location: "http://www.wikidata.org/entity/Q6967102", + cordinates: "Point(35.097131 33.00185)", + locationLabel: "The Edge gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7730763", + cordinates: "Point(-6.25773 53.3433)", + locationLabel: "The Douglas Hyde Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q53857982", + cordinates: "Point(144.9585 -37.7983)", + locationLabel: "The Dax Centre", + }, + { + location: "http://www.wikidata.org/entity/Q86106389", + cordinates: "Point(-2.992804 51.842874)", + locationLabel: "The Court Cupboard Craft Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106289", + cordinates: "Point(-3.986543 51.791181)", + locationLabel: "The CornerHouse Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7727449", + cordinates: "Point(-157.833 21.3119)", + locationLabel: "The Contemporary Museum, Honolulu", + }, + { + location: "http://www.wikidata.org/entity/Q2872127", + cordinates: "Point(-97.7428 30.2693)", + locationLabel: "The Contemporary Austin", + }, + { + location: "http://www.wikidata.org/entity/Q2872127", + cordinates: "Point(-97.741579 30.270507)", + locationLabel: "The Contemporary Austin", + }, + { + location: "http://www.wikidata.org/entity/Q1138030", + cordinates: "Point(-73.9319 40.8648)", + locationLabel: "The Cloisters", + }, + { + location: "http://www.wikidata.org/entity/Q91982632", + cordinates: "Point(-76.352164 37.020236)", + locationLabel: "The Charles H. Taylor Visual Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q21188880", + cordinates: "Point(-75.14477 39.95332)", + locationLabel: "The Center for Art in Wood", + }, + { + location: "http://www.wikidata.org/entity/Q26425990", + cordinates: "Point(-1.77163 53.812)", + locationLabel: + "The Cartwright Memorial Hall (Art Gallery And Museum) In Lister Park", + }, + { + location: "http://www.wikidata.org/entity/Q26425990", + cordinates: "Point(-1.771704 53.812153)", + locationLabel: + "The Cartwright Memorial Hall (Art Gallery And Museum) In Lister Park", + }, + { + location: "http://www.wikidata.org/entity/Q7721464", + cordinates: "Point(-0.126111 51.5178)", + locationLabel: "The Cartoon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q104820197", + cordinates: "Point(-75.698315399 45.388346617)", + locationLabel: "The Carleton University Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17060100", + cordinates: "Point(-118.251 34.0544)", + locationLabel: "The Broad", + }, + { + location: "http://www.wikidata.org/entity/Q86106239", + cordinates: "Point(-5.108553 51.772769)", + locationLabel: "The Boathouse Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4867942", + cordinates: "Point(-80.1306 25.7974)", + locationLabel: "The Bass Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86105928", + cordinates: "Point(-3.832211 53.326329)", + locationLabel: "The Art Hut", + }, + { + location: "http://www.wikidata.org/entity/Q86106525", + cordinates: "Point(-3.166705555 51.4937)", + locationLabel: "The Albany Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1954603", + cordinates: "Point(-73.928333333 40.746388888)", + locationLabel: "The Africa Center", + }, + { + location: "http://www.wikidata.org/entity/Q96234400", + cordinates: "Point(102.592583333 2.064111111)", + locationLabel: "Thames World Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q33125534", + cordinates: "Point(20.967222222 42.006111111)", + locationLabel: "Tetovo Gallery of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q11649561", + cordinates: "Point(135.353222 34.822722)", + locationLabel: "Tessai Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q17217541", + cordinates: "Point(134.059611 34.486861)", + locationLabel: "Teshima Yokoo House", + }, + { + location: "http://www.wikidata.org/entity/Q2379884", + cordinates: "Point(134.091 34.4897)", + locationLabel: "Teshima Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7703226", + cordinates: "Point(-73.9988 40.726)", + locationLabel: "Terrain Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7703108", + cordinates: "Point(-87.6246 41.8944)", + locationLabel: "Terra Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q7700648", + cordinates: "Point(140.799 36.8395)", + locationLabel: "Tenshin Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4117100", + cordinates: "Point(24.930277777 60.169722222)", + locationLabel: "Tennispalatsi", + }, + { + location: "http://www.wikidata.org/entity/Q4117100", + cordinates: "Point(24.930465 60.169595)", + locationLabel: "Tennispalatsi", + }, + { + location: "http://www.wikidata.org/entity/Q7699538", + cordinates: "Point(-4.6949 51.6723)", + locationLabel: "Tenby Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7698445", + cordinates: "Point(-6.26372 53.3456)", + locationLabel: "Temple Bar Gallery and Studios", + }, + { + location: "http://www.wikidata.org/entity/Q7697790", + cordinates: "Point(22.9607 40.6327)", + locationLabel: "Telloglion Foundation of Art", + }, + { + location: "http://www.wikidata.org/entity/Q98102903", + cordinates: "Point(9.262055555 59.56725)", + locationLabel: "Telemarksgalleriet", + }, + { + location: "http://www.wikidata.org/entity/Q11565343", + cordinates: "Point(135.296528 34.739333)", + locationLabel: "Tekisui Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1756399", + cordinates: "Point(51.390481 35.711361)", + locationLabel: "Tehran Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q66024494", + cordinates: "Point(-38.5167774 -12.9772138)", + locationLabel: "Teatro Gregório de Matos", + }, + { + location: "http://www.wikidata.org/entity/Q7689656", + cordinates: "Point(72.8172326 33.7464332)", + locationLabel: "Taxila Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11386430", + cordinates: "Point(135.300556 34.734944)", + locationLabel: "Tawara Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q55634735", + cordinates: "Point(176.1691 -37.6831)", + locationLabel: "Tauranga Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7688652", + cordinates: "Point(-79.9383 37.2728)", + locationLabel: "Taubman Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2577210", + visitors: "214189", + cordinates: "Point(-5.484722 50.214722)", + locationLabel: "Tate St Ives", + }, + { + location: "http://www.wikidata.org/entity/Q193375", + visitors: "4712581", + cordinates: "Point(-0.099166666 51.507777777)", + locationLabel: "Tate Modern", + }, + { + location: "http://www.wikidata.org/entity/Q193375", + visitors: "5839197", + cordinates: "Point(-0.099166666 51.507777777)", + locationLabel: "Tate Modern", + }, + { + location: "http://www.wikidata.org/entity/Q193375", + visitors: "5868562", + cordinates: "Point(-0.099166666 51.507777777)", + locationLabel: "Tate Modern", + }, + { + location: "http://www.wikidata.org/entity/Q193375", + visitors: "6098340", + cordinates: "Point(-0.099166666 51.507777777)", + locationLabel: "Tate Modern", + }, + { + location: "http://www.wikidata.org/entity/Q517612", + visitors: "539577", + cordinates: "Point(-2.99445 53.40075)", + locationLabel: "Tate Liverpool", + }, + { + location: "http://www.wikidata.org/entity/Q195436", + visitors: "1272523", + cordinates: "Point(-0.127222 51.490833)", + locationLabel: "Tate Britain", + }, + { + location: "http://www.wikidata.org/entity/Q195436", + visitors: "1284519", + cordinates: "Point(-0.127222 51.490833)", + locationLabel: "Tate Britain", + }, + { + location: "http://www.wikidata.org/entity/Q195436", + visitors: "1808637", + cordinates: "Point(-0.127222 51.490833)", + locationLabel: "Tate Britain", + }, + { + location: "http://www.wikidata.org/entity/Q430682", + cordinates: "Point(-0.127 51.491)", + locationLabel: "Tate", + }, + { + location: "http://www.wikidata.org/entity/Q7687474", + cordinates: "Point(147.332 -42.8819)", + locationLabel: "Tasmanian Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q53706297", + cordinates: "Point(145.46919 -37.65963)", + locationLabel: "TarraWarra Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7686506", + cordinates: "Point(139.557 35.6076)", + locationLabel: "Taro Okamoto Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11473108", + cordinates: "Point(139.715583 35.661308)", + locationLabel: "Taro Okamoto Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12298611", + cordinates: "Point(26.574166666 43.236944444)", + locationLabel: "Targovishte art gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7684302", + cordinates: "Point(-105.57735 36.40565)", + locationLabel: "Taos Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11381621", + cordinates: "Point(134.793444 35.168806)", + locationLabel: "Tanyo Shinkin bank Hall", + }, + { + location: "http://www.wikidata.org/entity/Q18342589", + cordinates: "Point(-73.78597 43.09539)", + locationLabel: "Tang Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7682408", + cordinates: "Point(138.6105 -34.9241)", + locationLabel: "Tandanya National Aboriginal Cultural Institute", + }, + { + location: "http://www.wikidata.org/entity/Q11577335", + cordinates: "Point(135.40075 33.697389)", + locationLabel: "Tanabe Shiritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11577460", + cordinates: "Point(133.05 35.4792)", + locationLabel: "Tanabe Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q94682576", + cordinates: "Point(103.682527777 1.534361111)", + locationLabel: "Tan Sri Datuk Chang Joo Chiang Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q10690515", + cordinates: "Point(23.74374984 61.498589611)", + locationLabel: "Tampere Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10690515", + cordinates: "Point(23.7439 61.4986)", + locationLabel: "Tampere Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7681719", + cordinates: "Point(-82.4619 27.9484)", + locationLabel: "Tampa Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11603687", + cordinates: "Point(135.219888888 35.077194444)", + locationLabel: "Tambasasayama Historical Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11430784", + cordinates: "Point(139.428294 35.623522)", + locationLabel: "Tama Art University Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7679039", + cordinates: "Point(-3.187761 55.947076)", + locationLabel: "Talbot Rice Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11598754", + cordinates: "Point(139.732056 36.247833)", + locationLabel: "Takehisa Yumeji Museum", + }, + { + location: "http://www.wikidata.org/entity/Q30933837", + cordinates: "Point(138.92694444 36.49972222)", + locationLabel: "Takehisa Yumeji Ikaho Kinenkan", + }, + { + location: "http://www.wikidata.org/entity/Q22032382", + cordinates: "Point(141.155972 40.716934)", + locationLabel: "Takayama Uichi Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q28328237", + cordinates: "Point(138.062722222 35.831305555)", + locationLabel: "Takato Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q11669765", + cordinates: "Point(139.010611 36.320722)", + locationLabel: "Takasaki-shi Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11669515", + cordinates: "Point(137.026533 36.751264)", + locationLabel: "Takaoka Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11670406", + cordinates: "Point(134.049167 34.344083)", + locationLabel: "Takamatsu Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11671831", + cordinates: "Point(136.981714 34.923206)", + locationLabel: "Takahama-shi yakimono no sato Kawara Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q16242265", + cordinates: "Point(121.15 24.7642)", + locationLabel: "Taitung Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11594325", + cordinates: "Point(135.130333 35.2975)", + locationLabel: "Taisei Sato Memorial Art Museum, Fukuchiyama", + }, + { + location: "http://www.wikidata.org/entity/Q697319", + cordinates: "Point(121.525 25.0725)", + locationLabel: "Taipei Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q19853609", + cordinates: "Point(120.389444444 23.064444444)", + locationLabel: "Tainan City Zuojhen Fossil Park", + }, + { + location: "http://www.wikidata.org/entity/Q15915271", + cordinates: "Point(120.205196 22.991031)", + locationLabel: "Tainan Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18346795", + cordinates: "Point(23.75972222 61.50194444)", + locationLabel: "Taidehalli TR1", + }, + { + location: "http://www.wikidata.org/entity/Q15911268", + cordinates: "Point(120.67906944 24.13843889)", + locationLabel: "Taichung Shiyakusho", + }, + { + location: "http://www.wikidata.org/entity/Q10913880", + cordinates: "Point(120.687 24.0997)", + locationLabel: "Taichung English and Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11576742", + cordinates: "Point(130.80627778 33.64394444)", + locationLabel: "Tagawa-shi Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q1976280", + cordinates: "Point(38.9214 47.2122)", + locationLabel: "Taganrog Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7675043", + cordinates: "Point(-84.503333 39.1025)", + locationLabel: "Taft Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q55728978", + cordinates: "Point(126.973338 37.577487)", + locationLabel: "Taerim Misulgwan", + }, + { + location: "http://www.wikidata.org/entity/Q18337253", + cordinates: "Point(134.40347222 34.74216667)", + locationLabel: "Tadenohana Flower Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7674145", + cordinates: "Point(23.7001 37.9454)", + locationLabel: "Tactual Museum of Athens", + }, + { + location: "http://www.wikidata.org/entity/Q7673984", + cordinates: "Point(-122.437 47.2475)", + locationLabel: "Tacoma Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11597769", + cordinates: "Point(140.443286 40.810931)", + locationLabel: "Tachineputa Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7672608", + cordinates: "Point(146.15234 -18.65245)", + locationLabel: "TYTO Regional Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q55526821", + cordinates: "Point(139.72672222 35.66747222)", + locationLabel: "TOTO GALLERY・MA", + }, + { + location: "http://www.wikidata.org/entity/Q86106499", + cordinates: "Point(-3.170951 51.497233)", + locationLabel: "TEN.", + }, + { + location: "http://www.wikidata.org/entity/Q105946378", + cordinates: "Point(-79.3868129 43.6717923)", + locationLabel: "TD Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3979421", + cordinates: "Point(9.153361363 45.502351499)", + locationLabel: "TBVS", + }, + { + location: "http://www.wikidata.org/entity/Q11618287", + cordinates: "Point(139.43252778 36.33561111)", + locationLabel: "Sōun Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2679762", + cordinates: "Point(7.993744 58.146806)", + locationLabel: "Sørlandets Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2679762", + cordinates: "Point(7.993745 58.146806)", + locationLabel: "Sørlandets Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6581530", + cordinates: "Point(22.433333333 60.033333333)", + locationLabel: "Söderlångvik manor", + }, + { + location: "http://www.wikidata.org/entity/Q30560590", + cordinates: "Point(24.980247 67.525504)", + locationLabel: "Särestöniemi", + }, + { + location: "http://www.wikidata.org/entity/Q1954391", + cordinates: "Point(-46.631222222 -23.530277777)", + locationLabel: "São Paulo Museum of Sacred Art", + }, + { + location: "http://www.wikidata.org/entity/Q1581634", + cordinates: "Point(-46.655328 -23.588229)", + locationLabel: "São Paulo Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q82941", + visitors: "729325", + cordinates: "Point(-46.655833333 -23.561111111)", + locationLabel: "São Paulo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18844386", + cordinates: "Point(21.568448 48.317724)", + locationLabel: "Sárospatak Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q31138", + cordinates: "Point(20.192528 47.171747)", + locationLabel: "Szolnok gallery", + }, + { + location: "http://www.wikidata.org/entity/Q91459983", + cordinates: "Point(27.84327 54.20002)", + locationLabel: "Syarhey Davidovich Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7659255", + cordinates: "Point(-87.4073 39.4657)", + locationLabel: "Swope Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20715090", + cordinates: "Point(-73.991794 40.725656)", + locationLabel: "Swiss Institute", + }, + { + location: "http://www.wikidata.org/entity/Q18643284", + cordinates: "Point(8.7383 47.4958)", + locationLabel: "Swiss Foundation of Photography", + }, + { + location: "http://www.wikidata.org/entity/Q692040", + cordinates: "Point(7.590833333 47.553611111)", + locationLabel: "Swiss Architecture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7658417", + cordinates: "Point(-1.7775 51.5528)", + locationLabel: "Swindon Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17026874", + cordinates: "Point(143.564558 -35.349462)", + locationLabel: "Swan Hill Regional Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7652569", + cordinates: "Point(24.6175 43.4083)", + locationLabel: "Svetlin Rusev Donative Exhibition", + }, + { + location: "http://www.wikidata.org/entity/Q7651035", + cordinates: "Point(120.453889 31.324722)", + locationLabel: "Suzhou Arts and Crafts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7649293", + cordinates: "Point(-76.880833 40.260833)", + locationLabel: "Susquehanna Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q287360", + cordinates: "Point(35.516228 33.892942)", + locationLabel: "Sursock Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11249110", + cordinates: "Point(139.73027778 35.66638889)", + locationLabel: "Suntory Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11306065", + cordinates: "Point(138.111889 36.055167)", + locationLabel: "Sunritz Hattori Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q7638846", + cordinates: "Point(73.8275 15.4939)", + locationLabel: "Sunaparanta, Goa Centre for the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q17220332", + cordinates: "Point(139.800389 35.69675)", + locationLabel: "Sumida Hokusai Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7635861", + cordinates: "Point(19.9372 50.0617)", + locationLabel: "Sukiennice Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11456481", + cordinates: "Point(137.1965 36.699056)", + locationLabel: "Suiboku Museum, Toyama", + }, + { + location: "http://www.wikidata.org/entity/Q11522124", + cordinates: "Point(136.866272 34.801936)", + locationLabel: "Sugimoto Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q493505", + cordinates: "Point(100.537122 13.756836)", + locationLabel: "Suan Pakkad Palace", + }, + { + location: "http://www.wikidata.org/entity/Q2360156", + cordinates: "Point(6.77388889 51.21666667)", + locationLabel: "Ständehaus Düsseldorf", + }, + { + location: "http://www.wikidata.org/entity/Q15849542", + cordinates: "Point(9.17507222 47.66325556)", + locationLabel: "Städtische Wessenberg-Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q19965800", + cordinates: "Point(7.212683 51.551252)", + locationLabel: "Städtische Galerie im Schlosspark Strünkede", + }, + { + location: "http://www.wikidata.org/entity/Q2359955", + cordinates: "Point(6.39142 51.2583)", + locationLabel: "Städtische Galerie im Park Viersen", + }, + { + location: "http://www.wikidata.org/entity/Q15849539", + cordinates: "Point(7.0750821 52.432841)", + locationLabel: "Städtische Galerie Nordhorn", + }, + { + location: "http://www.wikidata.org/entity/Q2359931", + cordinates: "Point(8.63389 53.0522)", + locationLabel: "Städtische Galerie Delmenhorst", + }, + { + location: "http://www.wikidata.org/entity/Q1506919", + cordinates: "Point(9.1242 48.9596)", + locationLabel: "Städtische Galerie Bietigheim-Bissingen", + }, + { + location: "http://www.wikidata.org/entity/Q163804", + cordinates: "Point(8.6737 50.1032)", + locationLabel: "Städel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16985117", + cordinates: "Point(-73.9757 40.7633)", + locationLabel: "Stux Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q903403", + cordinates: "Point(-73.94761 40.80841)", + locationLabel: "Studio Museum Harlem", + }, + { + location: "http://www.wikidata.org/entity/Q7626417", + cordinates: "Point(-117.241 32.8784)", + locationLabel: "Stuart Collection", + }, + { + location: "http://www.wikidata.org/entity/Q42749249", + cordinates: "Point(22.641194444 41.429944444)", + locationLabel: "Strumica Icon Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1258421", + cordinates: "Point(15.9785 45.8093)", + locationLabel: "Strossmayer Gallery of Old Masters", + }, + { + location: "http://www.wikidata.org/entity/Q11312410", + cordinates: "Point(139.732833 35.660444)", + locationLabel: "Striped House Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q14541290", + cordinates: "Point(10.1787 47.9851)", + locationLabel: "Strigel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "123051", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "125781", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "126310", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "126753", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "126888", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "126942", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "127881", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "131694", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "131721", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "133353", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "134562", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "135305", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "137728", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "142977", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "150000", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "158741", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "168645", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q845468", + visitors: "171837", + cordinates: "Point(7.736111111 48.579444444)", + locationLabel: "Strasbourg Museum of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q7620325", + cordinates: "Point(-0.1647 51.4994)", + locationLabel: "Storran Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2528439", + cordinates: "Point(-74.0593 41.4251)", + locationLabel: "Storm King Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q17039033", + cordinates: "Point(-73.795521 40.700819)", + locationLabel: "Store Front Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7619012", + cordinates: "Point(-75.8345 42.9117)", + locationLabel: "Stone Quarry Hill Art Park", + }, + { + location: "http://www.wikidata.org/entity/Q3867648", + cordinates: "Point(30.3411 59.9436)", + locationLabel: "Stieglitz Museum of Applied Arts", + }, + { + location: "http://www.wikidata.org/entity/Q20006926", + cordinates: "Point(-73.8082 45.4344)", + locationLabel: "Stewart Hall", + }, + { + location: "http://www.wikidata.org/entity/Q1291597", + cordinates: "Point(14.39657 50.090265)", + locationLabel: "Sternberg Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1801421", + cordinates: "Point(10.729167 59.913333)", + locationLabel: "Stenersen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1801421", + cordinates: "Point(10.729236 59.913325)", + locationLabel: "Stenersen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1801421", + cordinates: "Point(10.774167 59.916667)", + locationLabel: "Stenersen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q924335", + visitors: "700000", + cordinates: "Point(4.879722 52.357778)", + locationLabel: "Stedelijk Museum Amsterdam", + }, + { + location: "http://www.wikidata.org/entity/Q924335", + visitors: "724257", + cordinates: "Point(4.879722 52.357778)", + locationLabel: "Stedelijk Museum Amsterdam", + }, + { + location: "http://www.wikidata.org/entity/Q12002797", + cordinates: "Point(5.70339611 58.954905)", + locationLabel: "Stavanger kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q7604262", + cordinates: "Point(-95.3756 29.7349)", + locationLabel: "Station Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q671384", + visitors: "451195", + cordinates: "Point(12.57861 55.68889)", + locationLabel: "Statens Museum for Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q1140168", + cordinates: "Point(-74.07777778 40.64436111)", + locationLabel: "Staten Island Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3868464", + cordinates: "Point(11.87805556 43.46805556)", + locationLabel: "State Museum of Medieval and Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q247518", + cordinates: "Point(22.93099881 40.65811711)", + locationLabel: "State Museum of Contemporary Art, Greece", + }, + { + location: "http://www.wikidata.org/entity/Q55507798", + cordinates: "Point(15.5879 48.40433)", + locationLabel: "State Gallery of Lower Austria", + }, + { + location: "http://www.wikidata.org/entity/Q22661779", + cordinates: "Point(33.376111111 35.191944444)", + locationLabel: "State Gallery of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q4818221", + cordinates: "Point(32.855833 39.933056)", + locationLabel: "State Art and Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7603037", + cordinates: "Point(41.6339 41.6486)", + locationLabel: "State Art Museum of Adjara", + }, + { + location: "http://www.wikidata.org/entity/Q7601963", + cordinates: "Point(-93.7362 30.0935)", + locationLabel: "Stark Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q61654906", + cordinates: "Point(25.62742 42.426243)", + locationLabel: "Stara Zagora art gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7599961", + cordinates: "Point(-0.7073 51.5597)", + locationLabel: "Stanley Spencer Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7596786", + cordinates: "Point(-76.017385 37.267256)", + locationLabel: "Stage Door Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q686580", + cordinates: "Point(16.3626 48.2099)", + locationLabel: "Stadtpalais Liechtenstein", + }, + { + location: "http://www.wikidata.org/entity/Q13142923", + cordinates: "Point(7.5907362 47.5531411)", + locationLabel: "Stadtkino", + }, + { + location: "http://www.wikidata.org/entity/Q61695992", + cordinates: "Point(8.85728 48.27227)", + locationLabel: "Stadthalle Balingen", + }, + { + location: "http://www.wikidata.org/entity/Q2327133", + cordinates: "Point(10.1341 54.319)", + locationLabel: "Stadtgalerie im Sophienhof", + }, + { + location: "http://www.wikidata.org/entity/Q86106372", + cordinates: "Point(-3.351232 51.761457)", + locationLabel: "Stables View Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q17354119", + visitors: "17795", + cordinates: "Point(9.939162 49.793441)", + locationLabel: "Staatsgalerie Würzburg", + }, + { + location: "http://www.wikidata.org/entity/Q14917275", + cordinates: "Point(9.186875 48.780227777)", + locationLabel: "Staatsgalerie Stuttgart", + }, + { + location: "http://www.wikidata.org/entity/Q2324941", + visitors: "31410", + cordinates: "Point(11.18086111 48.73703889)", + locationLabel: "Staatsgalerie Neuburg", + }, + { + location: "http://www.wikidata.org/entity/Q892078", + visitors: "5868", + cordinates: "Point(10.9197 48.3675)", + locationLabel: "Staatsgalerie Moderne Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q2324939", + visitors: "0", + cordinates: "Point(9.14167 49.9761)", + locationLabel: "Staatsgalerie Aschaffenburg", + }, + { + location: "http://www.wikidata.org/entity/Q2324618", + cordinates: "Point(11.4183 53.6264)", + locationLabel: "Staatliches Museum Schwerin", + }, + { + location: "http://www.wikidata.org/entity/Q653002", + cordinates: "Point(13.7369 51.0528)", + locationLabel: "Staatliche Kunstsammlungen Dresden", + }, + { + location: "http://www.wikidata.org/entity/Q658725", + cordinates: "Point(8.4 49.0119)", + locationLabel: "Staatliche Kunsthalle Karlsruhe", + }, + { + location: "http://www.wikidata.org/entity/Q1792405", + cordinates: "Point(8.23806 48.7585)", + locationLabel: "Staatliche Kunsthalle Baden-Baden", + }, + { + location: "http://www.wikidata.org/entity/Q464404", + cordinates: "Point(11.56666667 48.14444444)", + locationLabel: "Staatliche Graphische Sammlung München", + }, + { + location: "http://www.wikidata.org/entity/Q27488930", + cordinates: "Point(7.539673352 47.208450752)", + locationLabel: "St. Ursus church, cathedral treasury", + }, + { + location: "http://www.wikidata.org/entity/Q7589033", + cordinates: "Point(-72.021033 44.418439)", + locationLabel: "St. Johnsbury Athenaeum", + }, + { + location: "http://www.wikidata.org/entity/Q18343210", + cordinates: "Point(-113.582156 37.111705)", + locationLabel: "St. George Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1675727", + cordinates: "Point(9.37358 47.4234)", + locationLabel: "St. Gallen textile museum", + }, + { + location: "http://www.wikidata.org/entity/Q1792552", + cordinates: "Point(9.38158 47.4278)", + locationLabel: "St. Gallen museum of art", + }, + { + location: "http://www.wikidata.org/entity/Q878754", + cordinates: "Point(10.689166666 53.862777777)", + locationLabel: "St. Anne's Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105868", + cordinates: "Point(-4.055416 52.723294)", + locationLabel: "St Johns Hall Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q656636", + cordinates: "Point(91.8224 26.1306)", + locationLabel: "Srimanta Sankaradeva Kalakshetra", + }, + { + location: "http://www.wikidata.org/entity/Q7581250", + cordinates: "Point(-111.607778 40.160833)", + locationLabel: "Springville Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18343157", + cordinates: "Point(-83.81228 39.92891)", + locationLabel: "Springfield Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q510144", + cordinates: "Point(9.739722222 52.363333333)", + locationLabel: "Sprengel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7575917", + cordinates: "Point(-84.4114 33.745)", + locationLabel: "Spelman College Museum of Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q3492931", + cordinates: "Point(-85.760916666 38.217861111)", + locationLabel: "Speed Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106041", + cordinates: "Point(-3.851833 52.590751)", + locationLabel: "Spectrum Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7573050", + cordinates: "Point(100.624402 13.940815)", + locationLabel: "Span's Cultural Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7570874", + cordinates: "Point(168.353 -46.4052)", + locationLabel: "Southland Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q373379", + cordinates: "Point(-80.28991 36.11995)", + locationLabel: "Southeastern Center for Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q6583116", + cordinates: "Point(100.616049 14.039044)", + locationLabel: "Southeast Asian Ceramics Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7569107", + cordinates: "Point(-1.4065 50.9085)", + locationLabel: "Southampton City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3492259", + cordinates: "Point(-0.07972222 51.47416667)", + locationLabel: "South London Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7566082", + cordinates: "Point(-97.765 30.2517)", + locationLabel: "South Austin Museum of Popular Culture", + }, + { + location: "http://www.wikidata.org/entity/Q1419469", + cordinates: "Point(18.417174 -33.928984)", + locationLabel: "South African National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3557326", + visitors: "17020", + cordinates: "Point(11.5558 55.4327)", + locationLabel: "Sorø Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3557326", + visitors: "24972", + cordinates: "Point(11.5558 55.4327)", + locationLabel: "Sorø Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1592523", + cordinates: "Point(-3.692539 40.435404)", + locationLabel: "Sorolla Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27668236", + cordinates: "Point(-0.074484 51.524756)", + locationLabel: "Sonos Studio", + }, + { + location: "http://www.wikidata.org/entity/Q26275463", + cordinates: "Point(-110.956677777 29.0704)", + locationLabel: "Sonora Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7562199", + visitors: "16500", + cordinates: "Point(-122.458 38.291)", + locationLabel: "Sonoma Valley Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1614504", + cordinates: "Point(139.69611111 35.69277778)", + locationLabel: "Sompo Japan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q20050750", + cordinates: "Point(34.770107 32.061936)", + locationLabel: "Sommer Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q7559753", + cordinates: "Point(-78.8996 35.9914)", + locationLabel: "Somerhill Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q201469", + visitors: "1100000", + cordinates: "Point(-73.958888888 40.783055555)", + locationLabel: "Solomon R. Guggenheim Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11270320", + cordinates: "Point(139.62530556 35.46555556)", + locationLabel: "Sogo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q12001740", + cordinates: "Point(5.8568114 61.4520299)", + locationLabel: "Sogn og Fjordane Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q12294210", + cordinates: "Point(23.324166666 42.693888888)", + locationLabel: "Sofia City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7553113", + visitors: "89000", + cordinates: "Point(-73.936545 40.768347)", + locationLabel: "Socrates Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q4430383", + cordinates: "Point(39.728611111 43.576388888)", + locationLabel: "Sochi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3487204", + cordinates: "Point(-1.86047 52.0029)", + locationLabel: "Snowshill Manor", + }, + { + location: "http://www.wikidata.org/entity/Q12069361", + cordinates: "Point(-86.235555555 41.699444444)", + locationLabel: "Snite Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q47068534", + cordinates: "Point(32.046052 54.780476)", + locationLabel: "Smolensk Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1192305", + visitors: "3150000", + cordinates: "Point(-77.023333333 38.897777777)", + locationLabel: "Smithsonian American Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7545243", + cordinates: "Point(-87.60133333 41.89144444)", + locationLabel: "Smith Museum of Stained Glass Windows", + }, + { + location: "http://www.wikidata.org/entity/Q14715853", + cordinates: "Point(-72.6361 42.3189)", + locationLabel: "Smith College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3486881", + cordinates: "Point(-87.6002 41.7935)", + locationLabel: "Smart Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1744024", + cordinates: "Point(17.108611111 48.14)", + locationLabel: "Slovak National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2293155", + cordinates: "Point(7.579583333 47.560338888)", + locationLabel: "Skulpturhalle Basel", + }, + { + location: "http://www.wikidata.org/entity/Q1479755", + cordinates: "Point(14.3041 48.2919)", + locationLabel: "Skulpturenpark Artpark", + }, + { + location: "http://www.wikidata.org/entity/Q3426315", + cordinates: "Point(9.4116 56.4504)", + locationLabel: "Skovgaard Museum", + }, + { + location: "http://www.wikidata.org/entity/Q683097", + visitors: "15305", + cordinates: "Point(13.198333333 55.707777777)", + locationLabel: + "Skissernas Museum – Museum of Artistic Process and Public Art", + }, + { + location: "http://www.wikidata.org/entity/Q683097", + visitors: "21000", + cordinates: "Point(13.198333333 55.707777777)", + locationLabel: + "Skissernas Museum – Museum of Artistic Process and Public Art", + }, + { + location: "http://www.wikidata.org/entity/Q683097", + visitors: "83000", + cordinates: "Point(13.198333333 55.707777777)", + locationLabel: + "Skissernas Museum – Museum of Artistic Process and Public Art", + }, + { + location: "http://www.wikidata.org/entity/Q3555520", + visitors: "100365", + cordinates: "Point(10.5973 57.7246)", + locationLabel: "Skagens Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3555520", + visitors: "102853", + cordinates: "Point(10.5973 57.7246)", + locationLabel: "Skagens Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3555520", + visitors: "163718", + cordinates: "Point(10.5973 57.7246)", + locationLabel: "Skagens Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22117790", + cordinates: "Point(136.799253 35.183669)", + locationLabel: "Sippo Art Village", + }, + { + location: "http://www.wikidata.org/entity/Q7525439", + cordinates: "Point(-96.404 42.4928)", + locationLabel: "Sioux City Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q23839262", + cordinates: "Point(103.84676 1.29523)", + locationLabel: "Singapore Pinacothèque de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q2032637", + cordinates: "Point(103.85056 1.29694)", + locationLabel: "Singapore Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2032637", + cordinates: "Point(103.8509 1.29734)", + locationLabel: "Singapore Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2032637", + cordinates: "Point(103.851002 1.297381)", + locationLabel: "Singapore Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1393952", + cordinates: "Point(24.93291378 60.16251131)", + locationLabel: "Sinebrychoff Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1393952", + cordinates: "Point(24.9369 60.1717)", + locationLabel: "Sinebrychoff Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4419916", + cordinates: "Point(34.091488 44.95729)", + locationLabel: "Simferopol Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1792381", + cordinates: "Point(100.490774 13.752704)", + locationLabel: "Silpakorn University Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7507891", + cordinates: "Point(-97.33154 32.7555)", + locationLabel: "Sid Richardson Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11529256", + cordinates: "Point(135.747178 34.710017)", + locationLabel: "Shōhaku Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q26424152", + cordinates: "Point(137.211667 36.687361)", + locationLabel: "Shusui Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q12130570", + cordinates: "Point(46.751069444 39.763411111)", + locationLabel: "Shushi Fine Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11514132", + cordinates: "Point(136.948389 35.140308)", + locationLabel: "Showa Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11447481", + cordinates: "Point(134.666417 34.880611)", + locationLabel: "Shosha Art and Craft Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11532219", + cordinates: "Point(135.701778 34.879583)", + locationLabel: "Shokado", + }, + { + location: "http://www.wikidata.org/entity/Q11663204", + cordinates: "Point(138.446 34.9918)", + locationLabel: "Shizuoka Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q78120016", + cordinates: "Point(138.408210699 34.955317914)", + locationLabel: "Shizuoka City Serizawa Keisuke Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17228812", + cordinates: "Point(130.669083 32.646889)", + locationLabel: "Shiranui Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7498014", + cordinates: "Point(-1.602 54.95)", + locationLabel: "Shipley Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7498014", + cordinates: "Point(-1.600469 54.949874)", + locationLabel: "Shipley Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11550512", + cordinates: "Point(139.76195 35.66582)", + locationLabel: "Shiodome Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11502473", + cordinates: "Point(142.47233333 43.52147222)", + locationLabel: "Shinseikan", + }, + { + location: "http://www.wikidata.org/entity/Q2655425", + cordinates: "Point(133.052495 35.459465)", + locationLabel: "Shimane Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17213009", + cordinates: "Point(130.68605556 32.80975)", + locationLabel: "Shimada Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q17211689", + cordinates: "Point(134.108958 34.345625)", + locationLabel: "Shikoku Mura gallery", + }, + { + location: "http://www.wikidata.org/entity/Q37311903", + cordinates: "Point(19.820225 41.335947)", + locationLabel: "Shijakus' house", + }, + { + location: "http://www.wikidata.org/entity/Q17211447", + cordinates: "Point(136.06125 34.88608333)", + locationLabel: "Shigaraki Kotokan", + }, + { + location: "http://www.wikidata.org/entity/Q11564689", + cordinates: "Point(136.058583 34.886222)", + locationLabel: "Shigaraki Ceramic Cultural Park", + }, + { + location: "http://www.wikidata.org/entity/Q11561694", + cordinates: "Point(139.691778 35.658667)", + locationLabel: "Shibuya Kuritsu Shōtō Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q7495470", + cordinates: "Point(-95.963695 36.062201)", + locationLabel: "Sherwin Miller Museum of Jewish Art", + }, + { + location: "http://www.wikidata.org/entity/Q3330221", + cordinates: "Point(-71.8945 45.4054)", + locationLabel: "Sherbrooke Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q7493533", + cordinates: "Point(-96.704444444 40.8175)", + locationLabel: "Sheldon Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6963176", + cordinates: "Point(34.78164 32.051348)", + locationLabel: "Sheik Murad House", + }, + { + location: "http://www.wikidata.org/entity/Q714163", + cordinates: "Point(37.60721667 55.75236944)", + locationLabel: "Shchusev State Museum of Architecture", + }, + { + location: "http://www.wikidata.org/entity/Q7489771", + cordinates: "Point(55.389221 25.364916)", + locationLabel: "Sharjah Museum of Islamic Civilization", + }, + { + location: "http://www.wikidata.org/entity/Q7487951", + cordinates: "Point(-1.1875 54.1886)", + locationLabel: "Shandy Hall", + }, + { + location: "http://www.wikidata.org/entity/Q11314323", + cordinates: "Point(138.580778 36.369806)", + locationLabel: "Sezon Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106435", + cordinates: "Point(-3.018131 51.822207)", + locationLabel: "Seventeen Traitors' Lane", + }, + { + location: "http://www.wikidata.org/entity/Q11356025", + cordinates: "Point(135.85727778 35.00733333)", + locationLabel: "Setsuko Mitsuhashi Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11566635", + cordinates: "Point(137.099786 35.218303)", + locationLabel: "Seto City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11566627", + cordinates: "Point(137.102142 35.224794)", + locationLabel: "Seto Ceramics and Glass Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q11362100", + cordinates: "Point(139.609 35.6671)", + locationLabel: "Setagaya Literary Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3892314", + cordinates: "Point(139.622 35.6316)", + locationLabel: "Setagaya Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106233", + cordinates: "Point(-5.16163 51.755877)", + locationLabel: "Set House Arts", + }, + { + location: "http://www.wikidata.org/entity/Q17222556", + cordinates: "Point(131.8475 34.685028)", + locationLabel: "Sesshu Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q591086", + visitors: "952518", + cordinates: "Point(-0.17505 51.5047)", + locationLabel: "Serpentine Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q591086", + visitors: "995335", + cordinates: "Point(-0.17505 51.5047)", + locationLabel: "Serpentine Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q20252372", + cordinates: "Point(24.575235 62.027635)", + locationLabel: "Serlachius Museum Gösta", + }, + { + location: "http://www.wikidata.org/entity/Q7453721", + visitors: "15000", + cordinates: "Point(44.500124 40.178773)", + locationLabel: "Sergei Parajanov Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11362538", + cordinates: "Point(135.25236111 34.72319444)", + locationLabel: "Sera Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7451680", + cordinates: "Point(126.94979 37.46631)", + locationLabel: "Seoul National University Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7451676", + cordinates: "Point(126.97380833 37.56412222)", + locationLabel: "Seoul Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7451563", + cordinates: "Point(126.99927778 37.45169444)", + locationLabel: "Seonbawi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7451535", + cordinates: "Point(128.583 38.1981)", + locationLabel: "Seokbong Ceramic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q97872336", + cordinates: "Point(103.763527777 1.456444444)", + locationLabel: "Senso Art Gallery Cafe", + }, + { + location: "http://www.wikidata.org/entity/Q3478488", + cordinates: "Point(135.7929 35.0176)", + locationLabel: "Sen-oku Hakuko Kan", + }, + { + location: "http://www.wikidata.org/entity/Q878784", + cordinates: "Point(13.7349 51.0535)", + locationLabel: "Semper Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q77316578", + cordinates: "Point(-83.821467 34.302836)", + locationLabel: "Sellars Gallery, Simmons Visual Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q3329573", + cordinates: "Point(139.61916667 35.62277778)", + locationLabel: "Seikadō Bunko Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2265861", + cordinates: "Point(9.833333333 46.492580555)", + locationLabel: "Segantini Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27487071", + cordinates: "Point(8.794209 47.200728)", + locationLabel: "Seedamm culture center", + }, + { + location: "http://www.wikidata.org/entity/Q265129", + cordinates: "Point(16.3655 48.2004)", + locationLabel: "Secession Building", + }, + { + location: "http://www.wikidata.org/entity/Q836066", + cordinates: "Point(-122.314 47.6303)", + locationLabel: "Seattle Asian Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1816301", + visitors: "797127", + cordinates: "Point(-122.338055555 47.607222222)", + locationLabel: "Seattle Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7439449", + cordinates: "Point(-73.941 40.7468)", + locationLabel: "SculptureCenter", + }, + { + location: "http://www.wikidata.org/entity/Q1397947", + cordinates: "Point(-7.72933 53.22747)", + locationLabel: "Sculpture in the Parklands", + }, + { + location: "http://www.wikidata.org/entity/Q7439459", + cordinates: "Point(-83.6238 41.6629)", + locationLabel: "Sculpture in the Park", + }, + { + location: "http://www.wikidata.org/entity/Q7438190", + cordinates: "Point(-111.923034 33.491709)", + locationLabel: "Scottsdale Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q2441562", + visitors: "312877", + cordinates: "Point(-3.193608578 55.955511213)", + locationLabel: "Scottish National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1889944", + visitors: "457655", + cordinates: "Point(-3.22746 55.9506)", + locationLabel: "Scottish National Gallery of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q942713", + visitors: "1377710", + cordinates: "Point(-3.195660636 55.950899738)", + locationLabel: "Scottish National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4314524", + cordinates: "Point(30.290244 59.937451)", + locationLabel: "Scientific-research Museum of the Russian Academy of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q549585", + cordinates: "Point(16.364444444 48.211944444)", + locationLabel: "Schottenstift, Vienna", + }, + { + location: "http://www.wikidata.org/entity/Q878253", + cordinates: "Point(11.3322 50.9806)", + locationLabel: "Schloss Weimar", + }, + { + location: "http://www.wikidata.org/entity/Q656247", + cordinates: "Point(14.0808 47.5189)", + locationLabel: "Schloss Trautenfels", + }, + { + location: "http://www.wikidata.org/entity/Q873107", + cordinates: "Point(16.8522 48.0625)", + locationLabel: "Schloss Rohrau", + }, + { + location: "http://www.wikidata.org/entity/Q17591775", + cordinates: "Point(15.810756 47.214561)", + locationLabel: "Schloss Herberstein", + }, + { + location: "http://www.wikidata.org/entity/Q175769", + cordinates: "Point(9.414124 55.039262)", + locationLabel: "Schloss Brundlund", + }, + { + location: "http://www.wikidata.org/entity/Q875733", + cordinates: "Point(12.7489 46.8317)", + locationLabel: "Schloss Bruck", + }, + { + location: "http://www.wikidata.org/entity/Q22669065", + visitors: "30953", + cordinates: "Point(11.5601 48.2487)", + locationLabel: "Schleißheim State Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q176293", + cordinates: "Point(8.683611 50.110278)", + locationLabel: "Schirn Kunsthalle Frankfurt", + }, + { + location: "http://www.wikidata.org/entity/Q2842816", + cordinates: "Point(4.961 52.69807)", + locationLabel: "Scheringa Museum of Realist Art", + }, + { + location: "http://www.wikidata.org/entity/Q666572", + cordinates: "Point(7.610277777 47.528333333)", + locationLabel: "Schaulager", + }, + { + location: "http://www.wikidata.org/entity/Q322010", + cordinates: "Point(13.2967 52.5191)", + locationLabel: "Scharf-Gerstenberg Collection", + }, + { + location: "http://www.wikidata.org/entity/Q523652", + visitors: "14927", + cordinates: "Point(11.5934 48.1423)", + locationLabel: "Schack Collection", + }, + { + location: "http://www.wikidata.org/entity/Q29364902", + cordinates: "Point(-0.4015305 54.2787375)", + locationLabel: "Scarborough Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7430232", + cordinates: "Point(-83.062819 42.35985)", + locationLabel: "Scarab Club", + }, + { + location: "http://www.wikidata.org/entity/Q7429419", + cordinates: "Point(51.355741 35.727318)", + locationLabel: "Sazmanab Platform for Contemporary Arts", + }, + { + location: "http://www.wikidata.org/entity/Q7428260", + cordinates: "Point(126.985 37.5765)", + locationLabel: "Savina Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11304884", + cordinates: "Point(139.64070278 36.09996944)", + locationLabel: "Satoe Memorial Art Museum of 21st Century", + }, + { + location: "http://www.wikidata.org/entity/Q11384365", + cordinates: "Point(139.715 35.681722)", + locationLabel: "Sato Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7424149", + cordinates: "Point(175.05332222 -39.93121667)", + locationLabel: "Sarjeant Gallery Te Whare O Rehua Whanganui", + }, + { + location: "http://www.wikidata.org/entity/Q21138408", + cordinates: "Point(44.514002777 40.189494444)", + locationLabel: "Sargis Muradyan Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3683060", + cordinates: "Point(9.1151652 39.2172099)", + locationLabel: 'Sardinian Art Collection "Luigi Piloni"', + }, + { + location: "http://www.wikidata.org/entity/Q3133611", + cordinates: "Point(21.01222222 41.08888889)", + locationLabel: "Saraj Resen", + }, + { + location: "http://www.wikidata.org/entity/Q5484996", + cordinates: "Point(23.74055556 61.50513889)", + locationLabel: "Sara Hildén Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11249478", + cordinates: "Point(141.34013889 42.93922222)", + locationLabel: "Sapporo Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11522682", + cordinates: "Point(133.053583 34.255694)", + locationLabel: "Santō Murakami Memorial Museum of Calligraphy", + }, + { + location: "http://www.wikidata.org/entity/Q2797197", + cordinates: "Point(28.9461 41.0665)", + locationLabel: "SantralIstanbul", + }, + { + location: "http://www.wikidata.org/entity/Q605703", + cordinates: "Point(-70.644167 -33.435278)", + locationLabel: "Santiago Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q7419961", + cordinates: "Point(-99.13071111 19.43385556)", + locationLabel: "Santa Teresa la Antigua", + }, + { + location: "http://www.wikidata.org/entity/Q18325624", + cordinates: "Point(-119.060081 34.35467)", + locationLabel: "Santa Paula Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1279458", + cordinates: "Point(11.328891 43.316937)", + locationLabel: "Santa Maria della Scala", + }, + { + location: "http://www.wikidata.org/entity/Q7419279", + cordinates: "Point(-48.52611111 -27.5775)", + locationLabel: "Santa Catarina Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7419233", + cordinates: "Point(-119.703 34.4228)", + locationLabel: "Santa Barbara Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q451555", + cordinates: "Point(13.041 52.4038)", + locationLabel: "Sanssouci Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7419019", + cordinates: "Point(77.18464 28.538457)", + locationLabel: "Sanskriti Museums", + }, + { + location: "http://www.wikidata.org/entity/Q11385099", + cordinates: "Point(138.91591667 35.11494444)", + locationLabel: "Sano Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11356786", + cordinates: "Point(136.790328 35.444803)", + locationLabel: "Sankō Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325683", + cordinates: "Point(-104.606227 38.26921)", + locationLabel: "Sangre de Cristo Arts & Conference Center", + }, + { + location: "http://www.wikidata.org/entity/Q7415842", + cordinates: "Point(134.23805556 35.53972222)", + locationLabel: "Sand Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106028", + cordinates: "Point(-3.098981 52.961199)", + locationLabel: "Sanctuary Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q105550703", + cordinates: "Point(2.899943819 42.699808315)", + locationLabel: "Sanch Exhibition Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1341687", + cordinates: "Point(11.042077 43.466598)", + locationLabel: "SanGimignano1300", + }, + { + location: "http://www.wikidata.org/entity/Q30880809", + cordinates: "Point(12.508979104 38.015075022)", + locationLabel: "San Rocco Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q18325623", + cordinates: "Point(-120.664873 35.279649)", + locationLabel: "San Luis Obispo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7414467", + cordinates: "Point(-121.884 37.3281)", + locationLabel: "San Jose Museum of Quilts & Textiles", + }, + { + location: "http://www.wikidata.org/entity/Q7414466", + cordinates: "Point(-121.89 37.3335)", + locationLabel: "San Jose Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q913672", + visitors: "632519", + cordinates: "Point(-122.401 37.7858)", + locationLabel: "San Francisco Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q913672", + visitors: "650000", + cordinates: "Point(-122.401 37.7858)", + locationLabel: "San Francisco Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q1368166", + cordinates: "Point(-117.1505 32.7322)", + locationLabel: "San Diego Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1368166", + cordinates: "Point(-117.150556 32.732222)", + locationLabel: "San Diego Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1368166", + cordinates: "Point(-117.15047 32.73223)", + locationLabel: "San Diego Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1368166", + cordinates: "Point(-117.15 32.732194)", + locationLabel: "San Diego Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7413594", + cordinates: "Point(-117.151014 32.731106)", + locationLabel: "San Diego Art Institute", + }, + { + location: "http://www.wikidata.org/entity/Q1647706", + cordinates: "Point(-98.482089 29.437568)", + locationLabel: "San Antonio Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7413263", + cordinates: "Point(-100.433 31.457)", + locationLabel: "San Angelo Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q7412332", + cordinates: "Point(-82.37 29.6369)", + locationLabel: "Samuel P. Harn Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q15274714", + cordinates: "Point(138.5913 -34.9222)", + locationLabel: "Samstag Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2217420", + cordinates: "Point(8.307402777 47.049561111)", + locationLabel: "Sammlung Rosengart Luzern", + }, + { + location: "http://www.wikidata.org/entity/Q7408923", + cordinates: "Point(-67.47944444 -29.17444444)", + locationLabel: "Samay Huasi", + }, + { + location: "http://www.wikidata.org/entity/Q3329599", + cordinates: "Point(50.089978 53.189386)", + locationLabel: "Samara Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q845947", + cordinates: "Point(-99.16111667 19.41951389)", + locationLabel: "Salón de la Plástica Mexicana", + }, + { + location: "http://www.wikidata.org/entity/Q2215920", + cordinates: "Point(13.04777778 47.79861111)", + locationLabel: "Salzburg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q674427", + cordinates: "Point(-82.6315 27.766)", + locationLabel: "Salvador Dalí Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11892137", + cordinates: "Point(23.1175 60.388)", + locationLabel: "Salo Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7404381", + cordinates: "Point(-2.271792 53.485178)", + locationLabel: "Salford Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7404381", + cordinates: "Point(-2.271666666 53.485)", + locationLabel: "Salford Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1864572", + visitors: "1124776", + cordinates: "Point(78.480347 17.371426)", + locationLabel: "Salar Jung Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11946661", + cordinates: "Point(2.16115 41.38852778)", + locationLabel: "Sala Gaspar", + }, + { + location: "http://www.wikidata.org/entity/Q11946656", + cordinates: "Point(2.17133333 41.38988056)", + locationLabel: "Sala Esteva", + }, + { + location: "http://www.wikidata.org/entity/Q3395851", + cordinates: "Point(29.053704 41.099116)", + locationLabel: "Sakıp Sabancı Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11537943", + cordinates: "Point(141.126139 39.375611)", + locationLabel: "Sakura-Chijinkan", + }, + { + location: "http://www.wikidata.org/entity/Q11382975", + cordinates: "Point(140.22958333 35.71919444)", + locationLabel: "Sakura Shiritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q78314906", + cordinates: "Point(138.48378 36.25572)", + locationLabel: "Saku Municipal Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11383094", + cordinates: "Point(127.774972 26.278028)", + locationLabel: "Sakima Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22118833", + cordinates: "Point(139.81583333 38.89305556)", + locationLabel: "Sakata City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3287172", + cordinates: "Point(30.3024 59.934)", + locationLabel: "Saint Petersburg Manege", + }, + { + location: "http://www.wikidata.org/entity/Q3287172", + cordinates: "Point(30.3063151 59.934066)", + locationLabel: "Saint Petersburg Manege", + }, + { + location: "http://www.wikidata.org/entity/Q871657", + cordinates: "Point(14.8728 46.7005)", + locationLabel: "Saint Paul's in Lavanttal Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q18325676", + cordinates: "Point(-122.108091 37.840707)", + locationLabel: "Saint Marys College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7401681", + cordinates: "Point(-90.2341 38.6387)", + locationLabel: "Saint Louis University Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1760539", + cordinates: "Point(-90.294444 38.639444)", + locationLabel: "Saint Louis Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q23054626", + cordinates: "Point(11.330514 43.31866)", + locationLabel: "Saint Bernardino Oratory and Diocesan Museum of Holy Art", + }, + { + location: "http://www.wikidata.org/entity/Q23054626", + cordinates: "Point(11.334468 43.321969)", + locationLabel: "Saint Bernardino Oratory and Diocesan Museum of Holy Art", + }, + { + location: "http://www.wikidata.org/entity/Q23054626", + cordinates: "Point(11.335 43.322222222)", + locationLabel: "Saint Bernardino Oratory and Diocesan Museum of Holy Art", + }, + { + location: "http://www.wikidata.org/entity/Q52984670", + cordinates: "Point(-0.129822 51.5086)", + locationLabel: "Sainsbury Wing", + }, + { + location: "http://www.wikidata.org/entity/Q7400532", + cordinates: "Point(1.2347 52.6203)", + locationLabel: "Sainsbury Centre for Visual Arts", + }, + { + location: "http://www.wikidata.org/entity/Q2211813", + cordinates: "Point(-83.95344444 43.42433333)", + locationLabel: "Saginaw Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7399081", + cordinates: "Point(135.94611111 35.10944444)", + locationLabel: "Sagawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28684603", + cordinates: "Point(130.29224444 33.24439444)", + locationLabel: "Saga University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22118826", + cordinates: "Point(130.299972222 33.244611111)", + locationLabel: "Saga Prefectural Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3868204", + cordinates: "Point(11.481899 43.138695)", + locationLabel: "Sacred Art Museum of the Arbia Valley", + }, + { + location: "http://www.wikidata.org/entity/Q55354244", + cordinates: "Point(7.719629 45.6451345)", + locationLabel: "Sacred Art Museum (Arnad)", + }, + { + location: "http://www.wikidata.org/entity/Q2245152", + cordinates: "Point(7.686111111 45.074166666)", + locationLabel: "Sabauda Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4886818", + cordinates: "Point(2.109311 41.5492)", + locationLabel: "Sabadell Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1585567", + cordinates: "Point(13.3957 52.5186)", + locationLabel: "Saarland Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3358889", + cordinates: "Point(3.500216 50.891235)", + locationLabel: "SONS Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7392065", + cordinates: "Point(127.118256 37.517086)", + locationLabel: "SOMA Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q63270898", + cordinates: "Point(121.524337 25.052771)", + locationLabel: "SLY art space", + }, + { + location: "http://www.wikidata.org/entity/Q28684004", + cordinates: "Point(140.26680556 35.15761111)", + locationLabel: "SGT Museum", + }, + { + location: "http://www.wikidata.org/entity/Q42981943", + cordinates: "Point(-43.940027777 -19.923666666)", + locationLabel: "SESC Palladium", + }, + { + location: "http://www.wikidata.org/entity/Q2422767", + cordinates: "Point(-81.100108 32.077779)", + locationLabel: "SCAD Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q597597", + cordinates: "Point(3.61107 51.49887)", + locationLabel: "SBKM De Vleeshal", + }, + { + location: "http://www.wikidata.org/entity/Q3169139", + cordinates: "Point(28.973487 41.023918)", + locationLabel: "SALT", + }, + { + location: "http://www.wikidata.org/entity/Q1540707", + cordinates: "Point(3.722025 51.038168888)", + locationLabel: "S.M.A.K. - Stedelijk Museum voor Actuele Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q1540707", + cordinates: "Point(3.723105 51.037975)", + locationLabel: "S.M.A.K. - Stedelijk Museum voor Actuele Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q16938268", + cordinates: "Point(151.2043333 -33.86136111)", + locationLabel: "S. H. Ervin Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7385034", + cordinates: "Point(-79.378888888 43.658055555)", + locationLabel: "Ryerson Image Centre", + }, + { + location: "http://www.wikidata.org/entity/Q16693441", + visitors: "46600", + cordinates: "Point(39.751388888 54.626944444)", + locationLabel: "Ryazan Oblast State Art Museum after I.P. Pojalostin", + }, + { + location: "http://www.wikidata.org/entity/Q2110327", + cordinates: "Point(29.7393582 -2.3602205)", + locationLabel: "Rwesero Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325652", + cordinates: "Point(-117.711722 34.104892)", + locationLabel: "Ruth Chandler Williamson Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q211043", + cordinates: "Point(30.332383333 59.938741666)", + locationLabel: "Russian Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7381305", + cordinates: "Point(-1.8707 50.7176)", + locationLabel: "Russell-Cotes Art Gallery & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q281359", + cordinates: "Point(-6.569235 53.141252)", + locationLabel: "Russborough House", + }, + { + location: "http://www.wikidata.org/entity/Q7378151", + cordinates: "Point(-1.2645 52.3717)", + locationLabel: "Rugby Art Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7378090", + cordinates: "Point(-70.7194 44.0567)", + locationLabel: "Rufus Porter Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7377462", + cordinates: "Point(12.4008 56.0864)", + locationLabel: "Rudolph Tegner Museum", + }, + { + location: "http://www.wikidata.org/entity/Q55352661", + cordinates: "Point(12.350277777 46.701111111)", + locationLabel: "Rudolf Stolz Museum", + }, + { + location: "http://www.wikidata.org/entity/Q63751", + cordinates: "Point(-73.997805555 40.740111111)", + locationLabel: "Rubin Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7375007", + cordinates: "Point(-2.6084 51.4581)", + locationLabel: "Royal West of England Academy", + }, + { + location: "http://www.wikidata.org/entity/Q7374813", + cordinates: "Point(-3.196388888 55.95175)", + locationLabel: "Royal Scottish Academy Building", + }, + { + location: "http://www.wikidata.org/entity/Q7374745", + cordinates: "Point(-1.534309 52.286876)", + locationLabel: "Royal Pump Rooms", + }, + { + location: "http://www.wikidata.org/entity/Q51105", + cordinates: "Point(9.19111111 45.46305556)", + locationLabel: "Royal Palace of Milan", + }, + { + location: "http://www.wikidata.org/entity/Q377500", + cordinates: "Point(4.357777777 50.841944444)", + locationLabel: "Royal Museums of Fine Arts of Belgium", + }, + { + location: "http://www.wikidata.org/entity/Q377500", + cordinates: "Point(4.358238 50.84168)", + locationLabel: "Royal Museums of Fine Arts of Belgium", + }, + { + location: "http://www.wikidata.org/entity/Q5121082", + cordinates: "Point(4.39187 50.83903)", + locationLabel: "Royal Museums of Art and History", + }, + { + location: "http://www.wikidata.org/entity/Q5121082", + cordinates: "Point(4.392985 50.840489)", + locationLabel: "Royal Museums of Art and History", + }, + { + location: "http://www.wikidata.org/entity/Q1323293", + cordinates: "Point(29.963 31.2407)", + locationLabel: "Royal Jewelry Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5291784", + cordinates: "Point(-6.25456 53.3371)", + locationLabel: "Royal Hibernian Academy", + }, + { + location: "http://www.wikidata.org/entity/Q1251321", + cordinates: "Point(-5.0548 50.2637)", + locationLabel: "Royal Cornwall Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7373882", + cordinates: "Point(-3.830236 53.281481)", + locationLabel: "Royal Cambrian Academy of Art", + }, + { + location: "http://www.wikidata.org/entity/Q270920", + visitors: "1248882", + cordinates: "Point(-0.139444444 51.509166666)", + locationLabel: "Royal Academy of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q270920", + visitors: "1267784", + cordinates: "Point(-0.139444444 51.509166666)", + locationLabel: "Royal Academy of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q270920", + visitors: "1594140", + cordinates: "Point(-0.139444444 51.509166666)", + locationLabel: "Royal Academy of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q86106038", + cordinates: "Point(-3.152624 52.661717)", + locationLabel: "Rowles Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q18346774", + cordinates: "Point(25.718889 66.501389)", + locationLabel: "Rovaniemi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1453357", + cordinates: "Point(-96.770833 46.873333)", + locationLabel: "Rourke Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7370609", + cordinates: "Point(176.259 -38.1356)", + locationLabel: "Rotorua Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2956755", + cordinates: "Point(-95.396111 29.7375)", + locationLabel: "Rothko Chapel", + }, + { + location: "http://www.wikidata.org/entity/Q62665060", + cordinates: "Point(6.085295 50.776025)", + locationLabel: "Rote Burg — Büchel Museum Aachen", + }, + { + location: "http://www.wikidata.org/entity/Q7344278", + cordinates: "Point(-67.05136 45.076066)", + locationLabel: "Ross Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7369018", + cordinates: "Point(12.081666666 55.642222222)", + locationLabel: "Roskilde Royal Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q18573027", + cordinates: "Point(17.844444 59.574167)", + locationLabel: "Rosersbergs Collection", + }, + { + location: "http://www.wikidata.org/entity/Q7367636", + visitors: "13000", + cordinates: "Point(-71.2626 42.3656)", + locationLabel: "Rose Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7367208", + visitors: "10000", + cordinates: "Point(-122.196 47.621)", + locationLabel: "Rosalie Whyel Museum of Doll Art", + }, + { + location: "http://www.wikidata.org/entity/Q11587726", + cordinates: "Point(137.881389 36.343694)", + locationLabel: "Rokuzan Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q55375736", + cordinates: "Point(3.485652 50.959892)", + locationLabel: "Roger Raveelmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q1321619", + cordinates: "Point(-75.1739 39.9619)", + locationLabel: "Rodin Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18341889", + cordinates: "Point(-89.089058 42.277045)", + locationLabel: "Rockford Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16924994", + cordinates: "Point(121.4843 31.2429694)", + locationLabel: "Rockbund Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7354001", + cordinates: "Point(-70.9764 43.3045)", + locationLabel: "Rochester Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q7353808", + cordinates: "Point(-2.1594 53.6187)", + locationLabel: "Rochdale Pioneers Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7351359", + cordinates: "Point(-117.326 34.1839)", + locationLabel: "Robert and Frances Fullerton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q79303841", + cordinates: "Point(172.626171 -43.53078)", + locationLabel: "Robert McDougall Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q20892814", + cordinates: "Point(14.4208436 50.0905603)", + locationLabel: "Robert Guttmann Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106494", + cordinates: "Point(-3.177032 51.50084)", + locationLabel: "Roath & Cathays Gallery (The Art Project)", + }, + { + location: "http://www.wikidata.org/entity/Q7338883", + cordinates: "Point(-73.9836 40.7187)", + locationLabel: "Rivington Arms", + }, + { + location: "http://www.wikidata.org/entity/Q7338423", + cordinates: "Point(-117.370472 33.981722)", + locationLabel: "Riverside Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15961606", + cordinates: "Point(-79.057 43.1703)", + locationLabel: "RiverBrink Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7335252", + cordinates: "Point(-51.2317 -30.0291)", + locationLabel: "Rio Grande do Sul Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1505892", + cordinates: "Point(6.896944 52.227778)", + locationLabel: "Rijksmuseum Twenthe", + }, + { + location: "http://www.wikidata.org/entity/Q190804", + visitors: "2259987", + cordinates: "Point(4.885278 52.36)", + locationLabel: "Rijksmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q190804", + visitors: "2700000", + cordinates: "Point(4.885278 52.36)", + locationLabel: "Rijksmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q7333341", + cordinates: "Point(24.1096 56.94845)", + locationLabel: "Riga Porcelain Museum", + }, + { + location: "http://www.wikidata.org/entity/Q668300", + visitors: "157000", + cordinates: "Point(8.53027 47.35892)", + locationLabel: "Rietberg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7330766", + cordinates: "Point(-84.9016 39.8234)", + locationLabel: "Richmond Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7328751", + cordinates: "Point(-83.0683 40.2969)", + locationLabel: "Richard Ross Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2216591", + cordinates: "Point(-34.878845 -8.068748)", + locationLabel: "Ricardo Brennand Institute", + }, + { + location: "http://www.wikidata.org/entity/Q7322280", + visitors: "41842", + cordinates: "Point(8.767522 55.329218)", + locationLabel: "Ribe Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q86105953", + cordinates: "Point(-3.490856 53.322184)", + locationLabel: "Rhylcreate", + }, + { + location: "http://www.wikidata.org/entity/Q2148186", + cordinates: "Point(-71.4072 41.8268)", + locationLabel: "Rhode Island School of Design Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1529045", + cordinates: "Point(7.09396 50.7357)", + locationLabel: "Rheinisches Malermuseum", + }, + { + location: "http://www.wikidata.org/entity/Q5291798", + cordinates: "Point(-80.2829 36.1257)", + locationLabel: "Reynolda House Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q3358410", + cordinates: "Point(-21.9406 64.149)", + locationLabel: "Reykjavik Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1954273", + cordinates: "Point(13.76305556 45.64694444)", + locationLabel: "Revoltella Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1954273", + cordinates: "Point(13.763183 45.64684)", + locationLabel: "Revoltella Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2533099", + cordinates: "Point(29.29 61.80333333)", + locationLabel: "Retretti", + }, + { + location: "http://www.wikidata.org/entity/Q1248553", + visitors: "51680", + cordinates: "Point(13.0458 47.7983)", + locationLabel: "Residenzgalerie Salzburg", + }, + { + location: "http://www.wikidata.org/entity/Q13221631", + cordinates: "Point(-2.92644 43.25547)", + locationLabel: "Reproductions Museum Bilbao", + }, + { + location: "http://www.wikidata.org/entity/Q876537", + visitors: "164000", + cordinates: "Point(-77.039447 38.898867)", + locationLabel: "Renwick Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q876537", + visitors: "765000", + cordinates: "Point(-77.039447 38.898867)", + locationLabel: "Renwick Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2143255", + cordinates: "Point(-87.601 41.7892)", + locationLabel: "Renaissance Society", + }, + { + location: "http://www.wikidata.org/entity/Q277316", + visitors: "193250", + cordinates: "Point(4.901389 52.369444)", + locationLabel: "Rembrandt House Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20006889", + cordinates: "Point(-106.667072 52.12295)", + locationLabel: "Remai Modern", + }, + { + location: "http://www.wikidata.org/entity/Q56694957", + cordinates: "Point(-38.968142 -12.257394)", + locationLabel: "Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105985", + cordinates: "Point(-3.167546 52.968842)", + locationLabel: "Regent Street Studio", + }, + { + location: "http://www.wikidata.org/entity/Q86106046", + cordinates: "Point(-3.339662 52.508658)", + locationLabel: "Reformations", + }, + { + location: "http://www.wikidata.org/entity/Q7306057", + cordinates: "Point(-97.06 44.8876)", + locationLabel: "Redlin Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q86106376", + cordinates: "Point(-3.377941 51.747566)", + locationLabel: "Redhouse Cymru", + }, + { + location: "http://www.wikidata.org/entity/Q4048112", + cordinates: "Point(37.60991 55.741727)", + locationLabel: "Red October", + }, + { + location: "http://www.wikidata.org/entity/Q7300542", + cordinates: "Point(-75.9513 40.3274)", + locationLabel: "Reading Public Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18810142", + cordinates: "Point(12.20667 44.41388)", + locationLabel: "Ravenna Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10649958", + cordinates: "Point(21.5175 61.12819444)", + locationLabel: "Rauma Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106234", + cordinates: "Point(-5.187962 51.87558)", + locationLabel: "Raul Speek Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q9265591", + cordinates: "Point(21.0095 52.226194)", + locationLabel: "Raster Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q42417906", + cordinates: "Point(-80.009734 40.45793)", + locationLabel: "Randyland", + }, + { + location: "http://www.wikidata.org/entity/Q3615336", + visitors: "42713", + cordinates: "Point(10.0412 56.4603)", + locationLabel: "Randers Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q55526676", + cordinates: "Point(137.21716667 36.70619444)", + locationLabel: "Rakusui-tei Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11541558", + cordinates: "Point(136.910661 35.175253)", + locationLabel: "Rakushi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q73016624", + cordinates: "Point(7.692533 45.063117)", + locationLabel: "Raffaella De Chirico Galleria d'Arte", + }, + { + location: "http://www.wikidata.org/entity/Q1270949", + cordinates: "Point(46.0353 51.5322)", + locationLabel: "Radishchev Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1753248", + cordinates: "Point(17.04458333 51.11013889)", + locationLabel: "Racławice Panorama", + }, + { + location: "http://www.wikidata.org/entity/Q7279653", + cordinates: "Point(-87.78264 42.728282)", + locationLabel: "Racine Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3928496", + cordinates: "Point(9.17861111 45.47)", + locationLabel: "Raccolte extraeuropee del Castello Sforzesco", + }, + { + location: "http://www.wikidata.org/entity/Q11996744", + cordinates: "Point(10.740895 59.90921194)", + locationLabel: "RAM galleri", + }, + { + location: "http://www.wikidata.org/entity/Q7274108", + cordinates: "Point(-93.741 32.4587)", + locationLabel: "R. W. Norton Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7272020", + cordinates: "Point(-1.0758 53.9605)", + locationLabel: "Quilt Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7270943", + visitors: "635825", + cordinates: "Point(153.017235 -27.470606)", + locationLabel: "Queensland Gallery of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q7270943", + visitors: "1000000", + cordinates: "Point(153.017235 -27.470606)", + locationLabel: "Queensland Gallery of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q7270900", + visitors: "546036", + cordinates: "Point(153.018 -27.4727)", + locationLabel: "Queensland Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1320229", + cordinates: "Point(-73.846666666 40.745833333)", + locationLabel: "Queens Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1434767", + cordinates: "Point(-0.142408 51.4998)", + locationLabel: "Queen's Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7269994", + cordinates: "Point(-3.1739 55.9526)", + locationLabel: "Queen's Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7269994", + cordinates: "Point(-3.17385 55.9526)", + locationLabel: "Queen's Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7270538", + cordinates: "Point(147.134 -41.4378)", + locationLabel: "Queen Victoria Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q84991759", + cordinates: "Point(-8.201146 39.46422)", + locationLabel: "Quartel da Arte Contemporânea de Abrantes", + }, + { + location: "http://www.wikidata.org/entity/Q70413649", + cordinates: "Point(119.993611111 26.235083333)", + locationLabel: "Qiaozi Fishing Village Exhibition Hall", + }, + { + location: "http://www.wikidata.org/entity/Q106704461", + cordinates: "Point(16.36121 47.81684)", + locationLabel: "Pöttsching sculpture trail", + }, + { + location: "http://www.wikidata.org/entity/Q3026874", + visitors: "54295", + cordinates: "Point(-80.1963 25.7743)", + locationLabel: "Pérez Art Museum Miami", + }, + { + location: "http://www.wikidata.org/entity/Q746631", + cordinates: "Point(25.038888888 48.528333333)", + locationLabel: "Pysanka Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4872", + visitors: "1300900", + cordinates: "Point(37.605 55.747222222)", + locationLabel: "Pushkin Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4872", + visitors: "1481300", + cordinates: "Point(37.605 55.747222222)", + locationLabel: "Pushkin Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q7382027", + cordinates: "Point(-0.1231 51.5182)", + locationLabel: "Pushkin House", + }, + { + location: "http://www.wikidata.org/entity/Q86106245", + cordinates: "Point(-5.038898 51.711941)", + locationLabel: "Pure Art", + }, + { + location: "http://www.wikidata.org/entity/Q2931413", + cordinates: "Point(12.33618 45.4308)", + locationLabel: "Punta della Dogana", + }, + { + location: "http://www.wikidata.org/entity/Q7260440", + cordinates: "Point(10.61 59.424444)", + locationLabel: "Punkt Ø", + }, + { + location: "http://www.wikidata.org/entity/Q7260440", + cordinates: "Point(10.60995 59.42456)", + locationLabel: "Punkt Ø", + }, + { + location: "http://www.wikidata.org/entity/Q6372886", + cordinates: "Point(-90.2344 38.6404)", + locationLabel: "Pulitzer Foundation for the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q6033864", + cordinates: "Point(-66.0744 18.45)", + locationLabel: "Puerto Rico Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q2112323", + cordinates: "Point(29.02044444 41.10983333)", + locationLabel: "Proje4L / Elgiz Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q2603905", + cordinates: "Point(-74.6578 40.3472)", + locationLabel: "Princeton University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q537", + cordinates: "Point(18.113055555 59.32)", + locationLabel: "Prince Eugens Waldemarsudde", + }, + { + location: "http://www.wikidata.org/entity/Q30889527", + cordinates: "Point(131.882053 43.114358)", + locationLabel: "Primorye State Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q30889527", + cordinates: "Point(131.882148 43.114417)", + locationLabel: "Primorye State Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q42644722", + cordinates: "Point(21.558777777 41.343944444)", + locationLabel: "Prilep Icon Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3643223", + cordinates: "Point(28.213 -25.747)", + locationLabel: "Pretoria Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q77316601", + cordinates: "Point(-83.821463 34.302841)", + locationLabel: "Presidents Gallery, Simmons Visual Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q12670160", + cordinates: "Point(21.1402 55.7146)", + locationLabel: "Pranas Domšaitis Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12018045", + cordinates: "Point(14.42196 50.08778)", + locationLabel: "Prague City Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7236419", + cordinates: "Point(121.4938 31.2031)", + locationLabel: "Power Station of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1127288", + cordinates: "Point(21.08817778 52.16430556)", + locationLabel: "Poster Museum at Wilanów", + }, + { + location: "http://www.wikidata.org/entity/Q7233687", + cordinates: "Point(143.858 -37.5614)", + locationLabel: "Post Office Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7232990", + cordinates: "Point(127.0539585 37.5058037)", + locationLabel: "Posco Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2105523", + cordinates: "Point(12.1287 50.1695)", + locationLabel: "Porzellanikon", + }, + { + location: "http://www.wikidata.org/entity/Q7232239", + cordinates: "Point(-75.6987 45.4229)", + locationLabel: "Portrait Gallery of Canada", + }, + { + location: "http://www.wikidata.org/entity/Q2105170", + cordinates: "Point(-70.2622 43.6536)", + locationLabel: "Portland Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2105155", + cordinates: "Point(-0.140833333 51.5075)", + locationLabel: "Portland Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q279049", + visitors: "445000", + cordinates: "Point(-122.684 45.5162)", + locationLabel: "Portland Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7231319", + cordinates: "Point(-67.044444 18.084444)", + locationLabel: "Porta Coeli", + }, + { + location: "http://www.wikidata.org/entity/Q4412746", + cordinates: "Point(21.7942 61.4901)", + locationLabel: "Pori Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "5464", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "5464", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "5540", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "5540", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "7876", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "7876", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "30398", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "30398", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "36609", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "36609", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "39456", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "39456", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "40263", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "40263", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "40902", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "40902", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "42691", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "42691", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "43267", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "43267", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "43273", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "43273", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "43575", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "43575", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "49751", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "49751", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "53290", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "53290", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "60000", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "60000", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "94077", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "94077", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "113141", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "113141", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "117023", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "117023", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "122544", + cordinates: "Point(-3.746667 47.855278)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330214", + visitors: "122544", + cordinates: "Point(-3.746542 47.85515)", + locationLabel: "Pont-Aven museum", + }, + { + location: "http://www.wikidata.org/entity/Q1639759", + cordinates: "Point(13.3825 54.0947)", + locationLabel: "Pomeranian State Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7226417", + cordinates: "Point(24.729558783 40.715175823)", + locationLabel: "Polygnotos Vagis Municipal Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4370842", + cordinates: "Point(34.5555 49.5896)", + locationLabel: "Poltava Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1489852", + cordinates: "Point(-4.31851 55.828)", + locationLabel: "Pollok House", + }, + { + location: "http://www.wikidata.org/entity/Q14686372", + cordinates: "Point(-81.949 28.0369)", + locationLabel: "Polk Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1164778", + cordinates: "Point(20.98438889 51.31238889)", + locationLabel: "Polish Sculpture Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1574475", + cordinates: "Point(139.021145 35.256711)", + locationLabel: "Pola Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4306173", + cordinates: "Point(-106.012 35.882)", + locationLabel: "Poeh Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7205781", + cordinates: "Point(-4.13762 50.3745)", + locationLabel: "Plymouth City Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2023134", + cordinates: "Point(24.606111111 43.398611111)", + locationLabel: "Pleven Panorama", + }, + { + location: "http://www.wikidata.org/entity/Q7204485", + cordinates: "Point(-73.232 44.376)", + locationLabel: "Pleissner Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17066195", + cordinates: "Point(-73.466115 44.694435)", + locationLabel: "Plattsburgh State Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85306859", + cordinates: "Point(-4.48319 52.8543)", + locationLabel: "Plas Glyn-y-weddw", + }, + { + location: "http://www.wikidata.org/entity/Q2097996", + cordinates: "Point(-96.7922 46.8768)", + locationLabel: "Plains Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q89625592", + cordinates: "Point(-83.0045 39.975075)", + locationLabel: "Pizzuti Collection", + }, + { + location: "http://www.wikidata.org/entity/Q2097388", + cordinates: "Point(-0.30717 51.511)", + locationLabel: "Pitzhanger Manor", + }, + { + location: "http://www.wikidata.org/entity/Q7197707", + cordinates: "Point(13.56840833 45.52884722)", + locationLabel: "Piran Coastal Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q1439912", + cordinates: "Point(12.453515 41.906731)", + locationLabel: "Pio-Clementino museum", + }, + { + location: "http://www.wikidata.org/entity/Q11042691", + cordinates: "Point(121.30222222 24.99361111)", + locationLabel: "Pingtung Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2467688", + cordinates: "Point(30.521141 50.441696)", + locationLabel: "PinchukArtCentre", + }, + { + location: "http://www.wikidata.org/entity/Q3905135", + cordinates: "Point(15.80295 40.64711)", + locationLabel: "Pinacoteca provinciale di Potenza", + }, + { + location: "http://www.wikidata.org/entity/Q3868441", + cordinates: "Point(13.512141 43.248805)", + locationLabel: "Pinacoteca parrocchiale (Corridonia, Italy)", + }, + { + location: "http://www.wikidata.org/entity/Q2095209", + visitors: "425575", + cordinates: "Point(-46.633888888 -23.534444444)", + locationLabel: "Pinacoteca do Estado de São Paulo", + }, + { + location: "http://www.wikidata.org/entity/Q150066", + visitors: "417.976", + cordinates: "Point(9.187683 45.471943)", + locationLabel: "Pinacoteca di Brera", + }, + { + location: "http://www.wikidata.org/entity/Q67893657", + cordinates: "Point(7.689444444 45.0675)", + locationLabel: "Pinacoteca dell’Accademia Albertina (Turin)", + }, + { + location: "http://www.wikidata.org/entity/Q18811696", + cordinates: "Point(11.78987222 45.07053056)", + locationLabel: + "Pinacoteca dell'Accademia dei Concordi e del Seminario Vescovile", + }, + { + location: "http://www.wikidata.org/entity/Q3905124", + cordinates: "Point(9.18027778 45.46972222)", + locationLabel: "Pinacoteca del Castello Sforzesco", + }, + { + location: "http://www.wikidata.org/entity/Q27484767", + cordinates: "Point(8.79151 46.16947)", + locationLabel: "Pinacoteca comunale Casa Rusca", + }, + { + location: "http://www.wikidata.org/entity/Q55085607", + cordinates: "Point(12.4168 42.55441)", + locationLabel: "Pinacoteca comunale", + }, + { + location: "http://www.wikidata.org/entity/Q20009309", + cordinates: "Point(13.242583 43.521442)", + locationLabel: "Pinacoteca civica e Galleria d'Arte contemporanea", + }, + { + location: "http://www.wikidata.org/entity/Q3905105", + cordinates: "Point(13.511146 43.620785)", + locationLabel: 'Pinacoteca civica "Francesco Podesti"', + }, + { + location: "http://www.wikidata.org/entity/Q3905095", + cordinates: "Point(8.96887 45.87174)", + locationLabel: "Pinacoteca cantonale Giovanni Züst", + }, + { + location: "http://www.wikidata.org/entity/Q3905097", + cordinates: "Point(10.329555555 44.804361111)", + locationLabel: "Pinacoteca Stuard", + }, + { + location: "http://www.wikidata.org/entity/Q7194793", + cordinates: "Point(12.34107 45.43642)", + locationLabel: "Pinacoteca Querini Stampalia", + }, + { + location: "http://www.wikidata.org/entity/Q3388587", + cordinates: "Point(16.88156 41.1214)", + locationLabel: "Pinacoteca Provinciale di Bari", + }, + { + location: "http://www.wikidata.org/entity/Q1103550", + cordinates: "Point(11.353538 44.497707)", + locationLabel: "Pinacoteca Nazionale di Bologna", + }, + { + location: "http://www.wikidata.org/entity/Q1103550", + cordinates: "Point(11.353547 44.497772)", + locationLabel: "Pinacoteca Nazionale di Bologna", + }, + { + location: "http://www.wikidata.org/entity/Q18810184", + cordinates: "Point(11.62097 44.84232)", + locationLabel: "Pinacoteca Nazionale", + }, + { + location: "http://www.wikidata.org/entity/Q2095405", + cordinates: "Point(11.330517 43.315624)", + locationLabel: "Pinacoteca Nazionale", + }, + { + location: "http://www.wikidata.org/entity/Q2095405", + cordinates: "Point(11.330431 43.315662)", + locationLabel: "Pinacoteca Nazionale", + }, + { + location: "http://www.wikidata.org/entity/Q85211136", + cordinates: "Point(-49.070668 -22.320416)", + locationLabel: "Pinacoteca Municipal de Bauru", + }, + { + location: "http://www.wikidata.org/entity/Q18811651", + cordinates: "Point(12.335361111 45.430763888)", + locationLabel: "Pinacoteca Manfrediniana", + }, + { + location: "http://www.wikidata.org/entity/Q98123289", + cordinates: "Point(11.923166666 43.341972222)", + locationLabel: "Pinacoteca Comunale, Castiglion Fiorentino", + }, + { + location: "http://www.wikidata.org/entity/Q3905086", + cordinates: "Point(11.8792558 44.286146)", + locationLabel: "Pinacoteca Comunale", + }, + { + location: "http://www.wikidata.org/entity/Q18812377", + cordinates: "Point(8.484112 44.309033)", + locationLabel: "Pinacoteca Civica di Savona", + }, + { + location: "http://www.wikidata.org/entity/Q25247795", + cordinates: "Point(13.1743 43.2283)", + locationLabel: "Pinacoteca Civica Padre Pietro Tacchi Venturi", + }, + { + location: "http://www.wikidata.org/entity/Q7191890", + cordinates: "Point(23.71094444 37.98344444)", + locationLabel: "Pieridis museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105880", + cordinates: "Point(-4.130645 52.927141)", + locationLabel: "Piercy Rob", + }, + { + location: "http://www.wikidata.org/entity/Q7191713", + cordinates: "Point(-3.2982 58.963)", + locationLabel: "Pier Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q11887930", + cordinates: "Point(30.031344 63.311094)", + locationLabel: "Pielinen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7191490", + cordinates: "Point(-79.8666 36.6844)", + locationLabel: "Piedmont Arts Association", + }, + { + location: "http://www.wikidata.org/entity/Q7191151", + cordinates: "Point(140.96641667 36.97372222)", + locationLabel: "Picture Book Museum, Iwaki City", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "99523", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "99523", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "99523", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "99523", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "120677", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "120677", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "120677", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "120677", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123040", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123040", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123040", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123040", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123188", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123188", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123188", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "123188", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "126180", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "126180", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "126180", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "126180", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "129094", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "129094", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "129094", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "129094", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "131600", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "131600", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "131600", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "131600", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132586", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132586", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132586", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132586", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132968", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132968", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132968", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "132968", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "133458", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "133458", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "133458", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "133458", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "141084", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "141084", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "141084", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "141084", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "147430", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "147430", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "147430", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "147430", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "157976", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "157976", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "157976", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "157976", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "164961", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "164961", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "164961", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "164961", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "170376", + cordinates: "Point(7.116667 43.583333)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "170376", + cordinates: "Point(7.125556 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "170376", + cordinates: "Point(7.128333 43.580556)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1368360", + visitors: "170376", + cordinates: "Point(7.128333 43.580833)", + locationLabel: "Picasso Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7187928", + cordinates: "Point(6.11416667 49.58527778)", + locationLabel: "Photothèque", + }, + { + location: "http://www.wikidata.org/entity/Q977015", + cordinates: "Point(-112.072655 33.466749)", + locationLabel: "Phoenix Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2997830", + cordinates: "Point(-95.97 36.1239)", + locationLabel: "Philbrook Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7182752", + cordinates: "Point(-75.1607 39.9638)", + locationLabel: "Philadelphia Museum of Jewish Art", + }, + { + location: "http://www.wikidata.org/entity/Q510324", + visitors: "751797", + cordinates: "Point(-75.181 39.966)", + locationLabel: "Philadelphia Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q510324", + visitors: "775043", + cordinates: "Point(-75.181 39.966)", + locationLabel: "Philadelphia Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7182666", + cordinates: "Point(-75.1557 39.9877)", + locationLabel: "Philadelphia Doll Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2084370", + cordinates: "Point(8.69556 48.8833)", + locationLabel: "Pforzheim Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q11337327", + cordinates: "Point(138.5945 36.329139)", + locationLabel: "Peynet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2081335", + cordinates: "Point(-0.6089 50.988739)", + locationLabel: "Petworth House", + }, + { + location: "http://www.wikidata.org/entity/Q11458738", + cordinates: "Point(138.635417 36.346806)", + locationLabel: "Petit Museum Karuizawa Kusabanakan", + }, + { + location: "http://www.wikidata.org/entity/Q7178015", + cordinates: "Point(-0.2459 52.5718)", + locationLabel: "Peterborough Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7170878", + cordinates: "Point(-3.4283 56.3983)", + locationLabel: "Perth Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2072568", + cordinates: "Point(115.86018 -31.9498)", + locationLabel: "Perth Institute of Contemporary Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4351500", + cordinates: "Point(56.2345 58.0163)", + locationLabel: "Perm Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "739000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "750000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "751000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "995000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "1035000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "1093000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "1260000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "1298000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "1305000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157298", + visitors: "1410000", + cordinates: "Point(13.396 52.521)", + locationLabel: "Pergamon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4350929", + cordinates: "Point(38.822803 56.721028)", + locationLabel: "Pereslavl-Zalessky Museum-Preserve", + }, + { + location: "http://www.wikidata.org/entity/Q7166981", + cordinates: "Point(146.818 -19.2581)", + locationLabel: "Perc Tucker Regional Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1662392", + visitors: "10000", + cordinates: "Point(28.97513889 41.03183333)", + locationLabel: "Pera Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4348467", + cordinates: "Point(45.0102 53.18475)", + locationLabel: "Penza Savitsky Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7164697", + cordinates: "Point(-87.21335 30.40837)", + locationLabel: "Pensacola Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1952033", + cordinates: "Point(-75.163889 39.955)", + locationLabel: "Pennsylvania Academy of the Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q2069041", + cordinates: "Point(-5.541111111 50.116388888)", + locationLabel: "Penlee House", + }, + { + location: "http://www.wikidata.org/entity/Q20011500", + cordinates: "Point(-122.382228 37.594782)", + locationLabel: "Peninsula Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7162932", + cordinates: "Point(-76.4896 37.0638)", + locationLabel: "Peninsula Fine Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q1049033", + cordinates: "Point(12.33154 45.43083)", + locationLabel: "Peggy Guggenheim Collection", + }, + { + location: "http://www.wikidata.org/entity/Q7160374", + cordinates: "Point(10.79222222 59.93166667)", + locationLabel: "Peer Gynt Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q7160202", + cordinates: "Point(-79.7571 43.6852)", + locationLabel: "Peel Art Gallery, Museum and Archives", + }, + { + location: "http://www.wikidata.org/entity/Q49739", + cordinates: "Point(11.10333333 51.36611111)", + locationLabel: "Peasants' War Panorama Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3373790", + cordinates: "Point(-70.8925 42.522222)", + locationLabel: "Peabody Essex Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11815196", + cordinates: "Point(18.5696 54.4452)", + locationLabel: "Państwowa Galeria Sztuki", + }, + { + location: "http://www.wikidata.org/entity/Q3361206", + cordinates: "Point(-43.17423333 -22.90350833)", + locationLabel: "Paço Imperial", + }, + { + location: "http://www.wikidata.org/entity/Q85717596", + cordinates: "Point(-75.381550668 40.630230693)", + locationLabel: "Payne Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q638236", + cordinates: "Point(8.551119444 47.35635)", + locationLabel: "Pavillon Le Corbusier", + }, + { + location: "http://www.wikidata.org/entity/Q14683622", + cordinates: "Point(-118.358 34.0633)", + locationLabel: "Pavilion for Japanese Art", + }, + { + location: "http://www.wikidata.org/entity/Q3813325", + cordinates: "Point(-97.2341 49.8708)", + locationLabel: "Pavilion Gallery Museum", + }, + { + location: "http://www.wikidata.org/entity/Q318983", + cordinates: "Point(8.80596 53.0751)", + locationLabel: "Paula Modersohn-Becker Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "882", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "936", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1145", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1182", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1198", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1218", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1458", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1512", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1680", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "1784", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "2154", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "2400", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329306", + visitors: "2481", + cordinates: "Point(4.65111 44.2557)", + locationLabel: "Paul-Raymond Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7152453", + cordinates: "Point(-72.8097 41.4574)", + locationLabel: "Paul Mellon Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q7150840", + cordinates: "Point(-149.332 -17.7307)", + locationLabel: "Paul Gauguin Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7150836", + cordinates: "Point(-139.040794444 -9.803755555)", + locationLabel: "Paul Gauguin Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q7147873", + cordinates: "Point(-87.92778 43.036921)", + locationLabel: "Patrick and Beatrice Haggerty Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18666215", + cordinates: "Point(174.839775 -41.131502)", + locationLabel: "Pataka Art + Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7141551", + cordinates: "Point(-118.14 34.1469)", + locationLabel: "Pasadena Museum of California Art", + }, + { + location: "http://www.wikidata.org/entity/Q1467467", + cordinates: "Point(-86.8135 36.1496)", + locationLabel: "Parthenon", + }, + { + location: "http://www.wikidata.org/entity/Q1858105", + cordinates: "Point(149.124444444 -35.308055555)", + locationLabel: "Parliament House", + }, + { + location: "http://www.wikidata.org/entity/Q15265453", + cordinates: "Point(85.315975 27.675447)", + locationLabel: "Park Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7137290", + visitors: "29000", + cordinates: "Point(-111.283 47.5059)", + locationLabel: "Paris Gibson Square Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q17221655", + cordinates: "Point(136.489825 35.012782)", + locationLabel: "Paramita Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105874", + cordinates: "Point(-4.056474 52.723597)", + locationLabel: "Paper Swan Studio", + }, + { + location: "http://www.wikidata.org/entity/Q7131845", + cordinates: "Point(2.29444444 48.86638889)", + locationLabel: "Panthéon Bouddhique", + }, + { + location: "http://www.wikidata.org/entity/Q20024732", + cordinates: "Point(-79.54304 8.96092)", + locationLabel: "Panama Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q3890034", + cordinates: "Point(-43.973722222 -19.851833333)", + locationLabel: "Pampulha art museum", + }, + { + location: "http://www.wikidata.org/entity/Q66195209", + cordinates: "Point(24.904444444 67.65525)", + locationLabel: "Palsa Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15265207", + cordinates: "Point(-77.8657 40.8005)", + locationLabel: "Palmer Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2048123", + cordinates: "Point(-116.55 33.8242)", + locationLabel: "Palm Springs Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7127735", + cordinates: "Point(-0.7778 50.8351)", + locationLabel: "Pallant House Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2579612", + cordinates: "Point(12.49 41.899444)", + locationLabel: "Palazzo delle Esposizioni", + }, + { + location: "http://www.wikidata.org/entity/Q3890978", + cordinates: "Point(9.24138889 45.61083333)", + locationLabel: "Palazzo Terragni", + }, + { + location: "http://www.wikidata.org/entity/Q25052790", + cordinates: "Point(10.93094 44.64727)", + locationLabel: "Palazzo Santa Margherita, Modena", + }, + { + location: "http://www.wikidata.org/entity/Q2034331", + cordinates: "Point(8.93212 44.41125)", + locationLabel: "Palazzo Rosso", + }, + { + location: "http://www.wikidata.org/entity/Q2034331", + cordinates: "Point(8.93225 44.41119444)", + locationLabel: "Palazzo Rosso", + }, + { + location: "http://www.wikidata.org/entity/Q3867768", + cordinates: "Point(11.096467 43.880829)", + locationLabel: "Palazzo Pretorio Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1817132", + cordinates: "Point(12.487892 41.898332)", + locationLabel: "Palazzo Pallavicini-Rospigliosi", + }, + { + location: "http://www.wikidata.org/entity/Q2219262", + cordinates: "Point(10.499126 43.84356)", + locationLabel: "Palazzo Mansi National Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2219262", + cordinates: "Point(10.499169 43.843556)", + locationLabel: "Palazzo Mansi National Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2219262", + cordinates: "Point(10.49916667 43.84361111)", + locationLabel: "Palazzo Mansi National Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2560897", + cordinates: "Point(9.6961 45.0557)", + locationLabel: "Palazzo Farnese", + }, + { + location: "http://www.wikidata.org/entity/Q18745942", + cordinates: "Point(11.558468 43.236666)", + locationLabel: "Palazzo Corboli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18578917", + cordinates: "Point(12.738386 42.734371)", + locationLabel: "Palazzo Comunale", + }, + { + location: "http://www.wikidata.org/entity/Q1971299", + cordinates: "Point(12.48421389 41.89763611)", + locationLabel: "Palazzo Colonna", + }, + { + location: "http://www.wikidata.org/entity/Q3889703", + cordinates: "Point(8.52625 45.8962)", + locationLabel: "Palazzo Borromeo", + }, + { + location: "http://www.wikidata.org/entity/Q9054601", + cordinates: "Point(-0.36027778 39.46611111)", + locationLabel: "Palau de la Música de València", + }, + { + location: "http://www.wikidata.org/entity/Q143463", + visitors: "616210", + cordinates: "Point(4.8075 43.9508)", + locationLabel: "Palais des Papes", + }, + { + location: "http://www.wikidata.org/entity/Q17347159", + cordinates: "Point(5.577483333 50.627422222)", + locationLabel: "Palais des Beaux-Arts de Liège", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "147814", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "157535", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "190929", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "206612", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "215704", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "225800", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "226367", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "229748", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "232890", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "239975", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "251690", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "253817", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "255000", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "263005", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "264676", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "301073", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "316723", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2628596", + visitors: "543786", + cordinates: "Point(3.062889 50.630333)", + locationLabel: "Palais des Beaux-Arts de Lille", + }, + { + location: "http://www.wikidata.org/entity/Q2081177", + cordinates: "Point(6.18027778 48.69694444)", + locationLabel: "Palace of the Dukes of Lorraine", + }, + { + location: "http://www.wikidata.org/entity/Q277333", + cordinates: "Point(21.09030833 52.16516667)", + locationLabel: "Palace Museum in Wilanów", + }, + { + location: "http://www.wikidata.org/entity/Q15123837", + cordinates: "Point(-4.43034 55.8453)", + locationLabel: "Paisley Museum and Art Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q16896320", + cordinates: "Point(174.763 -36.9145)", + locationLabel: "Pah Homestead", + }, + { + location: "http://www.wikidata.org/entity/Q3888740", + cordinates: "Point(9.19944444 45.47277778)", + locationLabel: "Padiglione d'Arte Contemporanea", + }, + { + location: "http://www.wikidata.org/entity/Q11801638", + cordinates: "Point(19.4643 51.7642)", + locationLabel: "Ośrodek Propagandy Sztuki w Łodzi", + }, + { + location: "http://www.wikidata.org/entity/Q86106345", + cordinates: "Point(-4.003175 51.575501)", + locationLabel: "Oyster Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7114052", + cordinates: "Point(-89.3886 43.0744)", + locationLabel: "Overture Center for the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3662289", + visitors: "38092", + cordinates: "Point(25.48194444 65.01833333)", + locationLabel: "Oulu Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q16584990", + cordinates: "Point(19.938028 50.050389)", + locationLabel: "Otwarta Pracownia", + }, + { + location: "http://www.wikidata.org/entity/Q2037916", + cordinates: "Point(12.0642 50.8822)", + locationLabel: "Otto-Dix-Haus", + }, + { + location: "http://www.wikidata.org/entity/Q47038408", + cordinates: "Point(-75.688385 45.425981)", + locationLabel: "Ottawa Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11462169", + cordinates: "Point(140.999833 43.196778)", + locationLabel: "Otaru City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q30227146", + cordinates: "Point(141.001944444 43.198055555)", + locationLabel: "Otaru Art Base", + }, + { + location: "http://www.wikidata.org/entity/Q11627626", + cordinates: "Point(135.324583 34.732111)", + locationLabel: "Otani Memorial Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56641655", + cordinates: "Point(170.5088281 -45.875367)", + locationLabel: "Otago Art Society", + }, + { + location: "http://www.wikidata.org/entity/Q86106026", + cordinates: "Point(-3.047793 52.862944)", + locationLabel: "Oswestry Sculpture Studios", + }, + { + location: "http://www.wikidata.org/entity/Q18346676", + cordinates: "Point(21.601806 63.099446)", + locationLabel: "Ostrobothnian Museum", + }, + { + location: "http://www.wikidata.org/entity/Q314559", + cordinates: "Point(7.473036111 51.356033333)", + locationLabel: "Osthaus-Museum Hagen", + }, + { + location: "http://www.wikidata.org/entity/Q1257947", + cordinates: "Point(11.261111111 43.776388888)", + locationLabel: "Ospedale degli Innocenti", + }, + { + location: "http://www.wikidata.org/entity/Q11007560", + cordinates: "Point(25.788889 65.128472)", + locationLabel: "Oskari Jauhiainen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4991927", + cordinates: "Point(-49.267222 -25.409722)", + locationLabel: "Oscar Niemeyer Museum", + }, + { + location: "http://www.wikidata.org/entity/Q971028", + cordinates: "Point(-5.916288 43.556884)", + locationLabel: "Oscar Niemeyer International Cultural Centre", + }, + { + location: "http://www.wikidata.org/entity/Q11249107", + cordinates: "Point(135.43 34.6538)", + locationLabel: "Osaka Culturarium at Tempozan", + }, + { + location: "http://www.wikidata.org/entity/Q4707643", + cordinates: "Point(135.51833333 34.68416667)", + locationLabel: "Osaka Contemporary Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q9004920", + cordinates: "Point(135.510528 34.650111)", + locationLabel: "Osaka City Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q12064946", + visitors: "56000", + cordinates: "Point(-0.319022 51.4473)", + locationLabel: "Orleans House", + }, + { + location: "http://www.wikidata.org/entity/Q7103142", + cordinates: "Point(-81.3644 28.5727)", + locationLabel: "Orlando Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q67145102", + cordinates: "Point(25.7294 60.80725)", + locationLabel: "Orimattila Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106277", + cordinates: "Point(-4.30411 51.857784)", + locationLabel: "Origin", + }, + { + location: "http://www.wikidata.org/entity/Q4958051", + cordinates: "Point(20.784628 40.612708)", + locationLabel: "Oriental Bratko Museum", + }, + { + location: "http://www.wikidata.org/entity/Q26719044", + cordinates: "Point(-5.260691 51.880346)", + locationLabel: "Oriel y Parc", + }, + { + location: "http://www.wikidata.org/entity/Q86105920", + cordinates: "Point(-4.465961 53.190605)", + locationLabel: "Oriel Yr Hen Ysgol", + }, + { + location: "http://www.wikidata.org/entity/Q86105887", + cordinates: "Point(-4.41727 52.888962)", + locationLabel: "Oriel Y Mor Tonnau", + }, + { + location: "http://www.wikidata.org/entity/Q86105917", + cordinates: "Point(-4.209214 53.22099)", + locationLabel: "Oriel Ty Gorsaf Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106044", + cordinates: "Point(-3.851254 52.590417)", + locationLabel: "Oriel Seren Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105853", + cordinates: "Point(-3.93313 52.21946)", + locationLabel: "Oriel Rhiannon", + }, + { + location: "http://www.wikidata.org/entity/Q86105923", + cordinates: "Point(-4.276972 53.139704)", + locationLabel: "Oriel Pendeitsh", + }, + { + location: "http://www.wikidata.org/entity/Q13656339", + cordinates: "Point(-4.3121 53.2635)", + locationLabel: "Oriel Môn", + }, + { + location: "http://www.wikidata.org/entity/Q86106283", + cordinates: "Point(-4.30326 51.857764)", + locationLabel: "Oriel Myrddin Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q29488482", + cordinates: "Point(-4.3032647 51.857711)", + locationLabel: "Oriel Myrddin (The Old Art School)", + }, + { + location: "http://www.wikidata.org/entity/Q86106520", + cordinates: "Point(-3.164724 51.495365)", + locationLabel: "Oriel Makers Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105892", + cordinates: "Point(-4.284248 53.053139)", + locationLabel: "Oriel Llun Mewn Ffrâm", + }, + { + location: "http://www.wikidata.org/entity/Q86106100", + cordinates: "Point(-4.6821 52.081847)", + locationLabel: "Oriel Llandudoch", + }, + { + location: "http://www.wikidata.org/entity/Q86105937", + cordinates: "Point(-3.79621 53.269026)", + locationLabel: "Oriel Llan", + }, + { + location: "http://www.wikidata.org/entity/Q86106113", + cordinates: "Point(-4.788461 51.912629)", + locationLabel: "Oriel Linda Norris Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q85817587", + cordinates: "Point(-4.312111111 53.2635)", + locationLabel: "Oriel Kyffin Williams", + }, + { + location: "http://www.wikidata.org/entity/Q86105848", + cordinates: "Point(-3.933237 52.219677)", + locationLabel: "Oriel Jays Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86107897", + cordinates: "Point(-4.16293 53.225492)", + locationLabel: "Oriel Glyn Davies Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105919", + cordinates: "Point(-4.210092 53.221842)", + locationLabel: "Oriel Ger Y Fenai", + }, + { + location: "http://www.wikidata.org/entity/Q86105865", + cordinates: "Point(-4.052945 52.721151)", + locationLabel: "Oriel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q85819264", + cordinates: "Point(-3.780015 53.121326)", + locationLabel: "Oriel Ffin y Parc Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106051", + cordinates: "Point(-3.256691 52.51619)", + locationLabel: "Oriel Davies Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105894", + cordinates: "Point(-4.311875 53.255895)", + locationLabel: "Oriel Daniel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86196024", + cordinates: "Point(-3.725017 53.293928)", + locationLabel: "Oriel Colwyn", + }, + { + location: "http://www.wikidata.org/entity/Q86106086", + cordinates: "Point(-4.468619 52.037628)", + locationLabel: "Oriel Canfas Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105884", + cordinates: "Point(-4.032566 52.984972)", + locationLabel: "Oriel Caffi Croesor", + }, + { + location: "http://www.wikidata.org/entity/Q86105961", + cordinates: "Point(-3.353739 53.220529)", + locationLabel: "Oriel Bodfari Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106273", + cordinates: "Point(-4.303859 51.857708)", + locationLabel: "Oriel Bevan Jones Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105857", + cordinates: "Point(-4.050949 52.487616)", + locationLabel: "Oriel Adrift", + }, + { + location: "http://www.wikidata.org/entity/Q18643430", + cordinates: "Point(55.101352 51.760323)", + locationLabel: "Orenburg Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q770918", + cordinates: "Point(12.563333 55.766944)", + locationLabel: "Ordrupgaard", + }, + { + location: "http://www.wikidata.org/entity/Q50751848", + cordinates: "Point(19.297053 49.207183)", + locationLabel: "Orava Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3884410", + cordinates: "Point(12.338414 45.443098)", + locationLabel: "Oratorio dei Crociferi", + }, + { + location: "http://www.wikidata.org/entity/Q10611052", + cordinates: "Point(18.01361111 59.39055556)", + locationLabel: "Orangery Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2028105", + visitors: "60000", + cordinates: "Point(-117.878 33.6218)", + locationLabel: "Orange County Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q30159213", + cordinates: "Point(12.420921 42.2275144)", + locationLabel: "Opera Bosco", + }, + { + location: "http://www.wikidata.org/entity/Q30159213", + cordinates: "Point(12.423632 42.223827)", + locationLabel: "Opera Bosco", + }, + { + location: "http://www.wikidata.org/entity/Q7095940", + cordinates: "Point(-71.572302 -33.026681)", + locationLabel: "Open Air Museum Viña del Mar", + }, + { + location: "http://www.wikidata.org/entity/Q7095476", + cordinates: "Point(-1.91247 52.477677)", + locationLabel: "Oozells Street Board School", + }, + { + location: "http://www.wikidata.org/entity/Q16349422", + cordinates: "Point(19.945 40.709)", + locationLabel: "Onufri Iconographic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11465485", + cordinates: "Point(133.1958 34.409917)", + locationLabel: "Onomichi City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11464085", + cordinates: "Point(139.630114 35.706069)", + locationLabel: "Ono Tadashige Hangakan", + }, + { + location: "http://www.wikidata.org/entity/Q19844167", + cordinates: "Point(73.37846 54.98051)", + locationLabel: "Omsk District Museum of Visual Arts", + }, + { + location: "http://www.wikidata.org/entity/Q17991646", + cordinates: "Point(139.633333 35.928778)", + locationLabel: "Omiya Bonsai Art Museum, Saitama", + }, + { + location: "http://www.wikidata.org/entity/Q3882147", + cordinates: "Point(3.434243 6.463779)", + locationLabel: "Omenka Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17239410", + cordinates: "Point(139.26058333 35.78855556)", + locationLabel: "Ome Akatsuka Fujio Kaikan", + }, + { + location: "http://www.wikidata.org/entity/Q7089122", + cordinates: "Point(-122.35361111 47.61638889)", + locationLabel: "Olympic Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q12330222", + cordinates: "Point(14.96657 55.21371)", + locationLabel: "Oluf Høst Museum", + }, + { + location: "http://www.wikidata.org/entity/Q26571505", + cordinates: "Point(-2.109044 53.540599)", + locationLabel: "Oldham Heritage and Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q58287283", + cordinates: "Point(3.12903 51.31519)", + locationLabel: "Old Town Hall", + }, + { + location: "http://www.wikidata.org/entity/Q3330782", + cordinates: "Point(4.35778 50.8419)", + locationLabel: "Old Masters Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330782", + cordinates: "Point(4.358241 50.84168)", + locationLabel: "Old Masters Museum", + }, + { + location: "http://www.wikidata.org/entity/Q50327423", + cordinates: "Point(-79.00385 -2.897837)", + locationLabel: "Old Cathedral of Cuenca", + }, + { + location: "http://www.wikidata.org/entity/Q59504576", + cordinates: "Point(23.93661 56.78378)", + locationLabel: "Olaines Vēstures un mākslas muzejs", + }, + { + location: "http://www.wikidata.org/entity/Q15123451", + visitors: "11967", + cordinates: "Point(11.754336 47.709471)", + locationLabel: "Olaf-Gulbransson-Museum Tegernsee", + }, + { + location: "http://www.wikidata.org/entity/Q11367892", + cordinates: "Point(135.778278 33.470444)", + locationLabel: "Okyoro Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329598", + cordinates: "Point(139.74333333 35.66694444)", + locationLabel: "Okura Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q58037399", + cordinates: "Point(23.116430555 42.265133333)", + locationLabel: "Okoliska house Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7082143", + cordinates: "Point(-97.5206 35.4697)", + locationLabel: "Oklahoma City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4617100", + cordinates: "Point(127.694103 26.226593)", + locationLabel: "Okinawa Prefectural Museum & Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18608421", + cordinates: "Point(137.163972 34.941956)", + locationLabel: "Okazaki City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4677150", + cordinates: "Point(133.93 34.66777778)", + locationLabel: "Okayama Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4707582", + cordinates: "Point(133.93 34.66638889)", + locationLabel: "Okayama Orient Museum", + }, + { + location: "http://www.wikidata.org/entity/Q78129958", + cordinates: "Point(138.047083333 36.058805555)", + locationLabel: "Okaya Art & Archaeological Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5157831", + cordinates: "Point(139.334 36.41683333)", + locationLabel: "Okawa Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11471937", + cordinates: "Point(134.997917 35.002083)", + locationLabel: "Okanoyama Museum of Art Nishiwaki", + }, + { + location: "http://www.wikidata.org/entity/Q17224006", + cordinates: "Point(139.04611111 35.23808333)", + locationLabel: "Okada Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11432891", + cordinates: "Point(131.60138889 33.23947222)", + locationLabel: "Oita Prefectural Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7081135", + cordinates: "Point(-88.87166667 30.39361111)", + locationLabel: "Ohr-O'Keefe Museum Of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2977589", + cordinates: "Point(133.77067 34.59615)", + locationLabel: "Ohara Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7080289", + cordinates: "Point(-70.5889 43.2338)", + locationLabel: "Ogunquit Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q2390897", + cordinates: "Point(-90.0714 29.9437)", + locationLabel: "Ogden Museum of Southern Art", + }, + { + location: "http://www.wikidata.org/entity/Q25474853", + cordinates: "Point(30.5225 39.764722222)", + locationLabel: "Odunpazarı Modern Museum", + }, + { + location: "http://www.wikidata.org/entity/Q93588107", + cordinates: "Point(11.50514 55.80971)", + locationLabel: "Odserred Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q12130550", + cordinates: "Point(30.7432724 46.4826633)", + locationLabel: "Odessa Museum of Western and Eastern Art", + }, + { + location: "http://www.wikidata.org/entity/Q4331480", + cordinates: "Point(30.7288 46.4934)", + locationLabel: "Odessa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12329828", + cordinates: "Point(10.09404 57.53778)", + locationLabel: "Odden Hovedgård", + }, + { + location: "http://www.wikidata.org/entity/Q26869471", + cordinates: "Point(-117.378655 33.198302)", + locationLabel: "Oceanside Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q877714", + cordinates: "Point(-122.264 37.7986)", + locationLabel: "Oakland Museum of California", + }, + { + location: "http://www.wikidata.org/entity/Q106782306", + cordinates: "Point(17.029166666 51.109722222)", + locationLabel: "OP ENHEIM", + }, + { + location: "http://www.wikidata.org/entity/Q16583604", + cordinates: "Point(7.65835 45.064943)", + locationLabel: "OGR", + }, + { + location: "http://www.wikidata.org/entity/Q7072185", + cordinates: "Point(-79.9381 37.2736)", + locationLabel: "O. Winston Link Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7073334", + cordinates: "Point(-77.0459 38.9081)", + locationLabel: "O Street Museum Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q47223376", + cordinates: "Point(87.14847 53.75654)", + locationLabel: "Novokuznetsk Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27663263", + cordinates: "Point(22.179722222 41.74)", + locationLabel: "Novo Selo Icon Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4322515", + cordinates: "Point(31.27285556 58.52091389)", + locationLabel: "Novgorodskiĭ gosudarstvennyĭ obʺedinennyĭ muzeĭ-zapovednik", + }, + { + location: "http://www.wikidata.org/entity/Q7063622", + cordinates: "Point(-1.1458 52.9511)", + locationLabel: "Nottingham Contemporary", + }, + { + location: "http://www.wikidata.org/entity/Q7061182", + cordinates: "Point(10.742955 59.918226)", + locationLabel: "Norwegian Museum of Decorative Arts and Design", + }, + { + location: "http://www.wikidata.org/entity/Q7061182", + cordinates: "Point(10.7431 59.9184)", + locationLabel: "Norwegian Museum of Decorative Arts and Design", + }, + { + location: "http://www.wikidata.org/entity/Q7061181", + cordinates: "Point(10.7411 59.9085)", + locationLabel: "Norwegian Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106469", + cordinates: "Point(-3.16185 51.4614)", + locationLabel: "Norwegian Church Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1752085", + cordinates: "Point(-118.15916667 34.14611111)", + locationLabel: "Norton Simon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3878590", + cordinates: "Point(-80.053355 26.700651)", + locationLabel: "Norton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q7059902", + cordinates: "Point(-122.302 47.5889)", + locationLabel: "Northwest African American Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330548", + cordinates: "Point(-80.1833 25.8904)", + locationLabel: "North Miami Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q7054914", + cordinates: "Point(-4.68105 50.6208)", + locationLabel: "North Cornwall Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1459878", + cordinates: "Point(-78.70288889 35.81019444)", + locationLabel: "North Carolina Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q78072490", + cordinates: "Point(137.895916666 36.385805555)", + locationLabel: "North Alps Viewing Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q713204", + cordinates: "Point(-73.3359 42.2879)", + locationLabel: "Norman Rockwell Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7052498", + cordinates: "Point(150.561388888 -33.680555555)", + locationLabel: "Norman Lindsay Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16862765", + cordinates: "Point(18.95987306 69.64815806)", + locationLabel: "Nordnorsk Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q3115696", + cordinates: "Point(11.540277777 57.987777777)", + locationLabel: "Nordic Watercolour Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27670454", + cordinates: "Point(35.214861111 31.773861111)", + locationLabel: "Nora Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7050089", + cordinates: "Point(-111.806 41.7431)", + locationLabel: "Nora Eccles Harrison Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11645680", + cordinates: "Point(135.793333 35.012917)", + locationLabel: "Nomura Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56605115", + cordinates: "Point(32.58005 0.32012)", + locationLabel: "Nommo Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q14399994", + cordinates: "Point(8.7731 54.8837)", + locationLabel: "Nolde Museum Seebüll", + }, + { + location: "http://www.wikidata.org/entity/Q836080", + cordinates: "Point(-73.939662 40.76616)", + locationLabel: "Noguchi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11581782", + cordinates: "Point(130.72844444 33.74325)", + locationLabel: "Nogata Tanio Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4318653", + cordinates: "Point(44.0064 56.32956)", + locationLabel: "Nizhny Novgorod State Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1573239", + cordinates: "Point(-43.126111111 -22.907777777)", + locationLabel: "Niterói Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17211727", + cordinates: "Point(139.454722 35.589528)", + locationLabel: "Nishiyama Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11991436", + cordinates: "Point(11.2963 63.8711)", + locationLabel: "Nils Aas Kunstverksted", + }, + { + location: "http://www.wikidata.org/entity/Q25044062", + cordinates: "Point(3.4818 6.4314)", + locationLabel: "Nike Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11503129", + cordinates: "Point(138.83208333 37.46447222)", + locationLabel: "Niigata Prefectural Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11502938", + cordinates: "Point(139.04172222 37.92841667)", + locationLabel: "Niigata City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11503023", + cordinates: "Point(139.059528 37.925333)", + locationLabel: "Niigata Bandaijima Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q68682443", + cordinates: "Point(33.36641 35.17395)", + locationLabel: "Nicosia Municipal Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7028434", + cordinates: "Point(-87.626767 41.893967)", + locationLabel: "Nickerson House", + }, + { + location: "http://www.wikidata.org/entity/Q1047097", + cordinates: "Point(139.717603 35.66216)", + locationLabel: "Nezu Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15262183", + cordinates: "Point(-2.9935 51.5858)", + locationLabel: "Newport Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106097", + cordinates: "Point(-4.831072 52.016604)", + locationLabel: "Newport Collective", + }, + { + location: "http://www.wikidata.org/entity/Q7018775", + cordinates: "Point(-71.3082 41.4855)", + locationLabel: "Newport Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7018371", + cordinates: "Point(-5.551 50.102)", + locationLabel: "Newlyn Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7018212", + cordinates: "Point(-74.1023 40.64391667)", + locationLabel: "Newhouse Center for Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q16974720", + cordinates: "Point(-90.1211 29.9418)", + locationLabel: "Newcomb Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4328346", + cordinates: "Point(-74.1718 40.7427)", + locationLabel: "Newark Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28180748", + cordinates: "Point(174.77824 -41.283475)", + locationLabel: "New Zealand Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q7014756", + cordinates: "Point(-74.0863 40.5961)", + locationLabel: "New York Tattoo Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18666210", + cordinates: "Point(174.765204 -36.847667)", + locationLabel: "New Vision Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q61362668", + cordinates: "Point(18.42765 43.859683333)", + locationLabel: "New Temple gallery in Sarajevo", + }, + { + location: "http://www.wikidata.org/entity/Q61362668", + cordinates: "Point(18.427777777 43.859722222)", + locationLabel: "New Temple gallery in Sarajevo", + }, + { + location: "http://www.wikidata.org/entity/Q7012025", + visitors: "1153263", + cordinates: "Point(121.35241 24.94959)", + locationLabel: "New Taipei City Yingge Ceramics Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3815479", + cordinates: "Point(139.7359 35.6791)", + locationLabel: "New Otani Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2063082", + cordinates: "Point(-90.09341667 29.98638889)", + locationLabel: "New Orleans Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1156823", + cordinates: "Point(-73.992916666 40.722361111)", + locationLabel: "New Museum", + }, + { + location: "http://www.wikidata.org/entity/Q559229", + cordinates: "Point(-105.939 35.6881)", + locationLabel: "New Mexico Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4326700", + cordinates: "Point(37.615427 55.75948)", + locationLabel: "New Manege", + }, + { + location: "http://www.wikidata.org/entity/Q7009735", + cordinates: "Point(-122.410859 37.774525)", + locationLabel: "New Langton Arts", + }, + { + location: "http://www.wikidata.org/entity/Q29025064", + cordinates: "Point(151.6648 -30.5252)", + locationLabel: "New England Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7005718", + cordinates: "Point(-72.7917 41.6643)", + locationLabel: "New Britain Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q24993766", + cordinates: "Point(-1.1684 52.9659)", + locationLabel: "New Art Exchange", + }, + { + location: "http://www.wikidata.org/entity/Q14705238", + cordinates: "Point(-119.813 39.521)", + locationLabel: "Nevada Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1980351", + cordinates: "Point(11.3264 50.9861)", + locationLabel: "Neues Museum Weimar", + }, + { + location: "http://www.wikidata.org/entity/Q895720", + cordinates: "Point(11.08 49.4478)", + locationLabel: "Neues Museum Nürnberg", + }, + { + location: "http://www.wikidata.org/entity/Q1592850", + cordinates: "Point(6.0965 50.7817)", + locationLabel: "Neuer Aachener Kunstverein", + }, + { + location: "http://www.wikidata.org/entity/Q316242", + cordinates: "Point(9.186875 48.78022778)", + locationLabel: "Neue Staatsgalerie", + }, + { + location: "http://www.wikidata.org/entity/Q32659772", + cordinates: "Point(13.367916666 52.506805555)", + locationLabel: "Neue Nationalgalerie", + }, + { + location: "http://www.wikidata.org/entity/Q32659772", + cordinates: "Point(13.367419 52.506991)", + locationLabel: "Neue Nationalgalerie", + }, + { + location: "http://www.wikidata.org/entity/Q1979514", + cordinates: "Point(10.8992 48.3649)", + locationLabel: "Neue Galerie im Höhmannhaus", + }, + { + location: "http://www.wikidata.org/entity/Q1002296", + cordinates: "Point(11.4335 48.2567)", + locationLabel: "Neue Galerie Dachau", + }, + { + location: "http://www.wikidata.org/entity/Q869781", + cordinates: "Point(9.49324 51.3093)", + locationLabel: "Neue Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q59468", + cordinates: "Point(-73.960417 40.78125)", + locationLabel: "Neue Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q3338569", + cordinates: "Point(-73.702512 41.048195)", + locationLabel: "Neuberger Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6996474", + cordinates: "Point(-94.7269 38.925)", + locationLabel: "Nerman Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11608069", + cordinates: "Point(139.63611 35.73711)", + locationLabel: "Nerima Kuritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q6993430", + cordinates: "Point(-115.137 36.1777)", + locationLabel: "Neon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6990626", + cordinates: "Point(25.6113 -33.9656)", + locationLabel: "Nelson Mandela Metropolitan Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18346773", + cordinates: "Point(23.835 63.015)", + locationLabel: "Nelimarkka Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q924394", + cordinates: "Point(115.2536418 -8.488988)", + locationLabel: "Neka Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11457608", + cordinates: "Point(135.837139 34.686)", + locationLabel: "Neiraku Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6981122", + visitors: "16000", + cordinates: "Point(-5.934 54.585)", + locationLabel: "Naughton Gallery at Queen's", + }, + { + location: "http://www.wikidata.org/entity/Q4314887", + cordinates: "Point(49.106 55.7986)", + locationLabel: + 'Nat︠s︡ionalʹnai︠a︡ khudozhestvennai︠a︡ galerei︠a︡ "Khazinė"', + }, + { + location: "http://www.wikidata.org/entity/Q6980966", + cordinates: "Point(-2.232628 51.905731)", + locationLabel: "Nature in Art", + }, + { + location: "http://www.wikidata.org/entity/Q842858", + cordinates: "Point(18.077777777 59.328611111)", + locationLabel: "Nationalmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q10927014", + cordinates: "Point(120.66361111 24.14138889)", + locationLabel: "National Taiwan Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q5635514", + cordinates: "Point(-77.738302 38.967017)", + locationLabel: "National Sporting Library", + }, + { + location: "http://www.wikidata.org/entity/Q20516938", + cordinates: "Point(43.845844444 40.787155555)", + locationLabel: "National Sculpture Park Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1581475", + visitors: "145606", + cordinates: "Point(-4.72361 41.6569)", + locationLabel: "National Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3054692", + visitors: "431328", + cordinates: "Point(-1.755556 53.790556)", + locationLabel: "National Science and Media Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3054692", + visitors: "442314", + cordinates: "Point(-1.755556 53.790556)", + locationLabel: "National Science and Media Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3054692", + visitors: "504000", + cordinates: "Point(-1.755556 53.790556)", + locationLabel: "National Science and Media Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6975149", + cordinates: "Point(-88.5972 37.0894)", + locationLabel: "National Quilt Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5804730", + cordinates: "Point(-6.2346 53.3355)", + locationLabel: "National Print Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2817221", + cordinates: "Point(17.21916667 59.25611111)", + locationLabel: "National Portrait Gallery of Sweden", + }, + { + location: "http://www.wikidata.org/entity/Q238587", + visitors: "1586451", + cordinates: "Point(-0.1281 51.5094)", + locationLabel: "National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q238587", + visitors: "1634934", + cordinates: "Point(-0.1281 51.5094)", + locationLabel: "National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q238587", + visitors: "1949330", + cordinates: "Point(-0.1281 51.5094)", + locationLabel: "National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q238587", + visitors: "2006000", + cordinates: "Point(-0.1281 51.5094)", + locationLabel: "National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q238587", + visitors: "2145486", + cordinates: "Point(-0.1281 51.5094)", + locationLabel: "National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1489633", + cordinates: "Point(149.133888888 -35.3)", + locationLabel: "National Portrait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q15261141", + cordinates: "Point(-6.265375 53.345279)", + locationLabel: "National Photographic Archive", + }, + { + location: "http://www.wikidata.org/entity/Q6974423", + cordinates: "Point(26.2191 -29.1151)", + locationLabel: "National Museum, Bloemfontein", + }, + { + location: "http://www.wikidata.org/entity/Q861608", + cordinates: "Point(-77.029167 38.9)", + locationLabel: "National Museum of Women in the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q14714813", + cordinates: "Point(-110.749 43.519)", + locationLabel: "National Museum of Wildlife Art", + }, + { + location: "http://www.wikidata.org/entity/Q1362629", + visitors: "1368703", + cordinates: "Point(139.775677 35.71546)", + locationLabel: "National Museum of Western Art", + }, + { + location: "http://www.wikidata.org/entity/Q1362629", + visitors: "1587363", + cordinates: "Point(139.775677 35.71546)", + locationLabel: "National Museum of Western Art", + }, + { + location: "http://www.wikidata.org/entity/Q1786577", + cordinates: "Point(-56.164722 -34.913889)", + locationLabel: "National Museum of Visual Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1081881", + cordinates: "Point(10.407747 43.715202)", + locationLabel: "National Museum of San Matteo", + }, + { + location: "http://www.wikidata.org/entity/Q3330685", + cordinates: "Point(-6.339861 38.917306)", + locationLabel: "National Museum of Roman Art", + }, + { + location: "http://www.wikidata.org/entity/Q3330685", + cordinates: "Point(6.339722 38.917222)", + locationLabel: "National Museum of Roman Art", + }, + { + location: "http://www.wikidata.org/entity/Q1967486", + cordinates: "Point(67.01791 24.85261)", + locationLabel: "National Museum of Pakistan", + }, + { + location: "http://www.wikidata.org/entity/Q1055628", + cordinates: "Point(135.781943 35.012389)", + locationLabel: "National Museum of Modern Art, Kyoto", + }, + { + location: "http://www.wikidata.org/entity/Q3336910", + visitors: "131219", + cordinates: "Point(-87.673 41.8562)", + locationLabel: "National Museum of Mexican Art", + }, + { + location: "http://www.wikidata.org/entity/Q3336910", + visitors: "136451", + cordinates: "Point(-87.673 41.8562)", + locationLabel: "National Museum of Mexican Art", + }, + { + location: "http://www.wikidata.org/entity/Q3336910", + visitors: "150318", + cordinates: "Point(-87.673 41.8562)", + locationLabel: "National Museum of Mexican Art", + }, + { + location: "http://www.wikidata.org/entity/Q3336910", + visitors: "158895", + cordinates: "Point(-87.673 41.8562)", + locationLabel: "National Museum of Mexican Art", + }, + { + location: "http://www.wikidata.org/entity/Q3868416", + cordinates: "Point(16.610134 40.663071)", + locationLabel: "National Museum of Medieval and Modern Art of Basilicata", + }, + { + location: "http://www.wikidata.org/entity/Q6974484", + cordinates: "Point(20.786666666 40.612222222)", + locationLabel: "National Museum of Medieval Art", + }, + { + location: "http://www.wikidata.org/entity/Q6974474", + visitors: "313790", + cordinates: "Point(-6.28581 53.348367)", + locationLabel: "National Museum of Ireland – Decorative Arts and History", + }, + { + location: "http://www.wikidata.org/entity/Q1631008", + cordinates: "Point(51.414611 35.687044)", + locationLabel: "National Museum of Iran", + }, + { + location: "http://www.wikidata.org/entity/Q1779837", + cordinates: "Point(-82.35719444 23.14022222)", + locationLabel: "National Museum of Fine Arts of Cuba", + }, + { + location: "http://www.wikidata.org/entity/Q6974468", + cordinates: "Point(28.82555556 47.02833333)", + locationLabel: "National Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1136338", + cordinates: "Point(-58.4015 -34.582)", + locationLabel: "National Museum of Decorative Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1136338", + cordinates: "Point(-58.401056 -34.582639)", + locationLabel: "National Museum of Decorative Arts", + }, + { + location: "http://www.wikidata.org/entity/Q6963033", + cordinates: "Point(26.08700833 44.42803889)", + locationLabel: "National Museum of Contemporary Art, Romania", + }, + { + location: "http://www.wikidata.org/entity/Q3038298", + cordinates: "Point(23.742806 37.973137)", + locationLabel: "National Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q14692274", + cordinates: "Point(-76.6186 39.2864)", + locationLabel: "National Museum of Ceramic Art", + }, + { + location: "http://www.wikidata.org/entity/Q6974458", + cordinates: "Point(-77.039 38.9056)", + locationLabel: "National Museum of Catholic Art and History", + }, + { + location: "http://www.wikidata.org/entity/Q1929750", + visitors: "100000", + cordinates: "Point(104.929167 11.565278)", + locationLabel: "National Museum of Cambodia", + }, + { + location: "http://www.wikidata.org/entity/Q1929750", + visitors: "100000", + cordinates: "Point(104.929 11.5658)", + locationLabel: "National Museum of Cambodia", + }, + { + location: "http://www.wikidata.org/entity/Q16919423", + cordinates: "Point(-72.33583333 18.53888889)", + locationLabel: "National Museum of Art, Port-au-Prince", + }, + { + location: "http://www.wikidata.org/entity/Q1055037", + cordinates: "Point(135.492024 34.691786)", + locationLabel: "National Museum of Art, Osaka", + }, + { + location: "http://www.wikidata.org/entity/Q1132918", + visitors: "602546", + cordinates: "Point(10.737541666 59.916136111)", + locationLabel: "National Museum of Art, Architecture and Design", + }, + { + location: "http://www.wikidata.org/entity/Q27941729", + cordinates: "Point(32.5717845 -25.9667713)", + locationLabel: "National Museum of Art of Mozambique", + }, + { + location: "http://www.wikidata.org/entity/Q212459", + cordinates: "Point(-9.161813 38.704626)", + locationLabel: "National Museum of Ancient Art", + }, + { + location: "http://www.wikidata.org/entity/Q6974447", + cordinates: "Point(-71.3069 41.4696)", + locationLabel: "National Museum of American Illustration", + }, + { + location: "http://www.wikidata.org/entity/Q46812", + visitors: "213000", + cordinates: "Point(-77.0255 38.888)", + locationLabel: "National Museum of African Art", + }, + { + location: "http://www.wikidata.org/entity/Q46812", + visitors: "322000", + cordinates: "Point(-77.0255 38.888)", + locationLabel: "National Museum of African Art", + }, + { + location: "http://www.wikidata.org/entity/Q1329563", + cordinates: "Point(17.0475 51.111)", + locationLabel: "National Museum in Wrocław", + }, + { + location: "http://www.wikidata.org/entity/Q153306", + visitors: "337629", + cordinates: "Point(21.024766666 52.231761111)", + locationLabel: "National Museum in Warsaw", + }, + { + location: "http://www.wikidata.org/entity/Q2802195", + cordinates: "Point(14.564588 53.43015)", + locationLabel: "National Museum in Szczecin", + }, + { + location: "http://www.wikidata.org/entity/Q195311", + cordinates: "Point(19.923611111 50.060277777)", + locationLabel: "National Museum in Kraków", + }, + { + location: "http://www.wikidata.org/entity/Q6974436", + cordinates: "Point(-61.5103 10.6629)", + locationLabel: "National Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1141468", + cordinates: "Point(-8.62155 41.14770833)", + locationLabel: "National Museum Soares dos Reis", + }, + { + location: "http://www.wikidata.org/entity/Q194533", + cordinates: "Point(16.928902 52.40865)", + locationLabel: "National Museum Poznań", + }, + { + location: "http://www.wikidata.org/entity/Q1356138", + visitors: "7400000", + cordinates: "Point(77.219262 28.611811)", + locationLabel: "National Museum", + }, + { + location: "http://www.wikidata.org/entity/Q666063", + cordinates: "Point(-4.068469 52.414384)", + locationLabel: "National Library of Wales", + }, + { + location: "http://www.wikidata.org/entity/Q623578", + cordinates: "Point(149.129444444 -35.296388888)", + locationLabel: "National Library of Australia", + }, + { + location: "http://www.wikidata.org/entity/Q3630755", + cordinates: "Point(77.24232 28.613551)", + locationLabel: "National Handicrafts and Handlooms Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4113712", + visitors: "1030", + cordinates: "Point(31.0489 -17.8253)", + locationLabel: "National Gallery of Zimbabwe", + }, + { + location: "http://www.wikidata.org/entity/Q1464509", + visitors: "1547495", + cordinates: "Point(144.968634 -37.822595)", + locationLabel: "National Gallery of Victoria", + }, + { + location: "http://www.wikidata.org/entity/Q1464509", + visitors: "3033134", + cordinates: "Point(144.968634 -37.822595)", + locationLabel: "National Gallery of Victoria", + }, + { + location: "http://www.wikidata.org/entity/Q1464509", + visitors: "3200134", + cordinates: "Point(144.968634 -37.822595)", + locationLabel: "National Gallery of Victoria", + }, + { + location: "http://www.wikidata.org/entity/Q2739127", + visitors: "66087", + cordinates: "Point(12.3884514 43.1115627)", + locationLabel: "National Gallery of Umbria", + }, + { + location: "http://www.wikidata.org/entity/Q2739127", + visitors: "66087", + cordinates: "Point(12.388685 43.111603)", + locationLabel: "National Gallery of Umbria", + }, + { + location: "http://www.wikidata.org/entity/Q1953536", + cordinates: "Point(14.50025 46.05396)", + locationLabel: "National Gallery of Slovenia", + }, + { + location: "http://www.wikidata.org/entity/Q3330707", + cordinates: "Point(10.7375 59.9162)", + locationLabel: "National Gallery of Norway", + }, + { + location: "http://www.wikidata.org/entity/Q3094685", + cordinates: "Point(21.4356 41.9986)", + locationLabel: "National Gallery of North Macedonia", + }, + { + location: "http://www.wikidata.org/entity/Q1338832", + cordinates: "Point(77.234401 28.610182)", + locationLabel: "National Gallery of Modern Art, New Delhi", + }, + { + location: "http://www.wikidata.org/entity/Q2498011", + cordinates: "Point(-76.7947 17.9648)", + locationLabel: "National Gallery of Jamaica", + }, + { + location: "http://www.wikidata.org/entity/Q2018379", + cordinates: "Point(-6.25255 53.34091)", + locationLabel: "National Gallery of Ireland", + }, + { + location: "http://www.wikidata.org/entity/Q3757763", + visitors: "17865", + cordinates: "Point(16.260191 39.291836)", + locationLabel: "National Gallery of Cosenza", + }, + { + location: "http://www.wikidata.org/entity/Q1068063", + visitors: "237391", + cordinates: "Point(-75.698386 45.429434)", + locationLabel: "National Gallery of Canada", + }, + { + location: "http://www.wikidata.org/entity/Q13090849", + cordinates: "Point(18.42444444 43.85777778)", + locationLabel: "National Gallery of Bosnia and Herzegovina", + }, + { + location: "http://www.wikidata.org/entity/Q795228", + cordinates: "Point(149.136786 -35.300368)", + locationLabel: "National Gallery of Australia", + }, + { + location: "http://www.wikidata.org/entity/Q1167467", + cordinates: "Point(23.77825 37.986722222)", + locationLabel: "National Gallery of Athens", + }, + { + location: "http://www.wikidata.org/entity/Q214867", + visitors: "4074403", + cordinates: "Point(-77.02001 38.89147)", + locationLabel: "National Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q214867", + visitors: "4104331", + cordinates: "Point(-77.02001 38.89147)", + locationLabel: "National Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q214867", + visitors: "4200000", + cordinates: "Point(-77.02001 38.89147)", + locationLabel: "National Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q214867", + visitors: "4261391", + cordinates: "Point(-77.02001 38.89147)", + locationLabel: "National Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q214867", + visitors: "4404212", + cordinates: "Point(-77.02001 38.89147)", + locationLabel: "National Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2087788", + visitors: "65000", + cordinates: "Point(44.514167 40.17875)", + locationLabel: "National Gallery of Armenia", + }, + { + location: "http://www.wikidata.org/entity/Q3622570", + cordinates: "Point(23.334444 42.696111)", + locationLabel: "National Gallery for Foreign Art", + }, + { + location: "http://www.wikidata.org/entity/Q6970475", + visitors: "1803340", + cordinates: "Point(103.85186 1.29049)", + locationLabel: "National Gallery Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q6970475", + visitors: "1817335", + cordinates: "Point(103.85186 1.29049)", + locationLabel: "National Gallery Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q162610", + cordinates: "Point(13.39555556 52.52138889)", + locationLabel: "National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q180788", + visitors: "6011007", + cordinates: "Point(-0.128435 51.508704)", + locationLabel: "National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q51371009", + cordinates: "Point(139.770611111 35.675527777)", + locationLabel: "National Film Archive of Japan", + }, + { + location: "http://www.wikidata.org/entity/Q101001030", + cordinates: "Point(136.661806 36.559167)", + locationLabel: "National Crafts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1659559", + cordinates: "Point(-9.199722 38.697778)", + locationLabel: "National Coach Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6971310", + cordinates: "Point(-99.735759 32.449836)", + locationLabel: "National Center for Children's Illustrated Literature", + }, + { + location: "http://www.wikidata.org/entity/Q11154055", + cordinates: "Point(6.082883 49.47471)", + locationLabel: "National Audiovisual Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3294835", + cordinates: "Point(101.705 3.17353)", + locationLabel: "National Arts Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1189277", + visitors: "48500", + cordinates: "Point(30.53111111 50.44944444)", + locationLabel: "National Art Museum of Ukraine", + }, + { + location: "http://www.wikidata.org/entity/Q233705", + cordinates: "Point(116.40929444 39.92429167)", + locationLabel: "National Art Museum of China", + }, + { + location: "http://www.wikidata.org/entity/Q2559128", + cordinates: "Point(49.831667 40.363056)", + locationLabel: "National Art Museum of Azerbaijan", + }, + { + location: "http://www.wikidata.org/entity/Q2559128", + cordinates: "Point(49.83167 40.36306)", + locationLabel: "National Art Museum of Azerbaijan", + }, + { + location: "http://www.wikidata.org/entity/Q2559128", + cordinates: "Point(49.831742 40.363174)", + locationLabel: "National Art Museum of Azerbaijan", + }, + { + location: "http://www.wikidata.org/entity/Q6970476", + cordinates: "Point(147.372 -35.1095)", + locationLabel: "National Art Glass Collection", + }, + { + location: "http://www.wikidata.org/entity/Q6970474", + cordinates: "Point(73.091 33.7305)", + locationLabel: "National Art Gallery, Pakistan", + }, + { + location: "http://www.wikidata.org/entity/Q2912593", + cordinates: "Point(-77.3473 25.0754)", + locationLabel: "National Art Gallery of The Bahamas", + }, + { + location: "http://www.wikidata.org/entity/Q9265565", + cordinates: "Point(174.782167 -41.290583)", + locationLabel: "National Art Gallery of New Zealand", + }, + { + location: "http://www.wikidata.org/entity/Q1968108", + cordinates: "Point(19.820205 41.32546)", + locationLabel: "National Art Gallery of Albania", + }, + { + location: "http://www.wikidata.org/entity/Q212281", + cordinates: "Point(-66.9025 10.50055556)", + locationLabel: "National Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1968373", + cordinates: "Point(100.49384236 13.75894607)", + locationLabel: "National Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2991178", + cordinates: "Point(23.326786 42.696481)", + locationLabel: "National Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "994307", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "1921526", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "2039947", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "2384415", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "2466311", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "2623156", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1362638", + visitors: "2717565", + cordinates: "Point(139.72634 35.66528)", + locationLabel: "National Art Center, Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1774413", + cordinates: "Point(8.2454258 50.0797601)", + locationLabel: "Nassauischer Kunstverein Wiesbaden", + }, + { + location: "http://www.wikidata.org/entity/Q6967563", + visitors: "200000", + cordinates: "Point(-73.6429 40.8097)", + locationLabel: "Nassau County Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q921055", + cordinates: "Point(-96.79994 32.7881)", + locationLabel: "Nasher Sculpture Center", + }, + { + location: "http://www.wikidata.org/entity/Q6966836", + cordinates: "Point(-78.9291 35.9991)", + locationLabel: "Nasher Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q24935996", + cordinates: "Point(37.639722222 55.758611111)", + locationLabel: "Naschokin House", + }, + { + location: "http://www.wikidata.org/entity/Q10855979", + cordinates: "Point(139.031158 35.200028)", + locationLabel: "Narukawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11445177", + cordinates: "Point(135.822222222 34.477222222)", + locationLabel: "Nara Prefecture Complex of Man'yo Culture", + }, + { + location: "http://www.wikidata.org/entity/Q11445231", + cordinates: "Point(135.832583 34.685861)", + locationLabel: "Nara Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q637248", + visitors: "616878", + cordinates: "Point(14.250486111 40.853377777)", + locationLabel: "Naples National Archaeological Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6964980", + cordinates: "Point(-81.804 26.2161)", + locationLabel: "Naples Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3530048", + cordinates: "Point(76.955 8.50861111)", + locationLabel: "Napier Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10909224", + cordinates: "Point(112.50034 32.97265)", + locationLabel: "Nanyang Han Painting Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "83501", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "94960", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "100137", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "103414", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "112000", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "112398", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "114172", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "116269", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "121147", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "127973", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "144075", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "153649", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "154442", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "154479", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "193111", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "218657", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "230260", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1783956", + visitors: "254957", + cordinates: "Point(-1.547222222 47.219444444)", + locationLabel: "Nantes Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1815891", + cordinates: "Point(118.820172222 32.042644444)", + locationLabel: "Nanjing Museum", + }, + { + location: "http://www.wikidata.org/entity/Q59509305", + cordinates: "Point(-123.936674 49.166373)", + locationLabel: "Nanaimo Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18337620", + cordinates: "Point(135.781306 35.009889)", + locationLabel: "Namikawa Cloisonné Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11366422", + cordinates: "Point(133.769333 34.2855)", + locationLabel: "Nakatsu Banshoen Marugame Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11274070", + cordinates: "Point(133.186978 34.409083)", + locationLabel: "Nakata Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11364291", + cordinates: "Point(137.410047 35.452942)", + locationLabel: "Nakasendō Hiroshige Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q17227042", + cordinates: "Point(139.114222 37.75025)", + locationLabel: "Nakano Tei Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11367709", + cordinates: "Point(135.755944 34.694278)", + locationLabel: "Nakano Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11275386", + cordinates: "Point(139.51275 35.695083)", + locationLabel: + "Nakamura Kenʼichi Kinen Koganei Shiritsu Hakenomori Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q42704985", + cordinates: "Point(140.170944 36.739111)", + locationLabel: "Nakagawa-machi Bato Hiroshige Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11364934", + cordinates: "Point(133.368619 34.398192)", + locationLabel: "Nakagawa Bijutsukan (Fukuyama-shi, Japan)", + }, + { + location: "http://www.wikidata.org/entity/Q6958940", + cordinates: "Point(136.9 35.14268)", + locationLabel: "Nagoya/Boston Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q469573", + cordinates: "Point(136.901022 35.163842)", + locationLabel: "Nagoya City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15933226", + cordinates: "Point(134.174944 35.123944)", + locationLabel: "Nagi Museum Of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11652770", + cordinates: "Point(129.871057 32.741679)", + locationLabel: "Nagasaki Prefectural Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11652552", + cordinates: "Point(129.865 32.77280556)", + locationLabel: "Nagasaki City Noguchi Yatarō Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11654278", + cordinates: "Point(138.191111 36.661667)", + locationLabel: "Nagano Prefectural Shinano Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3788869", + cordinates: "Point(139.6874 35.6829)", + locationLabel: "NTT InterCommunication Center", + }, + { + location: "http://www.wikidata.org/entity/Q973307", + cordinates: "Point(6.77204 51.2333)", + locationLabel: "NRW Forum", + }, + { + location: "http://www.wikidata.org/entity/Q96003142", + cordinates: "Point(32.697861111 39.792527777)", + locationLabel: "Müze Evliyagil", + }, + { + location: "http://www.wikidata.org/entity/Q897556", + cordinates: "Point(19.07166667 47.46944444)", + locationLabel: "Müpa Budapest", + }, + { + location: "http://www.wikidata.org/entity/Q16324177", + cordinates: "Point(12.6717 55.5922)", + locationLabel: "Mølsteds Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1171246", + cordinates: "Point(10.4243 51.9071)", + locationLabel: "Mönchehaus-Museum für Moderne Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q1957463", + cordinates: "Point(7.3385 51.4346)", + locationLabel: "Märkisches Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3398656", + cordinates: "Point(30.55333333 50.43416667)", + locationLabel: "Mystetskyi Arsenal", + }, + { + location: "http://www.wikidata.org/entity/Q86105959", + cordinates: "Point(-3.445659 53.257526)", + locationLabel: "Myrtle House Gift Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1141934", + cordinates: "Point(19.448375 51.771725)", + locationLabel: "Muzeum Sztuki w Łodzi", + }, + { + location: "http://www.wikidata.org/entity/Q3330785", + cordinates: "Point(3.27965 43.2828)", + locationLabel: "Musée régional d'art contemporain Occitanie", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "298916", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "316718", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "317196", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "318996", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "345369", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "346384", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "357595", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "380825", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "384039", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "384247", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "422865", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "437482", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "451975", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "453872", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "460570", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "461192", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q17560765", + visitors: "516911", + cordinates: "Point(2.70056 48.40222)", + locationLabel: "Musée national du Château de Fontainebleau", + }, + { + location: "http://www.wikidata.org/entity/Q2338135", + visitors: "324312", + cordinates: "Point(-71.224719444 46.798888888)", + locationLabel: "Musée national des beaux-arts du Québec", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "24657", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "33774", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "34044", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "38425", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "38766", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "40222", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "42497", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "44118", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "46930", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "46954", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "51296", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "58148", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "59651", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "64408", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "67572", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "68416", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "75598", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q1782606", + visitors: "76000", + cordinates: "Point(2.3354 48.8546)", + locationLabel: "Musée national Eugène-Delacroix", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "60486", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "65762", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "68960", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "69815", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "70599", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "70704", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "71456", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "74028", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "74056", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "74222", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "75725", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "79095", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "80303", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "94648", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "97132", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "98951", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330655", + visitors: "112860", + cordinates: "Point(5.2366 46.1974)", + locationLabel: "Musée municipal de Bourg-en-Bresse", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "6342", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "8211", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "8376", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "11051", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "11193", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "12312", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "13736", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330651", + visitors: "20407", + cordinates: "Point(3.15477 46.9863)", + locationLabel: "Musée municipal Frédéric Blandin", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "7512", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "8601", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "12074", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "14583", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "15250", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "16514", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "17548", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "18162", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "18705", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "18992", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "19107", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "20000", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "20773", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "21327", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "21565", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "22228", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "22499", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330613", + visitors: "23644", + cordinates: "Point(7.23277778 43.68611111)", + locationLabel: "Musée international d'art naïf Anatole Jakovsky", + }, + { + location: "http://www.wikidata.org/entity/Q3330603", + cordinates: "Point(6.24075 46.38205)", + locationLabel: "Musée historique et des porcelaines de Nyon", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "4918", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5158", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5597", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5606", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5680", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5795", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5852", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "5865", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "6820", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "7205", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "7736", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "8049", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "8809", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "15353", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q28970848", + visitors: "21215", + cordinates: "Point(7.79162 48.813)", + locationLabel: "Musée historique de Haguenau", + }, + { + location: "http://www.wikidata.org/entity/Q1955751", + cordinates: "Point(7.07402587 46.09525752)", + locationLabel: "Musée et Chiens du Saint-Bernard", + }, + { + location: "http://www.wikidata.org/entity/Q1955751", + cordinates: "Point(7.07416 46.0953)", + locationLabel: "Musée et Chiens du Saint-Bernard", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "14190", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "14467", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "14548", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "15178", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "15637", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "15669", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "19913", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "21185", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "22220", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "22224", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "27029", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "27710", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "30686", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "31153", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "31981", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "54858", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "57977", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330521", + visitors: "69745", + cordinates: "Point(2.08025 49.4327)", + locationLabel: "Musée départemental de l'Oise", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "11520", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "12526", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "13125", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "13784", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "13926", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "14816", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "15253", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "15389", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "17782", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "18038", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "19024", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "19604", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "20237", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "20901", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "24283", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "27373", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330515", + visitors: "30955", + cordinates: "Point(6.4464 48.1728)", + locationLabel: "Musée départemental d'Art ancien et contemporain", + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "16165", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "18348", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "20736", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "21629", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "23660", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "24215", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "25412", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "26743", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "26862", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "26955", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "27021", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "27413", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "28355", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "28837", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "29339", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "35835", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330506", + visitors: "36243", + cordinates: "Point(2.0872 48.8927)", + locationLabel: 'Musée départemental Maurice Denis "The Priory"', + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "5921", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "6131", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "9981", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "10372", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "11385", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "11849", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "12989", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "13294", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "14173", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "15083", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "17010", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "18717", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "20031", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "29477", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q3330502", + visitors: "53584", + cordinates: "Point(6.531089 48.781943)", + locationLabel: "Musée départemental Georges de La Tour", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "910845", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "952000", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "952070", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1034626", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1069459", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1112423", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1173712", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1188114", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1261817", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1280622", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1326154", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1389490", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1457028", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1492440", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q167863", + visitors: "1496439", + cordinates: "Point(2.2975 48.860833333)", + locationLabel: "Musée du quai Branly", + }, + { + location: "http://www.wikidata.org/entity/Q3330420", + visitors: "2426", + cordinates: "Point(4.36302 48.958)", + locationLabel: + "Musée du cloître de Notre-Dame-en-Vaux (Châlons-en-Champagne)", + }, + { + location: "http://www.wikidata.org/entity/Q3330420", + visitors: "2831", + cordinates: "Point(4.36302 48.958)", + locationLabel: + "Musée du cloître de Notre-Dame-en-Vaux (Châlons-en-Champagne)", + }, + { + location: "http://www.wikidata.org/entity/Q3330420", + visitors: "2890", + cordinates: "Point(4.36302 48.958)", + locationLabel: + "Musée du cloître de Notre-Dame-en-Vaux (Châlons-en-Champagne)", + }, + { + location: "http://www.wikidata.org/entity/Q3330420", + visitors: "2941", + cordinates: "Point(4.36302 48.958)", + locationLabel: + "Musée du cloître de Notre-Dame-en-Vaux (Châlons-en-Champagne)", + }, + { + location: "http://www.wikidata.org/entity/Q3330420", + visitors: "3009", + cordinates: "Point(4.36302 48.958)", + locationLabel: + "Musée du cloître de Notre-Dame-en-Vaux (Châlons-en-Champagne)", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "25083", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "26857", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "28130", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "29258", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "29746", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "30022", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "30384", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "31295", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "32397", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "33039", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "33116", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "33907", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "34673", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "35063", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "40353", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "47629", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1664416", + visitors: "58733", + cordinates: "Point(4.80638889 43.95263889)", + locationLabel: "Musée du Petit Palais", + }, + { + location: "http://www.wikidata.org/entity/Q1758416", + cordinates: "Point(2.320833333 48.843416666)", + locationLabel: "Musée du Montparnasse", + }, + { + location: "http://www.wikidata.org/entity/Q3330343", + visitors: "13684", + cordinates: "Point(-3.49056 48.0317)", + locationLabel: "Musée du Faouët", + }, + { + location: "http://www.wikidata.org/entity/Q3330343", + visitors: "14647", + cordinates: "Point(-3.49056 48.0317)", + locationLabel: "Musée du Faouët", + }, + { + location: "http://www.wikidata.org/entity/Q3330343", + visitors: "15483", + cordinates: "Point(-3.49056 48.0317)", + locationLabel: "Musée du Faouët", + }, + { + location: "http://www.wikidata.org/entity/Q3330343", + visitors: "16335", + cordinates: "Point(-3.49056 48.0317)", + locationLabel: "Musée du Faouët", + }, + { + location: "http://www.wikidata.org/entity/Q3330343", + visitors: "17725", + cordinates: "Point(-3.49056 48.0317)", + locationLabel: "Musée du Faouët", + }, + { + location: "http://www.wikidata.org/entity/Q3330343", + visitors: "18559", + cordinates: "Point(-3.49056 48.0317)", + locationLabel: "Musée du Faouët", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "3886", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "11829", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "13089", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "13366", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "13725", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "13812", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "14905", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "15168", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "15876", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "15962", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "16150", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "16859", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "17085", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "17506", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "17669", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "19649", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330216", + visitors: "24064", + cordinates: "Point(4.3606 43.8319)", + locationLabel: "Musée des beaux-arts de Nîmes", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "7284", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "7356", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "8947", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "9327", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "10432", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "12891", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "13085", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "14595", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "14664", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "15615", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "17949", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "18405", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "18527", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "19548", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "19935", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "20609", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q3330211", + visitors: "22457", + cordinates: "Point(7.33837 47.7458)", + locationLabel: "Musée des beaux-arts de Mulhouse", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "13985", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "21982", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "24819", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "27972", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "28503", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "29354", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "29405", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "36377", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "46547", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "60476", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "174958", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q83013", + visitors: "220000", + cordinates: "Point(5.393873 43.304414)", + locationLabel: "Musée des beaux-arts de Marseille", + }, + { + location: "http://www.wikidata.org/entity/Q80784", + cordinates: "Point(5.58037 50.64623)", + locationLabel: "Musée des beaux-arts de Liège", + }, + { + location: "http://www.wikidata.org/entity/Q3330204", + cordinates: "Point(6.82942 47.10045)", + locationLabel: "Musée des beaux-arts de La Chaux-de-Fonds", + }, + { + location: "http://www.wikidata.org/entity/Q30108407", + cordinates: "Point(6.750903 47.059391)", + locationLabel: "Musée des beaux-arts Le Locle", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "40989", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "45311", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "46881", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "48738", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "49293", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "49410", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "49582", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "50494", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "52378", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "52714", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "54042", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "55389", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "57379", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "58585", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "59509", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "61118", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1955722", + visitors: "70147", + cordinates: "Point(7.752222 48.581111)", + locationLabel: "Musée des arts décoratifs de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "7882", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "9549", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "9597", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "9753", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "10940", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "11706", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "14960", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "16195", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "17423", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "19819", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "20443", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "20983", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "22096", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "22151", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "23334", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "23545", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q28843765", + visitors: "23862", + cordinates: "Point(4.83285 46.3074)", + locationLabel: "Musée des Ursulines", + }, + { + location: "http://www.wikidata.org/entity/Q23037686", + cordinates: "Point(5.867261 50.5949)", + locationLabel: "Musée des Beaux-Arts et de la Céramique", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "8930", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "11252", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "16479", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "35043", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "37663", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "40887", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "41960", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "44890", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "46469", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "46787", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "48971", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "49480", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "53923", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "54211", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "59286", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "65260", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "85572", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q1324926", + visitors: "105459", + cordinates: "Point(6.02305556 47.24027778)", + locationLabel: "Musée des Beaux-Arts et d'Archéologie de Besançon", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "20063", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "31504", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "34845", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "35217", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "38880", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "38983", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "39238", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "39475", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "40083", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "40433", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "44536", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "50781", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "56664", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "71541", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "80547", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "85583", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330222", + visitors: "140743", + cordinates: "Point(3.53076 50.3576)", + locationLabel: "Musée des Beaux-Arts de Valenciennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "10338", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "12004", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "12266", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "12940", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "14466", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "14713", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "15693", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "16366", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "17830", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "17996", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "18195", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "19350", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "19984", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "20114", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "20151", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "24649", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q3330226", + visitors: "28477", + cordinates: "Point(4.07972222 48.30111111)", + locationLabel: "Musée des Beaux-Arts de Troyes", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "39815", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "45137", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "46666", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "46693", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "46943", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "48375", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "51240", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "53097", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "53575", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "54270", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "61739", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "62317", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "63751", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "63904", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "63948", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "68754", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q2404549", + visitors: "70805", + cordinates: "Point(0.6949 47.3952)", + locationLabel: "Musée des Beaux-Arts de Tours", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "45292", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "45619", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "45630", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "46483", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "46854", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "50006", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "51152", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "51365", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "52006", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "52836", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "55834", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "60246", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "61284", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "64088", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "66533", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "70943", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q1535963", + visitors: "73979", + cordinates: "Point(7.7522 48.581)", + locationLabel: "Musée des Beaux-Arts de Strasbourg", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "3006", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "4043", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "4697", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "4951", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "5899", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "6201", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "6250", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "6681", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "7229", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "7431", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "8524", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "8613", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "9055", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "9077", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "9367", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "9732", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "9847", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q15818381", + visitors: "11165", + cordinates: "Point(-1.08794 49.1169)", + locationLabel: "Musée des Beaux-Arts de Saint-Lô", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "71928", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "72141", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "77497", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "80047", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "87167", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "92723", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "93335", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "93800", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "95791", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "97777", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "120432", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "124507", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "153199", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "166523", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "178300", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "251180", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3086934", + visitors: "298034", + cordinates: "Point(1.094722 49.444722)", + locationLabel: "Musée des Beaux-Arts de Rouen", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "17426", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "17584", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "18267", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "19695", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "19746", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "20800", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "22512", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "22658", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "22723", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "22924", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "23223", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "23533", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "24088", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "25611", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "32496", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q3330217", + visitors: "39836", + cordinates: "Point(-0.3645 43.297694444)", + locationLabel: "Musée des Beaux-Arts de Pau", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "3734", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "8344", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "11652", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "12224", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "12595", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "12806", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "13342", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "14751", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "14971", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "15795", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "15820", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "16132", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "18011", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "18379", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "19571", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "20081", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q1687165", + visitors: "22025", + cordinates: "Point(7.48805556 43.76666667)", + locationLabel: "Musée des Beaux-Arts de Menton", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "3439", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "3692", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "4241", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "4364", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "4607", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "4793", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "4954", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "5168", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "5214", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "5624", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "5725", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "6028", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "6323", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "6404", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "6806", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "8340", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330229", + visitors: "10476", + cordinates: "Point(5.55332 46.6759)", + locationLabel: "Musée des Beaux-Arts de Lons-le-Saunier", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "3141", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "3327", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "3448", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "3675", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "4847", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "5058", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "5849", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "6750", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "7539", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "7756", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "8066", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "8385", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "10023", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "10831", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "15089", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "16243", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q3330207", + visitors: "21357", + cordinates: "Point(-0.24516 44.9151)", + locationLabel: "Musée des Beaux-Arts de Libourne", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "139420", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "141861", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "143431", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "147832", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "150533", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "153000", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "154127", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "154164", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "155099", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "155692", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "157511", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "160263", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "163381", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "166347", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "171237", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "184934", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "193733", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q1955739", + visitors: "211531", + cordinates: "Point(5.04267 47.3216)", + locationLabel: "Musée des Beaux-Arts de Dijon", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "8446", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "11000", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "13472", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "17972", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "20325", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "20402", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "21263", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "22240", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "25371", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "26304", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "26750", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "27966", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "32160", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330197", + visitors: "44474", + cordinates: "Point(5.91963 45.5683)", + locationLabel: "Musée des Beaux-Arts de Chambéry", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "22653", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "24256", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "29178", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "29530", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "36340", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "41781", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "45739", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "46306", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "47758", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "49366", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "50760", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "51000", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "57416", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "64928", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "66062", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "66216", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "70412", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q3330195", + visitors: "73579", + cordinates: "Point(2.35527 43.2125)", + locationLabel: "Musée des Beaux-Arts de Carcassonne", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "39344", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "51139", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "51614", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "54408", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "56376", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "62209", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "62658", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "62791", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "64138", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "64930", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "71342", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "73239", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "80669", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "87941", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "125385", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "151577", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q569079", + visitors: "166516", + cordinates: "Point(-0.3614867 49.1861004)", + locationLabel: "Musée des Beaux-Arts de Caen", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "40335", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "40926", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "60666", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "69740", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "75018", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "84478", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "85423", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "93879", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "100017", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "102976", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "108774", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "110394", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "111625", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "112107", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "117492", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "122180", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q954222", + visitors: "133906", + cordinates: "Point(-0.581 44.8374)", + locationLabel: "Musée des Beaux-Arts de Bordeaux", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "241061", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "252643", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "253760", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "259266", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "260226", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "262301", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "263170", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "265767", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "269503", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "270562", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "271728", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "272147", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "274595", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "282918", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "287723", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "290615", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330190", + visitors: "297879", + cordinates: "Point(1.33127 47.5859)", + locationLabel: "Musée des Beaux-Arts de Blois", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "31569", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "45077", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "47186", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "47634", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "50201", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "50683", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "51331", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "51539", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "53066", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "53516", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "53556", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "53562", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "55207", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "57422", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "61730", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "62671", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3330194", + visitors: "63328", + cordinates: "Point(1.90944444 47.9025)", + locationLabel: "Musée des Beaux-Arts d'Orléans", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "3453", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "68621", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "70738", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "71722", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "72437", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "72705", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "74163", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "80804", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "80921", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "81701", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "81985", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "83768", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "86676", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "88898", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3277885", + visitors: "97920", + cordinates: "Point(-0.554722222 47.468888888)", + locationLabel: "Musée des Beaux-Arts d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "14885", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "15646", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "17353", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "17649", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "18641", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "18774", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "18976", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "19526", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "20998", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "21440", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "21650", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "22823", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "23524", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "23627", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "24064", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "24584", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q3330185", + visitors: "30586", + cordinates: "Point(0.61613 44.20357)", + locationLabel: "Musée des Beaux-Arts d'Agen", + }, + { + location: "http://www.wikidata.org/entity/Q1778179", + visitors: "16000", + cordinates: "Point(3.38555556 50.60277778)", + locationLabel: "Musée des Beaux-Arts Tournai", + }, + { + location: "http://www.wikidata.org/entity/Q1778179", + visitors: "28000", + cordinates: "Point(3.38555556 50.60277778)", + locationLabel: "Musée des Beaux-Arts Tournai", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "21286", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "21286", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "21286", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "23603", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "23603", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "23603", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "29936", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "29936", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "29936", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "31690", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "31690", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "31690", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "33047", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "33047", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "33047", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "40318", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "40318", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "40318", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "43706", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "43706", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "43706", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "46508", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "46508", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "46508", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "48605", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "48605", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "48605", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "49524", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "49524", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "49524", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "50036", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "50036", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "50036", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52467", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52467", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52467", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52703", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52703", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52703", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52744", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52744", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "52744", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "55181", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "55181", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "55181", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "56120", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "56120", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "56120", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "66756", + cordinates: "Point(7.248861 43.694537)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "66756", + cordinates: "Point(7.248889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q3330218", + visitors: "66756", + cordinates: "Point(7.24889 43.694583)", + locationLabel: "Musée des Beaux-Arts Jules Chéret", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "95701", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "100072", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "100391", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "100809", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "104143", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "109561", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "110663", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "111648", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "116033", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "122116", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "123985", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "129073", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "144754", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "145006", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "160169", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "166586", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q2711480", + visitors: "186780", + cordinates: "Point(1.446 43.601)", + locationLabel: "Musée des Augustins", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "84466", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "144390", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "166632", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "167230", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "184119", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "247199", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "288179", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "308701", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "409131", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "415595", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "421373", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "481432", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "486148", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "492654", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "552805", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "603098", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q1319378", + visitors: "869797", + cordinates: "Point(2.334108 48.862783)", + locationLabel: "Musée des Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q18693767", + cordinates: "Point(5.57983 50.64653)", + locationLabel: "Musée del l'Art wallon", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "46109", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "52130", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "60074", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "61555", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "62617", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "71901", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "75193", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "75667", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "79799", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "81829", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "88348", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "97165", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "103267", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "110000", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "111944", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "118006", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "140668", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q2714932", + visitors: "148899", + cordinates: "Point(2.33352 48.881119)", + locationLabel: "Musée de la Vie romantique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "85629", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "119456", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "124155", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "124682", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "130204", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "133996", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "143811", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "147675", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "149861", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "170623", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "188183", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "196071", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "199221", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "246418", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "250816", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "274159", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q1934214", + visitors: "379794", + cordinates: "Point(2.3938889 48.8897222)", + locationLabel: "Musée de la Musique", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "28142", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "29466", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "37253", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "37392", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "37824", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "41685", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "42347", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "43204", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "43287", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "43518", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "44906", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "45641", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "45863", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "46758", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "49504", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "50248", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3329898", + visitors: "50703", + cordinates: "Point(6.17805556 49.12111111)", + locationLabel: "Musée de la Cour d'Or", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "22121", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "24563", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "28570", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "29644", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "32654", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "33471", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "36451", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "36503", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "37928", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "40581", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "41072", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "43128", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "44612", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "47689", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "56413", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "56931", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q3001838", + visitors: "61049", + cordinates: "Point(3.07555556 50.37472222)", + locationLabel: "Musée de la Chartreuse de Douai", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "33520", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "33777", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "34109", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "34371", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "36024", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "37047", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "37484", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "37817", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "38274", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "38554", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "38628", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "38662", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "40214", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "43953", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "47545", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "47860", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "51959", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q847007", + visitors: "58960", + cordinates: "Point(7.75138889 48.58083333)", + locationLabel: "Musée de l'Œuvre Notre-Dame", + }, + { + location: "http://www.wikidata.org/entity/Q27488913", + cordinates: "Point(7.35825 46.23362)", + locationLabel: "Musée de l'évêché", + }, + { + location: "http://www.wikidata.org/entity/Q675261", + cordinates: "Point(6.632767 46.509824)", + locationLabel: "Musée de l'Élysée", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2072", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2129", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2163", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2196", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2303", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2427", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2845", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "2851", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3405", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3446", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3450", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3451", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3479", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3701", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3703", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3712", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q3329836", + visitors: "3861", + cordinates: "Point(7.611574 48.84483)", + locationLabel: + "Musée de l'imagerie peinte et populaire alsacienne de Pfaffenhoffen", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "447093", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "543754", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "568586", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "598762", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "690958", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "697108", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "768033", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "782030", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "801788", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "849968", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "912809", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q726781", + visitors: "938281", + cordinates: "Point(2.32225 48.863833)", + locationLabel: "Musée de l'Orangerie", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "4818", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "9422", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "9784", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "9947", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "10780", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "11107", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "11119", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "11239", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "11414", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q25395891", + visitors: "13855", + cordinates: "Point(5.865246 46.386244)", + locationLabel: "Musée de l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q3329765", + cordinates: "Point(6.6353 46.52209)", + locationLabel: "Musée de design et d'arts appliqués contemporains", + }, + { + location: "http://www.wikidata.org/entity/Q17635467", + cordinates: "Point(-0.88849 48.83605)", + locationLabel: "Musée de Vire", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "23212", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "24182", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "25672", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "25698", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "27031", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "27819", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "28472", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "28486", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "28585", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "28797", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "29602", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "30007", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "30614", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "30625", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "30738", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q3329758", + visitors: "35042", + cordinates: "Point(0.2034853 48.01026486)", + locationLabel: "Musée de Tessé", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "4712", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "5173", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "6513", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "8362", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "10082", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "10608", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "10948", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "11837", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "11875", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "12264", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "15474", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "16349", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "17521", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "21458", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "21791", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "22154", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "26328", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "26840", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "34171", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "34738", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "38611", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "40035", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "41424", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "45594", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "45714", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "45854", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "48299", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "52052", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q106108498", + visitors: "52879", + cordinates: "Point(5.2172 45.176)", + locationLabel: "Musée de Saint-Antoine-l'Abbaye", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "10954", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "12961", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "30856", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "31804", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "35017", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "35974", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "37564", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "40322", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "42525", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "45491", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "46511", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "48424", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "49210", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "50467", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "52815", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "56524", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q3107709", + visitors: "56967", + cordinates: "Point(2.29542 49.89056)", + locationLabel: "Musée de Picardie", + }, + { + location: "http://www.wikidata.org/entity/Q73883534", + cordinates: "Point(-4.207 48.099)", + locationLabel: "Musée de Locronan", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "2485", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "3560", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "5344", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "5781", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "5785", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "5874", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "7296", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "7356", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "7481", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "7624", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "8045", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "8335", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "8765", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "9440", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "9999", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q15818174", + visitors: "10344", + cordinates: "Point(0.707705 44.4052)", + locationLabel: "Musée de Gajac", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "8719", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "11343", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "11451", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "13312", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "13359", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "13438", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "14149", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "15632", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "17363", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "17494", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "18410", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "19060", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "19249", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "19326", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "20775", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "24496", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "27065", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q3228695", + visitors: "30000", + cordinates: "Point(3.22968 50.1732)", + locationLabel: "Musée de Cambrai", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "9324", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "9324", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "9480", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "9480", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "10718", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "10718", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "10915", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "10915", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "10975", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "10975", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "13348", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "13348", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "16030", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "16030", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "18051", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "18051", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19153", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19153", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19408", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19408", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19499", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19499", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19825", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "19825", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "21870", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "21870", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "23133", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "23133", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "23659", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "23659", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "25615", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "25615", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "27633", + cordinates: "Point(1.150929 49.023903)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q9047086", + visitors: "27633", + cordinates: "Point(1.1509617 49.0245464)", + locationLabel: "Musée d'Évreux", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "80726", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "97187", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "331847", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "341942", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "376570", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "388481", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "398400", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "506246", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "593300", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "601617", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "613402", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "670041", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "679611", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "695376", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "708720", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "777983", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "800000", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q857276", + visitors: "832088", + cordinates: "Point(2.2978 48.8643)", + locationLabel: "Musée d'art moderne de Paris", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "47784", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "50000", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "50468", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "50579", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "53554", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "53722", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "53749", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "53803", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "53898", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "54384", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "54665", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "54808", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "56685", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "58129", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "60421", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "64249", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "66543", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329646", + visitors: "72411", + cordinates: "Point(4.37395 45.4695)", + locationLabel: "Musée d'art moderne (Saint-Étienne)", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "3585", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "4533", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "4735", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "4751", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "4918", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5033", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5197", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5239", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5320", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5333", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5339", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "5765", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "6340", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "6658", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "8679", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "8927", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329626", + visitors: "11000", + cordinates: "Point(5.8914 48.6786)", + locationLabel: "Musée d'art et d'histoire de Toul", + }, + { + location: "http://www.wikidata.org/entity/Q3329619", + cordinates: "Point(3.00382 43.1837)", + locationLabel: "Musée d'art et d'histoire de Narbonne", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "5180", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "5478", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "6985", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "7587", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "7855", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "8061", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "8318", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "8372", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "9309", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "9357", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "9548", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "10061", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "12623", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "12789", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "13136", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "15447", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329617", + visitors: "15715", + cordinates: "Point(5.33365 47.8649)", + locationLabel: "Musée d'art et d'histoire de Langres", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "10150", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "11216", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "12133", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "13421", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "13991", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "14626", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "14983", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "15088", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "15314", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "15625", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "15991", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "16656", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "16773", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "17653", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "18075", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "18113", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329613", + visitors: "21580", + cordinates: "Point(-0.880755 47.0581)", + locationLabel: "Musée d'art et d'histoire de Cholet", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "20999", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "21595", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "22457", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "22740", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "23760", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "23770", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "23773", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "23830", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "24312", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "24447", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "24461", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "25100", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "26442", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "26825", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "27425", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "28285", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329605", + visitors: "29603", + cordinates: "Point(0.723671 45.186)", + locationLabel: "Musée d'art et d'archéologie du Périgord", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "3234", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "3792", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "4454", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "6333", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "8216", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "8804", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "10367", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "11937", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "12836", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "13023", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "14758", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "17164", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329603", + visitors: "18156", + cordinates: "Point(2.58691 49.2064)", + locationLabel: "Musée d'art et d'archéologie de Senlis", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "4327", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "4460", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "4617", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "4738", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5131", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5204", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5455", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5498", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5649", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5664", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "5918", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "6135", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "6506", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "6688", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "6707", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "7186", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329602", + visitors: "7627", + cordinates: "Point(3.62712 49.563)", + locationLabel: "Musée d'art et d'archéologie de Laon", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "14082", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "14082", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "14153", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "14153", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "23277", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "23277", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "27554", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "27554", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "35807", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "35807", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "43811", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "43811", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "97364", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "97364", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "100767", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "100767", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "101571", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "101571", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "102423", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "102423", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "102870", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "102870", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "105674", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "105674", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "107033", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "107033", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "108298", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "108298", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "108817", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "108817", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "153180", + cordinates: "Point(4.658083 46.435611)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q3329292", + visitors: "153180", + cordinates: "Point(4.65815 46.43583)", + locationLabel: "Musée d'art et d'archéologie", + }, + { + location: "http://www.wikidata.org/entity/Q2235294", + visitors: "241527", + cordinates: "Point(-73.5661 45.5075)", + locationLabel: "Musée d'art contemporain de Montréal", + }, + { + location: "http://www.wikidata.org/entity/Q23402", + visitors: "3651616", + cordinates: "Point(2.326388888 48.86)", + locationLabel: "Musée d'Orsay", + }, + { + location: "http://www.wikidata.org/entity/Q679075", + visitors: "170000", + cordinates: "Point(6.15136 46.19936)", + locationLabel: "Musée d'Art et d'Histoire, Geneva", + }, + { + location: "http://www.wikidata.org/entity/Q3329620", + cordinates: "Point(6.9354 46.99151)", + locationLabel: "Musée d'Art et d'Histoire", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "6397", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "13195", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "14846", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "15338", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "15665", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "17400", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "19726", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "22743", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "23825", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "23852", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "26803", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "28696", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "29669", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "31411", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "37547", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q3329600", + visitors: "49657", + cordinates: "Point(5.92733 43.1264)", + locationLabel: "Musée d'Art de Toulon", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "23230", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "23777", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "26372", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "26513", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "28210", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "29776", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "30106", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "31501", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "33310", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "34561", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "35436", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "36607", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "37049", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "42196", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "44300", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "46128", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q1495869", + visitors: "78386", + cordinates: "Point(3.116381 45.793801)", + locationLabel: "Musée d'Art Roger-Quilliot", + }, + { + location: "http://www.wikidata.org/entity/Q3126070", + cordinates: "Point(2.34444444 48.88472222)", + locationLabel: "Musée d'Art Naïf – Max Fourny", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "6500", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "6500", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "7321", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "7321", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "7461", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "7461", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "7652", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "7652", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "8226", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "8226", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "10269", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "10269", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "10775", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "10775", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "12463", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "12463", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "13103", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "13103", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "13691", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "13691", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "14029", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "14029", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "14348", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "14348", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "15149", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "15149", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "15637", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "15637", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "16172", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "16172", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "23744", + cordinates: "Point(5.054167 43.408611)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329400", + visitors: "23744", + cordinates: "Point(5.05417 43.40861)", + locationLabel: "Musée Ziem", + }, + { + location: "http://www.wikidata.org/entity/Q3329392", + cordinates: "Point(7.63021 48.4174)", + locationLabel: "Musée Würth France Erstein", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "398", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "425", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "669", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "4080", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "4124", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "4472", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "5576", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q3329387", + visitors: "6492", + cordinates: "Point(7.9448 49.0389)", + locationLabel: "Musée Westercamp (Wissembourg)", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "128935", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "131871", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "131984", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "132761", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "137614", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "139210", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "145498", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "147248", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "151853", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "159302", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "161422", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "163855", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "165937", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "168017", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "169870", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "179519", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "183478", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q2538129", + visitors: "212238", + cordinates: "Point(2.143055555 43.929166666)", + locationLabel: "Musée Toulouse-Lautrec", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "38920", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "39408", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "40741", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "44387", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "44841", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "48611", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "48921", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "49201", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "51863", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329373", + visitors: "60513", + cordinates: "Point(7.75513889 48.58569444)", + locationLabel: + "Musée Tomi Ungerer / Centre international de l'illustration", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "4540", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "4945", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "5228", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "14269", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "18235", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "18248", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "18265", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "18300", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "18957", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "20610", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "21605", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "23987", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "28130", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q3329368", + visitors: "30554", + cordinates: "Point(-1.62305556 49.63722222)", + locationLabel: "Musée Thomas-Henry", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "16366", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "17000", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "18157", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "18259", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "19126", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "20253", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "20980", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "21029", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "21519", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "21975", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "22970", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "23880", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "25729", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "27496", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "28517", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "31626", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q772297", + visitors: "31661", + cordinates: "Point(0.34763935 46.57909689)", + locationLabel: "Musée Sainte-Croix", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "20713", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "21922", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "24875", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "25133", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "26000", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "29845", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "29937", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "30834", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "36291", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "37116", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "37242", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "42001", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "53233", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "58573", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "60905", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "63072", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q1688538", + visitors: "130310", + cordinates: "Point(4.627884 43.679172)", + locationLabel: "Musée Réattu", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "13920", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "14287", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "14716", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "14738", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "18173", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "18199", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "18226", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "18672", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "18816", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "20003", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "20894", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "21137", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "21343", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "21368", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "21527", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "21610", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "21821", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "22358", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "22711", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "23121", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "23213", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q391823", + visitors: "23794", + cordinates: "Point(4.29936111 46.94575)", + locationLabel: "Musée Rolin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "513350", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "533449", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "552024", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "556290", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "558936", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "576436", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "584007", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "594356", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "614867", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "687257", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "689882", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "690675", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "692581", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "700000", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "704192", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "714268", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "718814", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "726159", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q650519", + visitors: "754963", + cordinates: "Point(2.315819 48.855356)", + locationLabel: "Musée Rodin", + }, + { + location: "http://www.wikidata.org/entity/Q673396", + cordinates: "Point(6.143544444 46.201738888)", + locationLabel: "Musée Rath", + }, + { + location: "http://www.wikidata.org/entity/Q106775614", + cordinates: "Point(0.339816598 44.303524119)", + locationLabel: "Musée Raoul-Dastrac", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "11676", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "14095", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "14156", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "15143", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "15222", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "15844", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "16136", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "16901", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "16992", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "17031", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "17715", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "18070", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "20552", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "24265", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "26295", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "27081", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q3329314", + visitors: "88336", + cordinates: "Point(6.95183 48.2887)", + locationLabel: "Musée Pierre-Noël de Saint-Dié-des-Vosges", + }, + { + location: "http://www.wikidata.org/entity/Q60193124", + cordinates: "Point(7.1259239 43.5809835)", + locationLabel: "Musée Peynet", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "38121", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "38860", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "39062", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "41880", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "42321", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "44481", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "45111", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "45943", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "47687", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "47938", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "48634", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "50378", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "51961", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "51969", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "54012", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "56103", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q1954498", + visitors: "65475", + cordinates: "Point(2.312778 48.878889)", + locationLabel: "Musée Nissim-de-Camondo", + }, + { + location: "http://www.wikidata.org/entity/Q11495725", + cordinates: "Point(136.268861 35.374667)", + locationLabel: "Musée Narita", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "71576", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "105545", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "115722", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "119628", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "122228", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "124409", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "125483", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "126679", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "131723", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "134990", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "135715", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "137399", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "152811", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "162054", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "162523", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "173128", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q1563354", + visitors: "182469", + cordinates: "Point(7.276111 43.719444)", + locationLabel: "Musée Matisse", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "1500", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "3264", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "3269", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "10132", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "10418", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "10734", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "11857", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "13114", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q3329271", + visitors: "17700", + cordinates: "Point(0.075257 43.239)", + locationLabel: "Musée Massey", + }, + { + location: "http://www.wikidata.org/entity/Q1327886", + cordinates: "Point(2.2675 48.859361)", + locationLabel: "Musée Marmottan Monet", + }, + { + location: "http://www.wikidata.org/entity/Q60832377", + cordinates: "Point(3.1061 42.4618)", + locationLabel: "Musée Maillol Banyuls-sur-Mer", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "9981", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "9981", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "11041", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "11041", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "11149", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "11149", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "12933", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "12933", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14021", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14021", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14041", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14041", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14110", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14110", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14837", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "14837", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "15291", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "15291", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "16006", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "16006", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "16631", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "16631", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "16998", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "16998", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "17112", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "17112", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "17950", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "17950", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "18088", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "18088", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "18225", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "18225", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "19694", + cordinates: "Point(5.042194 47.320917)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329260", + visitors: "19694", + cordinates: "Point(5.042262 47.320967)", + locationLabel: "Musée Magnin", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "3166", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "5745", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "10000", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "12171", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "12308", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "14830", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "16496", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "16610", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "17367", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "18992", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "19285", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "19294", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "20487", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "20747", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "21222", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "21535", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "22000", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3329255", + visitors: "28813", + cordinates: "Point(55.45 -20.8838)", + locationLabel: "Musée Léon-Dierx", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "47168", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "47962", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "52867", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "55907", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "57081", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "57174", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "57650", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "61092", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "62802", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "63227", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "67510", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "68699", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "70063", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "70803", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "72520", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "73920", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "76184", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3330634", + visitors: "86545", + cordinates: "Point(6.18028 48.6969)", + locationLabel: "Musée Lorrain", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "10004", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "11059", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "11406", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "11728", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "11802", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "11948", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "12394", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "12994", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "13206", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "14746", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "15004", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "15313", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "15433", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "17671", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "19230", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "21849", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q3329245", + visitors: "34458", + cordinates: "Point(2.1301031 48.8087571)", + locationLabel: "Musée Lambinet", + }, + { + location: "http://www.wikidata.org/entity/Q2400378", + cordinates: "Point(6.8453 46.4615)", + locationLabel: "Musée Jenisch", + }, + { + location: "http://www.wikidata.org/entity/Q1165526", + cordinates: "Point(2.31051 48.87543)", + locationLabel: "Musée Jacquemart-André", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "18467", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "18467", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "31634", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "31634", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "34652", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "34652", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "36624", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "36624", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "37089", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "37089", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "37659", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "37659", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "37762", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "37762", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "38252", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "38252", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "38303", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "38303", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "39650", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "39650", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "40267", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "40267", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "42352", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "42352", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "43093", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "43093", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "43367", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "43367", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "50481", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "50481", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "57572", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "57572", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "67810", + cordinates: "Point(1.35167 44.01694)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q2843748", + visitors: "67810", + cordinates: "Point(1.351667 44.016944)", + locationLabel: "Musée Ingres", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "2658", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "13894", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "16450", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "18981", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "20000", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "25785", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "26689", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "27286", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "27852", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "29628", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "32545", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "33970", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "36092", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "36127", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "38676", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329205", + visitors: "40151", + cordinates: "Point(5.7496 45.2055)", + locationLabel: "Musée Hébert", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "518", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "4504", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "5871", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "5961", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "6012", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "6671", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "6676", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "7027", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "7485", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "8136", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "9774", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "10083", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "11250", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "14527", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329201", + visitors: "68885", + cordinates: "Point(2.892977 42.697994)", + locationLabel: "Musée Hyacinthe-Rigaud", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "2569", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "3169", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "4054", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "4619", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "4686", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "5384", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "5505", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "5809", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "6190", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "6504", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "7148", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "7345", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "7542", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "7725", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "7823", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q3329195", + visitors: "7892", + cordinates: "Point(5.6995 45.1493)", + locationLabel: "Musée Géo-Charles", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "22375", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "24379", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "28529", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "29633", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "32592", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "32643", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "32646", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "32943", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "33423", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "34951", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "38092", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "38665", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "39238", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "40905", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "41351", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "51956", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "58000", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q2296362", + visitors: "58239", + cordinates: "Point(2.33436 48.878)", + locationLabel: "Musée Gustave-Moreau", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "1917", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "2943", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "7434", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "7709", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "7830", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "8024", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "8143", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "8780", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "9812", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "9905", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "10388", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "10407", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "10472", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "10733", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "12987", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q3329184", + visitors: "16683", + cordinates: "Point(5.39277778 43.30333333)", + locationLabel: "Musée Grobet-Labadié", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "71267", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "98945", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "134000", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "141078", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "150565", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "166522", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "175477", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "177598", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "199353", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "346796", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "449709", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q965780", + visitors: "488775", + cordinates: "Point(5.4525 43.525555555)", + locationLabel: "Musée Granet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "1200", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "1500", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "1931", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "2009", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "2280", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "2465", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "3049", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "3718", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "4508", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "4650", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "5920", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "6213", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "6473", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329176", + visitors: "9665", + cordinates: "Point(2.73636 47.9972)", + locationLabel: "Musée Girodet", + }, + { + location: "http://www.wikidata.org/entity/Q3329046", + cordinates: "Point(6.49827 46.50924)", + locationLabel: "Musée Forel", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "1446", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "34024", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "35384", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "38224", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "38287", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "38891", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "39783", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "40175", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "40655", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "41024", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "41277", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "43363", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "47897", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "48191", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "49590", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "51015", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q2483597", + visitors: "52541", + cordinates: "Point(8.73833333 41.92166667)", + locationLabel: "Musée Fesch", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "25036", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "26051", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "26210", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "27359", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "30154", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "31476", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "31493", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "33540", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "35751", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "37969", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "40749", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q167248", + visitors: "42008", + cordinates: "Point(-1.56694444 47.21222222)", + locationLabel: "Musée Dobrée", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "24786", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "33102", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "33289", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "33883", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "34938", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "36053", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "38922", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "41303", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "44086", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "50776", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "51384", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "53349", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "53849", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "57393", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "66543", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "66882", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q1572452", + visitors: "78416", + cordinates: "Point(2.361389 48.858194)", + locationLabel: "Musée Cognacq-Jay", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "8187", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "195792", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "249836", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "319665", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "395355", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "428752", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "437784", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "490048", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "605423", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "616645", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "665440", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "672722", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "797121", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "868117", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "992586", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "1002809", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "1091105", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q640447", + visitors: "1108079", + cordinates: "Point(2.362745 48.857375)", + locationLabel: "Musée Carnavalet", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "1448", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "1943", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "2196", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "3799", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "3925", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "3960", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "3981", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4003", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4317", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4409", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4414", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4437", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4549", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4634", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4767", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q1955692", + visitors: "4903", + cordinates: "Point(2.09995 49.04823)", + locationLabel: "Musée Camille Pissarro", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "890", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "1208", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "1623", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "1655", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "1723", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "1831", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "3018", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "3494", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "5130", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "5406", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "5803", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "5880", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "6523", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "7334", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q29969684", + visitors: "51519", + cordinates: "Point(3.501777777 48.494027777)", + locationLabel: "Musée Camille Claudel", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "5135", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "7376", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "7692", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "8201", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "8323", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "8486", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "9546", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "9881", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "9937", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "10076", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "10822", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "11395", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "12284", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "13242", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "13954", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "14877", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q82748", + visitors: "16691", + cordinates: "Point(2.8762598 48.9606085)", + locationLabel: "Musée Bossuet", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "112", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "1716", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "3832", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "22439", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "25472", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "26704", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "28286", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "28962", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "29129", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "29699", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "31280", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "31572", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q2620702", + visitors: "32330", + cordinates: "Point(-1.4722 43.4922)", + locationLabel: "Musée Bonnat-Helleu", + }, + { + location: "http://www.wikidata.org/entity/Q671822", + cordinates: "Point(6.138838888 46.2254)", + locationLabel: "Musée Ariana", + }, + { + location: "http://www.wikidata.org/entity/Q3329052", + cordinates: "Point(4.80697 43.946)", + locationLabel: "Musée Angladon", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "4467", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "4771", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "4798", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "4856", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "4933", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "5571", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "5749", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "5810", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "5811", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "5866", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "6516", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "6676", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "7630", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "8363", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "8384", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "9001", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q23498344", + visitors: "10341", + cordinates: "Point(0.166074633 44.499022981)", + locationLabel: "Musée Albert Marzelles", + }, + { + location: "http://www.wikidata.org/entity/Q18342548", + cordinates: "Point(-86.250991 43.234348)", + locationLabel: "Muskegon Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1954806", + cordinates: "Point(9.43158 54.7857)", + locationLabel: "Museumsberg Flensburg", + }, + { + location: "http://www.wikidata.org/entity/Q699943", + cordinates: "Point(16.358888888 48.203333333)", + locationLabel: "MuseumsQuartier", + }, + { + location: "http://www.wikidata.org/entity/Q1954786", + cordinates: "Point(8.635888888 47.694833333)", + locationLabel: "Museum zu Allerheiligen Schaffhausen", + }, + { + location: "http://www.wikidata.org/entity/Q2215500", + cordinates: "Point(3.525452 50.981287)", + locationLabel: "Museum van Deinze en de Leiestreek", + }, + { + location: "http://www.wikidata.org/entity/Q2215500", + cordinates: "Point(3.525561 50.981297)", + locationLabel: "Museum van Deinze en de Leiestreek", + }, + { + location: "http://www.wikidata.org/entity/Q1994770", + cordinates: "Point(6.1733 51.368)", + locationLabel: "Museum van Bommel van Dam", + }, + { + location: "http://www.wikidata.org/entity/Q6034310", + cordinates: "Point(-3.703056 40.413611)", + locationLabel: "Museum of the Trinidad Calzada", + }, + { + location: "http://www.wikidata.org/entity/Q2591247", + cordinates: "Point(11.28579 43.771658)", + locationLabel: "Museum of the Last Supper of Andrea del Sarto", + }, + { + location: "http://www.wikidata.org/entity/Q2591247", + cordinates: "Point(11.286019 43.771626)", + locationLabel: "Museum of the Last Supper of Andrea del Sarto", + }, + { + location: "http://www.wikidata.org/entity/Q3076188", + cordinates: "Point(139.759247 35.686302)", + locationLabel: "Museum of the Imperial Collections", + }, + { + location: "http://www.wikidata.org/entity/Q1321141", + cordinates: "Point(-73.95188 40.79248)", + locationLabel: "Museum of the City of New York", + }, + { + location: "http://www.wikidata.org/entity/Q2568412", + cordinates: "Point(-3.72194 40.43806)", + locationLabel: "Museum of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q2568412", + cordinates: "Point(-3.72207 40.43813)", + locationLabel: "Museum of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q2568412", + cordinates: "Point(-3.722069 40.438131)", + locationLabel: "Museum of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q2568412", + cordinates: "Point(-3.722056 40.438139)", + locationLabel: "Museum of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q2568412", + cordinates: "Point(-3.722 40.4383)", + locationLabel: "Museum of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q63331707", + cordinates: "Point(12.3440828 45.435418)", + locationLabel: "Museum of icons", + }, + { + location: "http://www.wikidata.org/entity/Q6941054", + cordinates: "Point(16.3664 48.212)", + locationLabel: "Museum of Young Art", + }, + { + location: "http://www.wikidata.org/entity/Q11644483", + cordinates: "Point(136.351722 35.329139)", + locationLabel: "Museum of Wood Carving Samegai", + }, + { + location: "http://www.wikidata.org/entity/Q17027223", + cordinates: "Point(-88.181417 43.425)", + locationLabel: "Museum of Wisconsin Art", + }, + { + location: "http://www.wikidata.org/entity/Q6941049", + cordinates: "Point(-2.6297 53.5442)", + locationLabel: "Museum of Wigan Life", + }, + { + location: "http://www.wikidata.org/entity/Q1428076", + cordinates: "Point(30.51444 50.44111)", + locationLabel: "Museum of Western and Oriental Art", + }, + { + location: "http://www.wikidata.org/entity/Q1428076", + cordinates: "Point(30.514444 50.441111)", + locationLabel: "Museum of Western and Oriental Art", + }, + { + location: "http://www.wikidata.org/entity/Q6941047", + cordinates: "Point(-99.1371 30.0244)", + locationLabel: "Museum of Western Art", + }, + { + location: "http://www.wikidata.org/entity/Q18542196", + cordinates: "Point(28.050249 45.451028)", + locationLabel: "Museum of Visual Arts in Galati", + }, + { + location: "http://www.wikidata.org/entity/Q4306279", + cordinates: "Point(25.12666667 35.34194444)", + locationLabel: "Museum of Visual Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4306116", + cordinates: "Point(35.37792 45.04106)", + locationLabel: "Museum of Vera Mukhina", + }, + { + location: "http://www.wikidata.org/entity/Q874539", + cordinates: "Point(11.3956 47.2686)", + locationLabel: "Museum of Tyrolean Folk Art", + }, + { + location: "http://www.wikidata.org/entity/Q742076", + cordinates: "Point(11.055403 43.816612)", + locationLabel: "Museum of Still Life", + }, + { + location: "http://www.wikidata.org/entity/Q742076", + cordinates: "Point(11.055798 43.81701)", + locationLabel: "Museum of Still Life", + }, + { + location: "http://www.wikidata.org/entity/Q742076", + cordinates: "Point(11.056 43.8174)", + locationLabel: "Museum of Still Life", + }, + { + location: "http://www.wikidata.org/entity/Q13453137", + cordinates: "Point(11.259393 43.7779)", + locationLabel: "Museum of San Marco", + }, + { + location: "http://www.wikidata.org/entity/Q13453137", + cordinates: "Point(11.259002 43.778138)", + locationLabel: "Museum of San Marco", + }, + { + location: "http://www.wikidata.org/entity/Q3868459", + cordinates: "Point(14.2723961 40.9416625)", + locationLabel: "Museum of Sacred Art", + }, + { + location: "http://www.wikidata.org/entity/Q6941007", + cordinates: "Point(-71.6835 42.4158)", + locationLabel: "Museum of Russian Icons", + }, + { + location: "http://www.wikidata.org/entity/Q16398523", + cordinates: "Point(44.515014 40.18938)", + locationLabel: "Museum of Russian Art (collection of prof. A. Abrahamian)", + }, + { + location: "http://www.wikidata.org/entity/Q4044655", + cordinates: "Point(-74.04 40.7158)", + locationLabel: "Museum of Russian Art", + }, + { + location: "http://www.wikidata.org/entity/Q6974501", + cordinates: "Point(-3.698839 40.425869)", + locationLabel: "Museum of Romanticism", + }, + { + location: "http://www.wikidata.org/entity/Q3867872", + cordinates: "Point(11.042456 43.46763)", + locationLabel: "Museum of Religious Art", + }, + { + location: "http://www.wikidata.org/entity/Q3868200", + cordinates: "Point(10.89281389 43.05117222)", + locationLabel: "Museum of Religious Art", + }, + { + location: "http://www.wikidata.org/entity/Q4306373", + cordinates: "Point(37.60752778 55.74763889)", + locationLabel: "Museum of Private Collections", + }, + { + location: "http://www.wikidata.org/entity/Q10333773", + cordinates: "Point(-35.878888888 -7.224166666)", + locationLabel: "Museum of Popular Arts of Paraíba", + }, + { + location: "http://www.wikidata.org/entity/Q6940990", + cordinates: "Point(127.1117693 37.516571)", + locationLabel: "Museum of Photography, Seoul", + }, + { + location: "http://www.wikidata.org/entity/Q2331186", + cordinates: "Point(22.93546667 40.63295)", + locationLabel: "Museum of Photography Thessaloniki", + }, + { + location: "http://www.wikidata.org/entity/Q564747", + cordinates: "Point(13.3320739 52.5081395)", + locationLabel: "Museum of Photography", + }, + { + location: "http://www.wikidata.org/entity/Q9046984", + cordinates: "Point(-117.149 32.731)", + locationLabel: "Museum of Photographic Arts", + }, + { + location: "http://www.wikidata.org/entity/Q14683453", + cordinates: "Point(-122.421 37.7796)", + locationLabel: "Museum of Performance & Design", + }, + { + location: "http://www.wikidata.org/entity/Q6940971", + cordinates: "Point(-104.998 39.655)", + locationLabel: "Museum of Outdoor Arts", + }, + { + location: "http://www.wikidata.org/entity/Q2947745", + cordinates: "Point(11.254772 43.770785)", + locationLabel: "Museum of Orsanmichele", + }, + { + location: "http://www.wikidata.org/entity/Q2947745", + cordinates: "Point(11.25516944 43.77075833)", + locationLabel: "Museum of Orsanmichele", + }, + { + location: "http://www.wikidata.org/entity/Q3867873", + cordinates: "Point(7.679353 45.0744144)", + locationLabel: "Museum of Oriental Art", + }, + { + location: "http://www.wikidata.org/entity/Q2353030", + visitors: "347000", + cordinates: "Point(147.261 -42.8128)", + locationLabel: "Museum of Old and New Art", + }, + { + location: "http://www.wikidata.org/entity/Q2840198", + cordinates: "Point(-122.496 48.3916)", + locationLabel: "Museum of Northwest Art", + }, + { + location: "http://www.wikidata.org/entity/Q3328437", + cordinates: "Point(-118.2547 34.143768)", + locationLabel: "Museum of Neon Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940958", + cordinates: "Point(-99.0811 40.6997)", + locationLabel: "Museum of Nebraska Art", + }, + { + location: "http://www.wikidata.org/entity/Q64652513", + cordinates: "Point(170.504 -45.865)", + locationLabel: "Museum of Natural Mystery", + }, + { + location: "http://www.wikidata.org/entity/Q3868222", + cordinates: "Point(11.093777777 43.881611111)", + locationLabel: "Museum of Mural Painting", + }, + { + location: "http://www.wikidata.org/entity/Q3868222", + cordinates: "Point(11.094741 43.881757)", + locationLabel: "Museum of Mural Painting", + }, + { + location: "http://www.wikidata.org/entity/Q428559", + cordinates: "Point(1.83777778 41.59166667)", + locationLabel: "Museum of Montserrat", + }, + { + location: "http://www.wikidata.org/entity/Q642603", + cordinates: "Point(11.044736 45.893831)", + locationLabel: + "Museum of Modern and Contemporary Art of Trento and Rovereto", + }, + { + location: "http://www.wikidata.org/entity/Q55075053", + cordinates: "Point(106.767875 -6.190907)", + locationLabel: "Museum of Modern and Contemporary Art in Nusantara", + }, + { + location: "http://www.wikidata.org/entity/Q12637465", + cordinates: "Point(14.431895 45.330765)", + locationLabel: "Museum of Modern and Contemporary Art (Rijeka)", + }, + { + location: "http://www.wikidata.org/entity/Q11426772", + cordinates: "Point(139.642917 35.869611)", + locationLabel: "Museum of Modern Art, Saitama", + }, + { + location: "http://www.wikidata.org/entity/Q1431995", + cordinates: "Point(-43.171805555 -22.91375)", + locationLabel: "Museum of Modern Art, Rio de Janeiro", + }, + { + location: "http://www.wikidata.org/entity/Q6940946", + cordinates: "Point(-3.69 40.423333333)", + locationLabel: "Museum of Modern Art, Madrid", + }, + { + location: "http://www.wikidata.org/entity/Q11589187", + cordinates: "Point(139.554786 35.324697)", + locationLabel: "Museum of Modern Art, Kamakura & Hayama", + }, + { + location: "http://www.wikidata.org/entity/Q11617518", + cordinates: "Point(140.46538611 36.36779444)", + locationLabel: "Museum of Modern Art, Ibaraki", + }, + { + location: "http://www.wikidata.org/entity/Q2784755", + cordinates: "Point(17.1897 44.7723)", + locationLabel: "Museum of Modern Art of Republika Srpska", + }, + { + location: "http://www.wikidata.org/entity/Q84794333", + cordinates: "Point(-0.6494 35.7058)", + locationLabel: "Museum of Modern Art of Oran", + }, + { + location: "http://www.wikidata.org/entity/Q1956218", + cordinates: "Point(21.00077778 52.23327778)", + locationLabel: "Museum of Modern Art in Warsaw", + }, + { + location: "http://www.wikidata.org/entity/Q6420631", + cordinates: "Point(32.29 31.26)", + locationLabel: "Museum of Modern Art in Egypt", + }, + { + location: "http://www.wikidata.org/entity/Q26308703", + cordinates: "Point(-66.8728497 10.4805353)", + locationLabel: "Museum of Modern Art in Caracas", + }, + { + location: "http://www.wikidata.org/entity/Q6034159", + cordinates: "Point(8.7737 3.752064)", + locationLabel: "Museum of Modern Art Equatorial Guinea", + }, + { + location: "http://www.wikidata.org/entity/Q188740", + visitors: "1992121", + cordinates: "Point(-73.9776 40.7616)", + locationLabel: "Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q188740", + visitors: "2788236", + cordinates: "Point(-73.9776 40.7616)", + locationLabel: "Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11234584", + cordinates: "Point(14.498814426 46.052957553)", + locationLabel: "Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940951", + cordinates: "Point(137.21277778 36.68013889)", + locationLabel: "Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11564683", + cordinates: "Point(135.942139 34.970444)", + locationLabel: "Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q1486738", + cordinates: "Point(13.4731 48.5744)", + locationLabel: "Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940919", + cordinates: "Point(-118.179873 33.774397)", + locationLabel: "Museum of Latin American Art", + }, + { + location: "http://www.wikidata.org/entity/Q11370311", + cordinates: "Point(130.443306 33.671944)", + locationLabel: "Museum of Kyushu Sangyo University", + }, + { + location: "http://www.wikidata.org/entity/Q1229770", + cordinates: "Point(21.002275 52.24215)", + locationLabel: "Museum of John Paul II Collection", + }, + { + location: "http://www.wikidata.org/entity/Q3329639", + cordinates: "Point(135.75666667 34.69527778)", + locationLabel: "Museum of Japanese Art", + }, + { + location: "http://www.wikidata.org/entity/Q15260371", + cordinates: "Point(121.53611111 25.05055556)", + locationLabel: "Museum of Jade Art", + }, + { + location: "http://www.wikidata.org/entity/Q776515", + cordinates: "Point(-77.0368 -12.058461111)", + locationLabel: "Museum of Italian Art", + }, + { + location: "http://www.wikidata.org/entity/Q1148353", + cordinates: "Point(51.539169444 25.295280555)", + locationLabel: "Museum of Islamic Art", + }, + { + location: "http://www.wikidata.org/entity/Q3330629", + cordinates: "Point(31.36666667 30.05)", + locationLabel: "Museum of Islamic Art", + }, + { + location: "http://www.wikidata.org/entity/Q3330629", + cordinates: "Point(31.3667 30.05)", + locationLabel: "Museum of Islamic Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940905", + cordinates: "Point(-79.3806 43.6389)", + locationLabel: "Museum of Inuit Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940891", + cordinates: "Point(-105.926 35.6641)", + locationLabel: "Museum of International Folk Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940883", + cordinates: "Point(-105.924988888 35.664830555)", + locationLabel: "Museum of Indian Arts and Culture", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "130415", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "133407", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "134033", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "137942", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "144401", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "160520", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "165177", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "167315", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "167691", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "168432", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "184946", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "186660", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "189265", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "192634", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "196007", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "205113", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "210268", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "226454", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q1952944", + visitors: "256154", + cordinates: "Point(5.7324 45.1945)", + locationLabel: "Museum of Grenoble", + }, + { + location: "http://www.wikidata.org/entity/Q4306259", + cordinates: "Point(23.73230833 37.97253333)", + locationLabel: "Museum of Greek Folk Art", + }, + { + location: "http://www.wikidata.org/entity/Q24942720", + cordinates: "Point(73.795263 15.525516)", + locationLabel: "Museum of Goa", + }, + { + location: "http://www.wikidata.org/entity/Q2894440", + cordinates: "Point(-122.434 47.2456)", + locationLabel: "Museum of Glass", + }, + { + location: "http://www.wikidata.org/entity/Q48153978", + cordinates: "Point(-96.8031 32.804)", + locationLabel: "Museum of Geometric and MADI Art", + }, + { + location: "http://www.wikidata.org/entity/Q17230147", + cordinates: "Point(135.73275 35.057694)", + locationLabel: "Museum of Furuta Oribe", + }, + { + location: "http://www.wikidata.org/entity/Q1418116", + cordinates: "Point(24.947773 60.163093)", + locationLabel: "Museum of Finnish Architecture", + }, + { + location: "http://www.wikidata.org/entity/Q1418116", + cordinates: "Point(24.947745 60.163125)", + locationLabel: "Museum of Finnish Architecture", + }, + { + location: "http://www.wikidata.org/entity/Q1418116", + cordinates: "Point(24.9478097 60.163118)", + locationLabel: "Museum of Finnish Architecture", + }, + { + location: "http://www.wikidata.org/entity/Q1418116", + cordinates: "Point(24.9478223 60.1631269)", + locationLabel: "Museum of Finnish Architecture", + }, + { + location: "http://www.wikidata.org/entity/Q5519009", + cordinates: "Point(16.4380681 43.5152336)", + locationLabel: "Museum of Fine Arts, Split", + }, + { + location: "http://www.wikidata.org/entity/Q1565911", + visitors: "1269626", + cordinates: "Point(-95.390556 29.725556)", + locationLabel: "Museum of Fine Arts, Houston", + }, + { + location: "http://www.wikidata.org/entity/Q1565911", + visitors: "1269626", + cordinates: "Point(-95.39056 29.72556)", + locationLabel: "Museum of Fine Arts, Houston", + }, + { + location: "http://www.wikidata.org/entity/Q1565911", + visitors: "1269626", + cordinates: "Point(-95.390417 29.725694)", + locationLabel: "Museum of Fine Arts, Houston", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "13224", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "15104", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "15756", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "16255", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "17401", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "18229", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "18976", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "19299", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "19542", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "19840", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "20000", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "20692", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "21646", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "21681", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "22149", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "23258", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q3330203", + visitors: "24952", + cordinates: "Point(5.4887 47.0894)", + locationLabel: "Museum of Fine Arts, Dole", + }, + { + location: "http://www.wikidata.org/entity/Q840886", + cordinates: "Point(19.07639 47.51611)", + locationLabel: "Museum of Fine Arts, Budapest", + }, + { + location: "http://www.wikidata.org/entity/Q840886", + cordinates: "Point(19.076389 47.516111)", + locationLabel: "Museum of Fine Arts, Budapest", + }, + { + location: "http://www.wikidata.org/entity/Q840886", + cordinates: "Point(19.076472 47.516111)", + locationLabel: "Museum of Fine Arts, Budapest", + }, + { + location: "http://www.wikidata.org/entity/Q840886", + cordinates: "Point(19.076775 47.515869)", + locationLabel: "Museum of Fine Arts, Budapest", + }, + { + location: "http://www.wikidata.org/entity/Q840886", + cordinates: "Point(19.07678 47.51587)", + locationLabel: "Museum of Fine Arts, Budapest", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "35146", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "54923", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "55240", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "55897", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "56339", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "56828", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "59316", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "63898", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "64498", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "65281", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "67510", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "72145", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "73413", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "75913", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "84499", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "85288", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3098373", + visitors: "91594", + cordinates: "Point(-1.675 48.109444)", + locationLabel: "Museum of Fine Arts of Rennes", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "31419", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "31419", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "34638", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "34638", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "34902", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "34902", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "35830", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "35830", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "36538", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "36538", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "37412", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "37412", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "37865", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "37865", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "38488", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "38488", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "44651", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "44651", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "45022", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "45022", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "45819", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "45819", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "45900", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "45900", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "46604", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "46604", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "47559", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "47559", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "48275", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "48275", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "51011", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "51011", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "61438", + cordinates: "Point(4.0309 49.2533)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q3330225", + visitors: "61438", + cordinates: "Point(4.030966 49.253293)", + locationLabel: "Museum of Fine Arts of Reims", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "74538", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "83501", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "88741", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "98028", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "101418", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "102120", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "107000", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "109144", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "110134", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "113407", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "114016", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "116083", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "116477", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "118532", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "118701", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "120718", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q428765", + visitors: "121147", + cordinates: "Point(6.1799129 48.6934317)", + locationLabel: "Museum of Fine Arts of Nancy", + }, + { + location: "http://www.wikidata.org/entity/Q511", + visitors: "333835", + cordinates: "Point(4.833611111 45.766944444)", + locationLabel: "Museum of Fine Arts of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q3773707", + cordinates: "Point(-5.84372 43.3617)", + locationLabel: "Museum of Fine Arts of Asturias", + }, + { + location: "http://www.wikidata.org/entity/Q2365880", + cordinates: "Point(3.7238 51.0383)", + locationLabel: "Museum of Fine Arts Ghent (MSK)", + }, + { + location: "http://www.wikidata.org/entity/Q2365880", + cordinates: "Point(3.724244 51.037975)", + locationLabel: "Museum of Fine Arts Ghent (MSK)", + }, + { + location: "http://www.wikidata.org/entity/Q1020806", + cordinates: "Point(9.53236 46.851332)", + locationLabel: "Museum of Fine Arts Chur", + }, + { + location: "http://www.wikidata.org/entity/Q194622", + cordinates: "Point(7.443333333 46.951111111)", + locationLabel: "Museum of Fine Arts Berne", + }, + { + location: "http://www.wikidata.org/entity/Q49133", + visitors: "1000000", + cordinates: "Point(-71.094166666 42.339166666)", + locationLabel: "Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q49133", + visitors: "1192567", + cordinates: "Point(-71.094166666 42.339166666)", + locationLabel: "Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q5359197", + cordinates: "Point(136.730221 35.401309)", + locationLabel: "Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q18703873", + cordinates: "Point(6.86198 47.639843)", + locationLabel: "Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1954748", + cordinates: "Point(-82.63221 27.77497)", + locationLabel: "Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q298289", + cordinates: "Point(18.08194444 59.32694444)", + locationLabel: "Museum of Far Eastern Antiquities", + }, + { + location: "http://www.wikidata.org/entity/Q21552187", + cordinates: "Point(16.419338 40.82118)", + locationLabel: "Museum of Ettore Pomarici Santomasi Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q884204", + cordinates: "Point(6.92554 50.9352)", + locationLabel: "Museum of East-Asian Art", + }, + { + location: "http://www.wikidata.org/entity/Q3328433", + cordinates: "Point(-2.3633 51.3864)", + locationLabel: "Museum of East Asian Art", + }, + { + location: "http://www.wikidata.org/entity/Q119160", + cordinates: "Point(-0.241567 51.595888)", + locationLabel: "Museum of Domestic Design and Architecture", + }, + { + location: "http://www.wikidata.org/entity/Q6940837", + cordinates: "Point(-84.3847 33.7903)", + locationLabel: "Museum of Design Atlanta", + }, + { + location: "http://www.wikidata.org/entity/Q668213", + visitors: "40344", + cordinates: "Point(8.536366666 47.382797222)", + locationLabel: "Museum of Design", + }, + { + location: "http://www.wikidata.org/entity/Q668213", + visitors: "90597", + cordinates: "Point(8.536366666 47.382797222)", + locationLabel: "Museum of Design", + }, + { + location: "http://www.wikidata.org/entity/Q668213", + visitors: "109455", + cordinates: "Point(8.536366666 47.382797222)", + locationLabel: "Museum of Design", + }, + { + location: "http://www.wikidata.org/entity/Q6557267", + cordinates: "Point(51.674386 32.656842)", + locationLabel: "Museum of Decorative Arts, Isfahan", + }, + { + location: "http://www.wikidata.org/entity/Q3868169", + cordinates: "Point(-82.3927 23.1374)", + locationLabel: "Museum of Decorative Arts, Havana", + }, + { + location: "http://www.wikidata.org/entity/Q1230253", + cordinates: "Point(23.742167 37.976)", + locationLabel: "Museum of Cycladic Art", + }, + { + location: "http://www.wikidata.org/entity/Q665206", + cordinates: "Point(8.946833333 45.996444444)", + locationLabel: "Museum of Cultures", + }, + { + location: "http://www.wikidata.org/entity/Q3328434", + cordinates: "Point(-87.62473 41.87424)", + locationLabel: "Museum of Contemporary Photography", + }, + { + location: "http://www.wikidata.org/entity/Q3328434", + cordinates: "Point(-87.624507 41.874226)", + locationLabel: "Museum of Contemporary Photography", + }, + { + location: "http://www.wikidata.org/entity/Q14709081", + cordinates: "Point(-122.678 45.5244)", + locationLabel: "Museum of Contemporary Craft", + }, + { + location: "http://www.wikidata.org/entity/Q6940822", + cordinates: "Point(-79.417 43.6447)", + locationLabel: "Museum of Contemporary Canadian Art", + }, + { + location: "http://www.wikidata.org/entity/Q3395689", + cordinates: "Point(-8.721111111 42.235833333)", + locationLabel: "Museum of Contemporary Art, Vigo", + }, + { + location: "http://www.wikidata.org/entity/Q2557770", + cordinates: "Point(-46.651111111 -23.588888888)", + locationLabel: "Museum of Contemporary Art, University of São Paulo", + }, + { + location: "http://www.wikidata.org/entity/Q6940811", + cordinates: "Point(-110.972 32.2181)", + locationLabel: "Museum of Contemporary Art, Tucson", + }, + { + location: "http://www.wikidata.org/entity/Q1134646", + cordinates: "Point(-118.250833333 34.053333333)", + locationLabel: "Museum of Contemporary Art, Los Angeles", + }, + { + location: "http://www.wikidata.org/entity/Q118142", + visitors: "224957", + cordinates: "Point(-87.6212 41.8972)", + locationLabel: "Museum of Contemporary Art, Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q118142", + visitors: "232637", + cordinates: "Point(-87.6212 41.8972)", + locationLabel: "Museum of Contemporary Art, Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q118142", + visitors: "238131", + cordinates: "Point(-87.6212 41.8972)", + locationLabel: "Museum of Contemporary Art, Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q118142", + visitors: "338647", + cordinates: "Point(-87.6212 41.8972)", + locationLabel: "Museum of Contemporary Art, Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q1290510", + cordinates: "Point(20.442222222 44.819444444)", + locationLabel: "Museum of Contemporary Art, Belgrade", + }, + { + location: "http://www.wikidata.org/entity/Q4759525", + cordinates: "Point(24.939263888 37.838541666)", + locationLabel: "Museum of Contemporary Art, Andros", + }, + { + location: "http://www.wikidata.org/entity/Q6033866", + cordinates: "Point(-60.65083333 -32.93027778)", + locationLabel: "Museum of Contemporary Art of Rosario", + }, + { + location: "http://www.wikidata.org/entity/Q6940821", + cordinates: "Point(-60.65083333 -32.93027778)", + locationLabel: "Museum of Contemporary Art of Rosario", + }, + { + location: "http://www.wikidata.org/entity/Q2669644", + cordinates: "Point(12.50221667 41.912825)", + locationLabel: "Museum of Contemporary Art of Rome", + }, + { + location: "http://www.wikidata.org/entity/Q2669644", + cordinates: "Point(12.503041 41.91369)", + locationLabel: "Museum of Contemporary Art of Rome", + }, + { + location: "http://www.wikidata.org/entity/Q6940820", + cordinates: "Point(-84.395189 33.812181)", + locationLabel: "Museum of Contemporary Art of Georgia", + }, + { + location: "http://www.wikidata.org/entity/Q5685364", + cordinates: "Point(-84.072019444 9.9355)", + locationLabel: "Museum of Contemporary Art and Design", + }, + { + location: "http://www.wikidata.org/entity/Q1649688", + cordinates: "Point(139.80805556 35.68)", + locationLabel: "Museum of Contemporary Art Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q3329586", + cordinates: "Point(121.468084 31.233316)", + locationLabel: "Museum of Contemporary Art Shanghai", + }, + { + location: "http://www.wikidata.org/entity/Q3329587", + cordinates: "Point(-117.1694 32.717376)", + locationLabel: "Museum of Contemporary Art San Diego", + }, + { + location: "http://www.wikidata.org/entity/Q3329582", + cordinates: "Point(-81.6586 30.3293)", + locationLabel: "Museum of Contemporary Art Jacksonville", + }, + { + location: "http://www.wikidata.org/entity/Q6940817", + cordinates: "Point(-83.0607 42.3527)", + locationLabel: "Museum of Contemporary Art Detroit", + }, + { + location: "http://www.wikidata.org/entity/Q16895577", + cordinates: "Point(-105.004 39.7525)", + locationLabel: "Museum of Contemporary Art Denver", + }, + { + location: "http://www.wikidata.org/entity/Q6940816", + cordinates: "Point(-81.6048 41.509)", + locationLabel: "Museum of Contemporary Art Cleveland", + }, + { + location: "http://www.wikidata.org/entity/Q690242", + cordinates: "Point(151.209 -33.86)", + locationLabel: "Museum of Contemporary Art Australia", + }, + { + location: "http://www.wikidata.org/entity/Q665622", + cordinates: "Point(7.60138 47.5546)", + locationLabel: "Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q6886122", + cordinates: "Point(-73.97443 40.68533)", + locationLabel: "Museum of Contemporary African Diasporan Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1954640", + cordinates: "Point(8.67528 50.1044)", + locationLabel: "Museum of Communication Frankfurt", + }, + { + location: "http://www.wikidata.org/entity/Q3328431", + cordinates: "Point(-73.9871 40.7401)", + locationLabel: "Museum of Comic and Cartoon Art", + }, + { + location: "http://www.wikidata.org/entity/Q3329577", + cordinates: "Point(-74.0753 4.59651)", + locationLabel: "Museum of Colonial Art", + }, + { + location: "http://www.wikidata.org/entity/Q105620931", + cordinates: "Point(48.2869798 42.0570863)", + locationLabel: "Museum of Carpet, Arts and Crafts", + }, + { + location: "http://www.wikidata.org/entity/Q6940789", + cordinates: "Point(21.01305556 52.245)", + locationLabel: "Museum of Caricature, Warsaw", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "784", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "1233", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "1642", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "1675", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "2363", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "2539", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "3315", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "3445", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "3870", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "3985", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "4118", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "4203", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "4722", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "5112", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "5886", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q23780864", + visitors: "8040", + cordinates: "Point(-0.493114166 46.841812222)", + locationLabel: "Museum of Bressuire", + }, + { + location: "http://www.wikidata.org/entity/Q6940781", + cordinates: "Point(-73.9827 40.7702)", + locationLabel: "Museum of Biblical Art", + }, + { + location: "http://www.wikidata.org/entity/Q11643", + cordinates: "Point(-71.172969 42.248026)", + locationLabel: "Museum of Bad Art", + }, + { + location: "http://www.wikidata.org/entity/Q495148", + cordinates: "Point(19.92475 39.62580556)", + locationLabel: "Museum of Asian art of Corfu", + }, + { + location: "http://www.wikidata.org/entity/Q370045", + cordinates: "Point(13.402778055 52.5175)", + locationLabel: "Museum of Asian Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940773", + visitors: "300000", + cordinates: "Point(-73.9819 40.7675)", + locationLabel: "Museum of Arts and Design", + }, + { + location: "http://www.wikidata.org/entity/Q406652", + cordinates: "Point(15.9687137 45.809078)", + locationLabel: "Museum of Arts and Crafts", + }, + { + location: "http://www.wikidata.org/entity/Q11493678", + cordinates: "Point(132.761944 33.840139)", + locationLabel: "Museum of Art, Ehime", + }, + { + location: "http://www.wikidata.org/entity/Q18709204", + cordinates: "Point(-46.657771 -23.580565)", + locationLabel: "Museum of Art of the Parliament of São Paulo", + }, + { + location: "http://www.wikidata.org/entity/Q6940766", + cordinates: "Point(-66.066211111 18.448455555)", + locationLabel: "Museum of Art of Puerto Rico", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "1500", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "2847", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "4206", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "4784", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "6575", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "6602", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q76328271", + visitors: "6892", + cordinates: "Point(0.8725 46.428611111)", + locationLabel: "Museum of Art and History in Montmorillon", + }, + { + location: "http://www.wikidata.org/entity/Q18325656", + cordinates: "Point(-118.141848 34.698126)", + locationLabel: "Museum of Art and History", + }, + { + location: "http://www.wikidata.org/entity/Q6940761", + cordinates: "Point(-122.260045 37.821826)", + locationLabel: "Museum of Art and Digital Entertainment", + }, + { + location: "http://www.wikidata.org/entity/Q896052", + visitors: "241000", + cordinates: "Point(10.009444 53.551111)", + locationLabel: "Museum of Art and Crafts Hamburg", + }, + { + location: "http://www.wikidata.org/entity/Q1685139", + cordinates: "Point(-80.1429 26.1196)", + locationLabel: "Museum of Art Fort Lauderdale", + }, + { + location: "http://www.wikidata.org/entity/Q1459712", + cordinates: "Point(16.3933 48.2076)", + locationLabel: "Museum of Art Fakes", + }, + { + location: "http://www.wikidata.org/entity/Q6940755", + cordinates: "Point(-91.6643 41.9789)", + locationLabel: "Museum of Art Cedar Rapids", + }, + { + location: "http://www.wikidata.org/entity/Q14686257", + cordinates: "Point(-81.3041 29.0378)", + locationLabel: "Museum of Art - DeLand, Florida", + }, + { + location: "http://www.wikidata.org/entity/Q683163", + cordinates: "Point(7.537502777 47.210338888)", + locationLabel: "Museum of Art (building)", + }, + { + location: "http://www.wikidata.org/entity/Q2338260", + cordinates: "Point(20.45448 44.81694)", + locationLabel: "Museum of Applied Arts", + }, + { + location: "http://www.wikidata.org/entity/Q55887093", + cordinates: "Point(120.446083333 23.483305555)", + locationLabel: "Museum of Ancient Taiwan Tiles", + }, + { + location: "http://www.wikidata.org/entity/Q3867848", + cordinates: "Point(9.17861 45.4706)", + locationLabel: "Museum of Ancient Art", + }, + { + location: "http://www.wikidata.org/entity/Q18965051", + cordinates: "Point(-71.142222222 42.163611111)", + locationLabel: "Museum of American Bird Art", + }, + { + location: "http://www.wikidata.org/entity/Q6940732", + cordinates: "Point(-70.26 43.6562)", + locationLabel: "Museum of African Culture", + }, + { + location: "http://www.wikidata.org/entity/Q2291222", + cordinates: "Point(20.434974 44.789054)", + locationLabel: "Museum of African Art", + }, + { + location: "http://www.wikidata.org/entity/Q10590596", + cordinates: "Point(17.88862222 59.32508611)", + locationLabel: "Museum of Adriaen de Vries", + }, + { + location: "http://www.wikidata.org/entity/Q106713133", + cordinates: "Point(30.299942498 59.926495471)", + locationLabel: "Museum of 20th and 21st Century St. Petersburg Art", + }, + { + location: "http://www.wikidata.org/entity/Q12130506", + cordinates: "Point(12.32681667 45.433425)", + locationLabel: "Museum of 18th-century Venice", + }, + { + location: "http://www.wikidata.org/entity/Q27488983", + cordinates: "Point(9.366907 47.42048)", + locationLabel: "Museum im Lagerhaus", + }, + { + location: "http://www.wikidata.org/entity/Q1954718", + cordinates: "Point(9.9224 49.8013)", + locationLabel: "Museum im Kulturspeicher Würzburg", + }, + { + location: "http://www.wikidata.org/entity/Q1954718", + cordinates: "Point(9.92236 49.8014)", + locationLabel: "Museum im Kulturspeicher Würzburg", + }, + { + location: "http://www.wikidata.org/entity/Q15122170", + cordinates: "Point(8.902077 53.807745)", + locationLabel: "Museum gegenstandsfreier Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q456994", + cordinates: "Point(8.685 50.1121)", + locationLabel: "Museum für Moderne Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q164887", + cordinates: "Point(7.463 51.5166)", + locationLabel: "Museum für Kunst und Kulturgeschichte", + }, + { + location: "http://www.wikidata.org/entity/Q1687177", + cordinates: "Point(11.4271 48.7621)", + locationLabel: "Museum für Konkrete Kunst Ingolstadt", + }, + { + location: "http://www.wikidata.org/entity/Q1954632", + cordinates: "Point(13.3964 52.5208)", + locationLabel: "Museum für Islamische Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q877567", + cordinates: "Point(6.9548423 50.9397634)", + locationLabel: "Museum für Angewandte Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q54553387", + cordinates: "Point(3.7242286 51.0379812)", + locationLabel: "Museum for Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q566661", + cordinates: "Point(12.3756 51.3422)", + locationLabel: "Museum der bildenden Künste", + }, + { + location: "http://www.wikidata.org/entity/Q21712334", + cordinates: "Point(13.393611111 52.5275)", + locationLabel: "Museum der Stille", + }, + { + location: "http://www.wikidata.org/entity/Q895596", + cordinates: "Point(11.2885 47.8727)", + locationLabel: "Museum der Phantasie", + }, + { + location: "http://www.wikidata.org/entity/Q85618962", + cordinates: "Point(13.038286 47.80089)", + locationLabel: "Museum der Moderne Salzburg: Mönchsberg", + }, + { + location: "http://www.wikidata.org/entity/Q1775271", + cordinates: "Point(13.043069 47.798209)", + locationLabel: "Museum der Moderne Salzburg", + }, + { + location: "http://www.wikidata.org/entity/Q1954532", + cordinates: "Point(130.8331574 -12.437555555)", + locationLabel: "Museum and Art Gallery of the Northern Territory", + }, + { + location: "http://www.wikidata.org/entity/Q1954532", + cordinates: "Point(130.833 -12.4375)", + locationLabel: "Museum and Art Gallery of the Northern Territory", + }, + { + location: "http://www.wikidata.org/entity/Q84606985", + cordinates: "Point(13.365469 47.765508)", + locationLabel: "Museum Zinkenbacher Malerkolonie", + }, + { + location: "http://www.wikidata.org/entity/Q1886176", + cordinates: "Point(4.89917 52.36556)", + locationLabel: "Museum Willet-Holthuysen", + }, + { + location: "http://www.wikidata.org/entity/Q2298844", + cordinates: "Point(4.34600278 52.11857778)", + locationLabel: "Museum Voorlinden", + }, + { + location: "http://www.wikidata.org/entity/Q18715459", + cordinates: "Point(12.453717 41.95949)", + locationLabel: "Museum Venanzo Crocetti", + }, + { + location: "http://www.wikidata.org/entity/Q180904", + cordinates: "Point(7.612222 47.559167)", + locationLabel: "Museum Tinguely", + }, + { + location: "http://www.wikidata.org/entity/Q1436645", + cordinates: "Point(9.1226 48.6388)", + locationLabel: "Museum Ritter (Waldenbuch)", + }, + { + location: "http://www.wikidata.org/entity/Q62057696", + cordinates: "Point(-79.003944444 -2.902527777)", + locationLabel: "Museum Remigio Crespo Toral", + }, + { + location: "http://www.wikidata.org/entity/Q1386526", + cordinates: "Point(7.76917 49.4492)", + locationLabel: "Museum Pfalzgalerie Kaiserslautern", + }, + { + location: "http://www.wikidata.org/entity/Q50561854", + visitors: "24000", + cordinates: "Point(11.37191 47.75441)", + locationLabel: "Museum Penzberg", + }, + { + location: "http://www.wikidata.org/entity/Q6940675", + cordinates: "Point(115.2306 -8.8)", + locationLabel: "Museum Pasifika", + }, + { + location: "http://www.wikidata.org/entity/Q510071", + cordinates: "Point(12.4984 41.9014)", + locationLabel: "Museum Palazzo Massimo alle Terme", + }, + { + location: "http://www.wikidata.org/entity/Q12327935", + cordinates: "Point(10.19415 56.17255)", + locationLabel: "Museum Ovartaci", + }, + { + location: "http://www.wikidata.org/entity/Q2719577", + cordinates: "Point(7.0339445 51.036482111)", + locationLabel: "Museum Morsbroich", + }, + { + location: "http://www.wikidata.org/entity/Q1615855", + cordinates: "Point(14.3102 46.624)", + locationLabel: "Museum Moderner Kunst Kärnten", + }, + { + location: "http://www.wikidata.org/entity/Q11786767", + cordinates: "Point(9.7612286 50.6797961)", + locationLabel: "Museum Modern Art Hünfeld", + }, + { + location: "http://www.wikidata.org/entity/Q255409", + cordinates: "Point(4.298056 52.086111)", + locationLabel: "Museum Mesdag", + }, + { + location: "http://www.wikidata.org/entity/Q1699233", + cordinates: "Point(4.40531 51.21541)", + locationLabel: "Museum Mayer van den Bergh", + }, + { + location: "http://www.wikidata.org/entity/Q703640", + visitors: "231080", + cordinates: "Point(6.96027778 50.94083333)", + locationLabel: "Museum Ludwig", + }, + { + location: "http://www.wikidata.org/entity/Q703640", + visitors: "304942", + cordinates: "Point(6.96027778 50.94083333)", + locationLabel: "Museum Ludwig", + }, + { + location: "http://www.wikidata.org/entity/Q14875325", + cordinates: "Point(-81.2551 42.9826)", + locationLabel: "Museum London", + }, + { + location: "http://www.wikidata.org/entity/Q768242", + cordinates: "Point(6.775 51.4411)", + locationLabel: "Museum Küppersmühle", + }, + { + location: "http://www.wikidata.org/entity/Q1954460", + cordinates: "Point(6.12583 51.7956)", + locationLabel: "Museum Kurhaus Kleve", + }, + { + location: "http://www.wikidata.org/entity/Q461277", + cordinates: "Point(6.77333 51.2343)", + locationLabel: "Museum Kunstpalast", + }, + { + location: "http://www.wikidata.org/entity/Q20987166", + cordinates: "Point(8.359838888 49.631247222)", + locationLabel: "Museum Kunsthaus Heylshof", + }, + { + location: "http://www.wikidata.org/entity/Q86427975", + cordinates: "Point(9.7290159 47.4737507)", + locationLabel: "Museum Kunst im Rohnerhaus", + }, + { + location: "http://www.wikidata.org/entity/Q830164", + cordinates: "Point(8.51 54.7082)", + locationLabel: "Museum Kunst der Westküste", + }, + { + location: "http://www.wikidata.org/entity/Q87056497", + cordinates: "Point(13.0440159 47.7991877)", + locationLabel: "Museum Kunst der Verlorenen Generation", + }, + { + location: "http://www.wikidata.org/entity/Q1397203", + cordinates: "Point(7.589686111 47.562047222)", + locationLabel: "Museum Klingental", + }, + { + location: "http://www.wikidata.org/entity/Q2139553", + cordinates: "Point(14.408491 50.083999)", + locationLabel: "Museum Kampa", + }, + { + location: "http://www.wikidata.org/entity/Q3125109", + visitors: "50000", + cordinates: "Point(9.55838 56.16115)", + locationLabel: "Museum Jorn", + }, + { + location: "http://www.wikidata.org/entity/Q2514360", + cordinates: "Point(4.8466 52.3023)", + locationLabel: "Museum Jan van der Togt", + }, + { + location: "http://www.wikidata.org/entity/Q10862311", + cordinates: "Point(6.658745 51.147412)", + locationLabel: "Museum Island Hombroich", + }, + { + location: "http://www.wikidata.org/entity/Q1954440", + cordinates: "Point(8.6706 50.1015)", + locationLabel: "Museum Giersch", + }, + { + location: "http://www.wikidata.org/entity/Q13866173", + cordinates: "Point(3.6192 51.00819)", + locationLabel: "Museum Gevaert-Minne", + }, + { + location: "http://www.wikidata.org/entity/Q13866173", + cordinates: "Point(3.619426 51.00818)", + locationLabel: "Museum Gevaert-Minne", + }, + { + location: "http://www.wikidata.org/entity/Q880898", + cordinates: "Point(10.2361 50.0439)", + locationLabel: "Museum Georg Schäfer", + }, + { + location: "http://www.wikidata.org/entity/Q372829", + cordinates: "Point(4.89463 52.36467)", + locationLabel: "Museum Geelvinck-Hinlopen", + }, + { + location: "http://www.wikidata.org/entity/Q60977461", + cordinates: "Point(26.593638888 67.414722222)", + locationLabel: "Museum Gallery Alariesto", + }, + { + location: "http://www.wikidata.org/entity/Q1479961", + cordinates: "Point(8.23803 48.7579)", + locationLabel: "Museum Frieder Burda", + }, + { + location: "http://www.wikidata.org/entity/Q682543", + cordinates: "Point(7.624941666 47.058063888)", + locationLabel: "Museum Franz Gertsch", + }, + { + location: "http://www.wikidata.org/entity/Q125634", + visitors: "800000", + cordinates: "Point(7.00417 51.4417)", + locationLabel: "Museum Folkwang", + }, + { + location: "http://www.wikidata.org/entity/Q1954435", + cordinates: "Point(13.0727 52.4034)", + locationLabel: "Museum FLUXUS+", + }, + { + location: "http://www.wikidata.org/entity/Q105080188", + cordinates: "Point(11.3539353 46.4991001)", + locationLabel: "Museum Eccel Kreuzer", + }, + { + location: "http://www.wikidata.org/entity/Q1430966", + cordinates: "Point(6.77013 51.4288)", + locationLabel: "Museum DKM", + }, + { + location: "http://www.wikidata.org/entity/Q16336153", + cordinates: "Point(12.6531 42.8943)", + locationLabel: "Museum Complex of San Francesco (Montefalco)", + }, + { + location: "http://www.wikidata.org/entity/Q16336153", + cordinates: "Point(12.653119 42.894806)", + locationLabel: "Museum Complex of San Francesco (Montefalco)", + }, + { + location: "http://www.wikidata.org/entity/Q1670093", + cordinates: "Point(8.72984 47.5002)", + locationLabel: "Museum Briner und Kern", + }, + { + location: "http://www.wikidata.org/entity/Q258597", + visitors: "101598", + cordinates: "Point(11.5742 48.1481)", + locationLabel: "Museum Brandhorst", + }, + { + location: "http://www.wikidata.org/entity/Q27490261", + cordinates: "Point(8.55 47.35647)", + locationLabel: "Museum Bellerive", + }, + { + location: "http://www.wikidata.org/entity/Q814533", + cordinates: "Point(10.6896 53.8701)", + locationLabel: "Museum Behnhaus Drägerhaus", + }, + { + location: "http://www.wikidata.org/entity/Q23785329", + visitors: "520000", + cordinates: "Point(13.062282 52.395169)", + locationLabel: "Museum Barberini", + }, + { + location: "http://www.wikidata.org/entity/Q3329076", + cordinates: "Point(11.292943 43.807307)", + locationLabel: "Museum Bandini", + }, + { + location: "http://www.wikidata.org/entity/Q457671", + cordinates: "Point(9.736389 52.368056)", + locationLabel: "Museum August Kestner", + }, + { + location: "http://www.wikidata.org/entity/Q10333923", + cordinates: "Point(-38.498532 -12.762823)", + locationLabel: "Museu do Recôncavo Wanderley Pinho", + }, + { + location: "http://www.wikidata.org/entity/Q6940628", + cordinates: "Point(-34.901666666 -8.044722222)", + locationLabel: "Museu do Estado de Pernambuco", + }, + { + location: "http://www.wikidata.org/entity/Q11938083", + cordinates: "Point(2.96201667 42.26667778)", + locationLabel: "Museu de l'Empordà", + }, + { + location: "http://www.wikidata.org/entity/Q10333841", + cordinates: "Point(-43.125416666 -22.903722222)", + locationLabel: "Museu de História e Artes do Estado do Rio de Janeiro", + }, + { + location: "http://www.wikidata.org/entity/Q1748404", + cordinates: "Point(-0.370833333 39.479166666)", + locationLabel: "Museu de Belles Arts de València", + }, + { + location: "http://www.wikidata.org/entity/Q27522479", + cordinates: "Point(-9.193504 38.695908)", + locationLabel: "Museu de Arte, Arquitetura e Tecnologia", + }, + { + location: "http://www.wikidata.org/entity/Q104093112", + cordinates: "Point(-38.964525 -12.602688)", + locationLabel: "Museu de Arte Sacra do Recôncavo", + }, + { + location: "http://www.wikidata.org/entity/Q104094424", + cordinates: "Point(-39.0653163 -16.4386747)", + locationLabel: "Museu de Arte Sacra de Porto Seguro", + }, + { + location: "http://www.wikidata.org/entity/Q10333766", + cordinates: "Point(-34.88152 -8.06156)", + locationLabel: "Museu de Arte Moderna Aloísio Magalhães", + }, + { + location: "http://www.wikidata.org/entity/Q1954380", + cordinates: "Point(-8.65945278 41.15913333)", + locationLabel: "Museu de Arte Contemporânea (Fundação de Serralves)", + }, + { + location: "http://www.wikidata.org/entity/Q56694015", + cordinates: "Point(-38.511871 -12.974064)", + locationLabel: "Museu da Misericórdia", + }, + { + location: "http://www.wikidata.org/entity/Q10333663", + cordinates: "Point(-43.18288 -22.91749)", + locationLabel: "Museu da Chácara do Céu", + }, + { + location: "http://www.wikidata.org/entity/Q9046976", + cordinates: "Point(1.258433 41.117203)", + locationLabel: "Museu d'Art Modern de Tarragona", + }, + { + location: "http://www.wikidata.org/entity/Q5476145", + cordinates: "Point(0.625533 41.613517)", + locationLabel: "Museu d'Art Jaume Morera", + }, + { + location: "http://www.wikidata.org/entity/Q10333619", + cordinates: "Point(-38.525373 -12.99753)", + locationLabel: "Museu Rodin Bahia", + }, + { + location: "http://www.wikidata.org/entity/Q1050032", + visitors: "1045837", + cordinates: "Point(2.181030555 41.385038888)", + locationLabel: "Museu Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q1050032", + visitors: "1061107", + cordinates: "Point(2.181030555 41.385038888)", + locationLabel: "Museu Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q1954370", + visitors: "135726", + cordinates: "Point(-43.175950974 -22.9087283)", + locationLabel: "Museu Nacional de Belas Artes", + }, + { + location: "http://www.wikidata.org/entity/Q861252", + visitors: "466600", + cordinates: "Point(2.153305555 41.368333333)", + locationLabel: "Museu Nacional d'Art de Catalunya", + }, + { + location: "http://www.wikidata.org/entity/Q861252", + visitors: "653917", + cordinates: "Point(2.153305555 41.368333333)", + locationLabel: "Museu Nacional d'Art de Catalunya", + }, + { + location: "http://www.wikidata.org/entity/Q861252", + visitors: "718000", + cordinates: "Point(2.153305555 41.368333333)", + locationLabel: "Museu Nacional d'Art de Catalunya", + }, + { + location: "http://www.wikidata.org/entity/Q861252", + visitors: "837700", + cordinates: "Point(2.153305555 41.368333333)", + locationLabel: "Museu Nacional d'Art de Catalunya", + }, + { + location: "http://www.wikidata.org/entity/Q30128336", + cordinates: "Point(-8.078661 41.269578)", + locationLabel: "Museu Municipal Amadeo Sousa Cardoso", + }, + { + location: "http://www.wikidata.org/entity/Q6940606", + cordinates: "Point(1.83048611 41.72473056)", + locationLabel: "Museu Comarcal de Manresa", + }, + { + location: "http://www.wikidata.org/entity/Q10333433", + cordinates: "Point(-43.51019 -23.02395)", + locationLabel: "Museu Casa do Pontal", + }, + { + location: "http://www.wikidata.org/entity/Q10333420", + cordinates: "Point(-38.527163888 -12.994586111)", + locationLabel: "Museu Carlos Costa Pinto", + }, + { + location: "http://www.wikidata.org/entity/Q2923400", + cordinates: "Point(-46.676711111 -23.573272222)", + locationLabel: "Museu Brasileiro da Escultura", + }, + { + location: "http://www.wikidata.org/entity/Q3819648", + cordinates: "Point(2.180864 41.38493)", + locationLabel: "Museu Barbier-Mueller d'Art Precolombí", + }, + { + location: "http://www.wikidata.org/entity/Q10333371", + cordinates: "Point(-38.5082884 -12.9725639)", + locationLabel: "Museu Abelardo Rodrigues", + }, + { + location: "http://www.wikidata.org/entity/Q3868463", + cordinates: "Point(13.361525 42.366832)", + locationLabel: "Museo sperimentale d'arte contemporanea", + }, + { + location: "http://www.wikidata.org/entity/Q3328417", + cordinates: "Point(11.3496832 44.5134838)", + locationLabel: "Museo per la Memoria di Ustica", + }, + { + location: "http://www.wikidata.org/entity/Q105825368", + cordinates: "Point(11.326846 44.481144)", + locationLabel: "Museo missionario d'arte cinese e museo dell'osservanza", + }, + { + location: "http://www.wikidata.org/entity/Q3330318", + cordinates: "Point(11.2542 43.7687)", + locationLabel: "Museo diocesano di Santo Stefano al Ponte", + }, + { + location: "http://www.wikidata.org/entity/Q30090778", + cordinates: "Point(10.52606 45.6076)", + locationLabel: "Museo di Salò", + }, + { + location: "http://www.wikidata.org/entity/Q3328416", + cordinates: "Point(10.39438 43.72252)", + locationLabel: "Museo delle Sinopie del Camposanto monumentale", + }, + { + location: "http://www.wikidata.org/entity/Q3328416", + cordinates: "Point(10.395996 43.722664)", + locationLabel: "Museo delle Sinopie del Camposanto monumentale", + }, + { + location: "http://www.wikidata.org/entity/Q3868160", + cordinates: "Point(11.25250556 43.762)", + locationLabel: "Museo delle Porcellane", + }, + { + location: "http://www.wikidata.org/entity/Q3868160", + cordinates: "Point(11.249968 43.765275)", + locationLabel: "Museo delle Porcellane", + }, + { + location: "http://www.wikidata.org/entity/Q3868002", + cordinates: "Point(12.3885 43.112305555)", + locationLabel: "Museo dell'Opera del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q1200696", + cordinates: "Point(11.257793 43.773075)", + locationLabel: "Museo dell'Opera del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q1200696", + cordinates: "Point(11.258105555 43.773061111)", + locationLabel: "Museo dell'Opera del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q3328410", + cordinates: "Point(12.1127 42.7167)", + locationLabel: "Museo dell'Opera del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q869130", + cordinates: "Point(11.329166666 43.3175)", + locationLabel: "Museo dell'Opera Metropolitana del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q869130", + cordinates: "Point(11.32956 43.31767)", + locationLabel: "Museo dell'Opera Metropolitana del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q869130", + cordinates: "Point(11.329609 43.317638)", + locationLabel: "Museo dell'Opera Metropolitana del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q160112", + visitors: "2696666", + cordinates: "Point(-3.692222222 40.413888888)", + locationLabel: "Museo del Prado", + }, + { + location: "http://www.wikidata.org/entity/Q160112", + visitors: "3497345", + cordinates: "Point(-3.692222222 40.413888888)", + locationLabel: "Museo del Prado", + }, + { + location: "http://www.wikidata.org/entity/Q5484867", + cordinates: "Point(-0.373083 39.472361)", + locationLabel: "Museo del Patriarca", + }, + { + location: "http://www.wikidata.org/entity/Q261233", + visitors: "262114", + cordinates: "Point(9.190261 45.463414)", + locationLabel: "Museo del Novecento", + }, + { + location: "http://www.wikidata.org/entity/Q3328403", + cordinates: "Point(12.236743 43.45674)", + locationLabel: "Museo del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q3328403", + cordinates: "Point(12.2378 43.4564)", + locationLabel: "Museo del Duomo", + }, + { + location: "http://www.wikidata.org/entity/Q18154827", + cordinates: "Point(-104.999 39.73)", + locationLabel: "Museo de las Americas", + }, + { + location: "http://www.wikidata.org/entity/Q6034308", + cordinates: "Point(-70.667561111 -33.45415)", + locationLabel: "Museo de la Solidaridad Salvador Allende", + }, + { + location: "http://www.wikidata.org/entity/Q1142398", + cordinates: "Point(-99.131418 19.433712)", + locationLabel: "Museo de la Secretaría de Hacienda y Crédito Público", + }, + { + location: "http://www.wikidata.org/entity/Q1142398", + cordinates: "Point(-99.131292 19.433592)", + locationLabel: "Museo de la Secretaría de Hacienda y Crédito Público", + }, + { + location: "http://www.wikidata.org/entity/Q6034321", + cordinates: "Point(-0.988916666 38.706583333)", + locationLabel: "Museo de la Acuarela Rafael Requena", + }, + { + location: "http://www.wikidata.org/entity/Q15260357", + cordinates: "Point(-66.511 18.26)", + locationLabel: "Museo de Vida Silvestre", + }, + { + location: "http://www.wikidata.org/entity/Q4276495", + cordinates: "Point(-4.417130956 36.71989879)", + locationLabel: "Museo de Málaga", + }, + { + location: "http://www.wikidata.org/entity/Q6034082", + cordinates: "Point(-71.23044444 -32.44545)", + locationLabel: "Museo de La Ligua", + }, + { + location: "http://www.wikidata.org/entity/Q6034074", + cordinates: "Point(-3.78949371 37.774123219)", + locationLabel: "Museo de Jaén", + }, + { + location: "http://www.wikidata.org/entity/Q104524908", + cordinates: "Point(-66.05133873 18.404420989)", + locationLabel: "Museo de Historia, Antropología y Arte", + }, + { + location: "http://www.wikidata.org/entity/Q2283575", + cordinates: "Point(-3.68748 40.43303)", + locationLabel: "Museo de Escultura al Aire Libre de La Castellana", + }, + { + location: "http://www.wikidata.org/entity/Q3133255", + cordinates: "Point(-3.3682 40.48456)", + locationLabel: "Museo de Escultura al Aire Libre de Alcalá de Henares", + }, + { + location: "http://www.wikidata.org/entity/Q10940906", + cordinates: "Point(-2.6797 42.8417)", + locationLabel: "Museo de Bellas Artes de Álava", + }, + { + location: "http://www.wikidata.org/entity/Q5646329", + cordinates: "Point(-0.03022222 39.98234444)", + locationLabel: "Museo de Bellas Artes de Castellón", + }, + { + location: "http://www.wikidata.org/entity/Q9046987", + cordinates: "Point(-6.971666666 38.880194444)", + locationLabel: "Museo de Bellas Artes de Badajoz", + }, + { + location: "http://www.wikidata.org/entity/Q18416994", + cordinates: "Point(-57.947692 -34.913773)", + locationLabel: "Museo de Bellas Artes", + }, + { + location: "http://www.wikidata.org/entity/Q18416994", + cordinates: "Point(-57.947702777 -34.913722222)", + locationLabel: "Museo de Bellas Artes", + }, + { + location: "http://www.wikidata.org/entity/Q16494164", + cordinates: "Point(-70.64067222 -33.43795833)", + locationLabel: "Museo de Artes Visuales", + }, + { + location: "http://www.wikidata.org/entity/Q9046983", + cordinates: "Point(1.106901 41.158574)", + locationLabel: "Museo de Arte e Historia de Reus", + }, + { + location: "http://www.wikidata.org/entity/Q9046980", + cordinates: "Point(-2.6325 43.16805556)", + locationLabel: "Museo de Arte e Historia de Durango", + }, + { + location: "http://www.wikidata.org/entity/Q5576251", + cordinates: "Point(-75.23194444 4.43888889)", + locationLabel: "Museo de Arte del Tolima", + }, + { + location: "http://www.wikidata.org/entity/Q3137182", + visitors: "90000", + cordinates: "Point(-66.616944444 18.003888888)", + locationLabel: "Museo de Arte de Ponce", + }, + { + location: "http://www.wikidata.org/entity/Q6033911", + cordinates: "Point(-89.24195 13.692566)", + locationLabel: "Museo de Arte de El Salvador", + }, + { + location: "http://www.wikidata.org/entity/Q9046979", + cordinates: "Point(-58.5893 -34.4101)", + locationLabel: "Museo de Arte Tigre", + }, + { + location: "http://www.wikidata.org/entity/Q9046979", + cordinates: "Point(-58.5911 -34.4094)", + locationLabel: "Museo de Arte Tigre", + }, + { + location: "http://www.wikidata.org/entity/Q4306262", + cordinates: "Point(-71.9775 -13.515)", + locationLabel: "Museo de Arte Precolombino Cusco", + }, + { + location: "http://www.wikidata.org/entity/Q21573456", + cordinates: "Point(-58.4049 -34.5803)", + locationLabel: "Museo de Arte Popular José Hernández", + }, + { + location: "http://www.wikidata.org/entity/Q2894417", + cordinates: "Point(-70.639575 -33.439198)", + locationLabel: "Museo de Arte Popular Americano", + }, + { + location: "http://www.wikidata.org/entity/Q6033887", + cordinates: "Point(-3.812536 43.462406)", + locationLabel: + "Museo de Arte Moderno y Contemporáneo de Santander y Cantabria", + }, + { + location: "http://www.wikidata.org/entity/Q6033887", + cordinates: "Point(-3.8125 43.4625)", + locationLabel: + "Museo de Arte Moderno y Contemporáneo de Santander y Cantabria", + }, + { + location: "http://www.wikidata.org/entity/Q3032842", + cordinates: "Point(-99.179722 19.423056)", + locationLabel: "Museo de Arte Moderno", + }, + { + location: "http://www.wikidata.org/entity/Q1954289", + cordinates: "Point(-58.386594415 -34.609641666)", + locationLabel: "Museo de Arte Hispanoamericano Isaac Fernández Blanco", + }, + { + location: "http://www.wikidata.org/entity/Q1954289", + cordinates: "Point(-58.3801 -34.5912)", + locationLabel: "Museo de Arte Hispanoamericano Isaac Fernández Blanco", + }, + { + location: "http://www.wikidata.org/entity/Q6940536", + visitors: "40000", + cordinates: "Point(-58.4556 -34.5614)", + locationLabel: "Museo de Arte Español Enrique Larreta", + }, + { + location: "http://www.wikidata.org/entity/Q6940536", + visitors: "40000", + cordinates: "Point(-58.45569444 -34.56111111)", + locationLabel: "Museo de Arte Español Enrique Larreta", + }, + { + location: "http://www.wikidata.org/entity/Q20022317", + cordinates: "Point(-84.099055 9.935389)", + locationLabel: "Museo de Arte Costarricense", + }, + { + location: "http://www.wikidata.org/entity/Q6033872", + cordinates: "Point(-71.6324043 10.6767288)", + locationLabel: "Museo de Arte Contemporáneo del Zulia", + }, + { + location: "http://www.wikidata.org/entity/Q6940538", + cordinates: "Point(-100.31 25.669)", + locationLabel: "Museo de Arte Contemporáneo de Monterrey", + }, + { + location: "http://www.wikidata.org/entity/Q18417000", + cordinates: "Point(-67.610055555 10.248805555)", + locationLabel: "Museo de Arte Contemporáneo de Maracay Mario Abreu", + }, + { + location: "http://www.wikidata.org/entity/Q2104074", + cordinates: "Point(-5.58278 42.60639)", + locationLabel: "Museo de Arte Contemporáneo de Castilla y León", + }, + { + location: "http://www.wikidata.org/entity/Q6033853", + cordinates: "Point(-57.949708333 -34.914019444)", + locationLabel: "Museo de Arte Contemporáneo Latinoamericano", + }, + { + location: "http://www.wikidata.org/entity/Q6033853", + cordinates: "Point(-57.941166 -34.920184)", + locationLabel: "Museo de Arte Contemporáneo Latinoamericano", + }, + { + location: "http://www.wikidata.org/entity/Q43018773", + cordinates: "Point(-63.847466 10.957206)", + locationLabel: "Museo de Arte Contemporáneo Francisco Narváez", + }, + { + location: "http://www.wikidata.org/entity/Q42311478", + cordinates: "Point(-4.12120278 40.94937222)", + locationLabel: "Museo de Arte Contemporáneo Esteban Vicente", + }, + { + location: "http://www.wikidata.org/entity/Q6033856", + cordinates: "Point(-58.370193 -34.622009388)", + locationLabel: "Museo de Arte Contemporáneo Buenos Aires", + }, + { + location: "http://www.wikidata.org/entity/Q6033840", + cordinates: "Point(-4.532222222 42.01375)", + locationLabel: "Museo de Arte Contemporáneo (Palencia)", + }, + { + location: "http://www.wikidata.org/entity/Q6940534", + cordinates: "Point(-68.1513858 -16.5196797)", + locationLabel: "Museo de Arte Antonio Paredes Candia", + }, + { + location: "http://www.wikidata.org/entity/Q2046601", + cordinates: "Point(-2.128694 40.078006)", + locationLabel: "Museo de Arte Abstracto Español", + }, + { + location: "http://www.wikidata.org/entity/Q1403370", + cordinates: "Point(12.331268 45.440907)", + locationLabel: "Museo d'arte orientale", + }, + { + location: "http://www.wikidata.org/entity/Q55340551", + cordinates: "Point(13.767904 45.603176)", + locationLabel: 'Museo d\'arte moderna "Ugo Carà"', + }, + { + location: "http://www.wikidata.org/entity/Q2790359", + cordinates: "Point(7.510569 45.069853)", + locationLabel: "Museo d'arte contemporanea del castello di Rivoli", + }, + { + location: "http://www.wikidata.org/entity/Q3328415", + cordinates: "Point(9.182304 45.470319)", + locationLabel: "Museo d'Arte e Scienza", + }, + { + location: "http://www.wikidata.org/entity/Q18019535", + cordinates: "Point(8.76719 46.1557)", + locationLabel: "Museo comunale d'arte moderna", + }, + { + location: "http://www.wikidata.org/entity/Q3328406", + cordinates: "Point(10.067879 44.058151)", + locationLabel: "Museo civico del marmo di Carrara", + }, + { + location: "http://www.wikidata.org/entity/Q3328406", + cordinates: "Point(10.074073 44.065144)", + locationLabel: "Museo civico del marmo di Carrara", + }, + { + location: "http://www.wikidata.org/entity/Q30888845", + cordinates: "Point(8.6753 45.88005)", + locationLabel: "Museo civico Floriano Bodini", + }, + { + location: "http://www.wikidata.org/entity/Q3328376", + cordinates: "Point(12.11433333 42.71688889)", + locationLabel: "Museo archeologico nazionale di Orvieto", + }, + { + location: "http://www.wikidata.org/entity/Q3328376", + cordinates: "Point(12.113956 42.716927)", + locationLabel: "Museo archeologico nazionale di Orvieto", + }, + { + location: "http://www.wikidata.org/entity/Q27479764", + cordinates: "Point(9.02043 46.1846)", + locationLabel: "Museo Villa dei Cedri", + }, + { + location: "http://www.wikidata.org/entity/Q3867651", + cordinates: "Point(8.95018 45.86403)", + locationLabel: "Museo Vela", + }, + { + location: "http://www.wikidata.org/entity/Q6033775", + cordinates: "Point(-3.38833333 40.10888889)", + locationLabel: "Museo Ulpiano Checa", + }, + { + location: "http://www.wikidata.org/entity/Q1570412", + cordinates: "Point(-56.20130556 -34.90644444)", + locationLabel: "Museo Torres García", + }, + { + location: "http://www.wikidata.org/entity/Q3330551", + cordinates: "Point(-99.18184444 19.42571944)", + locationLabel: "Museo Tamayo Arte Contemporáneo", + }, + { + location: "http://www.wikidata.org/entity/Q2097646", + visitors: "1095000", + cordinates: "Point(-99.204722222 19.440694444)", + locationLabel: "Museo Soumaya", + }, + { + location: "http://www.wikidata.org/entity/Q1954272", + cordinates: "Point(13.763166 45.645706)", + locationLabel: "Museo Sartorio", + }, + { + location: "http://www.wikidata.org/entity/Q1954272", + cordinates: "Point(13.763208 45.646209)", + locationLabel: "Museo Sartorio", + }, + { + location: "http://www.wikidata.org/entity/Q55376927", + cordinates: "Point(8.680028 45.87344)", + locationLabel: "Museo Salvini", + }, + { + location: "http://www.wikidata.org/entity/Q55376927", + cordinates: "Point(8.67853 45.8754)", + locationLabel: "Museo Salvini", + }, + { + location: "http://www.wikidata.org/entity/Q6940515", + cordinates: "Point(-96.726944444 17.063444444)", + locationLabel: "Museo Rufino Tamayo", + }, + { + location: "http://www.wikidata.org/entity/Q6940510", + cordinates: "Point(-90.94771111 14.22976389)", + locationLabel: "Museo Regional de Arqueología de la Democracia, Escuintla", + }, + { + location: "http://www.wikidata.org/entity/Q2909156", + cordinates: "Point(-90.53277778 14.62472222)", + locationLabel: "Museo Popol Vuh", + }, + { + location: "http://www.wikidata.org/entity/Q1190657", + visitors: "50269", + cordinates: "Point(9.191583 45.468664)", + locationLabel: "Museo Poldi Pezzoli", + }, + { + location: "http://www.wikidata.org/entity/Q1368396", + visitors: "391319", + cordinates: "Point(-4.41847 36.721771)", + locationLabel: "Museo Picasso Málaga", + }, + { + location: "http://www.wikidata.org/entity/Q1368396", + visitors: "558043", + cordinates: "Point(-4.41847 36.721771)", + locationLabel: "Museo Picasso Málaga", + }, + { + location: "http://www.wikidata.org/entity/Q1368396", + visitors: "635891", + cordinates: "Point(-4.41847 36.721771)", + locationLabel: "Museo Picasso Málaga", + }, + { + location: "http://www.wikidata.org/entity/Q6033665", + cordinates: "Point(-77.022954 -12.154654)", + locationLabel: "Museo Pedro de Osma", + }, + { + location: "http://www.wikidata.org/entity/Q38901928", + cordinates: "Point(11.248867 43.773071)", + locationLabel: "Museo Novecento", + }, + { + location: "http://www.wikidata.org/entity/Q38901928", + cordinates: "Point(11.248913888 43.773069444)", + locationLabel: "Museo Novecento", + }, + { + location: "http://www.wikidata.org/entity/Q3329345", + cordinates: "Point(14.2407 40.8431)", + locationLabel: "Museo Nazionale di San Martino", + }, + { + location: "http://www.wikidata.org/entity/Q5947696", + cordinates: "Point(-2.735111111 42.415916666)", + locationLabel: "Museo Najerillense", + }, + { + location: "http://www.wikidata.org/entity/Q2893965", + cordinates: "Point(-99.142567 19.437042)", + locationLabel: "Museo Nacional de la Estampa", + }, + { + location: "http://www.wikidata.org/entity/Q6940507", + cordinates: "Point(-99.152 19.4382)", + locationLabel: "Museo Nacional de San Carlos", + }, + { + location: "http://www.wikidata.org/entity/Q6319285", + cordinates: "Point(-57.6212 -25.2887)", + locationLabel: "Museo Nacional de Bellas Artes de Asunción", + }, + { + location: "http://www.wikidata.org/entity/Q1848918", + cordinates: "Point(-58.39280556 -34.58405556)", + locationLabel: "Museo Nacional de Bellas Artes", + }, + { + location: "http://www.wikidata.org/entity/Q5361303", + cordinates: "Point(-3.689816944 40.417911944)", + locationLabel: "Museo Nacional de Artes Decorativas", + }, + { + location: "http://www.wikidata.org/entity/Q50358716", + cordinates: "Point(-58.401055555 -34.582638888)", + locationLabel: "Museo Nacional de Arte Oriental", + }, + { + location: "http://www.wikidata.org/entity/Q1403356", + cordinates: "Point(-90.52888889 14.5975)", + locationLabel: 'Museo Nacional de Arte Moderno "Carlos Mérida"', + }, + { + location: "http://www.wikidata.org/entity/Q1138147", + cordinates: "Point(-99.13944444 19.43638889)", + locationLabel: "Museo Nacional de Arte", + }, + { + location: "http://www.wikidata.org/entity/Q460889", + visitors: "1.45678844", + cordinates: "Point(-3.694444444 40.408888888)", + locationLabel: "Museo Nacional Centro de Arte Reina Sofía", + }, + { + location: "http://www.wikidata.org/entity/Q460889", + visitors: "3249591", + cordinates: "Point(-3.694444444 40.408888888)", + locationLabel: "Museo Nacional Centro de Arte Reina Sofía", + }, + { + location: "http://www.wikidata.org/entity/Q460889", + visitors: "3646598", + cordinates: "Point(-3.694444444 40.408888888)", + locationLabel: "Museo Nacional Centro de Arte Reina Sofía", + }, + { + location: "http://www.wikidata.org/entity/Q460889", + visitors: "3898309", + cordinates: "Point(-3.694444444 40.408888888)", + locationLabel: "Museo Nacional Centro de Arte Reina Sofía", + }, + { + location: "http://www.wikidata.org/entity/Q460889", + visitors: "4425699", + cordinates: "Point(-3.694444444 40.408888888)", + locationLabel: "Museo Nacional Centro de Arte Reina Sofía", + }, + { + location: "http://www.wikidata.org/entity/Q3565234", + cordinates: "Point(-16.249797 28.468315)", + locationLabel: "Museo Municipal de Bellas Artes de Santa Cruz de Tenerife", + }, + { + location: "http://www.wikidata.org/entity/Q386570", + cordinates: "Point(-3.685786111 40.436930555)", + locationLabel: "Museo Lázaro Galdiano", + }, + { + location: "http://www.wikidata.org/entity/Q11073602", + cordinates: "Point(-122.431 37.8069)", + locationLabel: "Museo ItaloAmericano", + }, + { + location: "http://www.wikidata.org/entity/Q531218", + cordinates: "Point(11.259413 43.767519)", + locationLabel: "Museo Horne", + }, + { + location: "http://www.wikidata.org/entity/Q616676", + cordinates: "Point(12.33208 45.43532)", + locationLabel: "Museo Fortuny", + }, + { + location: "http://www.wikidata.org/entity/Q616676", + cordinates: "Point(12.335712 45.43519)", + locationLabel: "Museo Fortuny", + }, + { + location: "http://www.wikidata.org/entity/Q6033351", + cordinates: "Point(-6.971111 38.871667)", + locationLabel: "Museo Extremeño e Iberoamericano de Arte Contemporáneo", + }, + { + location: "http://www.wikidata.org/entity/Q6033351", + cordinates: "Point(-6.9711 38.8717)", + locationLabel: "Museo Extremeño e Iberoamericano de Arte Contemporáneo", + }, + { + location: "http://www.wikidata.org/entity/Q3329136", + cordinates: "Point(12.112799 42.716812)", + locationLabel: "Museo Emilio Greco", + }, + { + location: "http://www.wikidata.org/entity/Q3329136", + cordinates: "Point(12.1137 42.7166)", + locationLabel: "Museo Emilio Greco", + }, + { + location: "http://www.wikidata.org/entity/Q1744258", + cordinates: "Point(-99.124778 19.265361)", + locationLabel: "Museo Dolores Olmedo", + }, + { + location: "http://www.wikidata.org/entity/Q16579764", + cordinates: "Point(-2.135 40.071667)", + locationLabel: "Museo Diocesano de Cuenca", + }, + { + location: "http://www.wikidata.org/entity/Q1470912", + visitors: "286454", + cordinates: "Point(12.337128 45.433933)", + locationLabel: "Museo Correr", + }, + { + location: "http://www.wikidata.org/entity/Q16494156", + cordinates: "Point(-70.64756389 -33.44383889)", + locationLabel: "Museo Colonial", + }, + { + location: "http://www.wikidata.org/entity/Q606494", + cordinates: "Point(12.141497 43.571547)", + locationLabel: "Museo Civico di Sansepolcro", + }, + { + location: "http://www.wikidata.org/entity/Q18635216", + cordinates: "Point(12.65318 42.89478)", + locationLabel: "Museo Civico di San Francesco", + }, + { + location: "http://www.wikidata.org/entity/Q3328378", + cordinates: "Point(11.332118 43.318188)", + locationLabel: "Museo Civico", + }, + { + location: "http://www.wikidata.org/entity/Q29413187", + cordinates: "Point(9.3051 45.9581)", + locationLabel: "Museo Castiglioni", + }, + { + location: "http://www.wikidata.org/entity/Q27479546", + cordinates: "Point(8.77449 46.16121)", + locationLabel: "Museo Castello San Materno", + }, + { + location: "http://www.wikidata.org/entity/Q72858096", + cordinates: "Point(-2.301119353 37.362625076)", + locationLabel: "Museo Casa Ibáñez", + }, + { + location: "http://www.wikidata.org/entity/Q18674434", + cordinates: "Point(-3.68585 40.431283333)", + locationLabel: "Museo Carlos de Amberes", + }, + { + location: "http://www.wikidata.org/entity/Q3329511", + cordinates: "Point(8.95327 46.0043)", + locationLabel: "Museo Cantonale d’Arte", + }, + { + location: "http://www.wikidata.org/entity/Q6940459", + cordinates: "Point(-69.925328 18.481955)", + locationLabel: "Museo Bellapart", + }, + { + location: "http://www.wikidata.org/entity/Q2729588", + cordinates: "Point(12.472610472 41.8968527)", + locationLabel: "Museo Barracco di Scultura Antica", + }, + { + location: "http://www.wikidata.org/entity/Q15961396", + cordinates: "Point(12.337797 45.433483)", + locationLabel: "Museo Archeologico Nazionale, Venice", + }, + { + location: "http://www.wikidata.org/entity/Q15961396", + cordinates: "Point(12.3393 45.4336)", + locationLabel: "Museo Archeologico Nazionale, Venice", + }, + { + location: "http://www.wikidata.org/entity/Q6940456", + cordinates: "Point(-79.876053 -2.185586)", + locationLabel: "Museo Antropologico y de Arte Contemporaneo", + }, + { + location: "http://www.wikidata.org/entity/Q14711095", + cordinates: "Point(-98.4982 29.4255)", + locationLabel: "Museo Alameda", + }, + { + location: "http://www.wikidata.org/entity/Q1474915", + cordinates: "Point(11.348429 46.497362)", + locationLabel: "Museion", + }, + { + location: "http://www.wikidata.org/entity/Q11344069", + cordinates: "Point(138.507778 36.322361)", + locationLabel: "Musee d'art Mercian Karuizawa", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "15514", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "15572", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "16504", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "16705", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "17255", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "17431", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "18084", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "18469", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "19511", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "20415", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "20781", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "20852", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "22646", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "24608", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "25625", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "26014", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q3329329", + visitors: "26976", + cordinates: "Point(-0.896706 47.9331)", + locationLabel: "Musee Robert Tatin", + }, + { + location: "http://www.wikidata.org/entity/Q6940210", + cordinates: "Point(-76.7159 37.268)", + locationLabel: "Muscarelle Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q17214314", + cordinates: "Point(135.777889 33.47075)", + locationLabel: "Muryoji", + }, + { + location: "http://www.wikidata.org/entity/Q1528356", + cordinates: "Point(139.336633 35.679431)", + locationLabel: "Murauchi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3867986", + cordinates: "Point(12.356861111 45.4566)", + locationLabel: "Murano Glass Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2999262", + cordinates: "Point(-75.241389 43.096944)", + locationLabel: "Munson-Williams-Proctor Arts Institute", + }, + { + location: "http://www.wikidata.org/entity/Q12876097", + cordinates: "Point(22.3996 39.6224)", + locationLabel: "Municipal Gallery of Larissa", + }, + { + location: "http://www.wikidata.org/entity/Q16327766", + cordinates: "Point(19.9248 39.6259)", + locationLabel: "Municipal Gallery of Corfu", + }, + { + location: "http://www.wikidata.org/entity/Q1576793", + cordinates: "Point(23.7193483 37.9830099)", + locationLabel: "Municipal Gallery of Athens", + }, + { + location: "http://www.wikidata.org/entity/Q6936235", + cordinates: "Point(24.47408333 35.37097222)", + locationLabel: 'Municipal Gallery "L. Kanakakis"', + }, + { + location: "http://www.wikidata.org/entity/Q6936126", + cordinates: "Point(23.64687 37.945195)", + locationLabel: "Municipal Art Gallery of Piraeus", + }, + { + location: "http://www.wikidata.org/entity/Q6936126", + cordinates: "Point(23.6469 37.94527)", + locationLabel: "Municipal Art Gallery of Piraeus", + }, + { + location: "http://www.wikidata.org/entity/Q6936124", + cordinates: "Point(22.9544 40.599)", + locationLabel: "Municipal Art Gallery (Thessaloniki)", + }, + { + location: "http://www.wikidata.org/entity/Q844926", + cordinates: "Point(10.77417 59.91667)", + locationLabel: "Munch Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11539040", + cordinates: "Point(140.76 40.819444444)", + locationLabel: "Munakata Shiko Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q689951", + cordinates: "Point(16.357444 48.203722)", + locationLabel: "Mumok", + }, + { + location: "http://www.wikidata.org/entity/Q4306979", + cordinates: "Point(37.5987 55.7416)", + locationLabel: "Multimedia Art Museum, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q4306979", + cordinates: "Point(37.602222 55.781111)", + locationLabel: "Multimedia Art Museum, Moscow", + }, + { + location: "http://www.wikidata.org/entity/Q11567510", + cordinates: "Point(138.200028 36.345417)", + locationLabel: "Mugonkan", + }, + { + location: "http://www.wikidata.org/entity/Q96234362", + cordinates: "Point(102.554777777 2.033305555)", + locationLabel: "Muar Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "35497", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "44658", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "50803", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "51305", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "58310", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "60037", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "61071", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "64695", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "66172", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "70463", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "71475", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "78085", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "99523", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "101669", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "107479", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "107499", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "139029", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "139032", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q3329541", + visitors: "139073", + cordinates: "Point(0.102616 49.485043)", + locationLabel: "MuMa Museum of modern art André Malraux", + }, + { + location: "http://www.wikidata.org/entity/Q1928672", + cordinates: "Point(2.91456 51.22561)", + locationLabel: "Mu.ZEE - Kunstmuseum aan Zee", + }, + { + location: "http://www.wikidata.org/entity/Q1928672", + cordinates: "Point(2.914293 51.226124)", + locationLabel: "Mu.ZEE - Kunstmuseum aan Zee", + }, + { + location: "http://www.wikidata.org/entity/Q30091626", + cordinates: "Point(19.446573 51.77884)", + locationLabel: "Ms²", + }, + { + location: "http://www.wikidata.org/entity/Q86900200", + cordinates: "Point(-121.884 37.328)", + locationLabel: "Movimiento de Arte y Cultura Latino Americana", + }, + { + location: "http://www.wikidata.org/entity/Q14715727", + cordinates: "Point(-72.5727 42.2568)", + locationLabel: "Mount Holyoke College Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329574", + cordinates: "Point(6.99485 43.601316)", + locationLabel: "Mougins Museum of Classical Art", + }, + { + location: "http://www.wikidata.org/entity/Q4304214", + cordinates: "Point(37.61428 55.767032)", + locationLabel: "Moscow Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q4304212", + cordinates: "Point(37.6173 55.755826)", + locationLabel: "Moscow Cat Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6913959", + cordinates: "Point(-123.25623 49.26816)", + locationLabel: "Morris and Helen Belkin Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6913830", + visitors: "120000", + cordinates: "Point(-81.968557 33.479309)", + locationLabel: "Morris Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6913714", + cordinates: "Point(-124.164444 40.800556)", + locationLabel: "Morris Graves Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3248015", + cordinates: "Point(140.09638889 37.65361111)", + locationLabel: "Morohashi Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q5954531", + cordinates: "Point(-80.1488 26.4258)", + locationLabel: "Morikami Museum and Japanese Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q6911195", + cordinates: "Point(-82.6443 27.7712)", + locationLabel: "Morean Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q3094617", + cordinates: "Point(16.604365 49.195508)", + locationLabel: "Moravian Gallery in Brno", + }, + { + location: "http://www.wikidata.org/entity/Q18631721", + cordinates: "Point(7.825354 47.980895)", + locationLabel: "Morat-Institut", + }, + { + location: "http://www.wikidata.org/entity/Q2624126", + cordinates: "Point(23.75055556 61.49805556)", + locationLabel: "Moomin Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860812", + visitors: "1015022", + cordinates: "Point(-73.5801 45.4987)", + locationLabel: "Montreal Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1946291", + visitors: "160000", + cordinates: "Point(-86.2065 32.351)", + locationLabel: "Montgomery Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q6904586", + cordinates: "Point(-74.224167 40.818611)", + locationLabel: "Montclair Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325605", + cordinates: "Point(-113.985161 46.863582)", + locationLabel: "Montana Museum of Art & Culture", + }, + { + location: "http://www.wikidata.org/entity/Q15255264", + cordinates: "Point(-75.37806 40.61207)", + locationLabel: "Monsoon gallery", + }, + { + location: "http://www.wikidata.org/entity/Q66606378", + cordinates: "Point(174.6195985 -38.6975619)", + locationLabel: "Mokau Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4115728", + cordinates: "Point(31.2197 30.0356)", + locationLabel: "Mohamed Mahmoud Khalil Museum", + }, + { + location: "http://www.wikidata.org/entity/Q57597799", + cordinates: "Point(14.4298639 50.1052214)", + locationLabel: "Moderní galerie AVU", + }, + { + location: "http://www.wikidata.org/entity/Q1718267", + cordinates: "Point(13.009422 55.604678)", + locationLabel: "Moderna Museet Malmö", + }, + { + location: "http://www.wikidata.org/entity/Q1274511", + cordinates: "Point(18.08361 59.32639)", + locationLabel: "Moderna Museet", + }, + { + location: "http://www.wikidata.org/entity/Q55385684", + cordinates: "Point(12.485869 41.905888)", + locationLabel: "Modern art gallery of Rome", + }, + { + location: "http://www.wikidata.org/entity/Q48804843", + cordinates: "Point(8.6195387 45.4465298)", + locationLabel: "Modern art gallery (Novara)", + }, + { + location: "http://www.wikidata.org/entity/Q3678771", + cordinates: "Point(12.9876275 42.0094216)", + locationLabel: "Modern and Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22948624", + cordinates: "Point(35.686944444 34.091111111)", + locationLabel: "Modern and Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2350879", + visitors: "76060", + cordinates: "Point(15.9775 45.80916667)", + locationLabel: "Modern Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q20515515", + cordinates: "Point(46.403380555 39.207938888)", + locationLabel: "Modern Art Museum of Kapan", + }, + { + location: "http://www.wikidata.org/entity/Q1414796", + cordinates: "Point(-97.363069 32.749287)", + locationLabel: "Modern Art Museum of Fort Worth", + }, + { + location: "http://www.wikidata.org/entity/Q21127197", + cordinates: "Point(13.425946 42.027724)", + locationLabel: "Modern Art Museum of Avezzano", + }, + { + location: "http://www.wikidata.org/entity/Q1492337", + cordinates: "Point(13.36555556 38.11527778)", + locationLabel: "Modern Art Gallery Sant'Anna", + }, + { + location: "http://www.wikidata.org/entity/Q1054339", + cordinates: "Point(-9.1540155 38.7354647)", + locationLabel: "Modern Art Center José de Azeredo Perdigão", + }, + { + location: "http://www.wikidata.org/entity/Q100354938", + cordinates: "Point(10.6215944 47.7884369)", + locationLabel: "Modeon", + }, + { + location: "http://www.wikidata.org/entity/Q6888210", + cordinates: "Point(-8.4628 54.2737)", + locationLabel: "Model Arts and Niland Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q26832671", + cordinates: "Point(4.881892 52.358714)", + locationLabel: "Moco Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2414041", + cordinates: "Point(-88.155278 30.703611)", + locationLabel: "Mobile Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q699040", + cordinates: "Point(121.519003 25.050805)", + locationLabel: "MoCA Taipei", + }, + { + location: "http://www.wikidata.org/entity/Q3369146", + cordinates: "Point(12.77083333 56.67833333)", + locationLabel: "Mjellby Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q97754517", + cordinates: "Point(139.340988888 35.932808333)", + locationLabel: "Mizuta Museum of Art, Josai University", + }, + { + location: "http://www.wikidata.org/entity/Q11549453", + cordinates: "Point(138.193028 36.628222)", + locationLabel: "Mizuno Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q3298536", + cordinates: "Point(131.41944444 31.93416667)", + locationLabel: "Miyazaki Prefectural Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2420835", + cordinates: "Point(141.30245 43.05716111)", + locationLabel: "Miyanomori Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11643539", + cordinates: "Point(131.06305556 31.71927778)", + locationLabel: "Miyakonojō Shiritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11453791", + cordinates: "Point(140.854917 38.264056)", + locationLabel: "Miyagi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11582309", + cordinates: "Point(139.7635 35.67694444)", + locationLabel: "Mitsuo Aida Museum", + }, + { + location: "http://www.wikidata.org/entity/Q864700", + cordinates: "Point(139.773144 35.686298)", + locationLabel: "Mitsui Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3815458", + cordinates: "Point(139.763255 35.678355)", + locationLabel: "Mitsubishi Ichigokan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q21235745", + cordinates: "Point(15.008173 37.517608)", + locationLabel: "Misterbianco religious art museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325603", + cordinates: "Point(-114.01167 46.8625)", + locationLabel: "Missoula Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28447842", + cordinates: "Point(-88.7007163 32.3630551)", + locationLabel: "Mississippi arts and entertainment experience", + }, + { + location: "http://www.wikidata.org/entity/Q15961641", + cordinates: "Point(-90.18569 32.29626)", + locationLabel: "Mississippi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11278841", + cordinates: "Point(133.89638 35.41148)", + locationLabel: "Misasa Violin Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28671433", + cordinates: "Point(14.99359 41.041688)", + locationLabel: "Mirabella Eclano religious art museum", + }, + { + location: "http://www.wikidata.org/entity/Q6869561", + cordinates: "Point(-80.84831 35.22442)", + locationLabel: "Mint Museum", + }, + { + location: "http://www.wikidata.org/entity/Q48749054", + cordinates: "Point(137.02177778 35.45705556)", + locationLabel: "Minokamo Shimin Myūjiamu", + }, + { + location: "http://www.wikidata.org/entity/Q6868372", + cordinates: "Point(-93.089519 44.94725)", + locationLabel: "Minnesota Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q6868358", + cordinates: "Point(-91.657 44.059)", + locationLabel: "Minnesota Marine Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1700481", + cordinates: "Point(-93.27411 44.95818)", + locationLabel: "Minneapolis Institute of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1700481", + cordinates: "Point(-93.274167 44.958611)", + locationLabel: "Minneapolis Institute of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1700481", + cordinates: "Point(-93.27406 44.9586)", + locationLabel: "Minneapolis Institute of Art", + }, + { + location: "http://www.wikidata.org/entity/Q95705498", + cordinates: "Point(103.785222222 1.550722222)", + locationLabel: "Mini Kuso Trick Art", + }, + { + location: "http://www.wikidata.org/entity/Q6864705", + cordinates: "Point(-117.151 32.7311)", + locationLabel: "Mingei International Museum", + }, + { + location: "http://www.wikidata.org/entity/Q42990210", + cordinates: "Point(121.458861111 31.212541666)", + locationLabel: "Ming Yuan Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q1936046", + cordinates: "Point(15.96694444 45.80833333)", + locationLabel: "Mimara Museum", + }, + { + location: "http://www.wikidata.org/entity/Q325712", + visitors: "350001", + cordinates: "Point(-87.897042 43.039894)", + locationLabel: "Milwaukee Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12766245", + cordinates: "Point(18.042108 48.896042)", + locationLabel: "Miloš Alexander Bazovský Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18325671", + cordinates: "Point(-122.181866 37.783276)", + locationLabel: "Mills College Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6859638", + cordinates: "Point(18.0588 59.3424)", + locationLabel: "Milliken Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6859561", + cordinates: "Point(-105.594 36.4441)", + locationLabel: "Millicent Rogers Museum", + }, + { + location: "http://www.wikidata.org/entity/Q667094", + cordinates: "Point(18.12139 59.35861)", + locationLabel: "Millesgården", + }, + { + location: "http://www.wikidata.org/entity/Q6859132", + cordinates: "Point(-79.9432 40.4439)", + locationLabel: "Miller Gallery at Carnegie Mellon University", + }, + { + location: "http://www.wikidata.org/entity/Q28151371", + cordinates: "Point(4.335667 50.850044)", + locationLabel: "Millennium Iconoclast Museum of Art - MIMA", + }, + { + location: "http://www.wikidata.org/entity/Q28151371", + cordinates: "Point(4.338194 50.851)", + locationLabel: "Millennium Iconoclast Museum of Art - MIMA", + }, + { + location: "http://www.wikidata.org/entity/Q4132355", + cordinates: "Point(-1.46729 53.3796)", + locationLabel: "Millennium Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q18632323", + cordinates: "Point(142.158408 -34.177442)", + locationLabel: "Mildura Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q6129019", + cordinates: "Point(-90.3027 38.6472)", + locationLabel: "Mildred Lane Kemper Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6850461", + cordinates: "Point(127.0823 37.4858)", + locationLabel: "Milal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18346778", + cordinates: "Point(27.2681 61.6889)", + locationLabel: "Mikkeli Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6849935", + cordinates: "Point(24.79072222 59.43797222)", + locationLabel: "Mikkel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1268542", + cordinates: "Point(136.01582222 34.91592222)", + locationLabel: "Miho Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1380528", + cordinates: "Point(8.52485 47.3894)", + locationLabel: "Migros Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11402955", + cordinates: "Point(141.332833 43.061583)", + locationLabel: "Mighishi Kōtarō Museum of Art, Hokkaido", + }, + { + location: "http://www.wikidata.org/entity/Q11780188", + cordinates: "Point(19.954889 49.293611)", + locationLabel: "Miejska Galeria Sztuki im. Władysława hr. Zamoyskiego", + }, + { + location: "http://www.wikidata.org/entity/Q11357837", + cordinates: "Point(136.501889 34.734833)", + locationLabel: "Mie Prefectural Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6843409", + cordinates: "Point(-85.971971 41.683148)", + locationLabel: "Midwest Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q6841855", + cordinates: "Point(-1.2327 54.5745)", + locationLabel: "Middlesbrough Institute of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q18591023", + cordinates: "Point(-73.175781 44.005371)", + locationLabel: "Middlebury College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6837596", + cordinates: "Point(-86.0026 44.5195)", + locationLabel: "Michigan Legacy Art Park", + }, + { + location: "http://www.wikidata.org/entity/Q41512158", + cordinates: "Point(-72.585305555 42.103611111)", + locationLabel: "Michele & Donald D'Amour Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3868403", + cordinates: "Point(11.985834 43.644207)", + locationLabel: "Michelangiolesco Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3868403", + cordinates: "Point(11.9858 43.6443)", + locationLabel: "Michelangiolesco Museum", + }, + { + location: "http://www.wikidata.org/entity/Q13035451", + cordinates: "Point(18.42 -33.923)", + locationLabel: "Michaelis Collection", + }, + { + location: "http://www.wikidata.org/entity/Q817039", + cordinates: "Point(13.0297 48.0203)", + locationLabel: "Michaelbeuern Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q6829008", + visitors: "120000", + cordinates: "Point(-84.324235 33.790418)", + locationLabel: "Michael C. Carlos Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6827451", + cordinates: "Point(-84.729144444 39.500813888)", + locationLabel: "Miami University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20502197", + cordinates: "Point(34.783694444 32.074583333)", + locationLabel: "Meyerhoff Art Education Center", + }, + { + location: "http://www.wikidata.org/entity/Q1324362", + cordinates: "Point(-122.4307755 37.8068213)", + locationLabel: "Mexican Museum", + }, + { + location: "http://www.wikidata.org/entity/Q14711046", + cordinates: "Point(-97.7429 30.2669)", + locationLabel: "Mexic-Arte Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6825145", + cordinates: "Point(120.986477 14.562406)", + locationLabel: "Metropolitan Museum of Manila", + }, + { + location: "http://www.wikidata.org/entity/Q160236", + visitors: "5240000", + cordinates: "Point(-73.9631 40.7794)", + locationLabel: "Metropolitan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q160236", + visitors: "6226727", + cordinates: "Point(-73.9631 40.7794)", + locationLabel: "Metropolitan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q160236", + visitors: "6479548", + cordinates: "Point(-73.9631 40.7794)", + locationLabel: "Metropolitan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q160236", + visitors: "6692909", + cordinates: "Point(-73.9631 40.7794)", + locationLabel: "Metropolitan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q160236", + visitors: "6700000", + cordinates: "Point(-73.9631 40.7794)", + locationLabel: "Metropolitan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q160236", + visitors: "6953927", + cordinates: "Point(-73.9631 40.7794)", + locationLabel: "Metropolitan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q20926343", + cordinates: "Point(-5.9275 54.603611111)", + locationLabel: "Metropolitan Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q47014885", + cordinates: "Point(34.6297 36.7989)", + locationLabel: "Mersin State Art and Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16895043", + cordinates: "Point(-80.3108 40.7331)", + locationLabel: "Merrick Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6819351", + cordinates: "Point(-88.703111 32.363917)", + locationLabel: "Meridian Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6818311", + cordinates: "Point(-79.4422 49.6586)", + locationLabel: "Mercer Union", + }, + { + location: "http://www.wikidata.org/entity/Q26581762", + cordinates: "Point(-1.54687 53.994229)", + locationLabel: "Mercer Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1888308", + cordinates: "Point(-95.398611 29.737222)", + locationLabel: "Menil Collection", + }, + { + location: "http://www.wikidata.org/entity/Q27485112", + cordinates: "Point(8.9879 45.87281)", + locationLabel: "Mendrisio art museum", + }, + { + location: "http://www.wikidata.org/entity/Q14874989", + visitors: "180000", + cordinates: "Point(-106.649 52.1348)", + locationLabel: "Mendel Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1920251", + cordinates: "Point(136.91978 35.288899)", + locationLabel: "Menard Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6815803", + cordinates: "Point(-89.9954 35.1462)", + locationLabel: "Memphis Brooks Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6815343", + visitors: "229985", + cordinates: "Point(-77.5881 43.1572)", + locationLabel: "Memorial Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11415659", + cordinates: "Point(137.038889 35.170833)", + locationLabel: "Meito Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q5153794", + cordinates: "Point(139.71763889 35.67877778)", + locationLabel: "Meiji Memorial Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5153794", + cordinates: "Point(139.717639 35.678778)", + locationLabel: "Meiji Memorial Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q48972769", + cordinates: "Point(120.25422222 23.46722222)", + locationLabel: "Mei-Ling Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3815450", + cordinates: "Point(139.707663 35.634907)", + locationLabel: "Meguro Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6807940", + cordinates: "Point(-2.8891 56.6441)", + locationLabel: "Meffan Institute", + }, + { + location: "http://www.wikidata.org/entity/Q3329644", + cordinates: "Point(-75.57416667 6.22361111)", + locationLabel: "Medellín Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q20858105", + cordinates: "Point(-93.73358 32.48361)", + locationLabel: "Meadows Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3303786", + cordinates: "Point(-96.7843 32.8384)", + locationLabel: "Meadows Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6803132", + cordinates: "Point(-72.5155 42.3709)", + locationLabel: "Mead Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27085", + cordinates: "Point(14.786531 40.920128)", + locationLabel: "MdAO - Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q286389", + cordinates: "Point(-98.4562 29.4858)", + locationLabel: "McNay Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6802407", + cordinates: "Point(-71.1696 42.3352)", + locationLabel: "McMullen Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3700321", + cordinates: "Point(-79.6252 43.8408)", + locationLabel: "McMichael Canadian Art Collection", + }, + { + location: "http://www.wikidata.org/entity/Q1519050", + cordinates: "Point(-79.918 43.2627)", + locationLabel: "McMaster Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3303706", + cordinates: "Point(-2.970760521 56.462615402)", + locationLabel: "McManus Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6800980", + cordinates: "Point(-80.645 41.105)", + locationLabel: "McDonough Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6799083", + cordinates: "Point(-83.65336 41.0537)", + locationLabel: "Mazza Museum of International Art from Picture Books", + }, + { + location: "http://www.wikidata.org/entity/Q6795562", + cordinates: "Point(2.3222222 48.8675)", + locationLabel: 'Maxim\'s Art Nouveau "Collection 1900"', + }, + { + location: "http://www.wikidata.org/entity/Q221092", + visitors: "500000", + cordinates: "Point(4.314167 52.080278)", + locationLabel: "Mauritshuis", + }, + { + location: "http://www.wikidata.org/entity/Q6791877", + cordinates: "Point(-80.0123 40.457)", + locationLabel: "Mattress Factory", + }, + { + location: "http://www.wikidata.org/entity/Q25045355", + cordinates: "Point(130.825484 31.654553)", + locationLabel: "Matsushita Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11530056", + cordinates: "Point(139.72172222 35.63994444)", + locationLabel: "Matsuoka Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11531611", + cordinates: "Point(139.141472 35.249028)", + locationLabel: "Matsunaga Memorial Hall", + }, + { + location: "http://www.wikidata.org/entity/Q11531052", + cordinates: "Point(137.976472222 36.231611111)", + locationLabel: "Matsumoto City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "28054", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "28054", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "52921", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "52921", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "53665", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "53665", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "53960", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "53960", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "55164", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "55164", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "62450", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "62450", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "65529", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "65529", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "66370", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "66370", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "67760", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "67760", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "69417", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "69417", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "70000", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "70000", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "70011", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "70011", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "71584", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "71584", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "75729", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "75729", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "79140", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "79140", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "81788", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "81788", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "113591", + cordinates: "Point(3.541 50.1059)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192181", + visitors: "113591", + cordinates: "Point(3.540875 50.106439)", + locationLabel: "Matisse museum", + }, + { + location: "http://www.wikidata.org/entity/Q1908321", + cordinates: "Point(51.41972222 25.31055556)", + locationLabel: "Mathaf", + }, + { + location: "http://www.wikidata.org/entity/Q1322278", + visitors: "50000", + cordinates: "Point(44.52113 40.19207)", + locationLabel: "Matenadaran", + }, + { + location: "http://www.wikidata.org/entity/Q588474", + cordinates: "Point(-73.116389 42.701389)", + locationLabel: "Massachusetts Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11545519", + cordinates: "Point(135.392111 34.494639)", + locationLabel: "Masaki Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6781199", + cordinates: "Point(-120.863333 45.677778)", + locationLabel: "Maryhill Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1906417", + cordinates: "Point(-87.6727 42.0524)", + locationLabel: "Mary and Leigh Block Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11367991", + cordinates: "Point(133.792103 34.291225)", + locationLabel: "Marugame-shi Inokuma Gen'ichirō Gendai Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q1710909", + cordinates: "Point(15.7085997 45.8003478)", + locationLabel: "Marton Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85817484", + cordinates: "Point(-3.173724 51.485408)", + locationLabel: "Martin Tinney Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q85547822", + cordinates: "Point(-75.508585651 40.596740983)", + locationLabel: "Martin Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q106538328", + cordinates: "Point(4.268138888 50.651361111)", + locationLabel: "Marthe Donas Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6774235", + cordinates: "Point(-81.755 24.551944)", + locationLabel: "Martello Gallery-Key West Art and Historical Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6773689", + cordinates: "Point(-83.9637 43.5145)", + locationLabel: "Marshall M. Fredericks Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17615282", + cordinates: "Point(4.28472 51.49556)", + locationLabel: "Markiezenhof", + }, + { + location: "http://www.wikidata.org/entity/Q17615282", + cordinates: "Point(4.28471 51.49584)", + locationLabel: "Markiezenhof", + }, + { + location: "http://www.wikidata.org/entity/Q6770689", + cordinates: "Point(-6.972359 54.247513)", + locationLabel: "Market House, Monaghan", + }, + { + location: "http://www.wikidata.org/entity/Q913040", + cordinates: "Point(11.249787 43.772015)", + locationLabel: "Marino Marini Museum", + }, + { + location: "http://www.wikidata.org/entity/Q913040", + cordinates: "Point(11.25 43.7718)", + locationLabel: "Marino Marini Museum", + }, + { + location: "http://www.wikidata.org/entity/Q913040", + cordinates: "Point(11.249839 43.77207)", + locationLabel: "Marino Marini Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6763409", + cordinates: "Point(23.7696 37.979799)", + locationLabel: "Marika Kotopouli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q65069806", + cordinates: "Point(-84.549353 33.951313)", + locationLabel: "Marietta/Cobb Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q13815394", + cordinates: "Point(3.4979 51.56379)", + locationLabel: "Marie Tak van Poortvliet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4893794", + cordinates: "Point(1.8125 41.235)", + locationLabel: "Maricel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28128559", + cordinates: "Point(-118.32363333 34.06219167)", + locationLabel: "Marciano Art Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q1995542", + cordinates: "Point(30.19083333 55.20055556)", + locationLabel: "Marc Chagall Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56378200", + cordinates: "Point(34.974338 32.830352)", + locationLabel: "Marc Chagall Artists’ House, Haifa", + }, + { + location: "http://www.wikidata.org/entity/Q1270251", + cordinates: "Point(8.773141 50.808738)", + locationLabel: "Marburger Kunstverein", + }, + { + location: "http://www.wikidata.org/entity/Q17536001", + cordinates: "Point(-1.49206 53.382)", + locationLabel: "Mappin Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6751622", + cordinates: "Point(-82.5414 40.7467)", + locationLabel: "Mansfield Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q6750607", + cordinates: "Point(151.281 -33.7985)", + locationLabel: "Manly Art Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q77316643", + cordinates: "Point(-83.825441 34.297933)", + locationLabel: "Manhattan Gallery, Brenau University Downtown Center", + }, + { + location: "http://www.wikidata.org/entity/Q572206", + cordinates: "Point(19.93151667 50.05079444)", + locationLabel: "Manggha", + }, + { + location: "http://www.wikidata.org/entity/Q22119727", + cordinates: "Point(139.15166667 35.14444444)", + locationLabel: "Manazuru Chōritsu Nakagawa Kazumasa Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q14705726", + cordinates: "Point(-74.0705 40.7371)", + locationLabel: "Mana Contemporary", + }, + { + location: "http://www.wikidata.org/entity/Q633078", + cordinates: "Point(12.998888888 55.595555555)", + locationLabel: "Malmö Konsthall", + }, + { + location: "http://www.wikidata.org/entity/Q2791306", + cordinates: "Point(12.9869 55.6047)", + locationLabel: "Malmö Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q64995658", + cordinates: "Point(23.75152778 61.49175)", + locationLabel: "Malkki Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3905092", + cordinates: "Point(9.1581189 45.1907539)", + locationLabel: "Malaspina Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105943", + cordinates: "Point(-3.742431 53.301095)", + locationLabel: "Makin' Magic Fractal Art", + }, + { + location: "http://www.wikidata.org/entity/Q16548815", + cordinates: "Point(16.929567 52.408189)", + locationLabel: "Main Building of the National Museum in Poznań", + }, + { + location: "http://www.wikidata.org/entity/Q18343213", + cordinates: "Point(-79.16992 37.43919)", + locationLabel: "Maier Museum of Art at Randolph College", + }, + { + location: "http://www.wikidata.org/entity/Q3917566", + cordinates: "Point(30.33838 53.908096)", + locationLabel: "Mahiloŭ Regional Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6731353", + cordinates: "Point(-122.248 37.8592)", + locationLabel: "Magnes Collection of Jewish Art and Life", + }, + { + location: "http://www.wikidata.org/entity/Q10575219", + cordinates: "Point(18.11773056 59.3415)", + locationLabel: "Magasin III", + }, + { + location: "http://www.wikidata.org/entity/Q6728061", + cordinates: "Point(-83.466633 33.595242)", + locationLabel: "Madison Museum of Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q11342307", + cordinates: "Point(138.80436111 37.10941667)", + locationLabel: "Madhubani art", + }, + { + location: "http://www.wikidata.org/entity/Q3150078", + cordinates: "Point(-84.615278 45.851111)", + locationLabel: "Mackinac Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11578302", + cordinates: "Point(139.455 35.54416667)", + locationLabel: "Machida City Museum of Graphic Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3556658", + cordinates: "Point(22.9548 40.6272)", + locationLabel: "Macedonian Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q15913647", + cordinates: "Point(113.554 22.19032)", + locationLabel: "Macau Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6722061", + cordinates: "Point(-93.1957 43.1493)", + locationLabel: "MacNider Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6722000", + cordinates: "Point(-79.685 44.3901)", + locationLabel: "MacLaren Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7052540", + cordinates: "Point(-104.617 50.425)", + locationLabel: "MacKenzie Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6721375", + cordinates: "Point(-96.9537 35.3668)", + locationLabel: "Mabee-Gerrer Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "15228", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "18356", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "18553", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "20664", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "21048", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "21708", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "22096", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "24175", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "24282", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "26420", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "26664", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "26792", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "27990", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "28270", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "28974", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "30653", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q3273318", + visitors: "39900", + cordinates: "Point(3.1625 50.7244)", + locationLabel: "MUba Eugène-Leroy", + }, + { + location: "http://www.wikidata.org/entity/Q79355426", + cordinates: "Point(10.755194444 59.90575)", + locationLabel: "MUNCH", + }, + { + location: "http://www.wikidata.org/entity/Q70737471", + cordinates: "Point(-9.382001 38.803283)", + locationLabel: "MU.SA - Museu de Artes de Sintra", + }, + { + location: "http://www.wikidata.org/entity/Q18919067", + cordinates: "Point(-3.8238 53.321)", + locationLabel: "MOSTYN", + }, + { + location: "http://www.wikidata.org/entity/Q6717045", + cordinates: "Point(-3.8524 52.5916)", + locationLabel: "MOMA Wales", + }, + { + location: "http://www.wikidata.org/entity/Q22120627", + cordinates: "Point(139.86491667 35.94280556)", + locationLabel: "MOGI-HONKE MUSEUM OF ART", + }, + { + location: "http://www.wikidata.org/entity/Q11787222", + cordinates: "Point(19.961111111 50.047777777)", + locationLabel: "MOCAK, Museum of Contemporary Art in Kraków", + }, + { + location: "http://www.wikidata.org/entity/Q843638", + cordinates: "Point(139.075204 35.109313)", + locationLabel: "MOA Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18325982", + cordinates: "Point(-80.189581 25.780295)", + locationLabel: "MDC Museum of Art + Design", + }, + { + location: "http://www.wikidata.org/entity/Q1881229", + cordinates: "Point(12.46648 41.92807)", + locationLabel: "MAXXI – National Museum of the 21st Century Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1881229", + cordinates: "Point(12.468314 41.928467)", + locationLabel: "MAXXI – National Museum of the 21st Century Arts", + }, + { + location: "http://www.wikidata.org/entity/Q25053829", + cordinates: "Point(-77.022877305 -12.154090388)", + locationLabel: "MATE - Museo Mario Testino", + }, + { + location: "http://www.wikidata.org/entity/Q3329535", + cordinates: "Point(6.1375 46.19877)", + locationLabel: "MAMCO", + }, + { + location: "http://www.wikidata.org/entity/Q1808336", + cordinates: "Point(-58.4037 -34.577484)", + locationLabel: "MALBA", + }, + { + location: "http://www.wikidata.org/entity/Q1808336", + cordinates: "Point(-58.40336111 -34.57722222)", + locationLabel: "MALBA", + }, + { + location: "http://www.wikidata.org/entity/Q11694572", + cordinates: "Point(-0.054063 40.113888)", + locationLabel: + "MACVAC Vicente Aguilera Cerni Museum of Contemporary Art. Villafamés", + }, + { + location: "http://www.wikidata.org/entity/Q32136725", + cordinates: "Point(8.011891 45.347661)", + locationLabel: "MACAM", + }, + { + location: "http://www.wikidata.org/entity/Q59541543", + cordinates: "Point(-79.02241 48.237056)", + locationLabel: "MA Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4381425", + cordinates: "Point(23.91138889 54.9)", + locationLabel: "M. K. Čiurlionis National Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1198586", + cordinates: "Point(-122.468611 37.7713)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1198586", + cordinates: "Point(-122.468573 37.77133)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1198586", + cordinates: "Point(-122.46861 37.77138)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1198586", + cordinates: "Point(-122.468611 37.771389)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1198586", + cordinates: "Point(-122.46861 37.77139)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1344112", + cordinates: "Point(-122.468611 37.7713)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1344112", + cordinates: "Point(-122.468573 37.77133)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1344112", + cordinates: "Point(-122.46861 37.77138)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1344112", + cordinates: "Point(-122.468611 37.771389)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1470276", + visitors: "1344112", + cordinates: "Point(-122.46861 37.77139)", + locationLabel: "M. H. de Young Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10851500", + cordinates: "Point(114.159645 22.300958)", + locationLabel: "M+", + }, + { + location: "http://www.wikidata.org/entity/Q18346768", + cordinates: "Point(21.483333333 61.140833333)", + locationLabel: "Lönnström Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6709449", + cordinates: "Point(-75.1403 40.0752)", + locationLabel: "Lynnewood Hall", + }, + { + location: "http://www.wikidata.org/entity/Q96205518", + cordinates: "Point(-118.357555603 34.063445666)", + locationLabel: "Lynda and Stewart Resnick Exhibition Pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q14714982", + cordinates: "Point(-72.1072 41.3737)", + locationLabel: "Lyman Allyn Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2391444", + cordinates: "Point(24.02530833 49.83701667)", + locationLabel: "Lviv National Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q106407103", + cordinates: "Point(24.02651 49.83654)", + locationLabel: "Lviv Municipal Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q1411180", + cordinates: "Point(2.334028 48.848611)", + locationLabel: "Luxembourg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10567083", + cordinates: "Point(120.43611111 24.05388889)", + locationLabel: "Lukang Folks Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q464386", + cordinates: "Point(6.10194444 50.78111111)", + locationLabel: "Ludwig Forum für Internationale Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q665311", + cordinates: "Point(8.312122 47.0506)", + locationLabel: "Lucerne Culture and Congress Centre", + }, + { + location: "http://www.wikidata.org/entity/Q6694613", + cordinates: "Point(-87.6251 41.8974)", + locationLabel: "Loyola University Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3837886", + visitors: "41000", + cordinates: "Point(-80.275657 25.719425)", + locationLabel: "Lowe Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "148270", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "353761", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "435213", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "444602", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "450324", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "491884", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q405543", + visitors: "863117", + cordinates: "Point(2.80333333 50.43055556)", + locationLabel: "Louvre-Lens", + }, + { + location: "http://www.wikidata.org/entity/Q19675", + visitors: "10200000", + cordinates: "Point(2.33575 48.861088888)", + locationLabel: "Louvre Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3176133", + cordinates: "Point(54.398472222 24.533666666)", + locationLabel: "Louvre Abu Dhabi", + }, + { + location: "http://www.wikidata.org/entity/Q1410617", + visitors: "724580", + cordinates: "Point(12.543055555 55.969444444)", + locationLabel: "Louisiana Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q3075489", + cordinates: "Point(2.26333333 48.87666667)", + locationLabel: "Louis Vuitton Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q6682279", + cordinates: "Point(-118.293851 34.100425)", + locationLabel: "Los Angeles Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1641836", + cordinates: "Point(-118.358016 34.063299)", + locationLabel: "Los Angeles County Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2110576", + cordinates: "Point(121.06279 14.58243)", + locationLabel: "Lopez Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18343204", + cordinates: "Point(-94.737704 32.494936)", + locationLabel: "Longview Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q18712414", + cordinates: "Point(121.464313 31.183945)", + locationLabel: "Long Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6672317", + cordinates: "Point(-118.165 33.7635)", + locationLabel: "Long Beach Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q57964920", + cordinates: "Point(115.539728 -31.994941)", + locationLabel: "Lomas' Cottage", + }, + { + location: "http://www.wikidata.org/entity/Q3694624", + cordinates: "Point(73.06666667 33.68333333)", + locationLabel: "Lok Virsa Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17617980", + cordinates: "Point(0.5766617 40.708995)", + locationLabel: "Lo Pati", + }, + { + location: "http://www.wikidata.org/entity/Q1739770", + cordinates: "Point(102.56027778 36.44583333)", + locationLabel: "Liuwan Museum of Ancient Painted Pottery", + }, + { + location: "http://www.wikidata.org/entity/Q56051945", + cordinates: "Point(121.4149663 31.2114886)", + locationLabel: "Liu Haisu Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85781674", + cordinates: "Point(120.310277777 23.277222222)", + locationLabel: "Liu Chi-hsiang Art Gallery and Memorial Hall", + }, + { + location: "http://www.wikidata.org/entity/Q18341795", + cordinates: "Point(-87.983627 41.65995)", + locationLabel: "Lithuanian Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1865041", + cordinates: "Point(25.29 54.68083333)", + locationLabel: "Lithuanian Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1130410", + cordinates: "Point(-6.780611 62.017444)", + locationLabel: "Listasavn Føroya", + }, + { + location: "http://www.wikidata.org/entity/Q1130410", + cordinates: "Point(-6.780556 62.0175)", + locationLabel: "Listasavn Føroya", + }, + { + location: "http://www.wikidata.org/entity/Q3867849", + cordinates: "Point(9.234556 45.60739)", + locationLabel: "Lissone Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2368947", + cordinates: "Point(-7.933 52.139)", + locationLabel: "Lismore Castle", + }, + { + location: "http://www.wikidata.org/entity/Q50762402", + cordinates: "Point(19.615365 49.083615)", + locationLabel: "Liptov Gallery of Peter Michal Bohúň", + }, + { + location: "http://www.wikidata.org/entity/Q15242423", + cordinates: "Point(121.615 25.04027778)", + locationLabel: "Lingnan Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q878678", + cordinates: "Point(12.4449 50.9919)", + locationLabel: "Lindenau-Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6549248", + cordinates: "Point(-8.628464 52.658885)", + locationLabel: "Limerick City Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6033913", + cordinates: "Point(-77.036969611 -12.060445694)", + locationLabel: "Lima Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3133600", + cordinates: "Point(10.46388889 61.11555556)", + locationLabel: "Lillehammer Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1640397", + cordinates: "Point(18.09611111 59.32555556)", + locationLabel: "Liljevalchs konsthall", + }, + { + location: "http://www.wikidata.org/entity/Q92100105", + cordinates: "Point(19.086613 47.507133)", + locationLabel: "Liget Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q15242331", + cordinates: "Point(-1.5627 53.1212)", + locationLabel: "Life in a Lens Museum of Photography & Old Times", + }, + { + location: "http://www.wikidata.org/entity/Q1824069", + cordinates: "Point(16.3594 48.2225)", + locationLabel: "Liechtenstein Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1823966", + cordinates: "Point(8.67167 50.1019)", + locationLabel: "Liebieghaus", + }, + { + location: "http://www.wikidata.org/entity/Q876487", + cordinates: "Point(13.165 52.4289)", + locationLabel: "Liebermann Villa", + }, + { + location: "http://www.wikidata.org/entity/Q46798718", + cordinates: "Point(25.2959127 53.8916047)", + locationLabel: "Lida Historical and Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11097012", + cordinates: "Point(121.37286111 24.93055556)", + locationLabel: "Li Mei-shu Memorial Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6536591", + cordinates: "Point(-8.490321 51.894738)", + locationLabel: "Lewis Glucksman Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q71686186", + cordinates: "Point(10.896036 48.365904)", + locationLabel: "Lettl Collection", + }, + { + location: "http://www.wikidata.org/entity/Q1547286", + cordinates: "Point(2.33333333 48.86305556)", + locationLabel: "Les Arts Décoratifs", + }, + { + location: "http://www.wikidata.org/entity/Q600801", + cordinates: "Point(6.47933 50.8015)", + locationLabel: "Leopold-Hoesch-Museum", + }, + { + location: "http://www.wikidata.org/entity/Q59435", + cordinates: "Point(16.358888888 48.2025)", + locationLabel: "Leopold Museum", + }, + { + location: "http://www.wikidata.org/entity/Q77316620", + cordinates: "Point(-83.824309 34.303649)", + locationLabel: + "Leo Castelli Gallery, John S. Burd Center for the Performing Arts", + }, + { + location: "http://www.wikidata.org/entity/Q6523409", + cordinates: "Point(-96.7044 40.8156)", + locationLabel: "Lentz Center for Asian Culture", + }, + { + location: "http://www.wikidata.org/entity/Q686531", + cordinates: "Point(14.2894 48.3086)", + locationLabel: "Lentos Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q262234", + cordinates: "Point(11.563611111 48.146944444)", + locationLabel: "Lenbachhaus", + }, + { + location: "http://www.wikidata.org/entity/Q58493364", + cordinates: "Point(174.0699876 -39.0587418)", + locationLabel: "Len Lye Centre", + }, + { + location: "http://www.wikidata.org/entity/Q6519762", + cordinates: "Point(-0.203089 51.4986)", + locationLabel: "Leighton House Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6519707", + cordinates: "Point(-89.613 44.962)", + locationLabel: "Leigh Yawkey Woodson Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1888708", + cordinates: "Point(6.179513888 51.375047222)", + locationLabel: "Lei Alberigs Museumkapel", + }, + { + location: "http://www.wikidata.org/entity/Q315753", + cordinates: "Point(6.766111 51.430278)", + locationLabel: "Lehmbruck Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2468251", + visitors: "177608", + cordinates: "Point(-122.501111111 37.783888888)", + locationLabel: "Legion of Honor", + }, + { + location: "http://www.wikidata.org/entity/Q2468251", + visitors: "302175", + cordinates: "Point(-122.501111111 37.783888888)", + locationLabel: "Legion of Honor", + }, + { + location: "http://www.wikidata.org/entity/Q18347243", + cordinates: "Point(-0.14458 51.5107)", + locationLabel: "Lefevre Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18347243", + cordinates: "Point(-0.13656 51.50684)", + locationLabel: "Lefevre Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6516373", + cordinates: "Point(-82.7465 28.1217)", + locationLabel: "Leepa-Rattner Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6515835", + cordinates: "Point(-1.5481 53.8001)", + locationLabel: "Leeds Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11522528", + cordinates: "Point(133.988889 34.448889)", + locationLabel: "Lee Ufan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56676165", + cordinates: "Point(120.968201 24.801399)", + locationLabel: "Lee Tze-Fan Memorial Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6509800", + cordinates: "Point(-105.2133 40.065)", + locationLabel: "Leanin' Tree Museum of Western Art", + }, + { + location: "http://www.wikidata.org/entity/Q28495912", + cordinates: "Point(0.00222 43.23333)", + locationLabel: "Le Parvis", + }, + { + location: "http://www.wikidata.org/entity/Q3221735", + cordinates: "Point(5.04139 47.3217)", + locationLabel: "Le Consortium", + }, + { + location: "http://www.wikidata.org/entity/Q66685222", + cordinates: "Point(115.816334 -31.976964)", + locationLabel: "Lawrence Wilson Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q22673226", + cordinates: "Point(24.923278055 60.176265)", + locationLabel: "Lauri and Lasse Reitz Foundation Museum", + }, + { + location: "http://www.wikidata.org/entity/Q65115347", + cordinates: "Point(-88.278646 42.041123)", + locationLabel: "Laura Davidson Sears Academy of Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q1370465", + visitors: "208709", + cordinates: "Point(24.11309 56.95576)", + locationLabel: "Latvian National Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1954623", + cordinates: "Point(24.10598 56.94973)", + locationLabel: "Latvian Museum of Foreign Art", + }, + { + location: "http://www.wikidata.org/entity/Q6497376", + cordinates: "Point(24.10955 56.9481)", + locationLabel: "Latvian Museum of Decorative Arts and Design", + }, + { + location: "http://www.wikidata.org/entity/Q1954360", + cordinates: "Point(-46.63527778 -23.59472222)", + locationLabel: "Lasar Segall Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18346772", + cordinates: "Point(28.182972 61.064734)", + locationLabel: "Lappeenranta Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20747319", + cordinates: "Point(-76.30142 40.0411)", + locationLabel: "Lancaster Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q38250794", + cordinates: "Point(-70.95204194 42.98020028)", + locationLabel: "Lamont Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11603353", + cordinates: "Point(139.009164 35.269564)", + locationLabel: "Lalique Museum, Hakone", + }, + { + location: "http://www.wikidata.org/entity/Q6480225", + cordinates: "Point(72.33 23.2)", + locationLabel: "Lalbhai Dalpatbhai Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6475803", + cordinates: "Point(-81.6836 28.8526)", + locationLabel: "Lake Eustis Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1800739", + cordinates: "Point(-1.609 54.975)", + locationLabel: "Laing Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18346669", + cordinates: "Point(25.662436 60.983981)", + locationLabel: "Lahti Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q248268", + cordinates: "Point(-117.788 33.5436)", + locationLabel: "Laguna Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1586957", + cordinates: "Point(-2.99932 53.35576)", + locationLabel: "Lady Lever Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "33265", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "34627", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "39215", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "48346", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "78964", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "80012", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "86411", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "88762", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "118738", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "135790", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "141015", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "141081", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "151887", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "156118", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "180652", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "186774", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "190053", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q1607765", + visitors: "268655", + cordinates: "Point(3.150336 50.637444)", + locationLabel: + "LaM (Lille Métropole musée d'art moderne, d'art contemporain et d'art brut)", + }, + { + location: "http://www.wikidata.org/entity/Q87654279", + cordinates: "Point(-85.030108 33.038297)", + locationLabel: "LaGrange Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18624380", + visitors: "53470", + cordinates: "Point(-76.545331 3.45008)", + locationLabel: "La Tertulia Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18624380", + visitors: "105140", + cordinates: "Point(-76.545331 3.45008)", + locationLabel: "La Tertulia Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "99278", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "145185", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "165000", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "170528", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "177621", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "190868", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "192543", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "203819", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "206123", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "207619", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "212554", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "216657", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "219404", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "228830", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "242684", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "248984", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q1955748", + visitors: "251890", + cordinates: "Point(3.16782027 50.69229323)", + locationLabel: "La Piscine", + }, + { + location: "http://www.wikidata.org/entity/Q3821046", + cordinates: "Point(9.195382 45.47665)", + locationLabel: "La Permanente", + }, + { + location: "http://www.wikidata.org/entity/Q6463620", + cordinates: "Point(2.36778 48.8472)", + locationLabel: "La Maison Rouge", + }, + { + location: "http://www.wikidata.org/entity/Q3207947", + cordinates: "Point(-1.6796349 48.1081203)", + locationLabel: "La Criée", + }, + { + location: "http://www.wikidata.org/entity/Q1751306", + cordinates: "Point(8.87041667 46.40563889)", + locationLabel: "La Congiunta", + }, + { + location: "http://www.wikidata.org/entity/Q21511875", + cordinates: "Point(5.57738889 50.62747222)", + locationLabel: "La Boverie", + }, + { + location: "http://www.wikidata.org/entity/Q18342478", + cordinates: "Point(-91.189182 30.44768)", + locationLabel: "LSU Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q65939829", + cordinates: "Point(-118.318842 34.090752)", + locationLabel: "LAXART", + }, + { + location: "http://www.wikidata.org/entity/Q6456404", + cordinates: "Point(-70.262638 43.653864)", + locationLabel: "L. D. M. Sweat Memorial Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q84468012", + cordinates: "Point(138.276833333 35.968055555)", + locationLabel: "Kōyōdō Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3201305", + cordinates: "Point(133.09055556 34.30333333)", + locationLabel: "Kōsan-ji", + }, + { + location: "http://www.wikidata.org/entity/Q11643178", + cordinates: "Point(140.419861 37.392667)", + locationLabel: "Kōriyama City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1797142", + cordinates: "Point(10.6159 47.7767)", + locationLabel: "Künstlerhaus Marktoberdorf", + }, + { + location: "http://www.wikidata.org/entity/Q319255", + cordinates: "Point(6.94671944 50.93665)", + locationLabel: "Käthe Kollwitz Museum Köln", + }, + { + location: "http://www.wikidata.org/entity/Q12323287", + visitors: "17939", + cordinates: "Point(12.1834 55.4588)", + locationLabel: "KØS - Museum for kunst i det offentlige rum", + }, + { + location: "http://www.wikidata.org/entity/Q6452794", + cordinates: "Point(129.896754 33.188834)", + locationLabel: "Kyushu Ceramic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11375242", + cordinates: "Point(135.726056 35.035139)", + locationLabel: "Kyoto Prefectural Insho-Domoto Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330657", + cordinates: "Point(135.78356944 35.01283611)", + locationLabel: "Kyoto Municipal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18336820", + cordinates: "Point(135.771583 35.04875)", + locationLabel: "Kyoto Graeco-Roman Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11374199", + cordinates: "Point(135.75072222 34.94683333)", + locationLabel: "Kyocera Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3398581", + cordinates: "Point(30.514934 50.442235)", + locationLabel: "Kyiv National Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q106102213", + cordinates: "Point(-135.05274 60.7248)", + locationLabel: "Kwanlin Dün Cultural Centre", + }, + { + location: "http://www.wikidata.org/entity/Q47461613", + cordinates: "Point(136.9535 35.1484)", + locationLabel: "Kuwayama Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q47461613", + cordinates: "Point(136.953594 35.148403)", + locationLabel: "Kuwayama Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11648286", + cordinates: "Point(144.386 42.978028)", + locationLabel: "Kushiro Shiritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11402997", + cordinates: "Point(144.379806 42.982722)", + locationLabel: "Kushiro Art Museum, Hokkaido", + }, + { + location: "http://www.wikidata.org/entity/Q874724", + cordinates: "Point(8.70278 49.4114)", + locationLabel: "Kurpfälzisches Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11678218", + cordinates: "Point(135.309194 34.7625)", + locationLabel: "Kurokawa Kobunka Kenkyūjo", + }, + { + location: "http://www.wikidata.org/entity/Q11678066", + cordinates: "Point(136.267083 35.380667)", + locationLabel: "Kurokabe Glass Shop", + }, + { + location: "http://www.wikidata.org/entity/Q11536081", + cordinates: "Point(139.521625 36.31667778)", + locationLabel: "Kurita Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27894560", + cordinates: "Point(-99.1876 19.4114)", + locationLabel: "Kurimanzutto", + }, + { + location: "http://www.wikidata.org/entity/Q11416750", + cordinates: "Point(132.56361111 34.24)", + locationLabel: "Kure Shiritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11386746", + cordinates: "Point(133.768944 34.594694)", + locationLabel: "Kurashiki City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q555946", + cordinates: "Point(13.367 52.5084)", + locationLabel: "Kupferstichkabinett Berlin", + }, + { + location: "http://www.wikidata.org/entity/Q11873586", + cordinates: "Point(27.682778 62.891944)", + locationLabel: "Kuopio Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q21476655", + cordinates: "Point(26.51707222 63.096425)", + locationLabel: "Kuntsi museum for modern art", + }, + { + location: "http://www.wikidata.org/entity/Q15130656", + cordinates: "Point(12.489733 50.725817)", + locationLabel: "Kunstsammlungen der Städtischen Museen Zwickau", + }, + { + location: "http://www.wikidata.org/entity/Q2290655", + cordinates: "Point(7.18948 51.4483)", + locationLabel: "Kunstsammlung der Ruhr-Universität Bochum: Situation Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q548427", + cordinates: "Point(6.77555556 51.22722222)", + locationLabel: "Kunstsammlung Nordrhein-Westfalen", + }, + { + location: "http://www.wikidata.org/entity/Q1724627", + cordinates: "Point(13.2564 53.5553)", + locationLabel: "Kunstsammlung Neubrandenburg", + }, + { + location: "http://www.wikidata.org/entity/Q994151", + cordinates: "Point(11.588324813 50.928520036)", + locationLabel: "Kunstsammlung Jena", + }, + { + location: "http://www.wikidata.org/entity/Q1792599", + cordinates: "Point(10.3398 47.1481)", + locationLabel: "Kunstraum Pettneu", + }, + { + location: "http://www.wikidata.org/entity/Q1792590", + cordinates: "Point(7.47331 51.3557)", + locationLabel: "Kunstquartier Hagen", + }, + { + location: "http://www.wikidata.org/entity/Q1772519", + cordinates: "Point(10.7306 59.9193)", + locationLabel: "Kunstnernes Hus", + }, + { + location: "http://www.wikidata.org/entity/Q1792557", + cordinates: "Point(8.86691 47.58355)", + locationLabel: "Kunstmuseum des Kantons Thurgau", + }, + { + location: "http://www.wikidata.org/entity/Q1792556", + cordinates: "Point(10.7853 52.4187)", + locationLabel: "Kunstmuseum Wolfsburg", + }, + { + location: "http://www.wikidata.org/entity/Q317398", + visitors: "161000", + cordinates: "Point(9.17775 48.7783)", + locationLabel: "Kunstmuseum Stuttgart", + }, + { + location: "http://www.wikidata.org/entity/Q317398", + visitors: "330000", + cordinates: "Point(9.17775 48.7783)", + locationLabel: "Kunstmuseum Stuttgart", + }, + { + location: "http://www.wikidata.org/entity/Q1763175", + cordinates: "Point(7.07361 51.2036)", + locationLabel: "Kunstmuseum Solingen", + }, + { + location: "http://www.wikidata.org/entity/Q1792548", + cordinates: "Point(9.614802 47.780107)", + locationLabel: "Kunstmuseum Ravensburg", + }, + { + location: "http://www.wikidata.org/entity/Q1792550", + cordinates: "Point(7.62635 51.9602)", + locationLabel: "Kunstmuseum Pablo Picasso Münster", + }, + { + location: "http://www.wikidata.org/entity/Q1347207", + cordinates: "Point(7.90167 47.35)", + locationLabel: "Kunstmuseum Olten", + }, + { + location: "http://www.wikidata.org/entity/Q1792543", + cordinates: "Point(8.311944444 47.050277777)", + locationLabel: "Kunstmuseum Luzern", + }, + { + location: "http://www.wikidata.org/entity/Q1792561", + cordinates: "Point(9.522528 47.139306)", + locationLabel: "Kunstmuseum Liechtenstein", + }, + { + location: "http://www.wikidata.org/entity/Q1792561", + cordinates: "Point(9.52253 47.1393)", + locationLabel: "Kunstmuseum Liechtenstein", + }, + { + location: "http://www.wikidata.org/entity/Q1792561", + cordinates: "Point(9.5225 47.13944)", + locationLabel: "Kunstmuseum Liechtenstein", + }, + { + location: "http://www.wikidata.org/entity/Q1792561", + cordinates: "Point(9.5225 47.139444)", + locationLabel: "Kunstmuseum Liechtenstein", + }, + { + location: "http://www.wikidata.org/entity/Q15824605", + cordinates: "Point(11.004912 49.593772)", + locationLabel: "Kunstmuseum Erlangen", + }, + { + location: "http://www.wikidata.org/entity/Q1792539", + cordinates: "Point(14.3388 51.7596)", + locationLabel: "Kunstmuseum Dieselkraftwerk Cottbus", + }, + { + location: "http://www.wikidata.org/entity/Q1499958", + visitors: "719000", + cordinates: "Point(4.280694 52.089389)", + locationLabel: "Kunstmuseum Den Haag", + }, + { + location: "http://www.wikidata.org/entity/Q1792540", + cordinates: "Point(10.0794 52.6241)", + locationLabel: "Kunstmuseum Celle", + }, + { + location: "http://www.wikidata.org/entity/Q15907275", + cordinates: "Point(8.58173 53.54048)", + locationLabel: "Kunstmuseum Bremerhaven", + }, + { + location: "http://www.wikidata.org/entity/Q12323135", + visitors: "95267", + cordinates: "Point(10.3808 55.396)", + locationLabel: "Kunstmuseum Brandts", + }, + { + location: "http://www.wikidata.org/entity/Q318859", + cordinates: "Point(7.121028 50.715056)", + locationLabel: "Kunstmuseum Bonn", + }, + { + location: "http://www.wikidata.org/entity/Q194626", + cordinates: "Point(7.594167 47.554167)", + locationLabel: "Kunstmuseum Basel", + }, + { + location: "http://www.wikidata.org/entity/Q1954467", + cordinates: "Point(9.411478 47.328178)", + locationLabel: "Kunstmuseum Appenzell", + }, + { + location: "http://www.wikidata.org/entity/Q18410545", + cordinates: "Point(12.415921 54.3751)", + locationLabel: "Kunstmuseum Ahrenshoop", + }, + { + location: "http://www.wikidata.org/entity/Q95569", + visitors: "1400000", + cordinates: "Point(16.361666666 48.203611111)", + locationLabel: "Kunsthistorisches Museum", + }, + { + location: "http://www.wikidata.org/entity/Q685038", + cordinates: "Point(8.548056 47.370278)", + locationLabel: "Kunsthaus Zürich", + }, + { + location: "http://www.wikidata.org/entity/Q18410543", + cordinates: "Point(8.517413 47.164907)", + locationLabel: "Kunsthaus Zug", + }, + { + location: "http://www.wikidata.org/entity/Q571421", + cordinates: "Point(13.388611111 52.525555555)", + locationLabel: "Kunsthaus Tacheles", + }, + { + location: "http://www.wikidata.org/entity/Q20480860", + cordinates: "Point(10.799166666 51.509166666)", + locationLabel: "Kunsthaus Meyenburg", + }, + { + location: "http://www.wikidata.org/entity/Q1792443", + cordinates: "Point(7.789222222 47.211944444)", + locationLabel: "Kunsthaus Langenthal", + }, + { + location: "http://www.wikidata.org/entity/Q1792446", + cordinates: "Point(10.6233 47.8811)", + locationLabel: "Kunsthaus Kaufbeuren", + }, + { + location: "http://www.wikidata.org/entity/Q2752935", + cordinates: "Point(7.56528 51.8763)", + locationLabel: "Kunsthaus Kannen", + }, + { + location: "http://www.wikidata.org/entity/Q597137", + cordinates: "Point(15.434 47.0714)", + locationLabel: "Kunsthaus Graz", + }, + { + location: "http://www.wikidata.org/entity/Q1393563", + cordinates: "Point(9.071480555 47.038536111)", + locationLabel: "Kunsthaus Glarus", + }, + { + location: "http://www.wikidata.org/entity/Q50672242", + cordinates: "Point(13.273611111 52.466944444)", + locationLabel: "Kunsthaus Dahlem", + }, + { + location: "http://www.wikidata.org/entity/Q675326", + cordinates: "Point(9.74778 47.5047)", + locationLabel: "Kunsthaus Bregenz", + }, + { + location: "http://www.wikidata.org/entity/Q1792438", + cordinates: "Point(7.62319 47.54089)", + locationLabel: "Kunsthaus Baselland", + }, + { + location: "http://www.wikidata.org/entity/Q896726", + cordinates: "Point(7.20317 53.3699)", + locationLabel: "Kunsthalle in Emden", + }, + { + location: "http://www.wikidata.org/entity/Q1792425", + cordinates: "Point(8.52520278 47.38927778)", + locationLabel: "Kunsthalle Zürich", + }, + { + location: "http://www.wikidata.org/entity/Q1792425", + cordinates: "Point(8.52485 47.3894)", + locationLabel: "Kunsthalle Zürich", + }, + { + location: "http://www.wikidata.org/entity/Q19439354", + cordinates: "Point(9.411448 47.328216)", + locationLabel: "Kunsthalle Ziegelhütte", + }, + { + location: "http://www.wikidata.org/entity/Q1792424", + cordinates: "Point(9.73243 49.1107)", + locationLabel: "Kunsthalle Würth", + }, + { + location: "http://www.wikidata.org/entity/Q1792423", + cordinates: "Point(8.72905 47.4996)", + locationLabel: "Kunsthalle Winterthur", + }, + { + location: "http://www.wikidata.org/entity/Q677548", + cordinates: "Point(16.3592 48.2033)", + locationLabel: "Kunsthalle Wien", + }, + { + location: "http://www.wikidata.org/entity/Q1792420", + cordinates: "Point(9.99492 48.3976)", + locationLabel: "Kunsthalle Weishaupt", + }, + { + location: "http://www.wikidata.org/entity/Q509617", + visitors: "30000", + cordinates: "Point(9.04778 48.5419)", + locationLabel: "Kunsthalle Tübingen", + }, + { + location: "http://www.wikidata.org/entity/Q202481", + cordinates: "Point(12.0878 54.0986)", + locationLabel: "Kunsthalle Rostock", + }, + { + location: "http://www.wikidata.org/entity/Q468458", + cordinates: "Point(8.475278 49.482778)", + locationLabel: "Kunsthalle Mannheim", + }, + { + location: "http://www.wikidata.org/entity/Q6445033", + cordinates: "Point(20.5135 54.722)", + locationLabel: "Kunsthalle Königsberg", + }, + { + location: "http://www.wikidata.org/entity/Q1792410", + cordinates: "Point(15.5875 48.4046)", + locationLabel: "Kunsthalle Krems", + }, + { + location: "http://www.wikidata.org/entity/Q22692185", + cordinates: "Point(21.261073 48.72474)", + locationLabel: "Kunsthalle Košice", + }, + { + location: "http://www.wikidata.org/entity/Q327540", + cordinates: "Point(10.14611111 54.32861111)", + locationLabel: "Kunsthalle Kiel", + }, + { + location: "http://www.wikidata.org/entity/Q169542", + cordinates: "Point(10.00277778 53.555)", + locationLabel: "Kunsthalle Hamburg", + }, + { + location: "http://www.wikidata.org/entity/Q1792407", + cordinates: "Point(9.65611 48.71)", + locationLabel: "Kunsthalle Göppingen", + }, + { + location: "http://www.wikidata.org/entity/Q693591", + cordinates: "Point(8.813611 53.072778)", + locationLabel: "Kunsthalle Bremen", + }, + { + location: "http://www.wikidata.org/entity/Q321716", + cordinates: "Point(8.52611 52.0182)", + locationLabel: "Kunsthalle Bielefeld", + }, + { + location: "http://www.wikidata.org/entity/Q612774", + cordinates: "Point(7.44939 46.94428)", + locationLabel: "Kunsthalle Bern", + }, + { + location: "http://www.wikidata.org/entity/Q614652", + cordinates: "Point(7.590833 47.553889)", + locationLabel: "Kunsthalle Basel", + }, + { + location: "http://www.wikidata.org/entity/Q1668856", + visitors: "159140", + cordinates: "Point(4.473444444 51.910777777)", + locationLabel: "Kunsthal", + }, + { + location: "http://www.wikidata.org/entity/Q638493", + cordinates: "Point(16.3933 48.2111)", + locationLabel: "KunstHausWien", + }, + { + location: "http://www.wikidata.org/entity/Q879960", + cordinates: "Point(7.12203 50.7142)", + locationLabel: + "Kunst- und Ausstellungshalle der Bundesrepublik Deutschland", + }, + { + location: "http://www.wikidata.org/entity/Q1792324", + cordinates: "Point(6.76678 51.2199)", + locationLabel: "Kunst im Tunnel", + }, + { + location: "http://www.wikidata.org/entity/Q689829", + cordinates: "Point(8.729 47.5004)", + locationLabel: "Kunst Museum Winterthur", + }, + { + location: "http://www.wikidata.org/entity/Q61355465", + cordinates: "Point(9.36924 55.06553)", + locationLabel: "Kunst Museum Panbo", + }, + { + location: "http://www.wikidata.org/entity/Q1316490", + cordinates: "Point(11.162409 46.671505)", + locationLabel: "Kunst Meran/Merano Arte", + }, + { + location: "http://www.wikidata.org/entity/Q919611", + cordinates: "Point(24.796388888 59.436388888)", + locationLabel: "Kumu", + }, + { + location: "http://www.wikidata.org/entity/Q6443836", + cordinates: "Point(126.977697 37.5774224)", + locationLabel: "Kumho Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11369635", + cordinates: "Point(139.714694 35.634556)", + locationLabel: "Kume Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q20497589", + cordinates: "Point(21.720555555 42.137222222)", + locationLabel: "Kumanovo Icon Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q47069503", + cordinates: "Point(21.717055555 42.136805555)", + locationLabel: "Kumanovo Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4556482", + cordinates: "Point(130.70052778 32.80752778)", + locationLabel: "Kumamoto Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11368866", + cordinates: "Point(132.906739 33.66205)", + locationLabel: "Kuma Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11417787", + cordinates: "Point(135.453389 34.445056)", + locationLabel: "Kubosō Memorial Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q14608064", + cordinates: "Point(121.47138889 25.13333333)", + locationLabel: "Kuandu Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1051928", + visitors: "307000", + cordinates: "Point(5.816944444 52.095833333)", + locationLabel: "Kröller-Müller Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10549262", + cordinates: "Point(14.08555556 59.32694444)", + locationLabel: "Kristinehamns konstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q688659", + cordinates: "Point(14.1289689 48.0544976)", + locationLabel: "Kremsmünster Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q1787100", + cordinates: "Point(-77.089117 38.921814)", + locationLabel: "Kreeger Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1787100", + cordinates: "Point(-77.088828 38.921861)", + locationLabel: "Kreeger Museum", + }, + { + location: "http://www.wikidata.org/entity/Q386517", + cordinates: "Point(12.5467 54.3005)", + locationLabel: "Kranich Museum", + }, + { + location: "http://www.wikidata.org/entity/Q31898847", + cordinates: "Point(17.777767 62.9317)", + locationLabel: "Kramfors konsthall", + }, + { + location: "http://www.wikidata.org/entity/Q11463703", + cordinates: "Point(138.414944 36.328139)", + locationLabel: "Koyama Keizo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4238532", + cordinates: "Point(38.96776667 45.01763889)", + locationLabel: "Kovalenko Krasnodar Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11667775", + cordinates: "Point(135.256111 34.724167)", + locationLabel: "Kosetsu Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q21019672", + cordinates: "Point(135.750807 35.054292)", + locationLabel: "Koryo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q16889941", + cordinates: "Point(125.75389 39.01833)", + locationLabel: "Korean Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6431745", + cordinates: "Point(127.0347 37.5893)", + locationLabel: "Korea University Museum", + }, + { + location: "http://www.wikidata.org/entity/Q61556891", + cordinates: "Point(21.014727777 52.242630555)", + locationLabel: "Kordegarda Art Gallery in Warsaw", + }, + { + location: "http://www.wikidata.org/entity/Q86106488", + cordinates: "Point(-3.17558 51.486526)", + locationLabel: "Kooywood Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q50632603", + cordinates: "Point(4.3029986 52.081555)", + locationLabel: "Koninklijke verzamelingen", + }, + { + location: "http://www.wikidata.org/entity/Q1471477", + visitors: "153214", + cordinates: "Point(4.39472 51.20833)", + locationLabel: "Koninklijk Museum voor Schone Kunsten Antwerpen", + }, + { + location: "http://www.wikidata.org/entity/Q16580240", + cordinates: "Point(18.8965 49.5787)", + locationLabel: "Konarzewski Family Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q46810531", + cordinates: "Point(50.842394 61.669492)", + locationLabel: "Komi National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1621165", + cordinates: "Point(6.954278055 50.938416944)", + locationLabel: "Kolumba", + }, + { + location: "http://www.wikidata.org/entity/Q1115292", + cordinates: "Point(19.033166666 47.503666666)", + locationLabel: "Koller Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11396893", + cordinates: "Point(141.131694 39.275028)", + locationLabel: "Kojin Toneyama Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3788661", + cordinates: "Point(139.75194444 35.70888889)", + locationLabel: "Koishikawa Ukiyo-e Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3788846", + cordinates: "Point(139.72502778 35.714)", + locationLabel: "Kodansha Noma Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11460717", + cordinates: "Point(139.47555556 35.71797222)", + locationLabel: "Kodaira Hirakushi Denchu Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11228060", + cordinates: "Point(135.193722 34.688611)", + locationLabel: "Kobe Lampwork Glass Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11589817", + cordinates: "Point(135.191536 34.701258)", + locationLabel: "Kobe Kitano Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330666", + cordinates: "Point(135.19305556 34.68722222)", + locationLabel: "Kobe City Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11589991", + cordinates: "Point(135.267194 34.692806)", + locationLabel: "Kobe City Koiso Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11589726", + cordinates: "Point(135.270639 34.688333)", + locationLabel: "Kobe Artists Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11461452", + cordinates: "Point(138.255197222 37.111727777)", + locationLabel: "Kobayashi Kokei Memorial Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6423681", + cordinates: "Point(-83.9253 35.9625)", + locationLabel: "Knoxville Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6421482", + cordinates: "Point(-78.4425 38.0256)", + locationLabel: "Kluge-Ruhe Aboriginal Art Collection", + }, + { + location: "http://www.wikidata.org/entity/Q6421422", + cordinates: "Point(15.975 45.81527778)", + locationLabel: "Klovićevi dvori", + }, + { + location: "http://www.wikidata.org/entity/Q477462", + cordinates: "Point(35.22345 62.06767)", + locationLabel: "Kizhi Pogost", + }, + { + location: "http://www.wikidata.org/entity/Q11561458", + cordinates: "Point(136.840758 35.235508)", + locationLabel: "Kiyosu City Haruhi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5421529", + cordinates: "Point(138.4321 35.883044)", + locationLabel: "Kiyosato Museum of Photographic Arts", + }, + { + location: "http://www.wikidata.org/entity/Q17213428", + cordinates: "Point(135.781278 34.997417)", + locationLabel: "Kiyomizu Sannenzaka Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11560662", + cordinates: "Point(138.35327778 35.82258333)", + locationLabel: "Kiyoharu Shirakaba Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11403773", + cordinates: "Point(138.111722 36.055806)", + locationLabel: "Kitazawa Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q63565237", + cordinates: "Point(138.252778 36.617722)", + locationLabel: "Kitano Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11402029", + cordinates: "Point(135.770361 35.028)", + locationLabel: "Kitamura Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3297769", + cordinates: "Point(130.826527777 33.869861111)", + locationLabel: "Kitakyushu Municipal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q29917905", + cordinates: "Point(8.957754 57.075606)", + locationLabel: "Kirsten Kjærs Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22670950", + cordinates: "Point(24.926965 60.177686)", + locationLabel: "Kirpilä Art Collection", + }, + { + location: "http://www.wikidata.org/entity/Q6415618", + cordinates: "Point(-3.166 56.1123)", + locationLabel: "Kirkcaldy Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1743358", + cordinates: "Point(9.826745 46.80015)", + locationLabel: "Kirchner Museum Davos", + }, + { + location: "http://www.wikidata.org/entity/Q27479816", + cordinates: "Point(8.19021 47.20598)", + locationLabel: "Kirchenschatz (Beromünster)", + }, + { + location: "http://www.wikidata.org/entity/Q99673823", + cordinates: "Point(135.830138888 35.027222222)", + locationLabel: "Kinoshita Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11426144", + cordinates: "Point(134.800639 35.625056)", + locationLabel: "Kinosaki Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106268", + cordinates: "Point(-4.303839 51.857824)", + locationLabel: "King Street Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q28669360", + cordinates: "Point(138.544722194 37.359722194)", + locationLabel: "Kimura Tea Ceremony Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1741629", + cordinates: "Point(-97.365277777 32.748333333)", + locationLabel: "Kimbell Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1633361", + cordinates: "Point(24.936944444 60.171666666)", + locationLabel: "Kiasma", + }, + { + location: "http://www.wikidata.org/entity/Q20518098", + cordinates: "Point(44.294588888 40.162075)", + locationLabel: "Khoren Ter-Harutyan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12166932", + cordinates: "Point(36.236388888 49.998333333)", + locationLabel: "Kharkiv Municipal Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1739999", + cordinates: "Point(0.1141 52.2109)", + locationLabel: "Kettle's Yard", + }, + { + location: "http://www.wikidata.org/entity/Q6395279", + cordinates: "Point(-3.1329 54.6031)", + locationLabel: "Keswick Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q565375", + cordinates: "Point(9.73167 52.3775)", + locationLabel: "Kestnergesellschaft", + }, + { + location: "http://www.wikidata.org/entity/Q1739162", + cordinates: "Point(13.304 52.5172)", + locationLabel: "Keramik-Museum Berlin", + }, + { + location: "http://www.wikidata.org/entity/Q28153754", + cordinates: "Point(76.31434 10.03814)", + locationLabel: "Kerala Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6392315", + cordinates: "Point(-85.7623 38.2575)", + locationLabel: "Kentucky Museum of Art and Craft", + }, + { + location: "http://www.wikidata.org/entity/Q6392255", + cordinates: "Point(-83.4331 38.1817)", + locationLabel: "Kentucky Folk Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q14704420", + cordinates: "Point(-94.58531 39.0465)", + locationLabel: "Kemper Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q11870877", + cordinates: "Point(24.5575 65.735833)", + locationLabel: "Kemi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q47011667", + cordinates: "Point(86.0821677 55.3563455)", + locationLabel: "Kemerovo Oblast Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1061094", + visitors: "1037594", + cordinates: "Point(-4.290636382 55.868608412)", + locationLabel: "Kelvingrove Art Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q59508809", + cordinates: "Point(-119.496329 49.891322)", + locationLabel: "Kelowna Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q25491675", + cordinates: "Point(100.36555556 6.11877778)", + locationLabel: "Kedah State Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18707417", + cordinates: "Point(19.694999 46.908558)", + locationLabel: "Kecskemét Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12298605", + cordinates: "Point(25.394722222 42.621111111)", + locationLabel: "Kazanlak Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11554289", + cordinates: "Point(139.693425 35.81582222)", + locationLabel: "Kawanabe Kyōsai Kinen Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q6379617", + cordinates: "Point(140.22137 35.65325)", + locationLabel: "Kawamura Memorial DIC Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3329567", + cordinates: "Point(138.770555555 35.519166666)", + locationLabel: "Kawaguchiko Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11553670", + cordinates: "Point(138.768611111 35.522222222)", + locationLabel: "Kawaguchi-ko Music Forest", + }, + { + location: "http://www.wikidata.org/entity/Q11479242", + cordinates: "Point(139.490806 35.925833)", + locationLabel: "Kawagoe City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6379041", + cordinates: "Point(24.41286667 40.93760833)", + locationLabel: "Kavala Municipal Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6376352", + cordinates: "Point(-93.2422 44.9692)", + locationLabel: "Katherine E. Nash Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3370686", + cordinates: "Point(12.6383 55.6346)", + locationLabel: "Kastrupgård", + }, + { + location: "http://www.wikidata.org/entity/Q2127133", + cordinates: "Point(5.89177 50.83024)", + locationLabel: "Kasteel Wijlre estate", + }, + { + location: "http://www.wikidata.org/entity/Q28690114", + cordinates: "Point(132.17486111 34.17138889)", + locationLabel: "Kashiwabara Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11599987", + cordinates: "Point(140.25844 36.38446)", + locationLabel: "Kasama Nichido Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11637569", + cordinates: "Point(138.597417 36.32675)", + locationLabel: "Karuizawa Museum of Picture Books", + }, + { + location: "http://www.wikidata.org/entity/Q11396288", + cordinates: "Point(137.005556 34.985556)", + locationLabel: "Kariya City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105899", + cordinates: "Point(-4.203098 53.104437)", + locationLabel: "Karen Jones Artist", + }, + { + location: "http://www.wikidata.org/entity/Q3846600", + cordinates: "Point(120.2863 22.6565)", + locationLabel: "Kaohsiung Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q77806445", + cordinates: "Point(138.973056 35.12)", + locationLabel: "Kannami Buddha Statues Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11647502", + cordinates: "Point(136.757444 36.485972)", + locationLabel: "Kanazawa Yuwaku Yumeji-kan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11647524", + cordinates: "Point(136.658056 36.561611)", + locationLabel: "Kanazawa Noh Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11647436", + cordinates: "Point(136.660556 36.558889)", + locationLabel: "Kanazawa Nakamura Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3192586", + cordinates: "Point(139.62875 35.34391)", + locationLabel: "Kanazawa Bunko", + }, + { + location: "http://www.wikidata.org/entity/Q17226489", + cordinates: "Point(136.953828 34.935039)", + locationLabel: "Kamiya Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11605497", + cordinates: "Point(136.066889 35.656278)", + locationLabel: "Kami-Warabe Museum", + }, + { + location: "http://www.wikidata.org/entity/Q24703419", + visitors: "15000", + cordinates: "Point(36.256662 54.508595)", + locationLabel: "Kaluga Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q10542825", + cordinates: "Point(16.35584167 56.660375)", + locationLabel: "Kalmar konstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q15961597", + cordinates: "Point(19.047994 47.50965)", + locationLabel: "Kalman Maklary Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1722508", + cordinates: "Point(11.6722 48.2286)", + locationLabel: "Kallmann-Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1194823", + cordinates: "Point(20.51852222 54.71375)", + locationLabel: "Kaliningrad Regional Museum of History and Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4209545", + cordinates: "Point(20.51916667 54.70838611)", + locationLabel: "Kaliningrad Oblast Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q6350390", + cordinates: "Point(-85.5879 42.2894)", + locationLabel: "Kalamazoo Institute of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q11559811", + cordinates: "Point(135.005889 34.557194)", + locationLabel: "Kakuya Oishi Museum of Art-yama", + }, + { + location: "http://www.wikidata.org/entity/Q18336747", + cordinates: "Point(133.771444 34.595722)", + locationLabel: "Kake Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11869085", + visitors: "12885", + cordinates: "Point(27.7275 64.22680556)", + locationLabel: "Kajaani Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11558989", + cordinates: "Point(136.268389 35.381194)", + locationLabel: "Kaiyodo Figure Museum Kurokabe", + }, + { + location: "http://www.wikidata.org/entity/Q18336739", + cordinates: "Point(140.27888889 38.14919444)", + locationLabel: "Kaisendo Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10854956", + cordinates: "Point(130.553361 31.595806)", + locationLabel: "Kagoshima City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11667379", + cordinates: "Point(133.824189 34.349383)", + locationLabel: "Kagawa Prefectural Higashiyama Kaii Setouchi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1792296", + cordinates: "Point(13.3948 52.527)", + locationLabel: "KW Institute for Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q1802939", + visitors: "92092", + cordinates: "Point(9.905694444 57.042638888)", + locationLabel: "KUNSTEN Museum of Modern Art Aalborg", + }, + { + location: "http://www.wikidata.org/entity/Q1802939", + visitors: "242110", + cordinates: "Point(9.905694444 57.042638888)", + locationLabel: "KUNSTEN Museum of Modern Art Aalborg", + }, + { + location: "http://www.wikidata.org/entity/Q72383762", + cordinates: "Point(17.83576 48.59212)", + locationLabel: "KSC Fontána", + }, + { + location: "http://www.wikidata.org/entity/Q12715958", + cordinates: "Point(5.324534267 60.390802314)", + locationLabel: "KODE Art museums and composer homes", + }, + { + location: "http://www.wikidata.org/entity/Q40918292", + cordinates: "Point(5.3289825 60.3892166)", + locationLabel: "KODE 4", + }, + { + location: "http://www.wikidata.org/entity/Q40914682", + cordinates: "Point(5.3275488 60.3894871)", + locationLabel: "KODE 3", + }, + { + location: "http://www.wikidata.org/entity/Q40916891", + cordinates: "Point(5.3249608 60.3901333)", + locationLabel: "KODE 2", + }, + { + location: "http://www.wikidata.org/entity/Q14915214", + cordinates: "Point(5.3242274 60.3907318)", + locationLabel: "KODE 1", + }, + { + location: "http://www.wikidata.org/entity/Q11403934", + cordinates: "Point(143.90361111 43.81833333)", + locationLabel: "KITAMI Reagion Museum of Science History and Art", + }, + { + location: "http://www.wikidata.org/entity/Q52676370", + cordinates: "Point(4.348333333 50.858527777)", + locationLabel: "KANAL - Centre Pompidou", + }, + { + location: "http://www.wikidata.org/entity/Q11386158", + cordinates: "Point(138.19752778 36.34205556)", + locationLabel: "KAITA EPITAPH Zanshou Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18346678", + cordinates: "Point(23.130157 63.837252)", + locationLabel: "K. H. Renlund museum", + }, + { + location: "http://www.wikidata.org/entity/Q11497319", + cordinates: "Point(135.762611 35.033583)", + locationLabel: "Jōtenkaku Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15607005", + visitors: "26292", + cordinates: "Point(25.09287 60.474681)", + locationLabel: "Järvenpää Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q23469599", + cordinates: "Point(19.290277777 48.076388888)", + locationLabel: "Jánossy Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18844491", + cordinates: "Point(19.478672 46.430259)", + locationLabel: "János Thorma Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11868293", + cordinates: "Point(25.7446 62.2414)", + locationLabel: "Jyväskylä Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q48965731", + cordinates: "Point(121.53730556 25.04430556)", + locationLabel: "Jut Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q24197278", + cordinates: "Point(-3.4228 55.9068)", + locationLabel: "Jupiter Artland", + }, + { + location: "http://www.wikidata.org/entity/Q18343173", + cordinates: "Point(-78.017519 40.498904)", + locationLabel: "Juniata College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6311640", + cordinates: "Point(-118.280515 34.092969)", + locationLabel: "Junc Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6305638", + cordinates: "Point(-85.4838 32.5877)", + locationLabel: "Jule Collins Smith Museum of Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q4584312", + cordinates: "Point(6.15109 62.47101)", + locationLabel: "Jugendstilsenteret", + }, + { + location: "http://www.wikidata.org/entity/Q59531353", + cordinates: "Point(-82.407213 42.973227)", + locationLabel: "Judith & Norman Alix Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q608023", + cordinates: "Point(-56.19833333 -34.85305556)", + locationLabel: "Juan Manuel Blanes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12060910", + cordinates: "Point(-57.535694444 -38.010416666)", + locationLabel: "Juan Carlos Castagnino Municipal Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3780332", + cordinates: "Point(-5.66333333 43.54444444)", + locationLabel: "Juan Barjola Museum of Painting", + }, + { + location: "http://www.wikidata.org/entity/Q6298930", + cordinates: "Point(-60.6561 -32.9542)", + locationLabel: "Juan B. Castagnino Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6298930", + cordinates: "Point(-60.6566 -32.9539)", + locationLabel: "Juan B. Castagnino Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6292942", + cordinates: "Point(-9.134 39.4008)", + locationLabel: "José Malhoa Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6292752", + cordinates: "Point(-99.12898333 19.43365278)", + locationLabel: "José Luis Cuevas Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1372546", + cordinates: "Point(-95.946022 41.260254)", + locationLabel: "Joslyn Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1372546", + cordinates: "Point(-95.9461 41.2603)", + locationLabel: "Joslyn Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17216274", + cordinates: "Point(139.38996 35.528116)", + locationLabel: "Joshibi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "263", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "2705", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "2801", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "3429", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "3431", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "4374", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "6350", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "7931", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "8266", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "8996", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "9122", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "9464", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "10182", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329222", + visitors: "10246", + cordinates: "Point(-0.21799999 47.44029999)", + locationLabel: "Joseph Denais Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6280203", + cordinates: "Point(14.39446944 50.08844444)", + locationLabel: "Josef Sudek Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6276990", + cordinates: "Point(-123.077222 44.044167)", + locationLabel: "Jordan Schnitzer Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q14753682", + cordinates: "Point(35.915551 31.958878)", + locationLabel: "Jordan National Gallery of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1444552", + cordinates: "Point(35.9343 31.954)", + locationLabel: "Jordan Archaeological Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10333803", + cordinates: "Point(-48.8558712 -26.2979781)", + locationLabel: "Joinville Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q97870827", + cordinates: "Point(103.75075 1.497222222)", + locationLabel: "Johor Japan Football Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q96022651", + cordinates: "Point(103.7345 1.4985)", + locationLabel: "Johor Craft Complex", + }, + { + location: "http://www.wikidata.org/entity/Q95709592", + cordinates: "Point(103.76625 1.459111111)", + locationLabel: "Johor Bahru Kwong Siew Heritage Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q24946344", + cordinates: "Point(103.747444444 1.466583333)", + locationLabel: "Johor Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q612530", + cordinates: "Point(-82.5591 27.3814)", + locationLabel: "John and Mable Ringling Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6265236", + cordinates: "Point(-157.818912 21.29679)", + locationLabel: "John Young Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106337", + cordinates: "Point(-4.162369 51.680965)", + locationLabel: "John Street Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6237656", + cordinates: "Point(-1.3994 50.9362)", + locationLabel: "John Hansard Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1628138", + cordinates: "Point(9.7326 49.1132)", + locationLabel: "Johanniterhalle", + }, + { + location: "http://www.wikidata.org/entity/Q6217142", + cordinates: "Point(28.0471 -26.197)", + locationLabel: "Johannesburg Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12320093", + cordinates: "Point(10.66109 55.45593)", + locationLabel: "Johannes Larsen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11928247", + cordinates: "Point(29.75833333 62.60138889)", + locationLabel: "Joensuu Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q51547109", + cordinates: "Point(125.42598 43.76597)", + locationLabel: "Jilin Provincial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106547", + cordinates: "Point(-3.179402 51.481279)", + locationLabel: "Jian Chen's FINE ART", + }, + { + location: "http://www.wikidata.org/entity/Q592116", + cordinates: "Point(-73.9575 40.7854)", + locationLabel: "Jewish Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6188666", + cordinates: "Point(-63.536944444 8.1325)", + locationLabel: "Jesús Soto Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q18810134", + cordinates: "Point(13.242607 43.52151)", + locationLabel: "Jesi Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q20502367", + cordinates: "Point(35.224888888 31.7845)", + locationLabel: "Jerusalem Primt Workshop", + }, + { + location: "http://www.wikidata.org/entity/Q6185101", + cordinates: "Point(35.2144 31.7799)", + locationLabel: "Jerusalem Artists House", + }, + { + location: "http://www.wikidata.org/entity/Q6184792", + cordinates: "Point(-74.0505 40.7197)", + locationLabel: "Jersey City Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16219718", + cordinates: "Point(127.106916666 35.727722222)", + locationLabel: "Jeonbuk Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q12319471", + cordinates: "Point(8.11863 56.5259)", + locationLabel: "Jens Søndergaards Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1580610", + cordinates: "Point(21.335 41.03075)", + locationLabel: "Jeni Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "14811", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "14865", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "15465", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "15626", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "15703", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "15777", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "16211", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "17585", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "17979", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "18429", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "22734", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "38470", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "43423", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "48821", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "57905", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "63084", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329214", + visitors: "86093", + cordinates: "Point(7.506291666 43.774886111)", + locationLabel: "Jean Cocteau Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11349249", + cordinates: "Point(136.3493 34.676531)", + locationLabel: "Japon Louvre Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3789149", + cordinates: "Point(139.67916667 35.66083333)", + locationLabel: "Japanese Folk Crafts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6157886", + cordinates: "Point(137.93508056 36.2303)", + locationLabel: "Japan Ukiyo-e Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11310084", + cordinates: "Point(100.52972222 13.74166667)", + locationLabel: "Jamjuree Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q664484", + cordinates: "Point(13.39701 52.52)", + locationLabel: "James Simon Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4502139", + visitors: "135000", + cordinates: "Point(-75.1265 40.3085)", + locationLabel: "James A. Michener Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12060836", + cordinates: "Point(14.49818056 46.05381111)", + locationLabel: "Jakopič Pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q2595341", + cordinates: "Point(5.123726 51.209078)", + locationLabel: "Jakob Smitsmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q2595341", + cordinates: "Point(5.133602777 51.211369444)", + locationLabel: "Jakob Smitsmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q531032", + cordinates: "Point(13.2614 52.4672)", + locationLabel: "Jagdschloss Grunewald", + }, + { + location: "http://www.wikidata.org/entity/Q2740892", + cordinates: "Point(-74.138347222 40.576313888)", + locationLabel: "Jacques Marchais Museum of Tibetan Art", + }, + { + location: "http://www.wikidata.org/entity/Q6107435", + cordinates: "Point(-96.3407 30.6127)", + locationLabel: "J. Wayne Stark Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q731126", + visitors: "2023467", + cordinates: "Point(-118.475 34.0775)", + locationLabel: "J. Paul Getty Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11380530", + cordinates: "Point(138.77663889 34.74877778)", + locationLabel: "Izu-no-Chohachi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q69359990", + cordinates: "Point(37.5113279 55.6388029)", + locationLabel: "Izopark", + }, + { + location: "http://www.wikidata.org/entity/Q28704837", + cordinates: "Point(28.833383 45.337456)", + locationLabel: "Izmail Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3298581", + cordinates: "Point(141.12488889 39.6935)", + locationLabel: "Iwate Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q24963709", + cordinates: "Point(130.654451 31.221872)", + locationLabel: "Iwasaki Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11260168", + cordinates: "Point(140.889556 37.051806)", + locationLabel: "Iwaki City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q13668685", + cordinates: "Point(40.971902777 57.008283333)", + locationLabel: "Ivanovo Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6096967", + cordinates: "Point(16.41791667 43.50430556)", + locationLabel: "Ivan Meštrović Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11640228", + cordinates: "Point(135.428778 34.825556)", + locationLabel: "Itsuō Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11378773", + cordinates: "Point(135.417194 34.782556)", + locationLabel: "Itami City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11286729", + cordinates: "Point(135.192139 34.702444)", + locationLabel: "Italian House", + }, + { + location: "http://www.wikidata.org/entity/Q11532663", + cordinates: "Point(139.6445 35.7842)", + locationLabel: "Itabashi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3803778", + cordinates: "Point(12.4831 41.9011)", + locationLabel: "Istituto Nazionale per la Grafica", + }, + { + location: "http://www.wikidata.org/entity/Q6447963", + cordinates: "Point(28.99888889 41.03861111)", + locationLabel: "Istanbul Painting and Sculpture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329580", + cordinates: "Point(28.582469 41.13426)", + locationLabel: "Istanbul Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q46815", + visitors: "750066", + cordinates: "Point(35.2045 31.772361)", + locationLabel: "Israel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q46815", + visitors: "760000", + cordinates: "Point(35.2045 31.772361)", + locationLabel: "Israel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4391562", + cordinates: "Point(141.31069 38.429631)", + locationLabel: "Ishinomori Manga Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11585938", + cordinates: "Point(136.310306 36.302758)", + locationLabel: "Ishikawa-ken Kutaniyaki Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q3297759", + cordinates: "Point(136.661388888 36.56)", + locationLabel: "Ishikawa Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11585933", + cordinates: "Point(136.953732 37.044811)", + locationLabel: "Ishikawa Nanao Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11586698", + cordinates: "Point(130.530306 33.312056)", + locationLabel: "Ishibashi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11586698", + cordinates: "Point(130.530366 33.312033)", + locationLabel: "Ishibashi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q49135", + cordinates: "Point(-71.098888888 42.338611111)", + locationLabel: "Isabella Stewart Gardner Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6077463", + cordinates: "Point(-155.6725 20.04333333)", + locationLabel: "Isaacs Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q18325657", + cordinates: "Point(-117.858261 33.671319)", + locationLabel: "Irvine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4203317", + cordinates: "Point(104.281667 52.283889)", + locationLabel: "Irkutsk Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1538285", + cordinates: "Point(-6.3 53.3429)", + locationLabel: "Irish Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q1672708", + cordinates: "Point(-122.171 37.433)", + locationLabel: "Iris & B. Gerald Cantor Center for Visual Arts", + }, + { + location: "http://www.wikidata.org/entity/Q5718999", + cordinates: "Point(51.44304722 35.75129167)", + locationLabel: "Iranian House of Cartoon", + }, + { + location: "http://www.wikidata.org/entity/Q3329546", + cordinates: "Point(1.1509 52.0606)", + locationLabel: "Ipswich Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16848391", + cordinates: "Point(-4.2255 57.4771)", + locationLabel: "Inverness Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q65697951", + cordinates: "Point(168.347047 -46.411142)", + locationLabel: "Invercargill Public Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q87612050", + cordinates: "Point(-97.150555555 49.889444444)", + locationLabel: "Inuit Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q6059089", + cordinates: "Point(-87.6546 41.89536)", + locationLabel: "Intuit: The Center for Intuitive and Outsider Art", + }, + { + location: "http://www.wikidata.org/entity/Q14704886", + cordinates: "Point(-96.6736 40.8286)", + locationLabel: "International Quilt Study Center & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6052565", + cordinates: "Point(-74.0043 40.7501)", + locationLabel: "International Print Center New York", + }, + { + location: "http://www.wikidata.org/entity/Q22981426", + cordinates: "Point(-98.24661 19.01931)", + locationLabel: "International Museum of the Baroque", + }, + { + location: "http://www.wikidata.org/entity/Q3330611", + cordinates: "Point(1.8325 48.81472222)", + locationLabel: "International Museum of Naive Art", + }, + { + location: "http://www.wikidata.org/entity/Q11960263", + cordinates: "Point(10.71152778 59.93569444)", + locationLabel: "International Museum of Children's Art", + }, + { + location: "http://www.wikidata.org/entity/Q14708934", + cordinates: "Point(-121.514 45.709)", + locationLabel: "International Museum of Carousel Art", + }, + { + location: "http://www.wikidata.org/entity/Q6050127", + cordinates: "Point(136.90525 35.16547222)", + locationLabel: "International Design Centre Nagoya", + }, + { + location: "http://www.wikidata.org/entity/Q15228746", + cordinates: "Point(14.49301111 46.05470556)", + locationLabel: "International Centre of Graphic Arts, Ljubljana", + }, + { + location: "http://www.wikidata.org/entity/Q23090920", + cordinates: "Point(14.493011111 46.054705555)", + locationLabel: "International Centre of Graphic Arts", + }, + { + location: "http://www.wikidata.org/entity/Q636942", + cordinates: "Point(-73.9849632 40.7547212)", + locationLabel: "International Center of Photography", + }, + { + location: "http://www.wikidata.org/entity/Q18325665", + cordinates: "Point(-122.410805 37.781497)", + locationLabel: "International Art Museum of America", + }, + { + location: "http://www.wikidata.org/entity/Q6041378", + cordinates: "Point(-43.23922 -22.98185)", + locationLabel: "Instituto Moreira Salles", + }, + { + location: "http://www.wikidata.org/entity/Q4201719", + cordinates: "Point(37.6513 55.7232)", + locationLabel: "Institute of Russian Realist Art", + }, + { + location: "http://www.wikidata.org/entity/Q1665153", + cordinates: "Point(-0.13061 51.5066)", + locationLabel: "Institute of Contemporary Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3152800", + cordinates: "Point(-75.1948 39.9542)", + locationLabel: "Institute of Contemporary Art, Philadelphia", + }, + { + location: "http://www.wikidata.org/entity/Q7419800", + cordinates: "Point(-118.235587 34.035179)", + locationLabel: "Institute of Contemporary Art, Los Angeles", + }, + { + location: "http://www.wikidata.org/entity/Q3152226", + cordinates: "Point(-71.0429 42.3528)", + locationLabel: "Institute of Contemporary Art, Boston", + }, + { + location: "http://www.wikidata.org/entity/Q1600831", + cordinates: "Point(-0.38277778 39.48)", + locationLabel: "Institut Valencià d'Art Modern", + }, + { + location: "http://www.wikidata.org/entity/Q2180254", + cordinates: "Point(2.3197 48.8613)", + locationLabel: "Institut Néerlandais", + }, + { + location: "http://www.wikidata.org/entity/Q1960512", + cordinates: "Point(31.14444444 -26.32055556)", + locationLabel: "Indingilizi Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1117704", + visitors: "428213", + cordinates: "Point(-86.1855 39.8259)", + locationLabel: "Indianapolis Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q23530862", + cordinates: "Point(18.051087 59.33052)", + locationLabel: "Index-The Swedish Contemporary Art Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q317701", + cordinates: "Point(16.36542222 48.20656667)", + locationLabel: "Imperial Treasury", + }, + { + location: "http://www.wikidata.org/entity/Q18346771", + cordinates: "Point(28.778611 61.191944)", + locationLabel: "Imatran Taidemuseo", + }, + { + location: "http://www.wikidata.org/entity/Q6000822", + cordinates: "Point(126.9775 37.5699)", + locationLabel: "Ilmin Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5999753", + cordinates: "Point(-89.6554 39.7967)", + locationLabel: "Illinois State Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12298610", + cordinates: "Point(24.616388888 43.403055555)", + locationLabel: "Ilia Beshkov galery, Pleven", + }, + { + location: "http://www.wikidata.org/entity/Q11552021", + cordinates: "Point(138.196667 36.564444)", + locationLabel: "Ikeda Masuo Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11666529", + cordinates: "Point(137.83021 35.512042)", + locationLabel: "Iida City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11666529", + cordinates: "Point(137.83044444 35.512)", + locationLabel: "Iida City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11666522", + cordinates: "Point(137.825694 35.514942)", + locationLabel: "Iida City Kawamoto Kihachiro Puppet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3867861", + cordinates: "Point(13.349109 38.134476)", + locationLabel: "Ignazio Mormino Art and Archaeology Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5910389", + cordinates: "Point(-3.690575 41.672163888)", + locationLabel: "Iglesia de San Juan (Aranda de Duero)", + }, + { + location: "http://www.wikidata.org/entity/Q3076590", + cordinates: "Point(139.7609079 35.6763721)", + locationLabel: "Idemitsu Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q27663042", + cordinates: "Point(22.19 41.74)", + locationLabel: "Icon Gallery in Saint Nicholas Church in Shtip", + }, + { + location: "http://www.wikidata.org/entity/Q12905682", + cordinates: "Point(20.966666666 42.013055555)", + locationLabel: "Icon Gallery (Tetovo)", + }, + { + location: "http://www.wikidata.org/entity/Q12905683", + cordinates: "Point(20.795 41.114166666)", + locationLabel: "Icon Gallery (Ohrid)", + }, + { + location: "http://www.wikidata.org/entity/Q11355204", + cordinates: "Point(136.745847 35.308158)", + locationLabel: "Ichinomiya City Memorial Art Museum of Setsuko Migishi", + }, + { + location: "http://www.wikidata.org/entity/Q11373381", + cordinates: "Point(133.463333 34.598056)", + locationLabel: "Ibara-shi Denchū Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q5982619", + cordinates: "Point(144.964 -37.7975)", + locationLabel: "Ian Potter Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4350417", + cordinates: "Point(144.969 -37.8178)", + locationLabel: "Ian Potter Centre", + }, + { + location: "http://www.wikidata.org/entity/Q11287214", + cordinates: "Point(138.048778 36.059806)", + locationLabel: "ILF Douga Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1339422", + cordinates: "Point(6.0302 50.626)", + locationLabel: "IKOB International Art Centre East Belgium", + }, + { + location: "http://www.wikidata.org/entity/Q1339422", + cordinates: "Point(6.029703 50.626378)", + locationLabel: "IKOB International Art Centre East Belgium", + }, + { + location: "http://www.wikidata.org/entity/Q2629758", + cordinates: "Point(-17.438065 14.663307)", + locationLabel: "IFAN Museum of African Arts", + }, + { + location: "http://www.wikidata.org/entity/Q86106406", + cordinates: "Point(-2.714463 51.812605)", + locationLabel: "IAP Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q11634295", + cordinates: "Point(135.252944 34.727111)", + locationLabel: "Hōun Memorial Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "6369", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "9303", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "10842", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "11858", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "13045", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "13578", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "14635", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "15925", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "16935", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "17399", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "17431", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "20442", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "20792", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "20853", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "21905", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "22133", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q23498488", + visitors: "22564", + cordinates: "Point(1.69405124 46.81378317)", + locationLabel: "Hôtel Bertrand", + }, + { + location: "http://www.wikidata.org/entity/Q11864061", + cordinates: "Point(24.47500038 60.99777603)", + locationLabel: "Hämeenlinna Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11393672", + cordinates: "Point(135.131053 34.983983)", + locationLabel: "Hyōgo Tōgei Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11393094", + cordinates: "Point(135.21388889 34.70861111)", + locationLabel: + "Hyōgo Prefectural Museum of Art Ōji Branch Haradanomori Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3329607", + cordinates: "Point(135.21801111 34.69919167)", + locationLabel: "Hyōgo Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11863957", + cordinates: "Point(24.861111 60.630833)", + locationLabel: "Hyvinkää Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q56729125", + cordinates: "Point(143.858944444 -37.560527777)", + locationLabel: "Huyghue House", + }, + { + location: "http://www.wikidata.org/entity/Q87653667", + cordinates: "Point(-81.095038 32.07193)", + locationLabel: "Hurn Museum of Contemporary Folk Art", + }, + { + location: "http://www.wikidata.org/entity/Q1638259", + cordinates: "Point(-86.5869 34.7269)", + locationLabel: "Huntsville Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5945433", + cordinates: "Point(-82.4344 38.393)", + locationLabel: "Huntington Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1465387", + cordinates: "Point(-4.288611111 55.871944444)", + locationLabel: "Hunterian Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2566506", + cordinates: "Point(-85.305833 35.055833)", + locationLabel: "Hunter Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q2659085", + cordinates: "Point(-8.6245 52.6663)", + locationLabel: "Hunt Museum", + }, + { + location: "http://www.wikidata.org/entity/Q252071", + cordinates: "Point(19.0368478 47.49875)", + locationLabel: "Hungarian National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q41497552", + cordinates: "Point(-0.3347 53.739)", + locationLabel: "Humber Street Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5928856", + cordinates: "Point(-73.896238888 40.953969444)", + locationLabel: "Hudson River Museum", + }, + { + location: "http://www.wikidata.org/entity/Q19758543", + cordinates: "Point(-1.781585 53.644494)", + locationLabel: "Huddersfield Library and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q22569306", + cordinates: "Point(121.61061111 23.97472222)", + locationLabel: "Hualien Railway Culture Park", + }, + { + location: "http://www.wikidata.org/entity/Q5919920", + cordinates: "Point(-122.333 47.6025)", + locationLabel: "Howard House", + }, + { + location: "http://www.wikidata.org/entity/Q56479567", + cordinates: "Point(11.530934305 43.564305611)", + locationLabel: "House of Giovanni da San Giovanni", + }, + { + location: "http://www.wikidata.org/entity/Q29483167", + cordinates: "Point(-3.8285461 53.281551)", + locationLabel: "House and Oriel y Crochenwyr (The Potters' Gallery)", + }, + { + location: "http://www.wikidata.org/entity/Q5913507", + cordinates: "Point(-73.191 41.175)", + locationLabel: "Housatonic Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11606115", + cordinates: "Point(135.779639 35.013833)", + locationLabel: "Hosomi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1629070", + cordinates: "Point(8.21472 53.1444)", + locationLabel: "Horst Janssen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12317254", + cordinates: "Point(9.86082 55.86446)", + locationLabel: "Horsens Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q55809503", + cordinates: "Point(-15.21174 64.25316)", + locationLabel: "Hornafjörður Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q486358", + cordinates: "Point(126.91861111 37.48083333)", + locationLabel: "Horim Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3140304", + cordinates: "Point(-72.28805556 43.70222222)", + locationLabel: "Hood Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q128316", + cordinates: "Point(-157.8486 21.3041)", + locationLabel: "Honolulu Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q68620047", + cordinates: "Point(141.29648 43.055181)", + locationLabel: "Hongō Shin Memorial Museum of Sculpture, Sapporo", + }, + { + location: "http://www.wikidata.org/entity/Q5894932", + cordinates: "Point(114.16196111 22.28245556)", + locationLabel: "Hong Kong Planning and Infrastructure Exhibition Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q908216", + cordinates: "Point(114.172025 22.293547222)", + locationLabel: "Hong Kong Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q15224881", + cordinates: "Point(-76.9873 38.8671)", + locationLabel: "Honfleur Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11521018", + cordinates: "Point(139.84205627 38.92338943)", + locationLabel: "Homma Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11521018", + cordinates: "Point(139.842107 38.923402)", + locationLabel: "Homma Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18342021", + visitors: "17936", + cordinates: "Point(8.62141 56.3544)", + locationLabel: "Holstebro kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q14935814", + cordinates: "Point(115.0483 -33.8237)", + locationLabel: "Holmes à Court Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12020007", + cordinates: "Point(14.41333333 50.08236111)", + locationLabel: "Hollar building", + }, + { + location: "http://www.wikidata.org/entity/Q5878811", + cordinates: "Point(-2.35092 51.3858)", + locationLabel: "Holburne Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11402964", + cordinates: "Point(143.185528 42.904583)", + locationLabel: "Hokkaido Obihiro Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11402992", + cordinates: "Point(141.330389 43.060278)", + locationLabel: "Hokkaido Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11402968", + cordinates: "Point(142.355361 43.774139)", + locationLabel: "Hokkaido Asahikawa Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5878014", + cordinates: "Point(140.27986111 35.52208333)", + locationLabel: "Hoki Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1960205", + cordinates: "Point(4.63661 52.38014)", + locationLabel: "Hofje In den Groenen Tuin", + }, + { + location: "http://www.wikidata.org/entity/Q1960205", + cordinates: "Point(4.636944444 52.380277777)", + locationLabel: "Hofje In den Groenen Tuin", + }, + { + location: "http://www.wikidata.org/entity/Q622974", + cordinates: "Point(170.518 -45.8698)", + locationLabel: "Hocken Collections", + }, + { + location: "http://www.wikidata.org/entity/Q491279", + cordinates: "Point(127.19138889 37.29472222)", + locationLabel: "Ho-Am Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2756351", + cordinates: "Point(106.7 10.76944444)", + locationLabel: "Ho Chi Minh City Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q2420849", + visitors: "20000", + cordinates: "Point(-73.94643 40.83327)", + locationLabel: "Hispanic Society of America", + }, + { + location: "http://www.wikidata.org/entity/Q11620185", + cordinates: "Point(139.83638889 35.12819444)", + locationLabel: "Hishikawa Moronobu Memorial Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1620553", + visitors: "681000", + cordinates: "Point(-77.022963 38.888187)", + locationLabel: "Hirshhorn Museum and Sculpture Garden", + }, + { + location: "http://www.wikidata.org/entity/Q1620529", + cordinates: "Point(9.69034 49.2784)", + locationLabel: "Hirschwirtscheuer", + }, + { + location: "http://www.wikidata.org/entity/Q2982867", + visitors: "21000", + cordinates: "Point(12.57747 55.6899)", + locationLabel: "Hirschsprung Collection", + }, + { + location: "http://www.wikidata.org/entity/Q2982867", + visitors: "25261", + cordinates: "Point(12.57747 55.6899)", + locationLabel: "Hirschsprung Collection", + }, + { + location: "http://www.wikidata.org/entity/Q2982867", + visitors: "36291", + cordinates: "Point(12.57747 55.6899)", + locationLabel: "Hirschsprung Collection", + }, + { + location: "http://www.wikidata.org/entity/Q2982867", + visitors: "71579", + cordinates: "Point(12.57747 55.6899)", + locationLabel: "Hirschsprung Collection", + }, + { + location: "http://www.wikidata.org/entity/Q3330773", + cordinates: "Point(132.466275 34.399908333)", + locationLabel: "Hiroshima Prefectural Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q63828", + cordinates: "Point(132.458061111 34.398669444)", + locationLabel: "Hiroshima Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q93425", + cordinates: "Point(132.473365 34.38638)", + locationLabel: "Hiroshima City Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q22661322", + cordinates: "Point(133.09041667 34.30569444)", + locationLabel: "Hirayama Ikuo Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11483041", + cordinates: "Point(139.792778 35.655139)", + locationLabel: "Hiraki Ukiyoe Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11447532", + cordinates: "Point(134.696667 34.839722)", + locationLabel: "Himeji City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5764307", + cordinates: "Point(-155.072 19.7222)", + locationLabel: "Hilo Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18342549", + cordinates: "Point(-93.970606 44.324405)", + locationLabel: "Hillstrom Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1618645", + cordinates: "Point(-72.8189 41.7222)", + locationLabel: "Hill-Stead Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11388213", + cordinates: "Point(139.363683 35.564286)", + locationLabel: "Hikari to Midori no Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q953345", + cordinates: "Point(-84.385566 33.790047)", + locationLabel: "High Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q17223767", + cordinates: "Point(132.693111 34.439667)", + locationLabel: "Higashihiroshima City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11862518", + cordinates: "Point(23.748333 61.497778)", + locationLabel: "Hiekka Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16995327", + cordinates: "Point(-80.1167 26.889)", + locationLabel: "Hibel Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q678082", + cordinates: "Point(10.533 52.2635)", + locationLabel: "Herzog Anton Ulrich Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6604799", + cordinates: "Point(34.8441 32.1619)", + locationLabel: "Herzliya Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q6604799", + cordinates: "Point(34.843552777 32.162)", + locationLabel: "Herzliya Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q10522426", + visitors: "28639", + cordinates: "Point(9.02176 56.13186)", + locationLabel: "Herning Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q5742330", + cordinates: "Point(1.12778 51.3692)", + locationLabel: "Herne Bay Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5741857", + cordinates: "Point(-0.117222 51.5108)", + locationLabel: "Hermitage Rooms", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "3120170", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "3668031", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4119103", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4200000", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4220000", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q132783", + visitors: "4956529", + cordinates: "Point(30.313611 59.940556)", + locationLabel: "Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3075622", + cordinates: "Point(6.63716 46.52818)", + locationLabel: "Hermitage Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q1350009", + visitors: "375177", + cordinates: "Point(4.9025 52.365)", + locationLabel: "Hermitage Amsterdam", + }, + { + location: "http://www.wikidata.org/entity/Q1350009", + visitors: "375177", + cordinates: "Point(4.90236 52.36541)", + locationLabel: "Hermitage Amsterdam", + }, + { + location: "http://www.wikidata.org/entity/Q1350009", + visitors: "630000", + cordinates: "Point(4.9025 52.365)", + locationLabel: "Hermitage Amsterdam", + }, + { + location: "http://www.wikidata.org/entity/Q1350009", + visitors: "630000", + cordinates: "Point(4.90236 52.36541)", + locationLabel: "Hermitage Amsterdam", + }, + { + location: "http://www.wikidata.org/entity/Q5738824", + cordinates: "Point(-75.1107 39.7026)", + locationLabel: "Heritage Glass Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5738000", + cordinates: "Point(-2.7175 52.0548)", + locationLabel: "Hereford Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5734055", + visitors: "80000", + cordinates: "Point(-76.4865 42.4508)", + locationLabel: "Herbert F. Johnson Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q917262", + visitors: "300000", + cordinates: "Point(-1.50622222 52.40722222)", + locationLabel: "Herbert Art Gallery and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q26656018", + cordinates: "Point(-1.547439 53.800146)", + locationLabel: "Henry Moore Institute", + }, + { + location: "http://www.wikidata.org/entity/Q5717411", + cordinates: "Point(-122.312 47.6564)", + locationLabel: "Henry Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2561175", + cordinates: "Point(10.552933333 59.888775)", + locationLabel: "Henie-Onstad Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5710459", + visitors: "114353", + cordinates: "Point(24.93123 60.16949)", + locationLabel: "Helsinki Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11587773", + cordinates: "Point(136.981792 34.873372)", + locationLabel: "Hekinan-shi Fujii Tatsukichi Gendai Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q1468403", + cordinates: "Point(8.70288889 49.41141667)", + locationLabel: "Heidelberger Kunstverein", + }, + { + location: "http://www.wikidata.org/entity/Q954298", + visitors: "70000", + cordinates: "Point(145.08421 -37.75863)", + locationLabel: "Heide Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q20033272", + cordinates: "Point(12.466973313 55.68293)", + locationLabel: "Heerup Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5696477", + cordinates: "Point(-73.4218 40.8749)", + locationLabel: "Heckscher Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2061039", + cordinates: "Point(-112.074 33.4735)", + locationLabel: "Heard Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1112536", + cordinates: "Point(7.60161111 47.55472222)", + locationLabel: "HeK (House of Electronic Arts Basel)", + }, + { + location: "http://www.wikidata.org/entity/Q10886452", + cordinates: "Point(113.988121 22.539281)", + locationLabel: "He Xiangning Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85877621", + cordinates: "Point(113.220194 22.933214)", + locationLabel: "He Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5688083", + cordinates: "Point(151.0822 -34.0329)", + locationLabel: "Hazelhurst Regional Gallery and Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q779736", + cordinates: "Point(-0.115556 51.5061)", + locationLabel: "Hayward Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1365162", + cordinates: "Point(33.366133 35.177485)", + locationLabel: "Haydar Pasha Mosque", + }, + { + location: "http://www.wikidata.org/entity/Q4707602", + cordinates: "Point(133.93333333 34.66361111)", + locationLabel: "Hayashibara Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5685395", + cordinates: "Point(-2.355 53.7411)", + locationLabel: "Haworth Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5684387", + cordinates: "Point(-157.858 21.3086)", + locationLabel: "Hawaii State Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q63725953", + cordinates: "Point(8.933385 53.223821)", + locationLabel: "Haus im Schluh", + }, + { + location: "http://www.wikidata.org/entity/Q697782", + cordinates: "Point(11.5858 48.1442)", + locationLabel: "Haus der Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q252513", + cordinates: "Point(8.53224 47.3724)", + locationLabel: "Haus Konstruktiv", + }, + { + location: "http://www.wikidata.org/entity/Q11974466", + cordinates: "Point(5.26358611 59.41875833)", + locationLabel: "Haugesund Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11974454", + cordinates: "Point(10.41216611 59.267647)", + locationLabel: "Haugar Vestfold kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q5682144", + cordinates: "Point(-1.615 54.9796)", + locationLabel: "Hatton Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3330210", + cordinates: "Point(139.72689 35.632306)", + locationLabel: "Hatakeyama Memorial Museum of Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q5680832", + cordinates: "Point(-73.2293 44.378)", + locationLabel: "Hat and Fragrance Textile Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q6185311", + cordinates: "Point(0.592772 50.8561)", + locationLabel: "Hastings Contemporary", + }, + { + location: "http://www.wikidata.org/entity/Q10518444", + cordinates: "Point(11.98061111 57.69638889)", + locationLabel: "Hasselblad Center", + }, + { + location: "http://www.wikidata.org/entity/Q11617979", + cordinates: "Point(135.90630556 34.53127778)", + locationLabel: "Haseji", + }, + { + location: "http://www.wikidata.org/entity/Q3788646", + cordinates: "Point(139.64362 35.62799)", + locationLabel: "Hasegawa Machiko Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5677906", + cordinates: "Point(-105.577 36.4058)", + locationLabel: "Harwood Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q16983412", + cordinates: "Point(-80.848713888 35.223427777)", + locationLabel: "Harvey B. Gantt Center", + }, + { + location: "http://www.wikidata.org/entity/Q3783572", + cordinates: "Point(-71.11472222 42.37416667)", + locationLabel: "Harvard Art Museums", + }, + { + location: "http://www.wikidata.org/entity/Q5674790", + cordinates: "Point(-1.2096 54.6857)", + locationLabel: "Hartlepool Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12059583", + cordinates: "Point(-2.69825 53.7591)", + locationLabel: "Harris Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2526406", + cordinates: "Point(-1.3088 53.1688)", + locationLabel: "Hardwick Hall", + }, + { + location: "http://www.wikidata.org/entity/Q86106204", + cordinates: "Point(-5.180778 51.947747)", + locationLabel: "Harbour Lights Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3736155", + cordinates: "Point(139.73605556 35.62102778)", + locationLabel: "Hara Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q85680222", + cordinates: "Point(13.74014 51.06146)", + locationLabel: "Hans Körnig Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329191", + cordinates: "Point(8.33682 47.05191)", + locationLabel: "Hans Erni Museum", + }, + { + location: "http://www.wikidata.org/entity/Q97516508", + cordinates: "Point(172.8280744 -42.5221067)", + locationLabel: "Hanmer Springs Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18199019", + cordinates: "Point(9.219337 45.521253)", + locationLabel: "HangarBicocca", + }, + { + location: "http://www.wikidata.org/entity/Q5647112", + cordinates: "Point(-122.871 38.6106)", + locationLabel: "Hand Fan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5646671", + cordinates: "Point(126.9855 37.5828)", + locationLabel: "Han Sang Soo Embroidery Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5645872", + cordinates: "Point(-84.420881 33.741248)", + locationLabel: "Hammonds House Museum", + }, + { + location: "http://www.wikidata.org/entity/Q29469806", + cordinates: "Point(-73.582 41.332)", + locationLabel: "Hammond Museum and Japanese Stroll Garden", + }, + { + location: "http://www.wikidata.org/entity/Q677561", + cordinates: "Point(-118.443611111 34.059444444)", + locationLabel: "Hammer Museum", + }, + { + location: "http://www.wikidata.org/entity/Q584756", + visitors: "250000", + cordinates: "Point(13.372222222 52.528333333)", + locationLabel: "Hamburger Bahnhof", + }, + { + location: "http://www.wikidata.org/entity/Q11557851", + cordinates: "Point(137.72375 34.711833333)", + locationLabel: "Hamamatsu-shi Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q38250530", + cordinates: "Point(-79.94077778 32.78541667)", + locationLabel: "Halsey Institute of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q6351302", + cordinates: "Point(25.054675 60.435548)", + locationLabel: "Halosenniemi", + }, + { + location: "http://www.wikidata.org/entity/Q6351302", + cordinates: "Point(25.05472222 60.43555556)", + locationLabel: "Halosenniemi", + }, + { + location: "http://www.wikidata.org/entity/Q5642975", + visitors: "30000", + cordinates: "Point(-123.034 44.9385)", + locationLabel: "Hallie Ford Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1571473", + cordinates: "Point(8.636 47.695)", + locationLabel: "Hallen für Neue Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q22969260", + cordinates: "Point(3.3212 43.7305)", + locationLabel: "Halle Dardé", + }, + { + location: "http://www.wikidata.org/entity/Q368537", + cordinates: "Point(19.078678 47.514022)", + locationLabel: "Hall of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4025968", + cordinates: "Point(-78.52 45.052)", + locationLabel: "Haliburton Sculpture Forest", + }, + { + location: "http://www.wikidata.org/entity/Q612608", + cordinates: "Point(135.25833333 34.73083333)", + locationLabel: "Hakutsuru Fine Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11603346", + cordinates: "Point(139.01775 35.266278)", + locationLabel: "Hakone Venetian Glass Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11284659", + cordinates: "Point(139.042667 35.248167)", + locationLabel: "Hakone Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q22120303", + cordinates: "Point(140.754638888 41.793416666)", + locationLabel: "Hakodate Museum of Art, Hokkaido", + }, + { + location: "http://www.wikidata.org/entity/Q96650489", + cordinates: "Point(103.130083333 2.295777777)", + locationLabel: "Hakka Heritage Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11467091", + cordinates: "Point(131.394361 34.409444)", + locationLabel: "Hagi Uragami Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5638699", + cordinates: "Point(-121.314 37.9603)", + locationLabel: "Haggin Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16500080", + cordinates: "Point(-21.9406 64.149)", + locationLabel: "Hafnarhús", + }, + { + location: "http://www.wikidata.org/entity/Q15961654", + visitors: "64400", + cordinates: "Point(-21.9554 64.0678)", + locationLabel: "Hafnarborg", + }, + { + location: "http://www.wikidata.org/entity/Q11391573", + cordinates: "Point(139.33061111 35.66041667)", + locationLabel: "Hachiōji-shi Yume Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11391188", + cordinates: "Point(141.49130556 40.51175)", + locationLabel: "Hachinohe City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q38250691", + cordinates: "Point(-86.8851 40.4128)", + locationLabel: "Haan Mansion Museum of Indiana Art", + }, + { + location: "http://www.wikidata.org/entity/Q26208486", + cordinates: "Point(7.082362 46.584094)", + locationLabel: "HR Giger Museum", + }, + { + location: "http://www.wikidata.org/entity/Q7714606", + cordinates: "Point(153.416 -28.0015)", + locationLabel: "HOTA - Home of the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q28691367", + cordinates: "Point(141.36516 43.04985)", + locationLabel: "HOKUBU Memorial Art gallery", + }, + { + location: "http://www.wikidata.org/entity/Q61818339", + cordinates: "Point(134.965 35.6442)", + locationLabel: "HIKARI BIJYUTUKAN", + }, + { + location: "http://www.wikidata.org/entity/Q1562673", + cordinates: "Point(10.9197 48.3675)", + locationLabel: "H2--Zentrum für Gegenwartskunst im Glaspalast", + }, + { + location: "http://www.wikidata.org/entity/Q5636296", + cordinates: "Point(100.52623 13.722037)", + locationLabel: "H Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q697421", + cordinates: "Point(15.6125 48.3678)", + locationLabel: "Göttweig Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q59960711", + cordinates: "Point(139.184055555 35.800083333)", + locationLabel: "Gyokudō Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12585149", + cordinates: "Point(126.885685 35.183174)", + locationLabel: "Gwangju Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86105976", + cordinates: "Point(-3.169949 52.96954)", + locationLabel: "Gwalia Ceramics", + }, + { + location: "http://www.wikidata.org/entity/Q46997675", + cordinates: "Point(-2.029722222 42.669444444)", + locationLabel: "Gustavo de Maeztu Museoa", + }, + { + location: "http://www.wikidata.org/entity/Q9282793", + cordinates: "Point(18.0711 59.3269)", + locationLabel: "Gustav III's museum of antiquities", + }, + { + location: "http://www.wikidata.org/entity/Q15222331", + cordinates: "Point(174.76951 -36.846983)", + locationLabel: "Gus Fisher Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q832393", + cordinates: "Point(12.91527778 50.82861111)", + locationLabel: "Gunzenhauser Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11609688", + cordinates: "Point(139.078639 36.298722)", + locationLabel: "Gunma Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q521611", + cordinates: "Point(139.50588889 36.26619444)", + locationLabel: "Gunma Kenritsu Tatebayashi Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q5618179", + cordinates: "Point(18.0836539 59.3318041)", + locationLabel: "Gummeson Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5617460", + cordinates: "Point(-82.8085 27.8802)", + locationLabel: "Gulf Coast Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "224178", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "238917", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "246835", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "259226", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "260153", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "263933", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "264856", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "275234", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "309509", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "311385", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "311899", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "313449", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "317756", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "339740", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "360016", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "388622", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q860994", + visitors: "437554", + cordinates: "Point(2.293888888 48.865277777)", + locationLabel: "Guimet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4968030", + cordinates: "Point(-0.0914 51.5155)", + locationLabel: "Guildhall Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q179199", + visitors: "1002963", + cordinates: "Point(-2.934099 43.26883)", + locationLabel: "Guggenheim Museum", + }, + { + location: "http://www.wikidata.org/entity/Q179199", + visitors: "1322000", + cordinates: "Point(-2.934099 43.26883)", + locationLabel: "Guggenheim Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1974769", + visitors: "1100000", + cordinates: "Point(-115.169 36.1214)", + locationLabel: "Guggenheim Hermitage Museum", + }, + { + location: "http://www.wikidata.org/entity/Q27488799", + cordinates: "Point(8.00488 47.37174)", + locationLabel: "Gugelmann-Museum (collection)", + }, + { + location: "http://www.wikidata.org/entity/Q30946532", + cordinates: "Point(116.404039 39.922075)", + locationLabel: "Guardian Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q15310035", + cordinates: "Point(116.534 40.0078)", + locationLabel: "Guanfu Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1050522", + cordinates: "Point(24.079722222 54.020833333)", + locationLabel: "Grūtas Park", + }, + { + location: "http://www.wikidata.org/entity/Q5612742", + cordinates: "Point(-7.91102778 40.66015278)", + locationLabel: "Grão Vasco National Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5612104", + cordinates: "Point(-3.0525 53.8204)", + locationLabel: "Grundy Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106361", + cordinates: "Point(-3.966788 51.619488)", + locationLabel: "Grove Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4613636", + cordinates: "Point(-74.71761 40.23569)", + locationLabel: "Grounds for Sculpture", + }, + { + location: "http://www.wikidata.org/entity/Q1542668", + visitors: "197517", + cordinates: "Point(6.565556 53.211944)", + locationLabel: "Groninger Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5610123", + cordinates: "Point(-87.907944 43.043806)", + locationLabel: "Grohmann Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1948674", + cordinates: "Point(3.2266 51.2052)", + locationLabel: "Groeningemuseum", + }, + { + location: "http://www.wikidata.org/entity/Q5608853", + cordinates: "Point(-78.6914 42.37)", + locationLabel: "Griffis Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q16972698", + cordinates: "Point(-73.9957 40.7303)", + locationLabel: "Grey Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12314288", + cordinates: "Point(10.6339 57.7397)", + locationLabel: "Grenen Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q14709503", + cordinates: "Point(-82.4007 34.8565)", + locationLabel: "Greenville County Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106261", + cordinates: "Point(-4.308392 51.85536)", + locationLabel: "Greenspace Gallery & Tearooms", + }, + { + location: "http://www.wikidata.org/entity/Q5599767", + cordinates: "Point(-96.704444444 40.815555555)", + locationLabel: "Great Plains Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3821731", + cordinates: "Point(-0.47966667 38.34555556)", + locationLabel: "Gravina Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q5597892", + cordinates: "Point(-1.46674 53.3801)", + locationLabel: "Graves Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3412050", + visitors: "255000", + cordinates: "Point(-85.6714 42.965)", + locationLabel: "Grand Rapids Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1955758", + cordinates: "Point(6.13989722 49.61708611)", + locationLabel: "Grand Duke Jean Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q16982435", + cordinates: "Point(-3.60772 55.074)", + locationLabel: "Gracefield Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "20282", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "22612", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "22648", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "23185", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "23220", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "23223", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "24216", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "24599", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "25271", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "25899", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "26113", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "27386", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "27638", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "27760", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "27952", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "37226", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q246821", + visitors: "41962", + cordinates: "Point(2.2417 43.6036)", + locationLabel: "Goya Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5589805", + cordinates: "Point(174.06972222 -39.05861111)", + locationLabel: "Govett-Brewster Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3112812", + cordinates: "Point(76.787425 30.748875)", + locationLabel: "Government Museum and Art Gallery, Chandigarh", + }, + { + location: "http://www.wikidata.org/entity/Q5588347", + cordinates: "Point(23.76152778 37.975)", + locationLabel: "Gounaropoulos Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2374140", + cordinates: "Point(139.635294 35.612195)", + locationLabel: "Gotoh Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1992004", + cordinates: "Point(11.98 57.696944444)", + locationLabel: "Gothenburg Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q94977234", + cordinates: "Point(121.607191 23.978656)", + locationLabel: "Good underground art space", + }, + { + location: "http://www.wikidata.org/entity/Q5580391", + cordinates: "Point(-116.834 36.8902)", + locationLabel: "Goldwell Open Air Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5578624", + cordinates: "Point(153.416 -28.0013)", + locationLabel: "Gold Coast City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q319071", + cordinates: "Point(11.6231 48.1661)", + locationLabel: "Goetz Collection", + }, + { + location: "http://www.wikidata.org/entity/Q18343137", + cordinates: "Point(-73.817274 40.73634)", + locationLabel: "Godwin-Ternbach Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106222", + cordinates: "Point(-5.268128 51.880711)", + locationLabel: "Goat Street Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5572991", + cordinates: "Point(-3.944444444 51.623888888)", + locationLabel: "Glynn Vivian Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q42302454", + cordinates: "Point(103.738833 1.5155)", + locationLabel: "Glulam Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q56480126", + cordinates: "Point(-77.252595 39.061703)", + locationLabel: "Glenstone", + }, + { + location: "http://www.wikidata.org/entity/Q5567429", + cordinates: "Point(-7.898838 55.001495)", + locationLabel: "Glebe Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5566996", + visitors: "50000", + cordinates: "Point(10.674 56.1972)", + locationLabel: "Glasmuseet Ebeltoft", + }, + { + location: "http://www.wikidata.org/entity/Q85109193", + cordinates: "Point(-4.968521944 51.803436111)", + locationLabel: "Glan yr Afon", + }, + { + location: "http://www.wikidata.org/entity/Q11694558", + visitors: "111532", + cordinates: "Point(2.82605 41.986844)", + locationLabel: "Girona Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11694558", + visitors: "111532", + cordinates: "Point(2.8264056 41.9869917)", + locationLabel: "Girona Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5564059", + cordinates: "Point(147.064 -38.1117)", + locationLabel: "Gippsland Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q323726", + cordinates: "Point(12.4825087 41.9055396)", + locationLabel: "Giorgio De Chirico House", + }, + { + location: "http://www.wikidata.org/entity/Q14708424", + cordinates: "Point(-96.02137 36.17322)", + locationLabel: "Gilcrease Museum", + }, + { + location: "http://www.wikidata.org/entity/Q14708424", + cordinates: "Point(-96.0214 36.1747)", + locationLabel: "Gilcrease Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11471469", + cordinates: "Point(137.154886 35.330953)", + locationLabel: "Gifu-ken Gendai Tōgei Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q15221656", + cordinates: "Point(-79.93166667 32.77861111)", + locationLabel: "Gibbes Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q85842826", + cordinates: "Point(0.093851 51.7675905)", + locationLabel: "Gibberd Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3868311", + cordinates: "Point(7.014916 45.141804)", + locationLabel: "Giaglione Diocesan Museum of Religious Art", + }, + { + location: "http://www.wikidata.org/entity/Q947907", + cordinates: "Point(139.570278 35.695)", + locationLabel: "Ghibli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q947907", + cordinates: "Point(139.570556 35.696111)", + locationLabel: "Ghibli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q947907", + cordinates: "Point(139.5704306 35.6962333)", + locationLabel: "Ghibli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q947907", + cordinates: "Point(139.570431 35.696233)", + locationLabel: "Ghibli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q105653829", + cordinates: "Point(88.35230255 22.575662611)", + locationLabel: "Ghare Baire", + }, + { + location: "http://www.wikidata.org/entity/Q1521129", + cordinates: "Point(16.3073 48.2437)", + locationLabel: "Geymüllerschlössel", + }, + { + location: "http://www.wikidata.org/entity/Q1520451", + cordinates: "Point(8.72946 47.4992)", + locationLabel: "Gewerbemuseum Winterthur", + }, + { + location: "http://www.wikidata.org/entity/Q27587957", + cordinates: "Point(22.501666666 41.140833333)", + locationLabel: "Gevgelija Hammam", + }, + { + location: "http://www.wikidata.org/entity/Q180401", + visitors: "453902", + cordinates: "Point(-118.564 34.0451)", + locationLabel: "Getty Villa", + }, + { + location: "http://www.wikidata.org/entity/Q29247", + visitors: "1439084", + cordinates: "Point(-118.475 34.0775)", + locationLabel: "Getty Center", + }, + { + location: "http://www.wikidata.org/entity/Q29247", + visitors: "1569565", + cordinates: "Point(-118.475 34.0775)", + locationLabel: "Getty Center", + }, + { + location: "http://www.wikidata.org/entity/Q478695", + visitors: "405799", + cordinates: "Point(11.075556 49.448333)", + locationLabel: "Germanisches Nationalmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q1205606", + cordinates: "Point(9.00075 49.663002777)", + locationLabel: "German Ivory Museum Erbach", + }, + { + location: "http://www.wikidata.org/entity/Q1511196", + cordinates: "Point(8.81462 53.0727)", + locationLabel: "Gerhard Marcks House", + }, + { + location: "http://www.wikidata.org/entity/Q1509304", + cordinates: "Point(-105.941 35.689)", + locationLabel: "Georgia O'Keeffe Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5547611", + cordinates: "Point(-83.369965 33.941272)", + locationLabel: "Georgia Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "15733", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "17740", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "17798", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "17880", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "18573", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "19372", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "19715", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "19822", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "21070", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "21436", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "21920", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "22078", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "22533", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "23699", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "24050", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "25288", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q167182", + visitors: "28693", + cordinates: "Point(1.45847222 43.59111111)", + locationLabel: "Georges Labit Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5546033", + cordinates: "Point(-77.0463 38.9007)", + locationLabel: "George Washington University Art Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q5545947", + cordinates: "Point(-97.7243 30.2699)", + locationLabel: "George Washington Carver Museum and Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q683970", + cordinates: "Point(6.1376 46.1992)", + locationLabel: "Genève Contemporary Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q106775741", + cordinates: "Point(31.269822222 58.521902777)", + locationLabel: "Gentry Assembly Building, Veliky Novgorod", + }, + { + location: "http://www.wikidata.org/entity/Q1502629", + cordinates: "Point(9.15994 49.9753)", + locationLabel: "Gentilhaus", + }, + { + location: "http://www.wikidata.org/entity/Q375712", + cordinates: "Point(16.3677 48.1971)", + locationLabel: "Generali Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q4890", + visitors: "500000", + cordinates: "Point(13.73466 51.05338)", + locationLabel: "Gemäldegalerie Alte Meister", + }, + { + location: "http://www.wikidata.org/entity/Q1501219", + cordinates: "Point(9.41611 51.315)", + locationLabel: "Gemäldegalerie Alte Meister", + }, + { + location: "http://www.wikidata.org/entity/Q165631", + cordinates: "Point(13.36472 52.50861)", + locationLabel: "Gemäldegalerie", + }, + { + location: "http://www.wikidata.org/entity/Q5529829", + cordinates: "Point(144.357 -38.1473)", + locationLabel: "Geelong Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q9046966", + cordinates: "Point(-8.418611111 43.349444444)", + locationLabel: "Gas Natural Fenosa Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q21857513", + cordinates: "Point(37.6496 55.7501)", + locationLabel: "Gary Tatintsian Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5524081", + cordinates: "Point(-99.16044444 19.41739167)", + locationLabel: "Garros Galería", + }, + { + location: "http://www.wikidata.org/entity/Q2043270", + cordinates: "Point(-79.3932 43.6682)", + locationLabel: "Gardiner Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11375286", + cordinates: "Point(135.76530556 35.05111111)", + locationLabel: "Garden of Fine Arts Kyoto", + }, + { + location: "http://www.wikidata.org/entity/Q4504054", + visitors: "882000", + cordinates: "Point(37.6016 55.7278)", + locationLabel: "Garage Center for Contemporary Culture", + }, + { + location: "http://www.wikidata.org/entity/Q496451", + cordinates: "Point(126.99657778 37.59420278)", + locationLabel: "Gansong Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5520347", + cordinates: "Point(12.5175 55.8289)", + locationLabel: "Gammel Holtegaard", + }, + { + location: "http://www.wikidata.org/entity/Q56236120", + cordinates: "Point(13.796071 50.358111)", + locationLabel: "Galérie Benedikta Rejta", + }, + { + location: "http://www.wikidata.org/entity/Q44385654", + cordinates: "Point(12.371172 50.07896)", + locationLabel: "Gallery of fine arts in Cheb", + }, + { + location: "http://www.wikidata.org/entity/Q18614660", + cordinates: "Point(16.6229167 47.2283833)", + locationLabel: "Gallery of Szombathely", + }, + { + location: "http://www.wikidata.org/entity/Q50797802", + cordinates: "Point(20.567199 48.943895)", + locationLabel: "Gallery of Spiš Artists", + }, + { + location: "http://www.wikidata.org/entity/Q3094799", + visitors: "595977", + cordinates: "Point(-4.25237543 55.860129688)", + locationLabel: "Gallery of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11292897", + cordinates: "Point(18.286806 49.834049)", + locationLabel: "Gallery of Fine Arts in Ostrava", + }, + { + location: "http://www.wikidata.org/entity/Q5519011", + cordinates: "Point(18.6972713 45.5583099)", + locationLabel: "Gallery of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3757738", + cordinates: "Point(11.2491 43.7646)", + locationLabel: "Gallery of Costume", + }, + { + location: "http://www.wikidata.org/entity/Q16369665", + cordinates: "Point(43.8387 40.786330555)", + locationLabel: "Gallery of Aslamazyan sisters", + }, + { + location: "http://www.wikidata.org/entity/Q21653349", + cordinates: "Point(139.7671236 35.6688081)", + locationLabel: "Gallery SEIZAN", + }, + { + location: "http://www.wikidata.org/entity/Q2805178", + cordinates: "Point(4.31039 52.07942)", + locationLabel: "Gallery Prince Willem V", + }, + { + location: "http://www.wikidata.org/entity/Q5518997", + cordinates: "Point(-97.1345 49.8099)", + locationLabel: "Gallery One One One", + }, + { + location: "http://www.wikidata.org/entity/Q5518996", + cordinates: "Point(-2.10917 53.5403)", + locationLabel: "Gallery Oldham", + }, + { + location: "http://www.wikidata.org/entity/Q86106540", + cordinates: "Point(-3.180571 51.480551)", + locationLabel: "Gallery No 12", + }, + { + location: "http://www.wikidata.org/entity/Q5518993", + cordinates: "Point(18.41583333 -33.92527778)", + locationLabel: "Gallery Mau Mau", + }, + { + location: "http://www.wikidata.org/entity/Q12288473", + cordinates: "Point(21.2523 41.368975)", + locationLabel: "Gallery Martinovski", + }, + { + location: "http://www.wikidata.org/entity/Q20981565", + cordinates: "Point(28.031043 -26.145102)", + locationLabel: "Gallery MOMO", + }, + { + location: "http://www.wikidata.org/entity/Q86106397", + cordinates: "Point(-2.917826 51.72233)", + locationLabel: "Gallery At Home", + }, + { + location: "http://www.wikidata.org/entity/Q19878144", + cordinates: "Point(-79.3780152 43.6600986)", + locationLabel: "Gallery Arcturus", + }, + { + location: "http://www.wikidata.org/entity/Q5518981", + cordinates: "Point(-122.395 37.7813)", + locationLabel: "Gallery 16", + }, + { + location: "http://www.wikidata.org/entity/Q16652137", + cordinates: "Point(37.664637 55.755829)", + locationLabel: 'Gallery "Fat"', + }, + { + location: "http://www.wikidata.org/entity/Q2054135", + visitors: "232528", + cordinates: "Point(9.19004 45.46735)", + locationLabel: "Gallerie di Piazza Scala", + }, + { + location: "http://www.wikidata.org/entity/Q2054135", + visitors: "232528", + cordinates: "Point(9.191022 45.468269)", + locationLabel: "Gallerie di Piazza Scala", + }, + { + location: "http://www.wikidata.org/entity/Q106703070", + cordinates: "Point(12.242026709 45.666880048)", + locationLabel: "Gallerie delle Prigioni", + }, + { + location: "http://www.wikidata.org/entity/Q338330", + visitors: "210149", + cordinates: "Point(12.328164 45.43113)", + locationLabel: "Gallerie dell'Accademia", + }, + { + location: "http://www.wikidata.org/entity/Q67147071", + cordinates: "Point(14.248655 40.839931)", + locationLabel: "Gallerie d'Italia", + }, + { + location: "http://www.wikidata.org/entity/Q3757748", + cordinates: "Point(13.987699 42.433189)", + locationLabel: "Galleria delle antiche ceramiche abruzzesi", + }, + { + location: "http://www.wikidata.org/entity/Q3757721", + cordinates: "Point(9.19972222 45.4725)", + locationLabel: "Galleria d'arte moderna di Milano", + }, + { + location: "http://www.wikidata.org/entity/Q3094628", + cordinates: "Point(11.250208 43.765648)", + locationLabel: "Galleria d'arte moderna di Firenze", + }, + { + location: "http://www.wikidata.org/entity/Q3094628", + cordinates: "Point(11.250392 43.765652)", + locationLabel: "Galleria d'arte moderna di Firenze", + }, + { + location: "http://www.wikidata.org/entity/Q3757722", + cordinates: "Point(9.691217 45.049423)", + locationLabel: "Galleria d'arte moderna Ricci Oddi", + }, + { + location: "http://www.wikidata.org/entity/Q17631153", + cordinates: "Point(11.2904 44.7271)", + locationLabel: "Galleria d'arte moderna Aroldo Bonzagni", + }, + { + location: "http://www.wikidata.org/entity/Q3757726", + cordinates: "Point(11.337674 44.498844)", + locationLabel: 'Galleria d\'arte moderna "Raccolta Lercaro"', + }, + { + location: "http://www.wikidata.org/entity/Q81180289", + cordinates: "Point(13.2357 46.0623)", + locationLabel: "Galleria d'arte moderna", + }, + { + location: "http://www.wikidata.org/entity/Q69555519", + cordinates: "Point(11.909478 43.945606)", + locationLabel: "Galleria d'arte Vero Stoppioni", + }, + { + location: "http://www.wikidata.org/entity/Q20008271", + cordinates: "Point(10.930868 44.647217)", + locationLabel: "Galleria civica di Modena", + }, + { + location: "http://www.wikidata.org/entity/Q98969525", + cordinates: "Point(13.2329 46.0638)", + locationLabel: "Galleria Tina Modotti", + }, + { + location: "http://www.wikidata.org/entity/Q55348684", + cordinates: "Point(9.394363 44.269627)", + locationLabel: "Galleria Rizzi", + }, + { + location: "http://www.wikidata.org/entity/Q15111157", + cordinates: "Point(13.37111111 38.11666667)", + locationLabel: "Galleria Regionale della Sicilia (Palermo)", + }, + { + location: "http://www.wikidata.org/entity/Q866498", + visitors: "386993", + cordinates: "Point(11.25 43.7652)", + locationLabel: "Galleria Palatina", + }, + { + location: "http://www.wikidata.org/entity/Q866498", + visitors: "400626", + cordinates: "Point(11.25 43.7652)", + locationLabel: "Galleria Palatina", + }, + { + location: "http://www.wikidata.org/entity/Q1080108", + cordinates: "Point(12.63646 43.72387)", + locationLabel: "Galleria Nazionale delle Marche", + }, + { + location: "http://www.wikidata.org/entity/Q1492387", + visitors: "138140", + cordinates: "Point(12.4799803 41.917046)", + locationLabel: "Galleria Nazionale d'Arte Moderna e Contemporanea", + }, + { + location: "http://www.wikidata.org/entity/Q2266081", + cordinates: "Point(12.49021 41.90351)", + locationLabel: "Galleria Nazionale d'Arte Antica", + }, + { + location: "http://www.wikidata.org/entity/Q72681322", + cordinates: "Point(11.353973 46.498493)", + locationLabel: "Galleria Goethe", + }, + { + location: "http://www.wikidata.org/entity/Q25247762", + cordinates: "Point(12.33388889 45.44055556)", + locationLabel: "Galleria Giorgio Franchetti alla Ca' d'Oro", + }, + { + location: "http://www.wikidata.org/entity/Q774128", + cordinates: "Point(10.92066 44.64825)", + locationLabel: "Galleria Estense", + }, + { + location: "http://www.wikidata.org/entity/Q774128", + cordinates: "Point(10.921177 44.648018)", + locationLabel: "Galleria Estense", + }, + { + location: "http://www.wikidata.org/entity/Q3757709", + cordinates: "Point(12.905743 41.463238)", + locationLabel: "Galleria Civica d'Arte Moderna e Contemporanea di Latina", + }, + { + location: "http://www.wikidata.org/entity/Q66051988", + cordinates: "Point(11.39765 45.508441)", + locationLabel: "Galleria Civica", + }, + { + location: "http://www.wikidata.org/entity/Q841506", + visitors: "498477", + cordinates: "Point(12.492222222 41.914166666)", + locationLabel: "Galleria Borghese", + }, + { + location: "http://www.wikidata.org/entity/Q1636905", + visitors: "99000", + cordinates: "Point(24.838452 60.206379)", + locationLabel: "Gallen-Kallela Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3867743", + cordinates: "Point(8.79777778 45.65416667)", + locationLabel: "Gallarate Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3397844", + cordinates: "Point(-8.539722 42.883056)", + locationLabel: "Galicia Contemporary Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q5518510", + cordinates: "Point(37.5946 55.76214)", + locationLabel: "Galeyev Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q31609", + cordinates: "Point(2.166377 41.3902173)", + locationLabel: "Galerías Layetanas", + }, + { + location: "http://www.wikidata.org/entity/Q17043107", + cordinates: "Point(-87.208112 14.106444)", + locationLabel: "Galería Nacional de Arte", + }, + { + location: "http://www.wikidata.org/entity/Q5874699", + cordinates: "Point(3.27991111 42.28951667)", + locationLabel: "Galería Cadaqués", + }, + { + location: "http://www.wikidata.org/entity/Q6609508", + cordinates: "Point(34.772638888 32.067444444)", + locationLabel: "Galeryah Shelush", + }, + { + location: "http://www.wikidata.org/entity/Q6603801", + cordinates: "Point(34.7735 32.051888888)", + locationLabel: "Galeryah Rozenfeld", + }, + { + location: "http://www.wikidata.org/entity/Q43071460", + cordinates: "Point(34.773555555 32.087583333)", + locationLabel: "Galeryah Perisḳop", + }, + { + location: "http://www.wikidata.org/entity/Q48769614", + cordinates: "Point(16.1643 46.6598)", + locationLabel: "Galerija Murska Sobota", + }, + { + location: "http://www.wikidata.org/entity/Q98809154", + cordinates: "Point(9.69983 52.39088)", + locationLabel: "Galeriegebäude Herrenhausen", + }, + { + location: "http://www.wikidata.org/entity/Q51526666", + cordinates: "Point(16.362318611 49.439975833)", + locationLabel: "Galerie z ruky (Czech Republic)", + }, + { + location: "http://www.wikidata.org/entity/Q56433520", + cordinates: "Point(17.1244344 48.8556328)", + locationLabel: "Galerie výtvarného umění v Hodoníně", + }, + { + location: "http://www.wikidata.org/entity/Q19823294", + cordinates: "Point(16.375861111 48.207777777)", + locationLabel: "Galerie nächst St. Stephan", + }, + { + location: "http://www.wikidata.org/entity/Q656296", + cordinates: "Point(2.323888888 48.865833333)", + locationLabel: "Galerie nationale du Jeu de paume", + }, + { + location: "http://www.wikidata.org/entity/Q1491911", + cordinates: "Point(12.3653 51.3339)", + locationLabel: "Galerie für Zeitgenössische Kunst", + }, + { + location: "http://www.wikidata.org/entity/Q1817455", + cordinates: "Point(2.12083333 48.80444444)", + locationLabel: "Galerie des Batailles", + }, + { + location: "http://www.wikidata.org/entity/Q25383199", + cordinates: "Point(5.575369 50.640833)", + locationLabel: "Galerie Wittert", + }, + { + location: "http://www.wikidata.org/entity/Q12018044", + cordinates: "Point(14.401129 50.100725)", + locationLabel: "Galerie Vincence Kramáře", + }, + { + location: "http://www.wikidata.org/entity/Q13433929", + cordinates: "Point(14.4177217 50.0839983)", + locationLabel: "Galerie U Betlémské kaple", + }, + { + location: "http://www.wikidata.org/entity/Q1491884", + cordinates: "Point(9.31727 48.8344)", + locationLabel: "Galerie Stihl Waiblingen", + }, + { + location: "http://www.wikidata.org/entity/Q12018043", + cordinates: "Point(14.4274592 50.0791383)", + locationLabel: "Galerie Smečky", + }, + { + location: "http://www.wikidata.org/entity/Q3500594", + cordinates: "Point(14.4152 50.09016389)", + locationLabel: "Galerie Rudolfinum", + }, + { + location: "http://www.wikidata.org/entity/Q12018041", + cordinates: "Point(14.518809 50.025454)", + locationLabel: "Galerie Opatov", + }, + { + location: "http://www.wikidata.org/entity/Q472706", + cordinates: "Point(13.744385 51.052059)", + locationLabel: "Galerie Neue Meister", + }, + { + location: "http://www.wikidata.org/entity/Q28690458", + cordinates: "Point(137.21897222 36.68977778)", + locationLabel: "Galerie Millet", + }, + { + location: "http://www.wikidata.org/entity/Q2742485", + cordinates: "Point(2.3268734 48.856758)", + locationLabel: "Galerie Maeght", + }, + { + location: "http://www.wikidata.org/entity/Q5518450", + cordinates: "Point(2.31083333 48.87777778)", + locationLabel: "Galerie Louise Leiris", + }, + { + location: "http://www.wikidata.org/entity/Q36879039", + cordinates: "Point(13.229036 49.331731)", + locationLabel: "Galerie Klatovy", + }, + { + location: "http://www.wikidata.org/entity/Q18817409", + cordinates: "Point(9.6551 47.43048)", + locationLabel: "Galerie Hollenstein", + }, + { + location: "http://www.wikidata.org/entity/Q21554874", + cordinates: "Point(15.8799475 49.2155378)", + locationLabel: "Galerie Franta", + }, + { + location: "http://www.wikidata.org/entity/Q56597443", + cordinates: "Point(15.268813 49.949809)", + locationLabel: "Galerie Felixe Jeneweina města Kutné Hory", + }, + { + location: "http://www.wikidata.org/entity/Q61631033", + cordinates: "Point(13.8457303 50.3629867)", + locationLabel: "Galerie Emila Juliše", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "17155", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "20055", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "20222", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "21488", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "22194", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "22253", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "22376", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "22666", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "22691", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "23070", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "23352", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "23857", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "25141", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "25264", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "25791", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "26576", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q3094590", + visitors: "35400", + cordinates: "Point(-0.555834166 47.469109166)", + locationLabel: "Galerie David d'Angers", + }, + { + location: "http://www.wikidata.org/entity/Q12313434", + cordinates: "Point(12.5879 55.6813)", + locationLabel: "Galerie Birch", + }, + { + location: "http://www.wikidata.org/entity/Q19951042", + cordinates: "Point(-1.70183 48.1206)", + locationLabel: "Galerie Art & essai", + }, + { + location: "http://www.wikidata.org/entity/Q26954365", + cordinates: "Point(16.162533333 49.2102)", + locationLabel: "Galerie 12", + }, + { + location: "http://www.wikidata.org/entity/Q9265646", + cordinates: "Point(19.93946 50.06219)", + locationLabel: "Galeria Zderzak", + }, + { + location: "http://www.wikidata.org/entity/Q9265640", + cordinates: "Point(18.6548 54.3498)", + locationLabel: "Galeria ZPAP w Gdańsku", + }, + { + location: "http://www.wikidata.org/entity/Q9265642", + cordinates: "Point(19.962889 49.296917)", + locationLabel: "Galeria Władysława Hasiora", + }, + { + location: "http://www.wikidata.org/entity/Q24945829", + cordinates: "Point(18.7299 54.3613)", + locationLabel: "Galeria Warzywniak in Gdansk", + }, + { + location: "http://www.wikidata.org/entity/Q9265608", + cordinates: "Point(18.664222 50.294528)", + locationLabel: "Galeria Sztuki Współczesnej Esta", + }, + { + location: "http://www.wikidata.org/entity/Q20032763", + cordinates: "Point(19.954267 50.044997)", + locationLabel: "Galeria Olympia", + }, + { + location: "http://www.wikidata.org/entity/Q59785452", + cordinates: "Point(-8.892248 38.522656)", + locationLabel: "Galeria Municipal do Banco de Portugal", + }, + { + location: "http://www.wikidata.org/entity/Q89085402", + cordinates: "Point(-9.235673888 38.756643055)", + locationLabel: "Galeria Municipal Artur Bual", + }, + { + location: "http://www.wikidata.org/entity/Q9265550", + cordinates: "Point(21.051028 52.23375)", + locationLabel: "Galeria Le Guern", + }, + { + location: "http://www.wikidata.org/entity/Q105645079", + cordinates: "Point(19.14567933 50.285572585)", + locationLabel: "Galeria Extravagance", + }, + { + location: "http://www.wikidata.org/entity/Q5518438", + cordinates: "Point(19.04458333 49.82472222)", + locationLabel: "Galeria BWA", + }, + { + location: "http://www.wikidata.org/entity/Q9162984", + cordinates: "Point(17.0374 51.10975)", + locationLabel: "Galeria Awangarda", + }, + { + location: "http://www.wikidata.org/entity/Q11699277", + cordinates: "Point(19.938056 49.284056)", + locationLabel: "Galeria Antoniego Rząsy", + }, + { + location: "http://www.wikidata.org/entity/Q3329724", + cordinates: "Point(28.97749 41.03376)", + locationLabel: "Galatasaray Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106538", + cordinates: "Point(-3.164698 51.486007)", + locationLabel: "G39", + }, + { + location: "http://www.wikidata.org/entity/Q475667", + cordinates: "Point(14.292 48.2901)", + locationLabel: "Führermuseum", + }, + { + location: "http://www.wikidata.org/entity/Q11411184", + cordinates: "Point(136.948569 35.168803)", + locationLabel: "Furukawa Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5509094", + cordinates: "Point(10.3852 55.3977)", + locationLabel: "Funen's Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1171015", + cordinates: "Point(2.126416666 41.382555555)", + locationLabel: "Fundació Suñol", + }, + { + location: "http://www.wikidata.org/entity/Q949576", + cordinates: "Point(2.60916667 39.555)", + locationLabel: "Fundació Pilar i Joan Miró a Mallorca", + }, + { + location: "http://www.wikidata.org/entity/Q867072", + visitors: "352903", + cordinates: "Point(2.16 41.368611111)", + locationLabel: "Fundació Joan Miró", + }, + { + location: "http://www.wikidata.org/entity/Q867072", + visitors: "425067", + cordinates: "Point(2.16 41.368611111)", + locationLabel: "Fundació Joan Miró", + }, + { + location: "http://www.wikidata.org/entity/Q2447148", + cordinates: "Point(2.16361 41.39167)", + locationLabel: "Fundació Antoni Tàpies", + }, + { + location: "http://www.wikidata.org/entity/Q5508243", + visitors: "20000", + cordinates: "Point(-71.045361 42.102611)", + locationLabel: "Fuller Craft Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11277001", + cordinates: "Point(133.359039 34.490967)", + locationLabel: "Fukuyama Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5507735", + cordinates: "Point(140.45652778 37.76791667)", + locationLabel: "Fukushima Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11592587", + cordinates: "Point(130.39875 33.597306)", + locationLabel: "Fukuoka Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11592423", + cordinates: "Point(130.363297 33.552231)", + locationLabel: "Fukuoka Oriental Ceramics Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330163", + cordinates: "Point(130.405917 33.595028)", + locationLabel: "Fukuoka Asian Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3073273", + cordinates: "Point(130.37980556 33.58388889)", + locationLabel: "Fukuoka Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11591489", + cordinates: "Point(136.21525 36.078533)", + locationLabel: "Fukui Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11591305", + cordinates: "Point(136.211133 36.059989)", + locationLabel: "Fukui City Atagozaka Tea Ceremony Museum", + }, + { + location: "http://www.wikidata.org/entity/Q24874086", + cordinates: "Point(136.23427778 36.03897222)", + locationLabel: "Fukui City Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11560128", + cordinates: "Point(138.597527777 36.330888888)", + locationLabel: "Fukazawa Kōko Nonoha Art Museum (Karuizawa)", + }, + { + location: "http://www.wikidata.org/entity/Q3329563", + cordinates: "Point(135.525124 34.694978)", + locationLabel: "Fujita Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17211562", + cordinates: "Point(140.004639 37.085972)", + locationLabel: "Fujishiro Seiji Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11622863", + cordinates: "Point(137.259206 36.142819)", + locationLabel: "Fujii Folk Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5507293", + visitors: "29300", + cordinates: "Point(11.79965 54.72387)", + locationLabel: "Fuglsang Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28808141", + cordinates: "Point(-3.7705051 40.455485)", + locationLabel: "Fuente del Rey House-Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11486046", + cordinates: "Point(139.492222 35.678889)", + locationLabel: "Fuchū-shi Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q5506587", + cordinates: "Point(-122.324 47.6071)", + locationLabel: "Frye Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5506554", + cordinates: "Point(0.2378 52.0251)", + locationLabel: "Fry Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3089259", + cordinates: "Point(-80.3731 25.7537)", + locationLabel: "Frost Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5504731", + cordinates: "Point(-86.783889 36.157778)", + locationLabel: "Frist Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5504730", + cordinates: "Point(23.73219444 37.97227778)", + locationLabel: "Frissiras Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105908", + cordinates: "Point(-4.1278 53.227508)", + locationLabel: "Friends Of Gwynedd Museum & Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2663377", + cordinates: "Point(-99.162844 19.355031)", + locationLabel: "Frida Kahlo Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2663377", + cordinates: "Point(-99.162472 19.3550583)", + locationLabel: "Frida Kahlo Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2663377", + cordinates: "Point(-99.162306 19.355194)", + locationLabel: "Frida Kahlo Museum", + }, + { + location: "http://www.wikidata.org/entity/Q105979668", + cordinates: "Point(-73.963836944 40.773411111)", + locationLabel: "Frick Madison", + }, + { + location: "http://www.wikidata.org/entity/Q3329616", + visitors: "36000", + cordinates: "Point(7.15953 46.8078)", + locationLabel: "Fribourg museum of art and history", + }, + { + location: "http://www.wikidata.org/entity/Q1456031", + cordinates: "Point(7.15924501 46.80332026)", + locationLabel: "Fri Art", + }, + { + location: "http://www.wikidata.org/entity/Q22077983", + cordinates: "Point(-119.7739 36.7708)", + locationLabel: "Fresno Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1075126", + visitors: "389000", + cordinates: "Point(-77.0274 38.8881)", + locationLabel: "Freer Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q12312811", + cordinates: "Point(10.5347 57.4422)", + locationLabel: "Frederikshavn Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2483537", + cordinates: "Point(-85.591 42.981)", + locationLabel: "Frederik Meijer Gardens & Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q2483537", + cordinates: "Point(-85.5875 42.98139)", + locationLabel: "Frederik Meijer Gardens & Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q4683857", + cordinates: "Point(26.09449167 44.45097222)", + locationLabel: "Frederic and Cecilia Cuțescu-Storck Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5497121", + cordinates: "Point(-75.4937 44.6986)", + locationLabel: "Frederic Remington Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5495608", + cordinates: "Point(-97.44 35.22)", + locationLabel: "Fred Jones Jr. Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1148324", + cordinates: "Point(-99.1432 19.437114)", + locationLabel: "Franz Mayer Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1148324", + cordinates: "Point(-99.143313 19.437278)", + locationLabel: "Franz Mayer Museum", + }, + { + location: "http://www.wikidata.org/entity/Q574961", + visitors: "195000", + cordinates: "Point(4.633333333 52.376666666)", + locationLabel: "Frans Hals Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5492248", + cordinates: "Point(145.123494 -38.146125)", + locationLabel: "Frankston Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2855129", + cordinates: "Point(-118.440277777 34.074444444)", + locationLabel: "Franklin D. Murphy Sculpture Garden", + }, + { + location: "http://www.wikidata.org/entity/Q2855129", + cordinates: "Point(-118.44 34.0751)", + locationLabel: "Franklin D. Murphy Sculpture Garden", + }, + { + location: "http://www.wikidata.org/entity/Q11787081", + cordinates: "Point(18.9631 50.2269)", + locationLabel: "Franciscan missionary museum in Katowice", + }, + { + location: "http://www.wikidata.org/entity/Q5478803", + cordinates: "Point(-73.8974 41.6862)", + locationLabel: "Frances Lehman Loeb Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q8565299", + cordinates: "Point(-78.5028 38.0385)", + locationLabel: "Fralin Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11814615", + cordinates: "Point(17.0761 51.1083)", + locationLabel: "Four Domes Pavilion, Wrocław", + }, + { + location: "http://www.wikidata.org/entity/Q1435656", + cordinates: "Point(7.097494444 43.603872222)", + locationLabel: "Foundation Hartung Bergman", + }, + { + location: "http://www.wikidata.org/entity/Q666331", + cordinates: "Point(8.561711 47.353022)", + locationLabel: "Foundation E.G. Bührle Collection", + }, + { + location: "http://www.wikidata.org/entity/Q86106077", + cordinates: "Point(-3.389112 51.946406)", + locationLabel: "Found Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1350100", + cordinates: "Point(8.739019444 47.496019444)", + locationLabel: "Fotomuseum Winterthur", + }, + { + location: "http://www.wikidata.org/entity/Q1439649", + cordinates: "Point(18.08472222 59.31778611)", + locationLabel: "Fotografiska", + }, + { + location: "http://www.wikidata.org/entity/Q2635059", + cordinates: "Point(4.387551 51.209035)", + locationLabel: "FotoMuseum Provincie Antwerpen", + }, + { + location: "http://www.wikidata.org/entity/Q2635059", + cordinates: "Point(4.3875 51.209167)", + locationLabel: "FotoMuseum Provincie Antwerpen", + }, + { + location: "http://www.wikidata.org/entity/Q2635059", + cordinates: "Point(4.387901 51.20892)", + locationLabel: "FotoMuseum Provincie Antwerpen", + }, + { + location: "http://www.wikidata.org/entity/Q1108956", + cordinates: "Point(-58.364956 -34.599619)", + locationLabel: "Fortabat Art Collection", + }, + { + location: "http://www.wikidata.org/entity/Q1108956", + cordinates: "Point(-58.36494167 -34.59946667)", + locationLabel: "Fortabat Art Collection", + }, + { + location: "http://www.wikidata.org/entity/Q5472294", + cordinates: "Point(-85.1358 41.0814)", + locationLabel: "Fort Wayne Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18325621", + cordinates: "Point(-94.415407 35.38155)", + locationLabel: "Fort Smith Regional Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q75371691", + cordinates: "Point(170.9694204 -45.1014425)", + locationLabel: "Forrester Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3905110", + cordinates: "Point(12.0360675 44.2215034)", + locationLabel: "Forlì Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3077112", + cordinates: "Point(6.136125 46.20400556)", + locationLabel: "Forde", + }, + { + location: "http://www.wikidata.org/entity/Q877030", + cordinates: "Point(16.3308 47.7094)", + locationLabel: "Forchtenstein Castle", + }, + { + location: "http://www.wikidata.org/entity/Q5465717", + cordinates: "Point(-80.6273 28.1313)", + locationLabel: "Foosaner Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3972975", + cordinates: "Point(9.172526 45.465601)", + locationLabel: "Fondazione Stelline", + }, + { + location: "http://www.wikidata.org/entity/Q3747209", + cordinates: "Point(12.341069 45.436278)", + locationLabel: "Fondazione Querini Stampalia", + }, + { + location: "http://www.wikidata.org/entity/Q3747208", + cordinates: "Point(9.205886 45.444525)", + locationLabel: "Fondazione Prada", + }, + { + location: "http://www.wikidata.org/entity/Q72680473", + cordinates: "Point(12.516493 41.899033)", + locationLabel: "Fondazione Pastificio Cerere", + }, + { + location: "http://www.wikidata.org/entity/Q55685693", + cordinates: "Point(7.642983 45.06197)", + locationLabel: "Fondazione Merz", + }, + { + location: "http://www.wikidata.org/entity/Q55685693", + cordinates: "Point(7.6428 45.06211)", + locationLabel: "Fondazione Merz", + }, + { + location: "http://www.wikidata.org/entity/Q3747192", + cordinates: "Point(10.348469 44.667649)", + locationLabel: "Fondazione Magnani-Rocca", + }, + { + location: "http://www.wikidata.org/entity/Q106632725", + cordinates: "Point(9.205567754 45.440664511)", + locationLabel: "Fondazione ICA Milano", + }, + { + location: "http://www.wikidata.org/entity/Q73487148", + cordinates: "Point(12.449168 42.029979)", + locationLabel: "Fondazione Baruchello", + }, + { + location: "http://www.wikidata.org/entity/Q3075580", + cordinates: "Point(6.63718 46.5203)", + locationLabel: "Fondation Toms Pauli", + }, + { + location: "http://www.wikidata.org/entity/Q687778", + cordinates: "Point(7.07085 46.09512)", + locationLabel: "Fondation Pierre Gianadda", + }, + { + location: "http://www.wikidata.org/entity/Q27484306", + cordinates: "Point(7.448333333 46.282333333)", + locationLabel: "Fondation Pierre Arnaud", + }, + { + location: "http://www.wikidata.org/entity/Q5464986", + cordinates: "Point(2.5475 48.69416667)", + locationLabel: "Fondation Jean Dubuffet", + }, + { + location: "http://www.wikidata.org/entity/Q16303680", + cordinates: "Point(1.44206 43.6003)", + locationLabel: "Fondation Bemberg", + }, + { + location: "http://www.wikidata.org/entity/Q5464421", + cordinates: "Point(76.622322 12.313651)", + locationLabel: "Folk Lore Museum Mysore", + }, + { + location: "http://www.wikidata.org/entity/Q5464414", + cordinates: "Point(21.733333 38.25)", + locationLabel: "Folk Art Museum of Patras", + }, + { + location: "http://www.wikidata.org/entity/Q5464411", + cordinates: "Point(20.85 39.666667)", + locationLabel: 'Folk Art Museum of Epirus – "Kostas Frontzos"', + }, + { + location: "http://www.wikidata.org/entity/Q5464412", + cordinates: "Point(23.73995833 38.07523611)", + locationLabel: "Folk Art Museum of Acharnes", + }, + { + location: "http://www.wikidata.org/entity/Q2723096", + cordinates: "Point(-99.14634444 19.433825)", + locationLabel: "Folk Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3075008", + visitors: "250000", + cordinates: "Point(-82.4821 35.5924)", + locationLabel: "Folk Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q809600", + cordinates: "Point(-71.114778 42.374031)", + locationLabel: "Fogg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q809600", + cordinates: "Point(-71.114722 42.374167)", + locationLabel: "Fogg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q809600", + cordinates: "Point(-71.114518 42.37508)", + locationLabel: "Fogg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3557814", + cordinates: "Point(21.404583333 40.777472222)", + locationLabel: "Florina Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q5461469", + cordinates: "Point(-82.6367 27.7731)", + locationLabel: "Florida International Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5459526", + cordinates: "Point(-83.6778 43.0224)", + locationLabel: "Flint Institute of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q18164839", + cordinates: "Point(138.602153 -34.920871)", + locationLabel: "Flinders University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q19521365", + cordinates: "Point(14.251083 38.010001)", + locationLabel: "Fiumara d'Arte", + }, + { + location: "http://www.wikidata.org/entity/Q1421440", + visitors: "364269", + cordinates: "Point(0.119444 52.200278)", + locationLabel: "Fitzwilliam Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5455423", + cordinates: "Point(-71.8038 42.5869)", + locationLabel: "Fitchburg Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5454820", + cordinates: "Point(-73.933125 40.75346389)", + locationLabel: "Fisher Landau Center", + }, + { + location: "http://www.wikidata.org/entity/Q96959930", + cordinates: "Point(-92.91455 42.0389)", + locationLabel: "Fisher Community Center Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5454287", + cordinates: "Point(0.906 51.889)", + locationLabel: "Firstsite", + }, + { + location: "http://www.wikidata.org/entity/Q5452116", + cordinates: "Point(-60.633139 -32.946611)", + locationLabel: "Firma y Odilo Estévez Municipal Decorative Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5452116", + cordinates: "Point(-60.6331 -32.9467)", + locationLabel: "Firma y Odilo Estévez Municipal Decorative Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2983474", + cordinates: "Point(24.93694444 60.17166667)", + locationLabel: "Finnish National Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q20857936", + cordinates: "Point(-118.16027778 34.14888889)", + locationLabel: "Finnish Folk Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85925011", + cordinates: "Point(144.9916841 -37.8523515)", + locationLabel: "Finkelstein Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4496358", + cordinates: "Point(36.249833 50.006258)", + locationLabel: "Fine Arts Museum Kharkiv", + }, + { + location: "http://www.wikidata.org/entity/Q5450052", + cordinates: "Point(106.814242 -6.134122)", + locationLabel: "Fine Art and Ceramic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q186499", + visitors: "76688", + cordinates: "Point(-90.5759 41.5213)", + locationLabel: "Figge Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5444068", + cordinates: "Point(-0.33912 53.7434)", + locationLabel: "Ferens Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5443475", + cordinates: "Point(-74.9269 42.7157)", + locationLabel: "Fenimore Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15217570", + cordinates: "Point(120.74583333 24.255)", + locationLabel: "Fengyuan Museum of Lacquer Art", + }, + { + location: "http://www.wikidata.org/entity/Q444339", + cordinates: "Point(8.03851 52.27522)", + locationLabel: "Felix Nussbaum Haus", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "9485", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "9494", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "9947", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "10311", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "10474", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "10523", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "10701", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "11252", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "11347", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "11791", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "11809", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "12153", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "12455", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "13237", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "13273", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "15437", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329161", + visitors: "16193", + cordinates: "Point(5.91583333 45.69194444)", + locationLabel: "Faure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18609425", + cordinates: "Point(135.05244 48.4731)", + locationLabel: "Far Eastern Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1253095", + cordinates: "Point(8.47111111 55.34908333)", + locationLabel: "Fanø Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q11084685", + cordinates: "Point(120.15722222 23.19916667)", + locationLabel: "Fangyuan Museum of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q5432578", + cordinates: "Point(-5.0724 50.1557)", + locationLabel: "Falmouth Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q61630994", + cordinates: "Point(16.616187 49.187216)", + locationLabel: "Fait Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4883509", + cordinates: "Point(-73.2533 41.1584)", + locationLabel: "Fairfield University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1519002", + visitors: "253041", + cordinates: "Point(3.880191666 43.611736111)", + locationLabel: "Fabre museum", + }, + { + location: "http://www.wikidata.org/entity/Q561944", + cordinates: "Point(8.2434 48.7621)", + locationLabel: "Fabergé Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12310929", + cordinates: "Point(10.2469 55.0944)", + locationLabel: "Faaborg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5422747", + cordinates: "Point(-74.00712222 40.74710556)", + locationLabel: "Eyebeam Art and Technology Center", + }, + { + location: "http://www.wikidata.org/entity/Q5421717", + cordinates: "Point(-72.2841167 18.5067097)", + locationLabel: "Expressions Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q50656029", + cordinates: "Point(98.913978 8.071122)", + locationLabel: "Exhibition Hall of the Andaman Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q21551984", + cordinates: "Point(15.786423 40.634365)", + locationLabel: "Exhibition Gallery of the National Library of Potenza", + }, + { + location: "http://www.wikidata.org/entity/Q965645", + cordinates: "Point(-64.18497222 -31.42702778)", + locationLabel: "Evita Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5417350", + cordinates: "Point(-76.1469 43.0447)", + locationLabel: "Everson Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5417261", + cordinates: "Point(-75.6442 41.4006)", + locationLabel: "Everhart Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5415088", + cordinates: "Point(-43.198345977 -22.975510442)", + locationLabel: "Eva Klabin House Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1265098", + cordinates: "Point(25.35138889 54.83083333)", + locationLabel: "Europos Parkas", + }, + { + location: "http://www.wikidata.org/entity/Q96055560", + cordinates: "Point(-0.9075 41.6595)", + locationLabel: "Etopia Centre for Arts & Technology", + }, + { + location: "http://www.wikidata.org/entity/Q5401727", + cordinates: "Point(-0.100497 51.543923)", + locationLabel: "Estorick Collection of Modern Italian Art", + }, + { + location: "http://www.wikidata.org/entity/Q2217345", + cordinates: "Point(16.33302 48.30191)", + locationLabel: "Essl Collection", + }, + { + location: "http://www.wikidata.org/entity/Q47477608", + cordinates: "Point(14.45138889 68.20805556)", + locationLabel: "Espolin Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q105594982", + cordinates: "Point(2.321487192 48.843487621)", + locationLabel: "Espace Frans Krajcberg", + }, + { + location: "http://www.wikidata.org/entity/Q6023573", + cordinates: "Point(-86.516666666 39.168333333)", + locationLabel: "Eskenazi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1871689", + visitors: "100000", + cordinates: "Point(4.314167 52.083333)", + locationLabel: "Escher Museum", + }, + { + location: "http://www.wikidata.org/entity/Q19842399", + cordinates: "Point(8.4505741 55.4642399)", + locationLabel: "Esbjerg Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q357917", + cordinates: "Point(2.64138889 39.57)", + locationLabel: "Es Baluard", + }, + { + location: "http://www.wikidata.org/entity/Q86106061", + cordinates: "Point(-3.331271 52.08616)", + locationLabel: "Erwood Station Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3328388", + cordinates: "Point(12.5146 42.5191)", + locationLabel: "Eroli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q871581", + cordinates: "Point(9.8675 53.55361111)", + locationLabel: "Ernst Barlach House", + }, + { + location: "http://www.wikidata.org/entity/Q5394286", + cordinates: "Point(-58.35722222 -34.61944444)", + locationLabel: + "Ernesto de la Cárcova Museum of Reproductions and Comparative Sculpture", + }, + { + location: "http://www.wikidata.org/entity/Q5394286", + cordinates: "Point(-58.345305 -34.624209)", + locationLabel: + "Ernesto de la Cárcova Museum of Reproductions and Comparative Sculpture", + }, + { + location: "http://www.wikidata.org/entity/Q30676307", + cordinates: "Point(18.16414 47.984548)", + locationLabel: "Ernest Zmeták Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "2371", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "9726", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "9853", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "11273", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "11741", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "11759", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "12128", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "12281", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "12887", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "13367", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "13516", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "13691", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "14214", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "15195", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "15561", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329149", + visitors: "22297", + cordinates: "Point(-1.365277777 46.205277777)", + locationLabel: "Ernest Cognacq Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5388270", + cordinates: "Point(-80.086 42.1312)", + locationLabel: "Erie Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5386237", + cordinates: "Point(-72.533 42.3211)", + locationLabel: "Eric Carle Museum of Picture Book Art", + }, + { + location: "http://www.wikidata.org/entity/Q4532320", + cordinates: "Point(30.2514 59.9321)", + locationLabel: "Erarta", + }, + { + location: "http://www.wikidata.org/entity/Q878325", + cordinates: "Point(13.40714 52.515848)", + locationLabel: "Ephraim-Palais", + }, + { + location: "http://www.wikidata.org/entity/Q5017823", + cordinates: "Point(136.89027778 35.50583333)", + locationLabel: "Enkū Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10974975", + cordinates: "Point(136.772161 35.433208)", + locationLabel: "Enkū Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18216845", + cordinates: "Point(174.77605 -41.29355)", + locationLabel: "Enjoy Public Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17229236", + cordinates: "Point(139.70280556 36.19469444)", + locationLabel: "Engravings Museum", + }, + { + location: "http://www.wikidata.org/entity/Q42885637", + cordinates: "Point(-79.537902 8.952652)", + locationLabel: "Endara Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12287461", + cordinates: "Point(24.751111111 42.148611111)", + locationLabel: "Encho Pironkov Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105931", + cordinates: "Point(-3.827291 53.321373)", + locationLabel: "Emrys Williams Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q18286819", + cordinates: "Point(7.473533 51.355641)", + locationLabel: "Emil-Schumacher-Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11857752", + cordinates: "Point(22.187778 61.294444)", + locationLabel: "Emil Cedercreutz Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11291442", + cordinates: "Point(135.28513889 34.77291667)", + locationLabel: "Emba Museum of Chinese Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q17769549", + cordinates: "Point(10.692694444 59.947027777)", + locationLabel: "Emanuel Vigeland Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5368756", + cordinates: "Point(-46.67555556 -23.57361111)", + locationLabel: "Ema Gordon Klabin Cultural Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q86106357", + cordinates: "Point(-3.941724 51.623942)", + locationLabel: "Elysium Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5362267", + cordinates: "Point(-73.9638 40.6713)", + locationLabel: "Elizabeth A. Sackler Center for Feminist Art", + }, + { + location: "http://www.wikidata.org/entity/Q27485157", + cordinates: "Point(8.81054 46.1736)", + locationLabel: "Elisarion museum", + }, + { + location: "http://www.wikidata.org/entity/Q5361396", + cordinates: "Point(-97.726389 30.306667)", + locationLabel: "Elisabet Ney Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5360357", + visitors: "150000", + cordinates: "Point(-84.4768 42.7327)", + locationLabel: "Eli and Edythe Broad Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5351782", + cordinates: "Point(-106.490109 31.758506)", + locationLabel: "El Paso Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1061142", + cordinates: "Point(-73.9514 40.7931)", + locationLabel: "El Museo del Barrio", + }, + { + location: "http://www.wikidata.org/entity/Q3848124", + cordinates: "Point(-4.0293 39.8559)", + locationLabel: "El Greco Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4174318", + cordinates: "Point(60.603236 56.835128)", + locationLabel: "Ekaterinburg Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q5350087", + cordinates: "Point(136.775092 35.435001)", + locationLabel: "Eizō & Tōichi Katō Memorial Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5350016", + cordinates: "Point(-86.1678 39.7683)", + locationLabel: "Eiteljorg Museum of American Indians and Western Art", + }, + { + location: "http://www.wikidata.org/entity/Q728781", + cordinates: "Point(139.723296 35.713171)", + locationLabel: "Eisei Bunko Museum", + }, + { + location: "http://www.wikidata.org/entity/Q62619353", + cordinates: "Point(24.909666666 67.653694444)", + locationLabel: "Einari Junttila Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17219850", + cordinates: "Point(133.005167 34.064278)", + locationLabel: "Ehime Bunkakan", + }, + { + location: "http://www.wikidata.org/entity/Q1298426", + cordinates: "Point(16.053 48.3331)", + locationLabel: "Egon-Schiele-Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1298884", + cordinates: "Point(14.31320278 48.81068333)", + locationLabel: "Egon Schiele Art Centrum", + }, + { + location: "http://www.wikidata.org/entity/Q1298884", + cordinates: "Point(14.3132718 48.8106814)", + locationLabel: "Egon Schiele Art Centrum", + }, + { + location: "http://www.wikidata.org/entity/Q11664968", + cordinates: "Point(135.357361 34.766889)", + locationLabel: "Egawa Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q3868249", + cordinates: "Point(14.64029167 40.75538611)", + locationLabel: "Educational Museum of photography", + }, + { + location: "http://www.wikidata.org/entity/Q5340780", + visitors: "46000", + cordinates: "Point(-58.4171 -34.5696)", + locationLabel: "Eduardo Sívori Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5340780", + visitors: "46000", + cordinates: "Point(-58.41805556 -34.56916667)", + locationLabel: "Eduardo Sívori Museum", + }, + { + location: "http://www.wikidata.org/entity/Q21512965", + cordinates: "Point(44.50547 40.17943)", + locationLabel: "Eduard Isabekyan Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5340341", + cordinates: "Point(17.95888889 59.44055556)", + locationLabel: "Edsvik Konsthall", + }, + { + location: "http://www.wikidata.org/entity/Q5340220", + cordinates: "Point(114.158 22.2802)", + locationLabel: "Edouard Malingue Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q31739608", + cordinates: "Point(28.22991667 -25.75466667)", + locationLabel: "Edoardo Villa Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22908054", + cordinates: "Point(8.20858333 53.14363889)", + locationLabel: "Edith-Russ-Haus", + }, + { + location: "http://www.wikidata.org/entity/Q23016804", + cordinates: "Point(-118.4849574 34.0033704)", + locationLabel: "Edgemar", + }, + { + location: "http://www.wikidata.org/entity/Q5330480", + cordinates: "Point(168.946 -46.098)", + locationLabel: "Eastern Southland Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3094652", + cordinates: "Point(21.25888889 48.71972222)", + locationLabel: "East Slovak Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q313746", + cordinates: "Point(13.444722222 52.503055555)", + locationLabel: "East Side Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11801618", + cordinates: "Point(19.9291 50.0614)", + locationLabel: "EUROPEUM - European Culture Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1276065", + cordinates: "Point(16.20171483 -20.80392218)", + locationLabel: "ETANE", + }, + { + location: "http://www.wikidata.org/entity/Q4349514", + cordinates: "Point(24.79425 60.178805555)", + locationLabel: "EMMA – Espoo Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11533890", + cordinates: "Point(135.758389 35.005583)", + locationLabel: "Dye museum Seiryu", + }, + { + location: "http://www.wikidata.org/entity/Q55610132", + cordinates: "Point(18.41666667 43.86666667)", + locationLabel: "Duplex Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16337697", + visitors: "341609", + cordinates: "Point(9.191625 45.463246)", + locationLabel: "Duomo di Milano Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5314986", + cordinates: "Point(170.503 -45.8743)", + locationLabel: "Dunedin Public Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1241163", + cordinates: "Point(-0.086388888 51.446111111)", + locationLabel: "Dulwich Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2580264", + cordinates: "Point(144.7524 13.4743)", + locationLabel: "Dulce Nombre de Maria Cathedral Basilica", + }, + { + location: "http://www.wikidata.org/entity/Q17009622", + cordinates: "Point(24.7816 -28.7479)", + locationLabel: "Duggan-Cronin Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1263962", + cordinates: "Point(-2.537140155 57.654197893)", + locationLabel: "Duff House", + }, + { + location: "http://www.wikidata.org/entity/Q18342363", + cordinates: "Point(-90.66823 42.49985)", + locationLabel: "Dubuque Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3040529", + cordinates: "Point(-6.26401 53.354383)", + locationLabel: "Dublin Writers Museum", + }, + { + location: "http://www.wikidata.org/entity/Q496040", + cordinates: "Point(-6.264722222 53.354166666)", + locationLabel: "Dublin City Gallery The Hugh Lane", + }, + { + location: "http://www.wikidata.org/entity/Q3040299", + visitors: "100321", + cordinates: "Point(-87.6073 41.7921)", + locationLabel: "DuSable Museum of African American History", + }, + { + location: "http://www.wikidata.org/entity/Q3040299", + visitors: "102603", + cordinates: "Point(-87.6073 41.7921)", + locationLabel: "DuSable Museum of African American History", + }, + { + location: "http://www.wikidata.org/entity/Q3040299", + visitors: "108874", + cordinates: "Point(-87.6073 41.7921)", + locationLabel: "DuSable Museum of African American History", + }, + { + location: "http://www.wikidata.org/entity/Q3040299", + visitors: "118473", + cordinates: "Point(-87.6073 41.7921)", + locationLabel: "DuSable Museum of African American History", + }, + { + location: "http://www.wikidata.org/entity/Q3040299", + visitors: "138381", + cordinates: "Point(-87.6073 41.7921)", + locationLabel: "DuSable Museum of African American History", + }, + { + location: "http://www.wikidata.org/entity/Q26562695", + cordinates: "Point(-1.5037 53.68247)", + locationLabel: "Drury Lane Library", + }, + { + location: "http://www.wikidata.org/entity/Q830042", + cordinates: "Point(13.74305556 51.05)", + locationLabel: "Dresden City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3039170", + cordinates: "Point(-74.0029 40.7224)", + locationLabel: "Drawing Center", + }, + { + location: "http://www.wikidata.org/entity/Q2008878", + cordinates: "Point(10.1971 59.7381)", + locationLabel: "Drammens Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5303887", + cordinates: "Point(28.978444444 41.035805555)", + locationLabel: "Doğançay Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17049879", + cordinates: "Point(174.904 -41.2118)", + locationLabel: "Dowse Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1051789", + cordinates: "Point(9.687081 4.043348)", + locationLabel: "Doual'art", + }, + { + location: "http://www.wikidata.org/entity/Q1203458", + cordinates: "Point(12.481145 41.897669)", + locationLabel: "Doria Pamphilj Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1203458", + cordinates: "Point(12.481639 41.897915)", + locationLabel: "Doria Pamphilj Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1954314", + cordinates: "Point(14.258669444 40.854861111)", + locationLabel: "Donnaregina Contemporary Art Museum, Madre Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1971344", + cordinates: "Point(-73.6908 41.0342)", + locationLabel: "Donald M. Kendall Sculpture Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q3539675", + cordinates: "Point(139.823667 38.891306)", + locationLabel: "Domon Ken Photography Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3539675", + cordinates: "Point(139.823716 38.891299)", + locationLabel: "Domon Ken Photography Museum", + }, + { + location: "http://www.wikidata.org/entity/Q29913603", + cordinates: "Point(44.519683333 40.180394444)", + locationLabel: "Dolls' Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q20708592", + cordinates: "Point(-71.981388888 44.435277777)", + locationLabel: "Dog Mountain", + }, + { + location: "http://www.wikidata.org/entity/Q5284947", + cordinates: "Point(-89.9176 35.106)", + locationLabel: "Dixon Gallery and Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q5282214", + cordinates: "Point(-94.07575 30.04622222)", + locationLabel: "Dishman Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q21188687", + cordinates: "Point(14.332311 41.074043)", + locationLabel: "Diocesan Museum of Caserta", + }, + { + location: "http://www.wikidata.org/entity/Q3330320", + cordinates: "Point(11.983145 43.27213)", + locationLabel: "Diocesan Museum in Cortona", + }, + { + location: "http://www.wikidata.org/entity/Q86106186", + cordinates: "Point(-4.719054 51.880946)", + locationLabel: "Dilys Photography Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q36933515", + cordinates: "Point(-99.146956 19.43618)", + locationLabel: "Diego Rivera Mural Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5274238", + cordinates: "Point(24.85638889 60.18527778)", + locationLabel: "Didrichsen Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5273047", + cordinates: "Point(-4.48972 55.6083)", + locationLabel: "Dick Institute", + }, + { + location: "http://www.wikidata.org/entity/Q86106056", + cordinates: "Point(-4.396723 52.038916)", + locationLabel: "Diane Mathias Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q1207917", + cordinates: "Point(-73.9825 41.4997)", + locationLabel: "Dia Beacon", + }, + { + location: "http://www.wikidata.org/entity/Q904812", + cordinates: "Point(18.40845 47.19233)", + locationLabel: "Deák Collection - Municipal Gallery (Székesfehérvár)", + }, + { + location: "http://www.wikidata.org/entity/Q574114", + cordinates: "Point(13.391 52.5168)", + locationLabel: "Deutsche Guggenheim", + }, + { + location: "http://www.wikidata.org/entity/Q1202189", + cordinates: "Point(10.8992 48.365)", + locationLabel: "Deutsche Barockgalerie", + }, + { + location: "http://www.wikidata.org/entity/Q1201549", + cordinates: "Point(-83.064722222 42.359444444)", + locationLabel: "Detroit Institute of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q834603", + visitors: "172000", + cordinates: "Point(12.59335 55.686375)", + locationLabel: "Designmuseum Denmark", + }, + { + location: "http://www.wikidata.org/entity/Q2330528", + cordinates: "Point(22.941944444 40.632222222)", + locationLabel: "Design Museum of Thessaloniki", + }, + { + location: "http://www.wikidata.org/entity/Q2297982", + cordinates: "Point(34.777608333 32.010961111)", + locationLabel: "Design Museum Holon", + }, + { + location: "http://www.wikidata.org/entity/Q3330350", + cordinates: "Point(24.9465335 60.1630679)", + locationLabel: "Design Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330350", + cordinates: "Point(24.946606 60.163085)", + locationLabel: "Design Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330350", + cordinates: "Point(24.946411 60.16312)", + locationLabel: "Design Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3330350", + cordinates: "Point(24.9465576 60.16310151)", + locationLabel: "Design Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5264264", + visitors: "225000", + cordinates: "Point(-79.3801 43.6479)", + locationLabel: "Design Exchange", + }, + { + location: "http://www.wikidata.org/entity/Q5263501", + cordinates: "Point(-93.681666666 41.583888888)", + locationLabel: "Des Moines Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q8012", + cordinates: "Point(-1.48003 52.92292)", + locationLabel: "Derby Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1189960", + cordinates: "Point(-104.989722222 39.737222222)", + locationLabel: "Denver Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11965101", + cordinates: "Point(12.5971 55.686)", + locationLabel: "Den Kongelige Afstøbningssamling", + }, + { + location: "http://www.wikidata.org/entity/Q3022270", + cordinates: "Point(12.587083333 55.691388888)", + locationLabel: "Den Frie Udstilling", + }, + { + location: "http://www.wikidata.org/entity/Q5256433", + cordinates: "Point(-76.3029 40.0381)", + locationLabel: "Demuth Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5253245", + cordinates: "Point(-75.56 39.7389)", + locationLabel: "Delaware Center for the Contemporary Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1183941", + cordinates: "Point(-75.565 39.765277777)", + locationLabel: "Delaware Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3021342", + cordinates: "Point(-74.0025 40.722)", + locationLabel: "Deitch Projects", + }, + { + location: "http://www.wikidata.org/entity/Q1183156", + cordinates: "Point(10.00638889 53.54638889)", + locationLabel: "Deichtorhallen", + }, + { + location: "http://www.wikidata.org/entity/Q5248044", + cordinates: "Point(35.160252 31.768201)", + locationLabel: "Debel Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q25553731", + cordinates: "Point(20.526055555 41.524527777)", + locationLabel: "Debar Hammam", + }, + { + location: "http://www.wikidata.org/entity/Q2679817", + cordinates: "Point(-3.2242 55.9518)", + locationLabel: "Dean Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5244200", + cordinates: "Point(-76.7046 37.2689)", + locationLabel: "DeWitt Wallace Decorative Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2019741", + cordinates: "Point(-71.3114 42.4311)", + locationLabel: "DeCordova Museum and Sculpture Park", + }, + { + location: "http://www.wikidata.org/entity/Q15962410", + cordinates: "Point(5.38389 52.1519)", + locationLabel: "De Zonnehof", + }, + { + location: "http://www.wikidata.org/entity/Q3329750", + cordinates: "Point(-121.93819 37.3523)", + locationLabel: "De Saisset Museum", + }, + { + location: "http://www.wikidata.org/entity/Q13866168", + cordinates: "Point(5.07502 51.56739)", + locationLabel: "De Pont", + }, + { + location: "http://www.wikidata.org/entity/Q597355", + visitors: "303834", + cordinates: "Point(-84.201111 39.765833)", + locationLabel: "Dayton Art Institute", + }, + { + location: "http://www.wikidata.org/entity/Q15694044", + cordinates: "Point(-71.3073 42.2937)", + locationLabel: "Davis Museum and Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q5238285", + cordinates: "Point(-85.4102 40.1999)", + locationLabel: "David Owsley Museum of Art Ball State University", + }, + { + location: "http://www.wikidata.org/entity/Q536499", + cordinates: "Point(12.58225 55.68429)", + locationLabel: "David Collection", + }, + { + location: "http://www.wikidata.org/entity/Q18342559", + cordinates: "Point(-93.269089 38.696871)", + locationLabel: "Daum Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q31260845", + cordinates: "Point(102.952222222 1.854305555)", + locationLabel: "Dato' Onn Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q15804615", + cordinates: "Point(8.524846 47.389368)", + locationLabel: "Daros-Latinamerica", + }, + { + location: "http://www.wikidata.org/entity/Q86105955", + cordinates: "Point(-3.40902 53.339077)", + locationLabel: "Darlington Art", + }, + { + location: "http://www.wikidata.org/entity/Q1283985", + cordinates: "Point(21.435833333 41.998611111)", + locationLabel: "Daout Pacha Hammam", + }, + { + location: "http://www.wikidata.org/entity/Q1165115", + cordinates: "Point(17.232605 48.034237)", + locationLabel: "Danubiana, Meulensteen Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16954084", + cordinates: "Point(-71.418 42.2815)", + locationLabel: "Danforth Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5211817", + cordinates: "Point(-0.118889 51.5025)", + locationLabel: "Dalí Universe", + }, + { + location: "http://www.wikidata.org/entity/Q1143722", + visitors: "1105169", + cordinates: "Point(2.959444444 42.268055555)", + locationLabel: "Dalí Theatre and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q973216", + cordinates: "Point(2.33972222 48.88652778)", + locationLabel: "Dalí Paris", + }, + { + location: "http://www.wikidata.org/entity/Q1157914", + cordinates: "Point(13.3785763 52.5088744)", + locationLabel: "Dalí Berlin", + }, + { + location: "http://www.wikidata.org/entity/Q10466272", + cordinates: "Point(12.43694444 58.80805556)", + locationLabel: "Dalsland art museum", + }, + { + location: "http://www.wikidata.org/entity/Q745866", + visitors: "490000", + cordinates: "Point(-96.80163 32.78819)", + locationLabel: "Dallas Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4135315", + cordinates: "Point(-63.5879 44.6376)", + locationLabel: "Dalhousie Arts Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2999991", + cordinates: "Point(-74.00480556 40.725)", + locationLabel: "Dahesh Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q27331479", + cordinates: "Point(47.510768 42.982348)", + locationLabel: "Daghestan museum of fine arts", + }, + { + location: "http://www.wikidata.org/entity/Q5208225", + cordinates: "Point(127.3858 36.3668)", + locationLabel: "Daejeon Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q19852272", + cordinates: "Point(116.40697 39.94398)", + locationLabel: "Dadu Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3610430", + cordinates: "Point(41.87416667 42.51222222)", + locationLabel: "Dadiani Palaces Museum", + }, + { + location: "http://www.wikidata.org/entity/Q69967853", + cordinates: "Point(4.906995 51.105409)", + locationLabel: "Da Vinci Museum", + }, + { + location: "http://www.wikidata.org/entity/Q69967853", + cordinates: "Point(4.90788 51.10526)", + locationLabel: "Da Vinci Museum", + }, + { + location: "http://www.wikidata.org/entity/Q98135441", + cordinates: "Point(77.2161 28.6)", + locationLabel: "DAG (Gallery)", + }, + { + location: "http://www.wikidata.org/entity/Q50414505", + cordinates: "Point(-7.112861111 41.079888888)", + locationLabel: "Côa Museum", + }, + { + location: "http://www.wikidata.org/entity/Q35555761", + cordinates: "Point(14.349166666 50.050833333)", + locationLabel: "Czech Photo Centre", + }, + { + location: "http://www.wikidata.org/entity/Q74035008", + cordinates: "Point(-71.153333333 42.415277777)", + locationLabel: "Cyrus E. Dallin Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q501175", + cordinates: "Point(24.95918538 60.15934347)", + locationLabel: "Cygnaeus Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q501175", + cordinates: "Point(24.9592401 60.1593547)", + locationLabel: "Cygnaeus Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2304164", + visitors: "57807", + cordinates: "Point(5.58357 50.6471)", + locationLabel: "Curtius Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2304164", + visitors: "60117", + cordinates: "Point(5.58357 50.6471)", + locationLabel: "Curtius Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2304164", + visitors: "63400", + cordinates: "Point(5.58357 50.6471)", + locationLabel: "Curtius Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2304164", + visitors: "75000", + cordinates: "Point(5.58357 50.6471)", + locationLabel: "Curtius Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3007727", + cordinates: "Point(-71.45583333 42.99777778)", + locationLabel: "Currier Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5194095", + cordinates: "Point(-81.6769 30.3149)", + locationLabel: "Cummer Museum of Art and Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q21002644", + cordinates: "Point(8.7733117 3.7520896)", + locationLabel: "Cultural Center of Spain in Malabo", + }, + { + location: "http://www.wikidata.org/entity/Q67154488", + cordinates: "Point(-98.7319392 20.1211351)", + locationLabel: "Cuartel del Arte en Pachuca, Hidalgo", + }, + { + location: "http://www.wikidata.org/entity/Q1142334", + cordinates: "Point(-94.2036 36.3825)", + locationLabel: "Crystal Bridges Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q3003161", + cordinates: "Point(-121.505 38.576944)", + locationLabel: "Crocker Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5187140", + visitors: "12000", + cordinates: "Point(15.97333333 45.81541667)", + locationLabel: "Croatian Museum of Naïve Art", + }, + { + location: "http://www.wikidata.org/entity/Q5187140", + visitors: "18463", + cordinates: "Point(15.97333333 45.81541667)", + locationLabel: "Croatian Museum of Naïve Art", + }, + { + location: "http://www.wikidata.org/entity/Q3503103", + cordinates: "Point(15.98083333 45.77805556)", + locationLabel: "Croatian Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q86106360", + cordinates: "Point(-3.947445 51.618667)", + locationLabel: "Creative Oil Gallery & Crafts", + }, + { + location: "http://www.wikidata.org/entity/Q42690304", + cordinates: "Point(-76.5716557 39.2864684)", + locationLabel: "Creative Alliance", + }, + { + location: "http://www.wikidata.org/entity/Q86106416", + cordinates: "Point(-2.714616 51.812718)", + locationLabel: "Creates Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5182821", + cordinates: "Point(-8.473416666 51.900972222)", + locationLabel: "Crawford Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106392", + cordinates: "Point(-2.944661 51.740965)", + locationLabel: "Craft Renaissance", + }, + { + location: "http://www.wikidata.org/entity/Q5180539", + cordinates: "Point(-118.35555556 34.06222222)", + locationLabel: "Craft Contemporary", + }, + { + location: "http://www.wikidata.org/entity/Q12110695", + cordinates: "Point(-0.11722222 51.51083333)", + locationLabel: "Courtauld Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3867845", + cordinates: "Point(14.167693 42.350185)", + locationLabel: "Costantino Barbella Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q47012682", + cordinates: "Point(-0.108423 51.491168)", + locationLabel: "Corvi-Mora", + }, + { + location: "http://www.wikidata.org/entity/Q18327587", + cordinates: "Point(-8.400796 43.372777)", + locationLabel: "Coruña Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18327587", + cordinates: "Point(-8.399944 43.372765)", + locationLabel: "Coruña Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106512", + cordinates: "Point(-3.164867 51.496427)", + locationLabel: "Corrie Chiswell Artist", + }, + { + location: "http://www.wikidata.org/entity/Q5171807", + cordinates: "Point(-72.3873 43.4776)", + locationLabel: "Cornish Colony Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2997538", + cordinates: "Point(-2.241111111 53.474305555)", + locationLabel: "Cornerhouse", + }, + { + location: "http://www.wikidata.org/entity/Q5171545", + cordinates: "Point(-80.0727 26.4622)", + locationLabel: "Cornell Museum of Art & American Culture", + }, + { + location: "http://www.wikidata.org/entity/Q5171521", + cordinates: "Point(-81.3486 28.5923)", + locationLabel: "Cornell Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5170223", + cordinates: "Point(127.032799 37.524048)", + locationLabel: "Coreana Cosmetic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q768446", + cordinates: "Point(-77.039879 38.895851)", + locationLabel: "Corcoran Gallery of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5168062", + cordinates: "Point(-124.214 43.3669)", + locationLabel: "Coos Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5166157", + cordinates: "Point(144.148 -37.342)", + locationLabel: "Convent Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "35012", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "42741", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "44030", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "64632", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "66470", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "85065", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "111896", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "114596", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "116534", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "123032", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "126835", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "131520", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "135000", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "146087", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "147030", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "147759", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q8330", + visitors: "226442", + cordinates: "Point(4.8525 45.78416667)", + locationLabel: "Contemporary Arts Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q15977944", + cordinates: "Point(51.674147 32.658076)", + locationLabel: "Contemporary Arts Museum Isfahan", + }, + { + location: "http://www.wikidata.org/entity/Q93691", + cordinates: "Point(-95.3915 29.7264)", + locationLabel: "Contemporary Arts Museum Houston", + }, + { + location: "http://www.wikidata.org/entity/Q5164962", + cordinates: "Point(-84.5122 39.1029)", + locationLabel: "Contemporary Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q11568021", + cordinates: "Point(130.711028 32.803361)", + locationLabel: "Contemporary Art Museum, Kumamoto", + }, + { + location: "http://www.wikidata.org/entity/Q2184071", + cordinates: "Point(-66.89964 10.49847)", + locationLabel: "Contemporary Art Museum of Caracas", + }, + { + location: "http://www.wikidata.org/entity/Q5164960", + cordinates: "Point(-90.235 38.6405)", + locationLabel: "Contemporary Art Museum St. Louis", + }, + { + location: "http://www.wikidata.org/entity/Q17193123", + cordinates: "Point(136.693078 34.340476)", + locationLabel: "Contemporary Art Museum ISE", + }, + { + location: "http://www.wikidata.org/entity/Q24498896", + cordinates: "Point(-102.2970957 21.883179)", + locationLabel: "Contemporary Art Museum 'Number 8'", + }, + { + location: "http://www.wikidata.org/entity/Q30918097", + cordinates: "Point(139.741805555 35.663611111)", + locationLabel: "Contemporary Art Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q5164958", + cordinates: "Point(138.61 -34.9423)", + locationLabel: "Contemporary Art Centre of South Australia", + }, + { + location: "http://www.wikidata.org/entity/Q5163308", + cordinates: "Point(-122.335277777 47.623611111)", + locationLabel: "Consolidated Works", + }, + { + location: "http://www.wikidata.org/entity/Q5159606", + cordinates: "Point(-73.9798 40.5753)", + locationLabel: "Coney Island USA", + }, + { + location: "http://www.wikidata.org/entity/Q43081013", + cordinates: "Point(-118.879059 34.182196)", + locationLabel: "Conejo Valley Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1236032", + visitors: "221206", + cordinates: "Point(2.485277777 49.193944444)", + locationLabel: "Condé Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20638782", + cordinates: "Point(-1.54519 52.17348)", + locationLabel: "Compton Verney Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3905125", + cordinates: "Point(9.083302 45.807374)", + locationLabel: "Como Civic Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5935366", + cordinates: "Point(-82.987893 39.964315)", + locationLabel: "Columbus Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2383136", + cordinates: "Point(-81.03611111 34.00583333)", + locationLabel: "Columbia Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5148924", + cordinates: "Point(-104.825556 38.845833)", + locationLabel: "Colorado Springs Fine Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q3683045", + cordinates: "Point(10.60152 44.70838)", + locationLabel: "Collezione Maramotti", + }, + { + location: "http://www.wikidata.org/entity/Q13081494", + cordinates: "Point(18.41666667 43.86666667)", + locationLabel: "Collegium Artisticum", + }, + { + location: "http://www.wikidata.org/entity/Q27481219", + cordinates: "Point(6.15337 46.19759)", + locationLabel: "Collections Baur", + }, + { + location: "http://www.wikidata.org/entity/Q2982900", + cordinates: "Point(6.624722222 46.5275)", + locationLabel: "Collection de l'art brut", + }, + { + location: "http://www.wikidata.org/entity/Q14559710", + cordinates: "Point(8.244712 46.891398)", + locationLabel: "Collection Meinrad Burch-Korrodi", + }, + { + location: "http://www.wikidata.org/entity/Q5142014", + cordinates: "Point(-69.6605 44.565)", + locationLabel: "Colby College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2161858", + visitors: "100000", + cordinates: "Point(4.857894 52.303958)", + locationLabel: "Cobra Museum", + }, + { + location: "http://www.wikidata.org/entity/Q716390", + cordinates: "Point(23.59044 46.77069)", + locationLabel: "Cluj-Napoca Bánffy Palace", + }, + { + location: "http://www.wikidata.org/entity/Q657415", + cordinates: "Point(-81.611666666 41.508888888)", + locationLabel: "Cleveland Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1099859", + cordinates: "Point(6.69812 51.1943)", + locationLabel: "Clemens Sels Museum Neuss", + }, + { + location: "http://www.wikidata.org/entity/Q1465805", + cordinates: "Point(-73.2136 42.7078)", + locationLabel: "Clark Art Institute", + }, + { + location: "http://www.wikidata.org/entity/Q3678764", + cordinates: "Point(9.1797 45.46939167)", + locationLabel: "Civica raccolta delle stampe Achille Bertarelli", + }, + { + location: "http://www.wikidata.org/entity/Q3678763", + cordinates: "Point(13.047831 43.64893)", + locationLabel: 'Civic collection of art "Claudio Ridolfi"', + }, + { + location: "http://www.wikidata.org/entity/Q16336161", + cordinates: "Point(11.4893 43.0577)", + locationLabel: "Civic and Diocesan Museum of Sacred Art", + }, + { + location: "http://www.wikidata.org/entity/Q3867777", + cordinates: "Point(10.3054 43.5354)", + locationLabel: 'Civic Museum "Giovanni Fattori"', + }, + { + location: "http://www.wikidata.org/entity/Q3757708", + cordinates: "Point(7.669309 45.065067)", + locationLabel: "Civic Gallery of Modern and Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q537515", + visitors: "237200", + cordinates: "Point(2.288369444 48.862822222)", + locationLabel: "Cité de l'architecture et du patrimoine", + }, + { + location: "http://www.wikidata.org/entity/Q2327696", + cordinates: "Point(6.64333 49.7597)", + locationLabel: "City Museum Simeonstift, Trier", + }, + { + location: "http://www.wikidata.org/entity/Q5123171", + cordinates: "Point(174.777 -41.2885)", + locationLabel: "City Gallery Wellington", + }, + { + location: "http://www.wikidata.org/entity/Q26547421", + cordinates: "Point(-1.547993 53.800086)", + locationLabel: "City Art Gallery And Henry Moore Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3683063", + cordinates: "Point(11.33289 44.4944722)", + locationLabel: "City Art Collections", + }, + { + location: "http://www.wikidata.org/entity/Q3683063", + cordinates: "Point(11.342402 44.49383)", + locationLabel: "City Art Collections", + }, + { + location: "http://www.wikidata.org/entity/Q65081638", + cordinates: "Point(-3.18929 55.95095)", + locationLabel: "City Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3388588", + cordinates: "Point(12.2385 43.45430556)", + locationLabel: "Citta di Castello Communal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3432620", + visitors: "96813", + cordinates: "Point(12.5245 55.6695)", + locationLabel: "Cisternerne", + }, + { + location: "http://www.wikidata.org/entity/Q5770111", + cordinates: "Point(2.182694444 41.386916666)", + locationLabel: "Circulo del Arte", + }, + { + location: "http://www.wikidata.org/entity/Q2970522", + visitors: "250000", + cordinates: "Point(-84.496965 39.114637)", + locationLabel: "Cincinnati Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2970522", + visitors: "346000", + cordinates: "Point(-84.496965 39.114637)", + locationLabel: "Cincinnati Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q36698440", + cordinates: "Point(0.062222222 47.215555555)", + locationLabel: "Château de Montsoreau-Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "71048", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "75914", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "79859", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "81868", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "82272", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "82279", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "86351", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "86735", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "86911", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "87258", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "88010", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "88598", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "96972", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "97484", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "101555", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "111016", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q516697", + visitors: "113140", + cordinates: "Point(2.83111111 49.41916667)", + locationLabel: "Château de Compiègne", + }, + { + location: "http://www.wikidata.org/entity/Q905650", + cordinates: "Point(-0.0775 46.9517)", + locationLabel: "Château d'Oiron", + }, + { + location: "http://www.wikidata.org/entity/Q63183624", + cordinates: "Point(-0.178055555 38.966805555)", + locationLabel: "Church of Saint Mark", + }, + { + location: "http://www.wikidata.org/entity/Q10333776", + cordinates: "Point(-38.5160746 -12.9790171)", + locationLabel: "Church and Convent of Saint Teresa", + }, + { + location: "http://www.wikidata.org/entity/Q10333776", + cordinates: "Point(-38.515848 -12.9790088)", + locationLabel: "Church and Convent of Saint Teresa", + }, + { + location: "http://www.wikidata.org/entity/Q5114972", + cordinates: "Point(22.95752778 39.35894444)", + locationLabel: "Chrysoula Zogia Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5114675", + visitors: "150000", + cordinates: "Point(-76.2924 36.857)", + locationLabel: "Chrysler Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18342361", + cordinates: "Point(-93.647989 42.02709)", + locationLabel: "Christian Petersen Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q377824", + cordinates: "Point(18.73483333 47.7975)", + locationLabel: "Christian Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5109058", + cordinates: "Point(172.631 -43.5306)", + locationLabel: "Christchurch Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3675590", + cordinates: "Point(-1.2545 51.7507)", + locationLabel: "Christ Church Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1954283", + cordinates: "Point(-99.1567 19.4419)", + locationLabel: "Chopo University Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1954283", + cordinates: "Point(-99.156725 19.441943)", + locationLabel: "Chopo University Museum", + }, + { + location: "http://www.wikidata.org/entity/Q24868589", + cordinates: "Point(136.618044 34.965314)", + locationLabel: "Chokaidō Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5104180", + cordinates: "Point(126.984219444 37.558119444)", + locationLabel: "Chojun Textile & Quilt Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11584665", + cordinates: "Point(139.020039 37.898986)", + locationLabel: "Chisoku Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q1073616", + cordinates: "Point(-104.027 30.2987)", + locationLabel: "Chinati Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q1056441", + cordinates: "Point(116.315207 39.910211)", + locationLabel: "China Millennium Monument", + }, + { + location: "http://www.wikidata.org/entity/Q5099572", + visitors: "2000000", + cordinates: "Point(121.49 31.186388888)", + locationLabel: "China Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q775376", + cordinates: "Point(-70.643569 -33.435322)", + locationLabel: "Chilean National Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q517430", + cordinates: "Point(-70.65222 -33.43889)", + locationLabel: "Chilean Museum of Pre-Columbian Art", + }, + { + location: "http://www.wikidata.org/entity/Q21697721", + cordinates: "Point(44.518069444 40.183430555)", + locationLabel: "Children's art museum of Armenia", + }, + { + location: "http://www.wikidata.org/entity/Q15209671", + cordinates: "Point(121.52444444 25.11777778)", + locationLabel: "Children's Art Museum in Taipei", + }, + { + location: "http://www.wikidata.org/entity/Q11271822", + cordinates: "Point(139.60535 35.72865)", + locationLabel: "Chihiro Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q11450770", + cordinates: "Point(137.84416667 36.41491667)", + locationLabel: "Chihiro Art Museum Azumino", + }, + { + location: "http://www.wikidata.org/entity/Q4556499", + cordinates: "Point(133.98580278 34.44975833)", + locationLabel: "Chichu Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11406332", + cordinates: "Point(140.10091667 35.60113889)", + locationLabel: "Chiba Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11406332", + cordinates: "Point(140.124748 35.608904)", + locationLabel: "Chiba Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11406050", + cordinates: "Point(140.12465 35.608986)", + locationLabel: "Chiba City Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q103823910", + cordinates: "Point(120.440555555 23.477138888)", + locationLabel: "Chiayi Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1627379", + cordinates: "Point(11.820083333 43.050202777)", + locationLabel: "Chianciano Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q2745620", + cordinates: "Point(-9.14111111 38.70888889)", + locationLabel: "Chiado Museum", + }, + { + location: "http://www.wikidata.org/entity/Q391976", + cordinates: "Point(-6.267 53.342)", + locationLabel: "Chester Beatty Library", + }, + { + location: "http://www.wikidata.org/entity/Q17508776", + cordinates: "Point(72.832339 18.935931)", + locationLabel: "Chemould Prescott Road", + }, + { + location: "http://www.wikidata.org/entity/Q124302", + cordinates: "Point(-74.007 40.74783333)", + locationLabel: "Chelsea Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16180345", + cordinates: "Point(126.4887953 33.4526324)", + locationLabel: "Cheju Torip Misulgwan", + }, + { + location: "http://www.wikidata.org/entity/Q2066407", + cordinates: "Point(-86.873889 36.086667)", + locationLabel: "Cheekwood Botanical Garden and Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q3666871", + cordinates: "Point(-89.3996 43.0739)", + locationLabel: "Chazen Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5087146", + cordinates: "Point(-111.874 40.7456)", + locationLabel: "Chase Home Museum of Utah Folk Arts", + }, + { + location: "http://www.wikidata.org/entity/Q657915", + cordinates: "Point(-122.735 38.46)", + locationLabel: "Charles M. Schulz Museum and Research Center", + }, + { + location: "http://www.wikidata.org/entity/Q5079149", + cordinates: "Point(-81.3514 28.6009)", + locationLabel: "Charles Hosmer Morse Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q5075091", + cordinates: "Point(-87.890305 43.053704)", + locationLabel: "Charles Allis Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22999317", + cordinates: "Point(5.45402 43.52631)", + locationLabel: "Chapelle des pénitents blancs", + }, + { + location: "http://www.wikidata.org/entity/Q195052", + cordinates: "Point(7.05322 48.735249)", + locationLabel: "Chapelle des Cordeliers", + }, + { + location: "http://www.wikidata.org/entity/Q57312937", + cordinates: "Point(137.249694444 36.120888888)", + locationLabel: "Chanoyu Museum", + }, + { + location: "http://www.wikidata.org/entity/Q28129027", + cordinates: "Point(120.54597222 24.07766667)", + locationLabel: "Changhua County Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q14594863", + cordinates: "Point(120.54527778 24.07888889)", + locationLabel: "Changhua Arts Hall", + }, + { + location: "http://www.wikidata.org/entity/Q18325627", + cordinates: "Point(-117.649332 34.062065)", + locationLabel: "Chaffey Community Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q62088324", + cordinates: "Point(4.47222222 51.91444444)", + locationLabel: "Chabot Museum", + }, + { + location: "http://www.wikidata.org/entity/Q841839", + cordinates: "Point(2.68611111 49.1475)", + locationLabel: "Chaalis Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q3824294", + cordinates: "Point(2.13896 41.491231)", + locationLabel: "Cerdanyola Art Museum. Can Domènech", + }, + { + location: "http://www.wikidata.org/entity/Q17222507", + cordinates: "Point(139.72405556 35.70816667)", + locationLabel: "Century Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q3664905", + cordinates: "Point(10.347165 44.8567706)", + locationLabel: "Centro studi e archivio della comunicazione", + }, + { + location: "http://www.wikidata.org/entity/Q2946179", + cordinates: "Point(11.108934 43.861033)", + locationLabel: "Centro per l'arte contemporanea Luigi Pecci", + }, + { + location: "http://www.wikidata.org/entity/Q67249959", + cordinates: "Point(-71.628891 -33.039181)", + locationLabel: "Centro de Extensión Cultura", + }, + { + location: "http://www.wikidata.org/entity/Q105675371", + cordinates: "Point(-102.2988389 21.8804446)", + locationLabel: "Centro de Artes Visuales", + }, + { + location: "http://www.wikidata.org/entity/Q5761583", + cordinates: "Point(-0.428916666 42.150638888)", + locationLabel: "Centro de Arte y Naturaleza Fundación Beulas", + }, + { + location: "http://www.wikidata.org/entity/Q60242383", + cordinates: "Point(-15.4307 28.138691666)", + locationLabel: "Centro de Arte la Regenta (Las Palmas, Canary Islands)", + }, + { + location: "http://www.wikidata.org/entity/Q48695233", + cordinates: "Point(-70.704242 -33.495022)", + locationLabel: "Centro Nacional de Arte Contemporáneo Cerrillos", + }, + { + location: "http://www.wikidata.org/entity/Q66763498", + cordinates: "Point(-38.9658158 -11.3388171)", + locationLabel: "Centro Cultural de Araci", + }, + { + location: "http://www.wikidata.org/entity/Q522913", + cordinates: "Point(-58.39222222 -34.58638889)", + locationLabel: "Centro Cultural Recoleta", + }, + { + location: "http://www.wikidata.org/entity/Q5062811", + cordinates: "Point(-70.65361111 -33.44388889)", + locationLabel: "Centro Cultural Palacio de La Moneda", + }, + { + location: "http://www.wikidata.org/entity/Q5761161", + cordinates: "Point(-70.68 -33.44527778)", + locationLabel: "Centro Cultural Matucana 100", + }, + { + location: "http://www.wikidata.org/entity/Q5062809", + cordinates: "Point(-58.38833333 -34.60511111)", + locationLabel: "Centro Cultural General San Martín", + }, + { + location: "http://www.wikidata.org/entity/Q5062650", + cordinates: "Point(172.632 -43.5301)", + locationLabel: "Centre of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q2945803", + cordinates: "Point(1.866111111 45.801944444)", + locationLabel: "Centre international d'art et du paysage de Vassivière", + }, + { + location: "http://www.wikidata.org/entity/Q191212", + cordinates: "Point(7.68528 51.5347)", + locationLabel: "Centre for International Light Art", + }, + { + location: "http://www.wikidata.org/entity/Q2285837", + visitors: "1000000", + cordinates: "Point(4.359775 50.843713888)", + locationLabel: "Centre for Fine Arts of Brussels", + }, + { + location: "http://www.wikidata.org/entity/Q5062389", + cordinates: "Point(144.982 -37.7972)", + locationLabel: "Centre for Contemporary Photography", + }, + { + location: "http://www.wikidata.org/entity/Q2945260", + visitors: "313829", + cordinates: "Point(2.16666667 41.38361111)", + locationLabel: "Centre de Cultura Contemporània de Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q2945260", + visitors: "315902", + cordinates: "Point(2.16666667 41.38361111)", + locationLabel: "Centre de Cultura Contemporània de Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q2945260", + visitors: "384388", + cordinates: "Point(2.16666667 41.38361111)", + locationLabel: "Centre de Cultura Contemporània de Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q2945260", + visitors: "427804", + cordinates: "Point(2.16666667 41.38361111)", + locationLabel: "Centre de Cultura Contemporània de Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q2945260", + visitors: "457394", + cordinates: "Point(2.16666667 41.38361111)", + locationLabel: "Centre de Cultura Contemporània de Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q5062331", + cordinates: "Point(0.62204722 41.61775)", + locationLabel: "Centre d'Art la Panera", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "300589", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "330716", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "335000", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "345549", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "350000", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "476430", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "552000", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q1054169", + visitors: "615830", + cordinates: "Point(6.18 49.108056)", + locationLabel: "Centre Pompidou-Metz", + }, + { + location: "http://www.wikidata.org/entity/Q2944850", + cordinates: "Point(7.23967 47.1387)", + locationLabel: "Centre PasquArt", + }, + { + location: "http://www.wikidata.org/entity/Q178065", + visitors: "3273867", + cordinates: "Point(2.352411 48.860653)", + locationLabel: "Centre Georges Pompidou", + }, + { + location: "http://www.wikidata.org/entity/Q178065", + visitors: "3335509", + cordinates: "Point(2.352411 48.860653)", + locationLabel: "Centre Georges Pompidou", + }, + { + location: "http://www.wikidata.org/entity/Q684249", + cordinates: "Point(6.936459 47.001234)", + locationLabel: "Centre Dürrenmatt Neuchâtel", + }, + { + location: "http://www.wikidata.org/entity/Q16517556", + cordinates: "Point(19.143441 48.734392)", + locationLabel: "Central Slovakian Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q14715194", + cordinates: "Point(-69.0703 44.1875)", + locationLabel: "Center for Maine Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q191228", + cordinates: "Point(8.383611111 49.001388888)", + locationLabel: "Center for Art and Media Karlsruhe", + }, + { + location: "http://www.wikidata.org/entity/Q4894835", + cordinates: "Point(1.812736 41.235067)", + locationLabel: "Cau Ferrat Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5053964", + cordinates: "Point(-123.098144 49.2685633)", + locationLabel: "Catriona Jeffries Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3330498", + cordinates: "Point(7.31806 45.73815)", + locationLabel: "Cathedral Treasure Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5050498", + cordinates: "Point(-2.25146 53.4741)", + locationLabel: "Castlefield Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q19844", + cordinates: "Point(7.51025 45.070028)", + locationLabel: "Castle of Rivoli", + }, + { + location: "http://www.wikidata.org/entity/Q103852810", + cordinates: "Point(-9.09162 38.83705)", + locationLabel: "Castle of Pirescouxe Municipal Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5050153", + cordinates: "Point(0.996092 51.949955)", + locationLabel: "Castle House", + }, + { + location: "http://www.wikidata.org/entity/Q85820878", + cordinates: "Point(-4.233168 52.916716)", + locationLabel: "Castle Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86106031", + cordinates: "Point(-3.29229 52.820962)", + locationLabel: "Castle Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q86106475", + cordinates: "Point(-3.174135 51.478503)", + locationLabel: "Castle Fine Art", + }, + { + location: "http://www.wikidata.org/entity/Q67383618", + cordinates: "Point(2.382131 48.872913)", + locationLabel: "Castillo/Corrales", + }, + { + location: "http://www.wikidata.org/entity/Q1878948", + cordinates: "Point(-13.533244444 28.970941666)", + locationLabel: "Castillo de San José", + }, + { + location: "http://www.wikidata.org/entity/Q2518724", + cordinates: "Point(10.98777778 45.44)", + locationLabel: "Castelvecchio Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5049685", + cordinates: "Point(-58.14992 6.80604)", + locationLabel: "Castellani House, Guyana", + }, + { + location: "http://www.wikidata.org/entity/Q28406032", + cordinates: "Point(-122.384194444 47.810388888)", + locationLabel: "Cascadia Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3661033", + cordinates: "Point(9.211667 45.478935)", + locationLabel: "Casa-museo Boschi Di Stefano", + }, + { + location: "http://www.wikidata.org/entity/Q11681997", + visitors: "127735", + cordinates: "Point(-4.4175 36.724)", + locationLabel: "Casa natal de Pablo Ruiz Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q11681997", + visitors: "127735", + cordinates: "Point(-4.417557998 36.724102252)", + locationLabel: "Casa natal de Pablo Ruiz Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q11681997", + visitors: "130095", + cordinates: "Point(-4.4175 36.724)", + locationLabel: "Casa natal de Pablo Ruiz Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q11681997", + visitors: "130095", + cordinates: "Point(-4.417557998 36.724102252)", + locationLabel: "Casa natal de Pablo Ruiz Picasso", + }, + { + location: "http://www.wikidata.org/entity/Q18242637", + cordinates: "Point(-38.500644444 -12.993397222)", + locationLabel: "Casa do Rio Vermelho (Rua Alagoinhas, nº 33)", + }, + { + location: "http://www.wikidata.org/entity/Q56072118", + cordinates: "Point(-17.18053 32.72354)", + locationLabel: "Casa das Mudas", + }, + { + location: "http://www.wikidata.org/entity/Q9698241", + cordinates: "Point(-9.42133 38.69036)", + locationLabel: "Casa das Histórias Paula Rego", + }, + { + location: "http://www.wikidata.org/entity/Q2940778", + cordinates: "Point(11.263696 43.76491)", + locationLabel: "Casa Siviero", + }, + { + location: "http://www.wikidata.org/entity/Q2940761", + cordinates: "Point(12.635355 43.727046)", + locationLabel: "Casa Santi", + }, + { + location: "http://www.wikidata.org/entity/Q1045990", + cordinates: "Point(-122.401 37.7871)", + locationLabel: "Cartoon Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1045385", + cordinates: "Point(4.355 43.83805556)", + locationLabel: "Carré d'art", + }, + { + location: "http://www.wikidata.org/entity/Q5046143", + cordinates: "Point(138.632 -34.9792)", + locationLabel: "Carrick Hill", + }, + { + location: "http://www.wikidata.org/entity/Q7128893", + cordinates: "Point(-8.62154444 41.14773611)", + locationLabel: "Carrancas Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1043967", + cordinates: "Point(-79.949 40.4437)", + locationLabel: "Carnegie Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q129415", + cordinates: "Point(-79.9495 40.4435)", + locationLabel: "Carnegie International", + }, + { + location: "http://www.wikidata.org/entity/Q5043881", + cordinates: "Point(-85.8219 38.2867)", + locationLabel: "Carnegie Center for Art & History", + }, + { + location: "http://www.wikidata.org/entity/Q5043873", + cordinates: "Point(-119.18 34.198333)", + locationLabel: "Carnegie Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q36374033", + cordinates: "Point(1.542099 42.50877)", + locationLabel: "Carmen Thyssen Museum of Andorra", + }, + { + location: "http://www.wikidata.org/entity/Q36374033", + cordinates: "Point(1.542107 42.508795)", + locationLabel: "Carmen Thyssen Museum of Andorra", + }, + { + location: "http://www.wikidata.org/entity/Q5043601", + cordinates: "Point(-4.422778 36.721389)", + locationLabel: "Carmen Thyssen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3606420", + cordinates: "Point(9.02401 56.13251)", + locationLabel: "Carl-Henning Pedersen og Else Alfelts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10443031", + cordinates: "Point(18.051217 59.352833)", + locationLabel: "Carl Eldhs Ateljémuseum", + }, + { + location: "http://www.wikidata.org/entity/Q5039534", + cordinates: "Point(-99.132722 19.435639)", + locationLabel: "Caricature Museum, Mexico City", + }, + { + location: "http://www.wikidata.org/entity/Q676514", + cordinates: "Point(7.596347222 47.554472222)", + locationLabel: "Caricature & Cartoon Museum Basel", + }, + { + location: "http://www.wikidata.org/entity/Q1525564", + cordinates: "Point(8.68511 50.1102)", + locationLabel: "Caricatura Museum Frankfurt", + }, + { + location: "http://www.wikidata.org/entity/Q105192885", + cordinates: "Point(-3.167617656 51.495674854)", + locationLabel: "Cardiff MADE", + }, + { + location: "http://www.wikidata.org/entity/Q5037618", + cordinates: "Point(-64.18388889 -31.42833333)", + locationLabel: "Caraffa Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5037618", + cordinates: "Point(-64.1839 -31.4283)", + locationLabel: "Caraffa Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2630111", + cordinates: "Point(-66.896972222 10.500638888)", + locationLabel: "Caracas Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q333906", + visitors: "452232", + cordinates: "Point(12.4825 41.893055555)", + locationLabel: "Capitoline Museums", + }, + { + location: "http://www.wikidata.org/entity/Q333906", + visitors: "516420", + cordinates: "Point(12.4825 41.893055555)", + locationLabel: "Capitoline Museums", + }, + { + location: "http://www.wikidata.org/entity/Q1189666", + cordinates: "Point(116.336 39.905)", + locationLabel: "Capital Museum", + }, + { + location: "http://www.wikidata.org/entity/Q14715429", + cordinates: "Point(-70.1899 41.7404)", + locationLabel: "Cape Cod Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5033908", + cordinates: "Point(-81.3718 40.8068)", + locationLabel: "Canton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6719083", + cordinates: "Point(-86.8463 21.0763)", + locationLabel: "Cancun Underwater Museum", + }, + { + location: "http://www.wikidata.org/entity/Q495518", + cordinates: "Point(149.131 -35.2807)", + locationLabel: "Canberra Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q5031255", + cordinates: "Point(149.144 -35.312)", + locationLabel: "Canberra Glassworks", + }, + { + location: "http://www.wikidata.org/entity/Q2355659", + cordinates: "Point(-75.6953 45.4251)", + locationLabel: "Canadian Museum of Contemporary Photography", + }, + { + location: "http://www.wikidata.org/entity/Q15623912", + cordinates: "Point(2.195 41.4031)", + locationLabel: "Can Framis Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5026170", + cordinates: "Point(-77.9153 34.184)", + locationLabel: "Cameron Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3867871", + cordinates: "Point(10.304659 43.937183)", + locationLabel: "Camaiore Religious Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "19568", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "22296", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "25878", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "30235", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "30817", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "32825", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "33933", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "34042", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "34466", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "34873", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "35131", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "35682", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "38299", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "40275", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "40470", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "41309", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1142988", + visitors: "61812", + cordinates: "Point(4.803333333 43.946944444)", + locationLabel: "Calvet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q960115", + visitors: "753944", + cordinates: "Point(2.14975 41.37133056)", + locationLabel: "CaixaForum Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q960115", + visitors: "782529", + cordinates: "Point(2.14975 41.37133056)", + locationLabel: "CaixaForum Barcelona", + }, + { + location: "http://www.wikidata.org/entity/Q5017445", + cordinates: "Point(-70.4509 41.6381)", + locationLabel: "Cahoon Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q87429859", + cordinates: "Point(-3.696694444 40.42425)", + locationLabel: "Café Belén", + }, + { + location: "http://www.wikidata.org/entity/Q25494794", + cordinates: "Point(35.219694444 31.781166666)", + locationLabel: "Cadim Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "88", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "121", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "217", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "259", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "260", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "345", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "494", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "543", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "2253", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "6778", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "8689", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "9851", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "10500", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "18432", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q655668", + visitors: "34948", + cordinates: "Point(7.75083333 48.58111111)", + locationLabel: "Cabinet des estampes et des dessins", + }, + { + location: "http://www.wikidata.org/entity/Q1052171", + cordinates: "Point(12.326816666 45.433425)", + locationLabel: "Ca' Rezzonico", + }, + { + location: "http://www.wikidata.org/entity/Q18325682", + cordinates: "Point(-105.26991 40.007313)", + locationLabel: "CU Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5006691", + visitors: "30689", + cordinates: "Point(-111.286 47.5097)", + locationLabel: "C. M. Russell Museum Complex", + }, + { + location: "http://www.wikidata.org/entity/Q25212593", + cordinates: "Point(-83.060305555 42.351638888)", + locationLabel: "C-Pop", + }, + { + location: "http://www.wikidata.org/entity/Q276900", + cordinates: "Point(19.9225 39.62722)", + locationLabel: "Byzantine Museum of Antivouniotissa", + }, + { + location: "http://www.wikidata.org/entity/Q5002627", + cordinates: "Point(-80.646111 41.105556)", + locationLabel: "Butler Institute of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q5002611", + cordinates: "Point(-7.248962 52.65059)", + locationLabel: "Butler Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q1017269", + cordinates: "Point(-71.114567 42.375109)", + locationLabel: "Busch–Reisinger Museum", + }, + { + location: "http://www.wikidata.org/entity/Q16096732", + cordinates: "Point(129.137036111 35.166741666)", + locationLabel: "Busan Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5001071", + cordinates: "Point(-2.298854 53.591733)", + locationLabel: "Bury Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q41097778", + cordinates: "Point(-4.2051 51.0213)", + locationLabel: "Burton at Bideford", + }, + { + location: "http://www.wikidata.org/entity/Q6098147", + cordinates: "Point(29.0732 40.1816)", + locationLabel: "Bursa Museum of Turkish and Islamic Art", + }, + { + location: "http://www.wikidata.org/entity/Q1016909", + cordinates: "Point(-4.307726421 55.830936581)", + locationLabel: "Burrell Collection", + }, + { + location: "http://www.wikidata.org/entity/Q12298613", + cordinates: "Point(27.475555555 42.493055555)", + locationLabel: "Burgas Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4998215", + cordinates: "Point(-78.8776 42.9315)", + locationLabel: "Burchfield Penney Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q247451", + cordinates: "Point(11.127192 46.070845)", + locationLabel: "Buonconsiglio Castle", + }, + { + location: "http://www.wikidata.org/entity/Q11699302", + cordinates: "Point(19.934306 50.063472)", + locationLabel: "Bunkier Sztuki", + }, + { + location: "http://www.wikidata.org/entity/Q4997504", + cordinates: "Point(150.5 -34.889)", + locationLabel: "Bundanon", + }, + { + location: "http://www.wikidata.org/entity/Q95974748", + cordinates: "Point(102.830111111 2.346777777)", + locationLabel: "Bukit Kepong Emergency Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4986824", + cordinates: "Point(126.9846 37.5803)", + locationLabel: "Bukchon Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1134582", + cordinates: "Point(-58.37055556 -34.62194444)", + locationLabel: "Buenos Aires Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q47523086", + cordinates: "Point(-3.0795589 53.1673677)", + locationLabel: "Buckley Library, Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q877566", + cordinates: "Point(9.99104 53.5507)", + locationLabel: "Bucerius Kunst Forum", + }, + { + location: "http://www.wikidata.org/entity/Q833759", + cordinates: "Point(13.2736 52.4669)", + locationLabel: "Brücke Museum", + }, + { + location: "http://www.wikidata.org/entity/Q568767", + cordinates: "Point(13.2954 52.5188)", + locationLabel: "Bröhan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105843", + cordinates: "Point(-4.084121 52.416773)", + locationLabel: "Brushstrokes & Pixels", + }, + { + location: "http://www.wikidata.org/entity/Q86967521", + cordinates: "Point(15.436805555 47.0725)", + locationLabel: "Bruseum", + }, + { + location: "http://www.wikidata.org/entity/Q18342357", + cordinates: "Point(-93.63682 42.021438)", + locationLabel: "Brunnier Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3369210", + cordinates: "Point(17.62027778 59.84944444)", + locationLabel: "Bror Hjorths Hus", + }, + { + location: "http://www.wikidata.org/entity/Q632682", + visitors: "500000", + cordinates: "Point(-73.96375 40.671306)", + locationLabel: "Brooklyn Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4974195", + cordinates: "Point(-73.9199 40.831)", + locationLabel: "Bronx Museum of the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q23773659", + cordinates: "Point(7.823623 47.241667)", + locationLabel: "Bromer Art Collection", + }, + { + location: "http://www.wikidata.org/entity/Q2273417", + cordinates: "Point(3.2662 50.8307)", + locationLabel: "Broel Museum", + }, + { + location: "http://www.wikidata.org/entity/Q162154", + cordinates: "Point(-118.359683 34.063413)", + locationLabel: "Broad Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1272757", + cordinates: "Point(16.614689 49.196282)", + locationLabel: "Brno House of Arts", + }, + { + location: "http://www.wikidata.org/entity/Q24065863", + cordinates: "Point(1.068909 51.29764)", + locationLabel: "British Cartoon Archive", + }, + { + location: "http://www.wikidata.org/entity/Q4968867", + visitors: "450954", + cordinates: "Point(-2.6053 51.4561)", + locationLabel: "Bristol City Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2790574", + visitors: "200000", + cordinates: "Point(-0.138041 50.8237)", + locationLabel: "Brighton Museum & Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4967319", + visitors: "334774", + cordinates: "Point(-111.64805556 40.25083333)", + locationLabel: "Brigham Young University Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4967298", + cordinates: "Point(-112.02 41.511)", + locationLabel: "Brigham City Museum-Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "10929", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "11732", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "11797", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "15116", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "17119", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "17174", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "18298", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "18983", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "19082", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "19179", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "20147", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "21864", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "22382", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "23175", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "23452", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "24382", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q3330192", + visitors: "26345", + cordinates: "Point(-4.49002 48.3852)", + locationLabel: "Brest’s Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q77314896", + cordinates: "Point(-83.822042 34.301875)", + locationLabel: "Brenau University Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q4958223", + cordinates: "Point(-87.0401 41.464)", + locationLabel: "Brauer Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4958121", + cordinates: "Point(-72.5567 42.8509)", + locationLabel: "Brattleboro Museum and Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q913415", + cordinates: "Point(17.107822 48.144825)", + locationLabel: "Bratislava City Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4306104", + cordinates: "Point(-75.593 39.8699)", + locationLabel: "Brandywine River Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3362210", + cordinates: "Point(10.380556 55.395833)", + locationLabel: "Brandts Museum of Photographic Art", + }, + { + location: "http://www.wikidata.org/entity/Q1229936", + cordinates: "Point(-0.13666667 51.50569444)", + locationLabel: "Boydell Shakespeare Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q895434", + cordinates: "Point(-1.91565514 54.54173763)", + locationLabel: "Bowes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106463", + cordinates: "Point(-3.168153 51.46176)", + locationLabel: "Boundary Art Gallery & Tea Room", + }, + { + location: "http://www.wikidata.org/entity/Q4948003", + cordinates: "Point(-71.0596 42.3586)", + locationLabel: "Boston Museum", + }, + { + location: "http://www.wikidata.org/entity/Q478013", + cordinates: "Point(-71.062158 42.358044)", + locationLabel: "Boston Athenæum", + }, + { + location: "http://www.wikidata.org/entity/Q16150132", + cordinates: "Point(-0.101667 51.4986)", + locationLabel: "Borough Road Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3614063", + visitors: "36051", + cordinates: "Point(14.89405556 55.22348611)", + locationLabel: "Bornholm Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4945258", + cordinates: "Point(27.919166666 43.206944444)", + locationLabel: "Boris Georgiev City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4945258", + cordinates: "Point(27.91944444 43.20694444)", + locationLabel: "Boris Georgiev City Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q498557", + cordinates: "Point(12.455 41.903333333)", + locationLabel: "Borgia Apartment", + }, + { + location: "http://www.wikidata.org/entity/Q11338923", + cordinates: "Point(136.09447222 35.13763889)", + locationLabel: "Borderless Art Museum NO-MA", + }, + { + location: "http://www.wikidata.org/entity/Q4943895", + cordinates: "Point(-84.796194444 34.168527777)", + locationLabel: "Booth Western Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10432932", + cordinates: "Point(18.04277778 59.33694444)", + locationLabel: "Bonniers konsthall", + }, + { + location: "http://www.wikidata.org/entity/Q892727", + visitors: "102000", + cordinates: "Point(5.701984 50.842529)", + locationLabel: "Bonnefanten Museum", + }, + { + location: "http://www.wikidata.org/entity/Q892727", + visitors: "106000", + cordinates: "Point(5.701984 50.842529)", + locationLabel: "Bonnefanten Museum", + }, + { + location: "http://www.wikidata.org/entity/Q892727", + visitors: "122000", + cordinates: "Point(5.701984 50.842529)", + locationLabel: "Bonnefanten Museum", + }, + { + location: "http://www.wikidata.org/entity/Q892727", + visitors: "143000", + cordinates: "Point(5.701984 50.842529)", + locationLabel: "Bonnefanten Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4940210", + cordinates: "Point(-2.43156 53.5774)", + locationLabel: "Bolton Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3867868", + visitors: "88623", + cordinates: "Point(11.3369 44.5025)", + locationLabel: "Bologna Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q3757723", + cordinates: "Point(11.3369 44.5025)", + locationLabel: "Bologna Gallery of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q18325675", + cordinates: "Point(-122.684734 37.910139)", + locationLabel: "Bolinas Museum", + }, + { + location: "http://www.wikidata.org/entity/Q640718", + cordinates: "Point(-74.069333333 4.610222222)", + locationLabel: "Bogotá Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q85687462", + cordinates: "Point(-3.50176 53.261)", + locationLabel: "Bodelwyddan Castle Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "165000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "206000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "226000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "233000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "237000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "251000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "260000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "282000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q157825", + visitors: "390000", + cordinates: "Point(13.394722222 52.521944444)", + locationLabel: "Bode Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4936101", + cordinates: "Point(-80.0858 26.3563)", + locationLabel: "Boca Raton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q5481539", + cordinates: "Point(-82.36202 34.87603)", + locationLabel: "Bob Jones University Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4929912", + cordinates: "Point(-98.4957 29.4097)", + locationLabel: "Blue Star Contemporary Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q2906140", + cordinates: "Point(-97.7375 30.281)", + locationLabel: "Blanton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4923831", + visitors: "30000", + cordinates: "Point(-95.3425 29.7247)", + locationLabel: "Blaffer Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106448", + cordinates: "Point(-3.17663 51.453629)", + locationLabel: "Blackwater Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q26327411", + cordinates: "Point(-3.053084502 53.82057976)", + locationLabel: "Blackpool Central Library and Grundy Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q882820", + cordinates: "Point(9.8875 59.91277778)", + locationLabel: "Blaafarveværket", + }, + { + location: "http://www.wikidata.org/entity/Q865736", + cordinates: "Point(-86.8102 33.5219)", + locationLabel: "Birmingham Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1799857", + visitors: "856000", + cordinates: "Point(-1.903786111 52.4803)", + locationLabel: "Birmingham Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16254767", + cordinates: "Point(-75.9706 42.089)", + locationLabel: "Binghamton University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4912763", + cordinates: "Point(-83.00875 39.999583333)", + locationLabel: "Billy Ireland Cartoon Library & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q127064", + cordinates: "Point(-2.937818 43.265988)", + locationLabel: "Bilbao Fine Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q15961638", + cordinates: "Point(85.1209921 25.6080702)", + locationLabel: "Bihar Museum", + }, + { + location: "http://www.wikidata.org/entity/Q526170", + cordinates: "Point(1.729494 41.221383)", + locationLabel: "Biblioteca Museu Víctor Balaguer", + }, + { + location: "http://www.wikidata.org/entity/Q673833", + visitors: "332000", + cordinates: "Point(7.651056 47.588139)", + locationLabel: "Beyeler Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q2900083", + cordinates: "Point(-0.0311 51.3819)", + locationLabel: "Bethlem Royal Archives and Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17509607", + cordinates: "Point(-0.0296944 51.3809)", + locationLabel: "Bethlem Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16129555", + cordinates: "Point(35.226 31.7689)", + locationLabel: "Bet ot ha-motsar ha-Yerushalmi", + }, + { + location: "http://www.wikidata.org/entity/Q27488994", + cordinates: "Point(9.837916666 46.496388888)", + locationLabel: "Berry Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4894536", + cordinates: "Point(23.716667 37.975556)", + locationLabel: "Bernier-Iliadis Gallery Museum", + }, + { + location: "http://www.wikidata.org/entity/Q700222", + cordinates: "Point(13.3981 52.5039)", + locationLabel: "Berlinische Galerie", + }, + { + location: "http://www.wikidata.org/entity/Q4892280", + cordinates: "Point(-73.2536 42.4473)", + locationLabel: "Berkshire Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2916280", + cordinates: "Point(-122.266388888 37.871111111)", + locationLabel: "Berkeley Art Museum and Pacific Film Archive", + }, + { + location: "http://www.wikidata.org/entity/Q641630", + cordinates: "Point(13.2953 52.5192)", + locationLabel: "Berggruen Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11960650", + cordinates: "Point(5.32627694 60.38975194)", + locationLabel: "Bergen Kunsthall", + }, + { + location: "http://www.wikidata.org/entity/Q2191491", + cordinates: "Point(-9.208377777 38.695522222)", + locationLabel: "Berardo Collection Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18325651", + visitors: "18000", + cordinates: "Point(-117.715305555 34.096166666)", + locationLabel: "Benton Museum of Art at Pomona College", + }, + { + location: "http://www.wikidata.org/entity/Q11378949", + cordinates: "Point(139.71797222 35.65991667)", + locationLabel: "Beni Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11337013", + cordinates: "Point(133.990889 34.445)", + locationLabel: "Benesse House", + }, + { + location: "http://www.wikidata.org/entity/Q4349311", + cordinates: "Point(144.276967 -36.757513)", + locationLabel: "Bendigo Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105933", + cordinates: "Point(-3.810776 53.321328)", + locationLabel: "Benards Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q16254173", + cordinates: "Point(145.979 -36.5525)", + locationLabel: "Benalla Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q816669", + visitors: "216911", + cordinates: "Point(23.74040833 37.97593889)", + locationLabel: "Benaki Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4886600", + cordinates: "Point(-0.1854 51.5375)", + locationLabel: "Ben Uri Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4884956", + cordinates: "Point(-90.0542 35.1418)", + locationLabel: "Belz Museum of Asian and Judaic Art", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "343064", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "752588", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "812522", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "888633", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "1126954", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "1154031", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "1510468", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q303139", + visitors: "1721399", + cordinates: "Point(16.38049 48.19139)", + locationLabel: "Belvedere", + }, + { + location: "http://www.wikidata.org/entity/Q4884230", + cordinates: "Point(-74.0062 40.7449)", + locationLabel: "Bellwether Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4883914", + cordinates: "Point(-122.20119 47.61537)", + locationLabel: "Bellevue Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q2403321", + cordinates: "Point(20.46119 44.80416)", + locationLabel: "Belgrade City Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4081721", + visitors: "68000", + cordinates: "Point(36.58666667 50.59305556)", + locationLabel: "Belgorod Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q815542", + visitors: "200000", + cordinates: "Point(4.36 50.851111)", + locationLabel: "Belgisch Stripcentrum", + }, + { + location: "http://www.wikidata.org/entity/Q815542", + visitors: "200000", + cordinates: "Point(4.360183 50.851257)", + locationLabel: "Belgisch Stripcentrum", + }, + { + location: "http://www.wikidata.org/entity/Q2584571", + visitors: "215800", + cordinates: "Point(27.56055556 53.89833333)", + locationLabel: "Belarusian National Arts Museum", + }, + { + location: "http://www.wikidata.org/entity/Q6803670", + cordinates: "Point(34.772888888 32.05225)", + locationLabel: "Beit Benyamini", + }, + { + location: "http://www.wikidata.org/entity/Q4881376", + cordinates: "Point(35.530477 33.879976)", + locationLabel: "Beirut Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q477275", + cordinates: "Point(4.2775 52.110556)", + locationLabel: "Beelden aan Zee", + }, + { + location: "http://www.wikidata.org/entity/Q4879717", + cordinates: "Point(0.71066 51.54223)", + locationLabel: "Beecroft Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4878575", + cordinates: "Point(-80.8473 35.2244)", + locationLabel: "Bechtler Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q64690542", + cordinates: "Point(-75.716944444 45.417222222)", + locationLabel: "Beaverbrook Collection of War Art", + }, + { + location: "http://www.wikidata.org/entity/Q3094641", + visitors: "25000", + cordinates: "Point(-66.6356 45.9598)", + locationLabel: "Beaverbrook Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4877540", + cordinates: "Point(-94.1279 30.0811)", + locationLabel: "Beaumont Art League", + }, + { + location: "http://www.wikidata.org/entity/Q1137826", + cordinates: "Point(1.853889 44.210278)", + locationLabel: "Beaulieu-en-Rouergue Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q2893013", + cordinates: "Point(-2.99828 54.3752)", + locationLabel: "Beatrix Potter Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q9265500", + cordinates: "Point(19.455083 51.781694)", + locationLabel: "Bałuty gallery", + }, + { + location: "http://www.wikidata.org/entity/Q37823940", + visitors: "20522", + cordinates: "Point(11.577286209 49.942046634)", + locationLabel: "Bayreuth State Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2892295", + cordinates: "Point(-95.420556 29.7575)", + locationLabel: "Bayou Bend Collection and Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q86106454", + cordinates: "Point(-3.166063 51.466129)", + locationLabel: "BayArt Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105948", + cordinates: "Point(-3.727107 53.295739)", + locationLabel: "Bay Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q812285", + visitors: "1143614", + cordinates: "Point(11.571776 48.149583)", + locationLabel: "Bavarian State Painting Collections", + }, + { + location: "http://www.wikidata.org/entity/Q811381", + cordinates: "Point(11.32416667 50.985)", + locationLabel: "Bauhaus Museum, Weimar", + }, + { + location: "http://www.wikidata.org/entity/Q1441998", + cordinates: "Point(12.2250714 51.839504)", + locationLabel: "Bauhaus Dessau Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q811389", + cordinates: "Point(13.3542 52.5061)", + locationLabel: "Bauhaus Archive", + }, + { + location: "http://www.wikidata.org/entity/Q4868797", + cordinates: "Point(-70.2019 44.1082)", + locationLabel: "Bates College Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q15196997", + cordinates: "Point(7.5085 43.7748)", + locationLabel: "Bastion Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3867772", + cordinates: "Point(14.216634 42.461567)", + locationLabel: "Basilio Cascella Civic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q576081", + cordinates: "Point(7.593252777 47.554377777)", + locationLabel: "Basel Museum of Ancient Art and Ludwig Collection", + }, + { + location: "http://www.wikidata.org/entity/Q92121304", + cordinates: "Point(-76.301898 36.883113)", + locationLabel: "Barry Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329086", + cordinates: "Point(-0.70279722 49.27598611)", + locationLabel: "Baron Gérard Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4862060", + cordinates: "Point(73.1886 22.3119)", + locationLabel: "Baroda Museum & Picture Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q808462", + cordinates: "Point(-75.17272 39.96077)", + locationLabel: "Barnes Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q4861408", + cordinates: "Point(-97.756389 32.231667)", + locationLabel: "Barnard's Mill", + }, + { + location: "http://www.wikidata.org/entity/Q63725756", + cordinates: "Point(8.931745 53.215666)", + locationLabel: "Barkenhoff", + }, + { + location: "http://www.wikidata.org/entity/Q388448", + visitors: "238713", + cordinates: "Point(11.25787 43.770462)", + locationLabel: "Bargello", + }, + { + location: "http://www.wikidata.org/entity/Q1067140", + visitors: "715745", + cordinates: "Point(2.166667 41.383611)", + locationLabel: "Barcelona Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q3329082", + cordinates: "Point(6.14667 46.20173)", + locationLabel: "Barbier-Mueller Museum", + }, + { + location: "http://www.wikidata.org/entity/Q653858", + cordinates: "Point(-0.095 51.5202)", + locationLabel: "Barbican Centre", + }, + { + location: "http://www.wikidata.org/entity/Q4859590", + cordinates: "Point(-1.927827 52.450331)", + locationLabel: "Barber Institute of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4859590", + cordinates: "Point(-1.927727777 52.450419444)", + locationLabel: "Barber Institute of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q1930870", + cordinates: "Point(-5.481388888 50.213611111)", + locationLabel: "Barbara Hepworth Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3634393", + cordinates: "Point(-0.101944444 51.508055555)", + locationLabel: "Bankside Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q66041148", + cordinates: "Point(101.690489 3.157524)", + locationLabel: "Bank Negara Malaysia Museum and Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86105902", + cordinates: "Point(-4.125829 53.227104)", + locationLabel: "Bangor Arts Initiative", + }, + { + location: "http://www.wikidata.org/entity/Q1130188", + cordinates: "Point(100.53022385 13.74670111)", + locationLabel: "Bangkok Art and Culture Centre", + }, + { + location: "http://www.wikidata.org/entity/Q377579", + cordinates: "Point(-76.6192 39.3261)", + locationLabel: "Baltimore Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4852693", + cordinates: "Point(-1.597777777 54.969166666)", + locationLabel: "Baltic Centre for Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q24534715", + cordinates: "Point(-72.2427 41.8048)", + locationLabel: "Ballard Institute and Museum of Puppetry", + }, + { + location: "http://www.wikidata.org/entity/Q1992789", + cordinates: "Point(115.21852778 -8.6575)", + locationLabel: "Bali Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1678321", + cordinates: "Point(49.86469 40.378018)", + locationLabel: "Baku Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q4849566", + cordinates: "Point(40.566417 40.385639)", + locationLabel: "Baksı Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4849306", + cordinates: "Point(-119.009 35.377)", + locationLabel: "Bakersfield Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q25540715", + cordinates: "Point(45.4124 39.2126)", + locationLabel: "Bahruz Kangarli Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5662157", + cordinates: "Point(-38.525936 -12.993579)", + locationLabel: "Bahia Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q838986", + cordinates: "Point(9.195266 45.469632)", + locationLabel: "Bagatti Valsecchi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q978799", + cordinates: "Point(12.9642 47.7909)", + locationLabel: "Bachschmiede", + }, + { + location: "http://www.wikidata.org/entity/Q9173957", + cordinates: "Point(15.509306 51.941833)", + locationLabel: "BWA Zielona Góra", + }, + { + location: "http://www.wikidata.org/entity/Q49958566", + cordinates: "Point(134.27175 34.734361111)", + locationLabel: "BIZEN Latin American Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11190936", + cordinates: "Point(135.217778 34.70325)", + locationLabel: "BB Plaza Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11450773", + cordinates: "Point(137.84222222 36.35)", + locationLabel: "Azumino Jansem Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1136822", + cordinates: "Point(49.835529 40.359479)", + locationLabel: "Azerbaijan Carpet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1136822", + cordinates: "Point(49.835278 40.359722)", + locationLabel: "Azerbaijan Carpet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1136822", + cordinates: "Point(49.8425 40.369444)", + locationLabel: "Azerbaijan Carpet Museum", + }, + { + location: "http://www.wikidata.org/entity/Q67737768", + cordinates: "Point(36.2372672 33.4963249)", + locationLabel: "Ayyam Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q24190316", + cordinates: "Point(149.1466728 -35.3209159)", + locationLabel: "Australian Girls Own Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q55604505", + cordinates: "Point(151.085 -33.7674)", + locationLabel: "Australian Centre for Photography", + }, + { + location: "http://www.wikidata.org/entity/Q542932", + cordinates: "Point(7.8525 47.99388889)", + locationLabel: "Augustiner Museum", + }, + { + location: "http://www.wikidata.org/entity/Q767473", + cordinates: "Point(8.21659 53.1362)", + locationLabel: "Augusteum", + }, + { + location: "http://www.wikidata.org/entity/Q760642", + cordinates: "Point(7.086308 50.737456)", + locationLabel: "August-Macke-Haus", + }, + { + location: "http://www.wikidata.org/entity/Q4820851", + cordinates: "Point(-79.9957 40.4433)", + locationLabel: "August Wilson African American Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q27480205", + cordinates: "Point(7.81894 47.38615)", + locationLabel: "August Suter Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4819492", + cordinates: "Point(174.7663 -36.8514)", + locationLabel: "Auckland Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q55206209", + cordinates: "Point(7.745694444 48.583888888)", + locationLabel: "Aubette 1928", + }, + { + location: "http://www.wikidata.org/entity/Q86106352", + cordinates: "Point(-3.933191 51.617419)", + locationLabel: "Attic Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4816049", + cordinates: "Point(-84.3915 33.7621)", + locationLabel: "Atlanta Contemporary Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q4813393", + cordinates: "Point(-77.0419 38.8053)", + locationLabel: "Athenaeum", + }, + { + location: "http://www.wikidata.org/entity/Q754507", + visitors: "400000", + cordinates: "Point(24.944072 60.170028)", + locationLabel: "Ateneum", + }, + { + location: "http://www.wikidata.org/entity/Q754507", + visitors: "410173", + cordinates: "Point(24.944072 60.170028)", + locationLabel: "Ateneum", + }, + { + location: "http://www.wikidata.org/entity/Q2110553", + cordinates: "Point(121.077222 14.64)", + locationLabel: "Ateneo Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q754080", + cordinates: "Point(14.2832 48.3064)", + locationLabel: "Atelierhaus Salzamt", + }, + { + location: "http://www.wikidata.org/entity/Q16495045", + cordinates: "Point(-9.150426 38.711366)", + locationLabel: "Atelier-Museu Júlio Pomar", + }, + { + location: "http://www.wikidata.org/entity/Q25492716", + cordinates: "Point(35.148083333 33.018083333)", + locationLabel: "Atelier Shemi", + }, + { + location: "http://www.wikidata.org/entity/Q761048", + cordinates: "Point(10.74416667 59.9075)", + locationLabel: "Astrup Fearnley Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q4071698", + cordinates: "Point(48.0527 46.34896)", + locationLabel: "Astrakhan State Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q10333749", + cordinates: "Point(-35.88944444 -7.22083333)", + locationLabel: "Assis Chateaubriand Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q16962266", + cordinates: "Point(-1.1061 50.7936)", + locationLabel: "Aspex Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q2854654", + cordinates: "Point(-106.817 39.1936)", + locationLabel: "Aspen Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4806644", + cordinates: "Point(151.217 -33.8687)", + locationLabel: "Asian Gallery New South Wales Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q12585739", + cordinates: "Point(126.920687 35.14724)", + locationLabel: "Asian Culture Center", + }, + { + location: "http://www.wikidata.org/entity/Q727277", + cordinates: "Point(-122.416577 37.780276)", + locationLabel: "Asian Art Museum of San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q16773590", + cordinates: "Point(120.68819444 24.04708333)", + locationLabel: "Asia Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q636400", + cordinates: "Point(-1.26056 51.75556)", + locationLabel: "Ashmolean Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11614836", + cordinates: "Point(135.310517 34.721873)", + locationLabel: "Ashiya City Museum of Art and History", + }, + { + location: "http://www.wikidata.org/entity/Q11636775", + cordinates: "Point(139.450389 36.334028)", + locationLabel: "Ashikaga Shiritsu Bijutsukan", + }, + { + location: "http://www.wikidata.org/entity/Q4804909", + cordinates: "Point(-82.551 35.5944)", + locationLabel: "Asheville Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85743271", + cordinates: "Point(171.74966 -43.90191)", + locationLabel: "Ashburton Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11517304", + cordinates: "Point(139.76855 35.726847)", + locationLabel: "Asakura Museum of Sculpture", + }, + { + location: "http://www.wikidata.org/entity/Q4803387", + cordinates: "Point(142.3647 43.805212)", + locationLabel: "Asahikawa Museum of Sculpture", + }, + { + location: "http://www.wikidata.org/entity/Q11283175", + cordinates: "Point(135.679639 34.895556)", + locationLabel: "Asahi Beer Oyamazaki Villa Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11257182", + cordinates: "Point(134.829917 35.2385)", + locationLabel: "Asago Art Village Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10418975", + cordinates: "Point(12.594611111 59.654166666)", + locationLabel: "Arvika Konsthall", + }, + { + location: "http://www.wikidata.org/entity/Q65121970", + cordinates: "Point(174.7579006 -36.8578236)", + locationLabel: "Artspace NZ", + }, + { + location: "http://www.wikidata.org/entity/Q4801501", + cordinates: "Point(-92.0028 34.2225)", + locationLabel: "Arts and Science Center for Southeast Arkansas", + }, + { + location: "http://www.wikidata.org/entity/Q18700337", + cordinates: "Point(139.07138611 36.390625)", + locationLabel: "Arts Maebashi", + }, + { + location: "http://www.wikidata.org/entity/Q86106553", + cordinates: "Point(-3.176786 51.479402)", + locationLabel: "Arts Active Trust", + }, + { + location: "http://www.wikidata.org/entity/Q913808", + cordinates: "Point(139.77194444 35.67888889)", + locationLabel: "Artizon Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3114831", + cordinates: "Point(-2.6675 42.846389)", + locationLabel: "Artium Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3114831", + cordinates: "Point(-2.683333 42.85)", + locationLabel: "Artium Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4801292", + cordinates: "Point(-74.0025 40.7242)", + locationLabel: "Artists' Choice Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106444", + cordinates: "Point(-3.174339 51.439547)", + locationLabel: "Artisans Corner", + }, + { + location: "http://www.wikidata.org/entity/Q259767", + visitors: "150000", + cordinates: "Point(-77.0265 38.888)", + locationLabel: "Arthur M. Sackler Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q17192195", + cordinates: "Point(141.91091667 43.33252778)", + locationLabel: "Arte Piazza Bibai", + }, + { + location: "http://www.wikidata.org/entity/Q86106090", + cordinates: "Point(-4.354356 52.208759)", + locationLabel: "Artandartist", + }, + { + location: "http://www.wikidata.org/entity/Q86105861", + cordinates: "Point(-4.044925 52.544464)", + locationLabel: "ArtWorks Aberdyfi", + }, + { + location: "http://www.wikidata.org/entity/Q4796651", + cordinates: "Point(-79.9769 40.4512)", + locationLabel: "ArtGardens of Pittsburgh", + }, + { + location: "http://www.wikidata.org/entity/Q5615216", + cordinates: "Point(16.25829972 48.31317778)", + locationLabel: "Art/Brut Center Gugging", + }, + { + location: "http://www.wikidata.org/entity/Q4796632", + cordinates: "Point(-119.849 34.412)", + locationLabel: "Art, Design & Architecture Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18341321", + cordinates: "Point(1.16139 41.3777)", + locationLabel: "Art museum Frederic Marès in Montblanc (Cataloña)", + }, + { + location: "http://www.wikidata.org/entity/Q40669230", + cordinates: "Point(9.179178891 45.471056253)", + locationLabel: "Art collection of the Sforza Castle", + }, + { + location: "http://www.wikidata.org/entity/Q11870983", + cordinates: "Point(25.108663 60.400949)", + locationLabel: "Art and Museum Centre Sinkka", + }, + { + location: "http://www.wikidata.org/entity/Q4797159", + cordinates: "Point(-80.1407 26.0104)", + locationLabel: "Art and Culture Center of Hollywood", + }, + { + location: "http://www.wikidata.org/entity/Q4801558", + cordinates: "Point(126.982 37.5794)", + locationLabel: "Art Sonje Center", + }, + { + location: "http://www.wikidata.org/entity/Q15961382", + cordinates: "Point(103.84945 1.29417)", + locationLabel: "Art Plural Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q391613", + cordinates: "Point(15.97861111 45.80722222)", + locationLabel: "Art Pavilion in Zagreb", + }, + { + location: "http://www.wikidata.org/entity/Q1770313", + cordinates: "Point(5.3275 60.38944)", + locationLabel: "Art Museums of Bergen", + }, + { + location: "http://www.wikidata.org/entity/Q4796990", + cordinates: "Point(-89.9393 35.1215)", + locationLabel: "Art Museum of the University of Memphis", + }, + { + location: "http://www.wikidata.org/entity/Q4796989", + cordinates: "Point(-77.0415 38.8929)", + locationLabel: "Art Museum of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q18542193", + cordinates: "Point(21.2294528 45.7574472)", + locationLabel: "Art Museum of Timișoara", + }, + { + location: "http://www.wikidata.org/entity/Q4796987", + cordinates: "Point(-94.0976 30.0838)", + locationLabel: "Art Museum of Southeast Texas", + }, + { + location: "http://www.wikidata.org/entity/Q18342322", + cordinates: "Point(-86.886452 40.416312)", + locationLabel: "Art Museum of Greater Lafayette", + }, + { + location: "http://www.wikidata.org/entity/Q2028327", + cordinates: "Point(44.80072222 41.69702222)", + locationLabel: "Art Museum of Georgia", + }, + { + location: "http://www.wikidata.org/entity/Q10333791", + cordinates: "Point(-48.5023357 -1.4557156)", + locationLabel: "Art Museum of Belém", + }, + { + location: "http://www.wikidata.org/entity/Q4329278", + cordinates: "Point(5.340128 50.931738)", + locationLabel: "Art Museum Z33", + }, + { + location: "http://www.wikidata.org/entity/Q16303874", + cordinates: "Point(2.3703 48.8405)", + locationLabel: "Art Ludique", + }, + { + location: "http://www.wikidata.org/entity/Q239303", + visitors: "1549057", + cordinates: "Point(-87.623889 41.879444)", + locationLabel: "Art Institute of Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q12290857", + cordinates: "Point(24.752105 42.148267)", + locationLabel: "Art Gallery, Plovdiv", + }, + { + location: "http://www.wikidata.org/entity/Q4796835", + cordinates: "Point(22.949993965 40.626579265)", + locationLabel: "Art Gallery of the Society for Macedonian Studies", + }, + { + location: "http://www.wikidata.org/entity/Q4796834", + cordinates: "Point(-83.0444 42.3183)", + locationLabel: "Art Gallery of Windsor", + }, + { + location: "http://www.wikidata.org/entity/Q4796833", + visitors: "318825", + cordinates: "Point(115.8611 -31.9507)", + locationLabel: "Art Gallery of Western Australia", + }, + { + location: "http://www.wikidata.org/entity/Q4796836", + cordinates: "Point(-80.9883 46.4833)", + locationLabel: "Art Gallery of Sudbury", + }, + { + location: "http://www.wikidata.org/entity/Q4796831", + cordinates: "Point(-99.9476 49.8479)", + locationLabel: "Art Gallery of Southwestern Manitoba", + }, + { + location: "http://www.wikidata.org/entity/Q705557", + visitors: "712994", + cordinates: "Point(138.603888888 -34.920555555)", + locationLabel: "Art Gallery of South Australia", + }, + { + location: "http://www.wikidata.org/entity/Q4796832", + cordinates: "Point(-78.3176 44.2947)", + locationLabel: "Art Gallery of Peterborough", + }, + { + location: "http://www.wikidata.org/entity/Q670250", + visitors: "873000", + cordinates: "Point(-79.392780555 43.653888888)", + locationLabel: "Art Gallery of Ontario", + }, + { + location: "http://www.wikidata.org/entity/Q4135250", + cordinates: "Point(-63.57265 44.648008333)", + locationLabel: "Art Gallery of Nova Scotia", + }, + { + location: "http://www.wikidata.org/entity/Q59532234", + cordinates: "Point(-78.167785 43.95932)", + locationLabel: "Art Gallery of Northumberland", + }, + { + location: "http://www.wikidata.org/entity/Q705551", + visitors: "1289195", + cordinates: "Point(151.217 -33.8687)", + locationLabel: "Art Gallery of New South Wales", + }, + { + location: "http://www.wikidata.org/entity/Q705551", + visitors: "1303789", + cordinates: "Point(151.217 -33.8687)", + locationLabel: "Art Gallery of New South Wales", + }, + { + location: "http://www.wikidata.org/entity/Q4796830", + cordinates: "Point(-79.8722 43.2575)", + locationLabel: "Art Gallery of Hamilton", + }, + { + location: "http://www.wikidata.org/entity/Q4796829", + cordinates: "Point(-123.348 48.4219)", + locationLabel: "Art Gallery of Greater Victoria", + }, + { + location: "http://www.wikidata.org/entity/Q4999199", + cordinates: "Point(-79.8006 43.3208)", + locationLabel: "Art Gallery of Burlington", + }, + { + location: "http://www.wikidata.org/entity/Q2881135", + cordinates: "Point(143.858 -37.5605)", + locationLabel: "Art Gallery of Ballarat", + }, + { + location: "http://www.wikidata.org/entity/Q4796828", + cordinates: "Point(-84.3311 46.5072)", + locationLabel: "Art Gallery of Algoma", + }, + { + location: "http://www.wikidata.org/entity/Q705545", + cordinates: "Point(-113.489 53.5449)", + locationLabel: "Art Gallery of Alberta", + }, + { + location: "http://www.wikidata.org/entity/Q7714351", + cordinates: "Point(-76.9475 38.9853)", + locationLabel: "Art Gallery at the University of Maryland", + }, + { + location: "http://www.wikidata.org/entity/Q38251418", + cordinates: "Point(-85.66888889 41.84138889)", + locationLabel: "Art Gallery Building", + }, + { + location: "http://www.wikidata.org/entity/Q85397292", + cordinates: "Point(0.9467911 51.876928)", + locationLabel: "Art Exchange", + }, + { + location: "http://www.wikidata.org/entity/Q4796749", + cordinates: "Point(-70.6873 42.044)", + locationLabel: "Art Complex Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1792616", + cordinates: "Point(12.9246 50.8377)", + locationLabel: "Art Collections Chemnitz", + }, + { + location: "http://www.wikidata.org/entity/Q86106420", + cordinates: "Point(-3.266481 51.406799)", + locationLabel: "Art Central Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4796733", + cordinates: "Point(126.981 37.5699)", + locationLabel: "Art Center Nabi", + }, + { + location: "http://www.wikidata.org/entity/Q4796680", + cordinates: "Point(-1.38556 54.9019)", + locationLabel: "Art Arena", + }, + { + location: "http://www.wikidata.org/entity/Q97870414", + cordinates: "Point(103.763972222 1.456694444)", + locationLabel: "Art 52 Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q703964", + cordinates: "Point(14.284166666 48.309166666)", + locationLabel: "Ars Electronica Center", + }, + { + location: "http://www.wikidata.org/entity/Q3816465", + cordinates: "Point(2.114734 41.36666)", + locationLabel: "Arranz-Bravo Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q3816465", + cordinates: "Point(2.114733 41.366661)", + locationLabel: "Arranz-Bravo Foundation", + }, + { + location: "http://www.wikidata.org/entity/Q698582", + cordinates: "Point(7.20694 50.6314)", + locationLabel: "Arp Museum Bahnhof Rolandseck", + }, + { + location: "http://www.wikidata.org/entity/Q4795381", + cordinates: "Point(-76.8025 42.0908)", + locationLabel: "Arnot Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4795363", + visitors: "398000", + cordinates: "Point(-2.5972 51.4492)", + locationLabel: "Arnolfini", + }, + { + location: "http://www.wikidata.org/entity/Q63285484", + cordinates: "Point(-97.108611111 32.736944444)", + locationLabel: "Arlington Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q47090641", + cordinates: "Point(40.517926 64.540056)", + locationLabel: "Arkhangelsk Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q673346", + visitors: "259000", + cordinates: "Point(12.3875 55.606111)", + locationLabel: "Arken Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q673346", + visitors: "347460", + cordinates: "Point(12.3875 55.606111)", + locationLabel: "Arken Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q4791956", + cordinates: "Point(-74.5719 42.9075)", + locationLabel: "Arkell Museum", + }, + { + location: "http://www.wikidata.org/entity/Q5997141", + cordinates: "Point(27.136805555 38.432083333)", + locationLabel: "Arkas Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q672759", + cordinates: "Point(-92.267 34.7394)", + locationLabel: "Arkansas Arts Center", + }, + { + location: "http://www.wikidata.org/entity/Q283998", + visitors: "60000", + cordinates: "Point(-111.9397897 33.4233731)", + locationLabel: "Arizona State University Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86106071", + cordinates: "Point(-3.391269 51.947501)", + locationLabel: "Ardent Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q635399", + cordinates: "Point(16.357778 48.204167)", + locationLabel: "Architekturzentrum Wien", + }, + { + location: "http://www.wikidata.org/entity/Q18352875", + cordinates: "Point(142.932 -37.2831)", + locationLabel: "Ararat Gallery TAMA", + }, + { + location: "http://www.wikidata.org/entity/Q4783902", + cordinates: "Point(133.862571 -23.70155)", + locationLabel: "Araluen Cultural Precinct", + }, + { + location: "http://www.wikidata.org/entity/Q13052114", + cordinates: "Point(44.508672222 40.186019444)", + locationLabel: "Ara Sargsyan and Hakob Kojoyan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "56745", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "79224", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "88738", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "93661", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "99880", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "101897", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "111224", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "111919", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "126718", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "130028", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "139227", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "141605", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "143449", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "147059", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "152869", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "154356", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3329534", + visitors: "187099", + cordinates: "Point(-0.57497 44.83564)", + locationLabel: "Aquitaine Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3678765", + cordinates: "Point(9.180428 45.46962)", + locationLabel: "Applied Arts Collection of Milan", + }, + { + location: "http://www.wikidata.org/entity/Q4781404", + cordinates: "Point(-82.0765 29.2053)", + locationLabel: "Appleton Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11662266", + cordinates: "Point(140.701 40.8073)", + locationLabel: "Aomori Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4769571", + cordinates: "Point(-71.4022 41.8243)", + locationLabel: "Annmary Brown Memorial", + }, + { + location: "http://www.wikidata.org/entity/Q76638284", + cordinates: "Point(12.230915 51.842667)", + locationLabel: "Anhaltische Gemäldegalerie, Georgium", + }, + { + location: "http://www.wikidata.org/entity/Q751172", + visitors: "106396", + cordinates: "Point(-80.0024 40.4484)", + locationLabel: "Andy Warhol Museum", + }, + { + location: "http://www.wikidata.org/entity/Q18342584", + cordinates: "Point(-104.5169 33.40891)", + locationLabel: "Anderson Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q4754037", + cordinates: "Point(-85.680278 40.106389)", + locationLabel: "Anderson Center for the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q11031610", + cordinates: "Point(6.52397 61.96539)", + locationLabel: "Anders Svor Museum", + }, + { + location: "http://www.wikidata.org/entity/Q50655085", + cordinates: "Point(98.913893 8.070734)", + locationLabel: "Andaman Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1048740", + cordinates: "Point(139.720785 35.728534)", + locationLabel: "Ancient Orient Museum", + }, + { + location: "http://www.wikidata.org/entity/Q12327020", + cordinates: "Point(10.59691 57.72613)", + locationLabel: "Anchers Hus", + }, + { + location: "http://www.wikidata.org/entity/Q30961458", + cordinates: "Point(29.957412 47.723136)", + locationLabel: "Ananiv Regional Museum", + }, + { + location: "http://www.wikidata.org/entity/Q17230481", + cordinates: "Point(139.7979 35.7145)", + locationLabel: "Amuse Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3328379", + cordinates: "Point(-98.1985 19.0408)", + locationLabel: "Amparo Museum", + }, + { + location: "http://www.wikidata.org/entity/Q22662489", + cordinates: "Point(24.93722222 60.16833333)", + locationLabel: "Amos Rex", + }, + { + location: "http://www.wikidata.org/entity/Q3067249", + cordinates: "Point(24.937305555 60.168361111)", + locationLabel: "Amos Andersonin kotimuseo ja kappeli", + }, + { + location: "http://www.wikidata.org/entity/Q3067249", + cordinates: "Point(24.937427 60.168389)", + locationLabel: "Amos Andersonin kotimuseo ja kappeli", + }, + { + location: "http://www.wikidata.org/entity/Q255559", + cordinates: "Point(-97.369 32.748)", + locationLabel: "Amon Carter Museum of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q2843060", + visitors: "100000", + cordinates: "Point(-76.606944444 39.280277777)", + locationLabel: "American Visionary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4745303", + cordinates: "Point(-77.087 38.9393)", + locationLabel: "American University Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4744216", + cordinates: "Point(-79.924 40.4377)", + locationLabel: "American Jewish Museum", + }, + { + location: "http://www.wikidata.org/entity/Q464354", + cordinates: "Point(-73.9781 40.7616)", + locationLabel: "American Folk Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1744232", + cordinates: "Point(72.54944444 23.03611111)", + locationLabel: "Amdavad ni Gufa", + }, + { + location: "http://www.wikidata.org/entity/Q700764", + cordinates: "Point(11.434722222 47.256666666)", + locationLabel: "Ambras Castle", + }, + { + location: "http://www.wikidata.org/entity/Q11464999", + cordinates: "Point(135.42027778 34.72111111)", + locationLabel: "Amagasaki Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q4738954", + cordinates: "Point(6.128333333 49.606388888)", + locationLabel: "Am Tunnel", + }, + { + location: "http://www.wikidata.org/entity/Q682406", + cordinates: "Point(8.731666666 47.511111111)", + locationLabel: "Am Römerholz", + }, + { + location: "http://www.wikidata.org/entity/Q86106210", + cordinates: "Point(-5.180282 51.947355)", + locationLabel: "Alun Davies Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4737360", + cordinates: "Point(17.804117 43.34601)", + locationLabel: "Aluminij Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "162000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "165000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "206000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "252000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "253000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "271000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "330000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "362000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "531000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q156722", + visitors: "1080000", + cordinates: "Point(13.398333333 52.519444444)", + locationLabel: "Altes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q436118", + cordinates: "Point(10.4139 50.569)", + locationLabel: "Alte Posthalterei", + }, + { + location: "http://www.wikidata.org/entity/Q154568", + visitors: "193570", + cordinates: "Point(11.57 48.148333)", + locationLabel: "Alte Pinakothek", + }, + { + location: "http://www.wikidata.org/entity/Q162111", + visitors: "316000", + cordinates: "Point(13.398056 52.520833)", + locationLabel: "Alte Nationalgalerie", + }, + { + location: "http://www.wikidata.org/entity/Q4735602", + cordinates: "Point(8.310394 47.057913)", + locationLabel: "Alpineum", + }, + { + location: "http://www.wikidata.org/entity/Q4734345", + cordinates: "Point(34.765833333 32.050138888)", + locationLabel: "Alon Segev Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q8196158", + cordinates: "Point(-0.373708 39.476536)", + locationLabel: "Almudín de Valencia", + }, + { + location: "http://www.wikidata.org/entity/Q8196155", + cordinates: "Point(-0.52176389 38.98786389)", + locationLabel: "Almudín de Játiva", + }, + { + location: "http://www.wikidata.org/entity/Q4732202", + cordinates: "Point(-7.4642 54.8276)", + locationLabel: "Alley Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q3612510", + cordinates: "Point(-75.468 40.6043)", + locationLabel: "Allentown Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3816734", + cordinates: "Point(-82.2168 41.2937)", + locationLabel: "Allen Memorial Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q19871960", + cordinates: "Point(-89.3343 30.3085)", + locationLabel: "Alice Moseley Folk Art and Antique Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4725678", + cordinates: "Point(-0.479694 38.34625)", + locationLabel: "Alicante Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q4723788", + cordinates: "Point(-99.17708611 19.34861667)", + locationLabel: "Alfredo Guati Rojo National Watercolor Museum", + }, + { + location: "http://www.wikidata.org/entity/Q26653696", + cordinates: "Point(-0.727509 52.396021)", + locationLabel: "Alfred East Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q8552687", + cordinates: "Point(14.441497222 49.051827777)", + locationLabel: "Aleš South Bohemian Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q28162764", + cordinates: "Point(29.913653 31.195012)", + locationLabel: "Alexandria Museum of Fine Arts", + }, + { + location: "http://www.wikidata.org/entity/Q931081", + cordinates: "Point(-92.4442 31.3122)", + locationLabel: "Alexandria Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4718421", + cordinates: "Point(-81.6028 30.3518)", + locationLabel: "Alexander Brest Museum and Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q4713992", + cordinates: "Point(-73.4968 41.277)", + locationLabel: "Aldrich Contemporary Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20009253", + cordinates: "Point(12.965382 37.981325)", + locationLabel: "Alcamo Sacred Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4712823", + cordinates: "Point(-106.668 35.0975)", + locationLabel: "Albuquerque Museum", + }, + { + location: "http://www.wikidata.org/entity/Q1970945", + cordinates: "Point(-78.877072 42.932078)", + locationLabel: "Albright–Knox Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q48976568", + cordinates: "Point(-94.8232 39.7762)", + locationLabel: "Albrecht-Kemper Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q18342556", + cordinates: "Point(-94.82324 39.7762)", + locationLabel: "Albrecht-Kemper Museum", + }, + { + location: "http://www.wikidata.org/entity/Q523148", + cordinates: "Point(11.0739 49.4572)", + locationLabel: "Albrecht Dürer's House", + }, + { + location: "http://www.wikidata.org/entity/Q86106228", + cordinates: "Point(-5.264962 51.882579)", + locationLabel: "Albion Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q699780", + cordinates: "Point(13.7444 51.0519)", + locationLabel: "Albertinum", + }, + { + location: "http://www.wikidata.org/entity/Q371908", + visitors: "360073", + cordinates: "Point(16.367777777 48.204444444)", + locationLabel: "Albertina", + }, + { + location: "http://www.wikidata.org/entity/Q371908", + visitors: "610000", + cordinates: "Point(16.367777777 48.204444444)", + locationLabel: "Albertina", + }, + { + location: "http://www.wikidata.org/entity/Q26622123", + cordinates: "Point(0.897137 51.88991)", + locationLabel: "Albert Hall", + }, + { + location: "http://www.wikidata.org/entity/Q27479540", + cordinates: "Point(8.76286 46.15854)", + locationLabel: "Albergo, parco, case e percorso museale Monte Verità", + }, + { + location: "http://www.wikidata.org/entity/Q4709356", + cordinates: "Point(-84.208109 31.585605)", + locationLabel: "Albany Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q6033890", + cordinates: "Point(-78.515822 -0.221258)", + locationLabel: "Alabado House Pre-Columbian Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11635883", + cordinates: "Point(134.406833 34.730722)", + locationLabel: "Akō City Tabuchi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q1629739", + cordinates: "Point(-18.0919 65.6804)", + locationLabel: "Akureyri Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q420869", + cordinates: "Point(-81.5163 41.084)", + locationLabel: "Akron Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q11595323", + cordinates: "Point(140.124583 39.717389)", + locationLabel: "Akita Senshū Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11595519", + cordinates: "Point(140.5475 39.2925)", + locationLabel: "Akita Museum of Modern Art", + }, + { + location: "http://www.wikidata.org/entity/Q11483668", + cordinates: "Point(140.1215 39.71742778)", + locationLabel: "Akita Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q11595345", + cordinates: "Point(140.115644 39.716689)", + locationLabel: "Akita City Akarenga-kan Museum", + }, + { + location: "http://www.wikidata.org/entity/Q76858681", + cordinates: "Point(172.969707 -43.802997)", + locationLabel: "Akaroa Art Gallery (former Orion Powerhouse Gallery)", + }, + { + location: "http://www.wikidata.org/entity/Q414952", + cordinates: "Point(7.106187 50.73182)", + locationLabel: "Akademisches Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q87485357", + cordinates: "Point(-84.439248 33.640101)", + locationLabel: "Airport Art, Atlanta", + }, + { + location: "http://www.wikidata.org/entity/Q11850139", + cordinates: "Point(24.140556 65.845833)", + locationLabel: "Aine Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q85740178", + cordinates: "Point(171.2394401 -44.3906273)", + locationLabel: "Aigantighe Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q11256823", + cordinates: "Point(136.911308 35.17115)", + locationLabel: "Aichi Prefectural Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4696582", + cordinates: "Point(137.09805556 35.18583333)", + locationLabel: "Aichi Prefectural Ceramic Museum", + }, + { + location: "http://www.wikidata.org/entity/Q398622", + cordinates: "Point(115.26208333 -8.51835278)", + locationLabel: "Agung Rai Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4694507", + cordinates: "Point(-102.291245 21.885881)", + locationLabel: "Aguascalientes Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4693034", + cordinates: "Point(-76.4964 44.2253)", + locationLabel: "Agnes Etherington Art Centre", + }, + { + location: "http://www.wikidata.org/entity/Q9494", + cordinates: "Point(4.857917 45.749861)", + locationLabel: "African Museum of Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q59485217", + cordinates: "Point(11.863639 -4.7786694)", + locationLabel: "African Circle Museum of Pointe-Noire", + }, + { + location: "http://www.wikidata.org/entity/Q4689669", + cordinates: "Point(-81.3069 29.0241)", + locationLabel: "African American Museum of the Arts", + }, + { + location: "http://www.wikidata.org/entity/Q4689666", + cordinates: "Point(-96.7643 32.7792)", + locationLabel: "African American Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4689667", + cordinates: "Point(-73.6277 40.7095)", + locationLabel: "African American Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4688864", + cordinates: "Point(110.3963 -7.7827)", + locationLabel: "Affandi Museum", + }, + { + location: "http://www.wikidata.org/entity/Q667615", + cordinates: "Point(14.4606 47.5758)", + locationLabel: "Admont Abbey", + }, + { + location: "http://www.wikidata.org/entity/Q69561955", + cordinates: "Point(79.924227 24.856944)", + locationLabel: "Adivart Tribal & Folk Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4681251", + cordinates: "Point(-71.1333 42.6486)", + locationLabel: "Addison Gallery of American Art", + }, + { + location: "http://www.wikidata.org/entity/Q4678651", + cordinates: "Point(174.769 -41.2886)", + locationLabel: "Adam Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3329561", + cordinates: "Point(133.19417 35.38001)", + locationLabel: "Adachi Museum of Art", + }, + { + location: "http://www.wikidata.org/entity/Q4674272", + cordinates: "Point(-79.0544 35.9124)", + locationLabel: "Ackland Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3603953", + cordinates: "Point(10.0715033 45.8153186)", + locationLabel: "Accademia Tadini", + }, + { + location: "http://www.wikidata.org/entity/Q3329172", + cordinates: "Point(-1.0530232 43.709544)", + locationLabel: "Académie internationale des arts Georgette Dupouy", + }, + { + location: "http://www.wikidata.org/entity/Q414219", + cordinates: "Point(16.365277777 48.201388888)", + locationLabel: "Academy of Fine Arts Vienna", + }, + { + location: "http://www.wikidata.org/entity/Q64585058", + cordinates: "Point(174.777988388 -41.284753194)", + locationLabel: "Academy Galleries", + }, + { + location: "http://www.wikidata.org/entity/Q206346", + visitors: "36000", + cordinates: "Point(6.433056 51.192778)", + locationLabel: "Abteiberg Museum", + }, + { + location: "http://www.wikidata.org/entity/Q10143", + cordinates: "Point(4.82611111 45.83763889)", + locationLabel: "Abode of Chaos", + }, + { + location: "http://www.wikidata.org/entity/Q2821637", + cordinates: "Point(-75.1171 40.0924)", + locationLabel: "Abington Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q4666914", + cordinates: "Point(-64.7782 46.0933)", + locationLabel: "Aberdeen Cultural Centre", + }, + { + location: "http://www.wikidata.org/entity/Q4666883", + cordinates: "Point(-2.102713049 57.148190897)", + locationLabel: "Aberdeen Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q59536065", + cordinates: "Point(135.51407 34.645798)", + locationLabel: "Abeno Harukas Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q3820914", + cordinates: "Point(2.216202777 41.535622222)", + locationLabel: "Abelló Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4664440", + cordinates: "Point(-76.4159 37.1545)", + locationLabel: "Abby Aldrich Rockefeller Folk Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4664294", + cordinates: "Point(-71.092361 42.316361)", + locationLabel: "Abbotsford", + }, + { + location: "http://www.wikidata.org/entity/Q2820837", + cordinates: "Point(-2.74389 54.3231)", + locationLabel: "Abbot Hall Art Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q689896", + cordinates: "Point(9.3764 47.4228)", + locationLabel: "Abbey library of St. Gallen", + }, + { + location: "http://www.wikidata.org/entity/Q11607218", + cordinates: "Point(144.267639 44.019333)", + locationLabel: "Abashiri Municipal Art Museum", + }, + { + location: "http://www.wikidata.org/entity/Q301250", + cordinates: "Point(8.044508333 47.390002777)", + locationLabel: "Aargau house of art (collection)", + }, + { + location: "http://www.wikidata.org/entity/Q15106167", + cordinates: "Point(6.082816666 50.775036111)", + locationLabel: "Aachen Cathedral Treasury", + }, + { + location: "http://www.wikidata.org/entity/Q57933633", + cordinates: "Point(30.492972222 50.462111111)", + locationLabel: "AVSArt Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q296962", + visitors: "508008", + cordinates: "Point(10.199611111 56.153888888)", + locationLabel: "ARoS Aarhus Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q296962", + visitors: "658086", + cordinates: "Point(10.199611111 56.153888888)", + locationLabel: "ARoS Aarhus Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q296962", + visitors: "835606", + cordinates: "Point(10.199611111 56.153888888)", + locationLabel: "ARoS Aarhus Kunstmuseum", + }, + { + location: "http://www.wikidata.org/entity/Q11285654", + cordinates: "Point(140.89425 37.05319444)", + locationLabel: "ART SPACE ELICONA", + }, + { + location: "http://www.wikidata.org/entity/Q77806922", + cordinates: "Point(137.819277777 34.864861111)", + locationLabel: "AKINO Fuku museum", + }, + { + location: "http://www.wikidata.org/entity/Q106837639", + cordinates: "Point(-93.09701 44.94566)", + locationLabel: "AAW Gallery of Wood Art", + }, + { + location: "http://www.wikidata.org/entity/Q4647709", + cordinates: "Point(-80.3241 27.4524)", + locationLabel: "A. E. Backus Gallery & Museum", + }, + { + location: "http://www.wikidata.org/entity/Q4646832", + cordinates: "Point(-118.36 34.0627)", + locationLabel: "A+D Museum", + }, + { + location: "http://www.wikidata.org/entity/Q86105845", + cordinates: "Point(-4.087051 52.415452)", + locationLabel: "::the studio::", + }, + { + location: "http://www.wikidata.org/entity/Q4645189", + cordinates: "Point(103.851388888 1.296666666)", + locationLabel: "8Q SAM", + }, + { + location: "http://www.wikidata.org/entity/Q3242206", + cordinates: "Point(136.658 36.5608)", + locationLabel: "21st Century Museum of Contemporary Art", + }, + { + location: "http://www.wikidata.org/entity/Q214022", + cordinates: "Point(16.3833 48.1858)", + locationLabel: "21er Haus", + }, + { + location: "http://www.wikidata.org/entity/Q86106109", + cordinates: "Point(-4.660035 52.083542)", + locationLabel: "2 The Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q86501876", + cordinates: "Point(-0.1376 51.50734)", + locationLabel: "12 Duke Street", + }, + { + location: "http://www.wikidata.org/entity/Q25555141", + cordinates: "Point(18.41666667 43.86666667)", + locationLabel: "11/07/95 Gallery", + }, + { + location: "http://www.wikidata.org/entity/Q3868327", + cordinates: "Point(15.642265118 38.106049928)", + locationLabel: '"Mons. Aurelio Sorrentino" Diocesan Museum', + }, + { + location: "http://www.wikidata.org/entity/Q67746042", + cordinates: "Point(12.2407403 44.1362881)", + locationLabel: '"Ex Pescheria" municipal art gallery', + }, + { + location: "http://www.wikidata.org/entity/Q6033415", + cordinates: "Point(-60.6599 -32.9567)", + locationLabel: '"Dr. Julio Marc" Provincial Historical Museum', + }, + { + location: "http://www.wikidata.org/entity/Q6033415", + cordinates: "Point(-60.659524 -32.955888)", + locationLabel: '"Dr. Julio Marc" Provincial Historical Museum', + }, + { + location: "http://www.wikidata.org/entity/Q99933926", + cordinates: "Point(138.995277777 37.471666666)", + locationLabel: "Q99933926", + }, + { + location: "http://www.wikidata.org/entity/Q99397897", + cordinates: "Point(-8.892196 38.522744)", + locationLabel: "Q99397897", + }, + { + location: "http://www.wikidata.org/entity/Q98602298", + cordinates: "Point(-77.03397 -12.100988)", + locationLabel: "Q98602298", + }, + { + location: "http://www.wikidata.org/entity/Q96053750", + cordinates: "Point(16.6055622 49.1963692)", + locationLabel: "Q96053750", + }, + { + location: "http://www.wikidata.org/entity/Q95228832", + cordinates: "Point(-5.307722222 37.222555555)", + locationLabel: "Q95228832", + }, + { + location: "http://www.wikidata.org/entity/Q94741238", + cordinates: "Point(15.9264 48.9948481)", + locationLabel: "Q94741238", + }, + { + location: "http://www.wikidata.org/entity/Q93893642", + cordinates: "Point(-71.976374 -13.516074)", + locationLabel: "Q93893642", + }, + { + location: "http://www.wikidata.org/entity/Q9265665", + cordinates: "Point(19.482556 51.788556)", + locationLabel: "Q9265665", + }, + { + location: "http://www.wikidata.org/entity/Q9265657", + cordinates: "Point(21.01825 52.216889)", + locationLabel: "Q9265657", + }, + { + location: "http://www.wikidata.org/entity/Q9265652", + cordinates: "Point(23.153694 53.136778)", + locationLabel: "Q9265652", + }, + { + location: "http://www.wikidata.org/entity/Q9265648", + cordinates: "Point(21.012111 52.249)", + locationLabel: "Q9265648", + }, + { + location: "http://www.wikidata.org/entity/Q9265635", + cordinates: "Point(19.457333 51.775778)", + locationLabel: "Q9265635", + }, + { + location: "http://www.wikidata.org/entity/Q9265630", + cordinates: "Point(23.1185 52.031083)", + locationLabel: "Q9265630", + }, + { + location: "http://www.wikidata.org/entity/Q9265612", + cordinates: "Point(19.937694 50.063611)", + locationLabel: "Q9265612", + }, + { + location: "http://www.wikidata.org/entity/Q9265606", + cordinates: "Point(19.018917 50.250861)", + locationLabel: "Q9265606", + }, + { + location: "http://www.wikidata.org/entity/Q9265604", + cordinates: "Point(19.0175 50.255278)", + locationLabel: "Q9265604", + }, + { + location: "http://www.wikidata.org/entity/Q9265580", + cordinates: "Point(19.0236 50.2531)", + locationLabel: "Q9265580", + }, + { + location: "http://www.wikidata.org/entity/Q9265572", + cordinates: "Point(19.939139 50.060417)", + locationLabel: "Q9265572", + }, + { + location: "http://www.wikidata.org/entity/Q9265568", + cordinates: "Point(21.014472 52.248806)", + locationLabel: "Q9265568", + }, + { + location: "http://www.wikidata.org/entity/Q9265563", + cordinates: "Point(18.6509 54.3541)", + locationLabel: "Q9265563", + }, + { + location: "http://www.wikidata.org/entity/Q9265553", + cordinates: "Point(19.457944 51.763)", + locationLabel: "Q9265553", + }, + { + location: "http://www.wikidata.org/entity/Q9265543", + cordinates: "Point(18.9993 50.2523)", + locationLabel: "Q9265543", + }, + { + location: "http://www.wikidata.org/entity/Q9265524", + cordinates: "Point(16.918556 52.407944)", + locationLabel: "Q9265524", + }, + { + location: "http://www.wikidata.org/entity/Q9265515", + cordinates: "Point(16.890861 52.399472)", + locationLabel: "Q9265515", + }, + { + location: "http://www.wikidata.org/entity/Q9265496", + cordinates: "Point(19.459167 51.763528)", + locationLabel: "Q9265496", + }, + { + location: "http://www.wikidata.org/entity/Q9257589", + cordinates: "Point(18.79374 54.08491)", + locationLabel: "Q9257589", + }, + { + location: "http://www.wikidata.org/entity/Q9186484", + cordinates: "Point(19.928472 50.012972)", + locationLabel: "Q9186484", + }, + { + location: "http://www.wikidata.org/entity/Q9186479", + cordinates: "Point(18.923193915 50.346692705)", + locationLabel: "Q9186479", + }, + { + location: "http://www.wikidata.org/entity/Q91848369", + cordinates: "Point(120.724472222 24.134083333)", + locationLabel: "Q91848369", + }, + { + location: "http://www.wikidata.org/entity/Q9167862", + cordinates: "Point(17.034306 54.470167)", + locationLabel: "Q9167862", + }, + { + location: "http://www.wikidata.org/entity/Q90038965", + cordinates: "Point(4.33575 50.876638888)", + locationLabel: "Q90038965", + }, + { + location: "http://www.wikidata.org/entity/Q88384952", + cordinates: "Point(20.6455 44.871916666)", + locationLabel: "Q88384952", + }, + { + location: "http://www.wikidata.org/entity/Q86743771", + cordinates: "Point(138.315138888 36.695111111)", + locationLabel: "Q86743771", + }, + { + location: "http://www.wikidata.org/entity/Q86743755", + cordinates: "Point(138.020444444 36.572055555)", + locationLabel: "Q86743755", + }, + { + location: "http://www.wikidata.org/entity/Q85883183", + cordinates: "Point(137.837805555 36.363833333)", + locationLabel: "Q85883183", + }, + { + location: "http://www.wikidata.org/entity/Q85882441", + cordinates: "Point(138.583611111 36.358611111)", + locationLabel: "Q85882441", + }, + { + location: "http://www.wikidata.org/entity/Q85879363", + cordinates: "Point(137.835722222 36.352333333)", + locationLabel: "Q85879363", + }, + { + location: "http://www.wikidata.org/entity/Q85876422", + cordinates: "Point(138.36226 36.26488)", + locationLabel: "Q85876422", + }, + { + location: "http://www.wikidata.org/entity/Q85869646", + cordinates: "Point(140.03875 38.102027777)", + locationLabel: "Q85869646", + }, + { + location: "http://www.wikidata.org/entity/Q85671101", + cordinates: "Point(13.196805555 55.707722222)", + locationLabel: "Q85671101", + }, + { + location: "http://www.wikidata.org/entity/Q84836245", + cordinates: "Point(-58.370027777 -34.629027777)", + locationLabel: "Q84836245", + }, + { + location: "http://www.wikidata.org/entity/Q82594996", + cordinates: "Point(136.567888888 36.526722222)", + locationLabel: "Q82594996", + }, + { + location: "http://www.wikidata.org/entity/Q78113906", + cordinates: "Point(120.2835835 22.6228335)", + locationLabel: "Q78113906", + }, + { + location: "http://www.wikidata.org/entity/Q72858385", + cordinates: "Point(-1.88292 37.29697)", + locationLabel: "Q72858385", + }, + { + location: "http://www.wikidata.org/entity/Q72828490", + cordinates: "Point(-2.07306982 37.349534369)", + locationLabel: "Q72828490", + }, + { + location: "http://www.wikidata.org/entity/Q72795275", + cordinates: "Point(23.15167 56.9657)", + locationLabel: "Q72795275", + }, + { + location: "http://www.wikidata.org/entity/Q71821967", + cordinates: "Point(138.156556 34.832306)", + locationLabel: "Q71821967", + }, + { + location: "http://www.wikidata.org/entity/Q71413347", + cordinates: "Point(33.637541 34.916914)", + locationLabel: "Q71413347", + }, + { + location: "http://www.wikidata.org/entity/Q6954958", + cordinates: "Point(34.768333333 32.073638888)", + locationLabel: "Q6954958", + }, + { + location: "http://www.wikidata.org/entity/Q67345308", + cordinates: "Point(-98.6720347 20.139832)", + locationLabel: "Q67345308", + }, + { + location: "http://www.wikidata.org/entity/Q67028195", + cordinates: "Point(14.402924 50.087105)", + locationLabel: "Q67028195", + }, + { + location: "http://www.wikidata.org/entity/Q66759090", + cordinates: "Point(16.600765 41.205234)", + locationLabel: "Q66759090", + }, + { + location: "http://www.wikidata.org/entity/Q6586277", + cordinates: "Point(34.772361111 32.081583333)", + locationLabel: "Q6586277", + }, + { + location: "http://www.wikidata.org/entity/Q65483381", + cordinates: "Point(-58.4078 -34.5948)", + locationLabel: "Q65483381", + }, + { + location: "http://www.wikidata.org/entity/Q65251972", + cordinates: "Point(34.77325 32.088888888)", + locationLabel: "Q65251972", + }, + { + location: "http://www.wikidata.org/entity/Q65158405", + cordinates: "Point(3.884146 43.617524)", + locationLabel: "Q65158405", + }, + { + location: "http://www.wikidata.org/entity/Q63726112", + cordinates: "Point(8.930897 53.221616)", + locationLabel: "Q63726112", + }, + { + location: "http://www.wikidata.org/entity/Q63726068", + cordinates: "Point(8.928145 53.219739)", + locationLabel: "Q63726068", + }, + { + location: "http://www.wikidata.org/entity/Q63608787", + cordinates: "Point(34.763472222 32.058305555)", + locationLabel: "Q63608787", + }, + { + location: "http://www.wikidata.org/entity/Q63485287", + cordinates: "Point(10.77277 43.884)", + locationLabel: "Q63485287", + }, + { + location: "http://www.wikidata.org/entity/Q63110083", + cordinates: "Point(6.821588 52.034891)", + locationLabel: "Q63110083", + }, + { + location: "http://www.wikidata.org/entity/Q62071012", + cordinates: "Point(6.878333333 51.426111111)", + locationLabel: "Q62071012", + }, + { + location: "http://www.wikidata.org/entity/Q61398113", + cordinates: "Point(141.550111111 38.881027777)", + locationLabel: "Q61398113", + }, + { + location: "http://www.wikidata.org/entity/Q61393839", + cordinates: "Point(138.317166666 36.694361111)", + locationLabel: "Q61393839", + }, + { + location: "http://www.wikidata.org/entity/Q61127072", + cordinates: "Point(34.8105 32.046527777)", + locationLabel: "Q61127072", + }, + { + location: "http://www.wikidata.org/entity/Q60988082", + cordinates: "Point(140.03872778 37.03047222)", + locationLabel: "Q60988082", + }, + { + location: "http://www.wikidata.org/entity/Q60986994", + cordinates: "Point(139.37847222 36.29461111)", + locationLabel: "Q60986994", + }, + { + location: "http://www.wikidata.org/entity/Q60851336", + cordinates: "Point(25.36472 41.64611)", + locationLabel: "Q60851336", + }, + { + location: "http://www.wikidata.org/entity/Q60641369", + cordinates: "Point(49.842588888 40.369738888)", + locationLabel: "Q60641369", + }, + { + location: "http://www.wikidata.org/entity/Q6041899", + cordinates: "Point(32.855702 39.933272)", + locationLabel: "Q6041899", + }, + { + location: "http://www.wikidata.org/entity/Q6033923", + cordinates: "Point(-71.5962 -35.84977778)", + locationLabel: "Q6033923", + }, + { + location: "http://www.wikidata.org/entity/Q6033902", + cordinates: "Point(-57.63302778 -25.28960278)", + locationLabel: "Q6033902", + }, + { + location: "http://www.wikidata.org/entity/Q6033895", + cordinates: "Point(-64.1849 -31.4173)", + locationLabel: "Q6033895", + }, + { + location: "http://www.wikidata.org/entity/Q6033878", + cordinates: "Point(-68.299176 -54.803084)", + locationLabel: "Q6033878", + }, + { + location: "http://www.wikidata.org/entity/Q59541899", + cordinates: "Point(-73.19007 45.565207)", + locationLabel: "Q59541899", + }, + { + location: "http://www.wikidata.org/entity/Q59504633", + cordinates: "Point(24.10886 56.94482)", + locationLabel: "Q59504633", + }, + { + location: "http://www.wikidata.org/entity/Q59360281", + cordinates: "Point(19.41812 48.559147)", + locationLabel: "Q59360281", + }, + { + location: "http://www.wikidata.org/entity/Q58415178", + cordinates: "Point(7.196791 51.615279)", + locationLabel: "Q58415178", + }, + { + location: "http://www.wikidata.org/entity/Q58023522", + cordinates: "Point(14.416077 50.075344)", + locationLabel: "Q58023522", + }, + { + location: "http://www.wikidata.org/entity/Q57734297", + cordinates: "Point(25.365694444 41.643027777)", + locationLabel: "Q57734297", + }, + { + location: "http://www.wikidata.org/entity/Q56855928", + cordinates: "Point(14.4990658 50.1089589)", + locationLabel: "Q56855928", + }, + { + location: "http://www.wikidata.org/entity/Q56545092", + cordinates: "Point(8.62254 56.09074)", + locationLabel: "Q56545092", + }, + { + location: "http://www.wikidata.org/entity/Q56345064", + cordinates: "Point(139.63180556 35.92561111)", + locationLabel: "Q56345064", + }, + { + location: "http://www.wikidata.org/entity/Q56258499", + cordinates: "Point(12.3339 45.44088)", + locationLabel: "Q56258499", + }, + { + location: "http://www.wikidata.org/entity/Q56149433", + cordinates: "Point(27.013055555 43.064722222)", + locationLabel: "Q56149433", + }, + { + location: "http://www.wikidata.org/entity/Q55537764", + cordinates: "Point(137.36355556 36.71869444)", + locationLabel: "Q55537764", + }, + { + location: "http://www.wikidata.org/entity/Q55525428", + cordinates: "Point(131.50177778 33.27625)", + locationLabel: "Q55525428", + }, + { + location: "http://www.wikidata.org/entity/Q55369342", + cordinates: "Point(16.60042 41.204872)", + locationLabel: "Q55369342", + }, + { + location: "http://www.wikidata.org/entity/Q55368634", + cordinates: "Point(12.349534 44.26114)", + locationLabel: "Q55368634", + }, + { + location: "http://www.wikidata.org/entity/Q55359329", + cordinates: "Point(12.296758 45.986217)", + locationLabel: "Q55359329", + }, + { + location: "http://www.wikidata.org/entity/Q55351772", + cordinates: "Point(11.351059 46.498398)", + locationLabel: "Q55351772", + }, + { + location: "http://www.wikidata.org/entity/Q55351494", + cordinates: "Point(14.848242 41.740425)", + locationLabel: "Q55351494", + }, + { + location: "http://www.wikidata.org/entity/Q55348542", + cordinates: "Point(9.344398 44.308636)", + locationLabel: "Q55348542", + }, + { + location: "http://www.wikidata.org/entity/Q55183339", + cordinates: "Point(14.025006 42.215221)", + locationLabel: "Q55183339", + }, + { + location: "http://www.wikidata.org/entity/Q55173011", + cordinates: "Point(15.120555 50.1441839)", + locationLabel: "Q55173011", + }, + { + location: "http://www.wikidata.org/entity/Q54854934", + cordinates: "Point(13.551569 43.40223)", + locationLabel: "Q54854934", + }, + { + location: "http://www.wikidata.org/entity/Q52765787", + cordinates: "Point(11.980611111 57.696388888)", + locationLabel: "Q52765787", + }, + { + location: "http://www.wikidata.org/entity/Q48763537", + cordinates: "Point(139.44777778 35.34061111)", + locationLabel: "Q48763537", + }, + { + location: "http://www.wikidata.org/entity/Q48763471", + cordinates: "Point(136.987333 36.859139)", + locationLabel: "Q48763471", + }, + { + location: "http://www.wikidata.org/entity/Q48756817", + cordinates: "Point(139.90447222 38.84872222)", + locationLabel: "Q48756817", + }, + { + location: "http://www.wikidata.org/entity/Q48756396", + cordinates: "Point(140.02777778 37.04388889)", + locationLabel: "Q48756396", + }, + { + location: "http://www.wikidata.org/entity/Q48750705", + cordinates: "Point(139.11430556 36.48580556)", + locationLabel: "Q48750705", + }, + { + location: "http://www.wikidata.org/entity/Q48750098", + cordinates: "Point(134.20205556 34.73316667)", + locationLabel: "Q48750098", + }, + { + location: "http://www.wikidata.org/entity/Q48749687", + cordinates: "Point(139.068944444 36.395111111)", + locationLabel: "Q48749687", + }, + { + location: "http://www.wikidata.org/entity/Q48747268", + cordinates: "Point(136.61038889 35.4165)", + locationLabel: "Q48747268", + }, + { + location: "http://www.wikidata.org/entity/Q48747109", + cordinates: "Point(136.61736389 35.36026667)", + locationLabel: "Q48747109", + }, + { + location: "http://www.wikidata.org/entity/Q48744156", + cordinates: "Point(141.213539 38.719874)", + locationLabel: "Q48744156", + }, + { + location: "http://www.wikidata.org/entity/Q48687993", + cordinates: "Point(5.371025 60.364622222)", + locationLabel: "Q48687993", + }, + { + location: "http://www.wikidata.org/entity/Q47002591", + cordinates: "Point(-1.6082016 42.0639296)", + locationLabel: "Q47002591", + }, + { + location: "http://www.wikidata.org/entity/Q45099016", + cordinates: "Point(17.9686208 49.4714044)", + locationLabel: "Q45099016", + }, + { + location: "http://www.wikidata.org/entity/Q4491674", + cordinates: "Point(30.336388888 59.934444444)", + locationLabel: "Q4491674", + }, + { + location: "http://www.wikidata.org/entity/Q42999784", + cordinates: "Point(119.563711 23.564469)", + locationLabel: "Q42999784", + }, + { + location: "http://www.wikidata.org/entity/Q41798675", + cordinates: "Point(17.074837222 49.579361944)", + locationLabel: "Q41798675", + }, + { + location: "http://www.wikidata.org/entity/Q3905100", + cordinates: "Point(13.716847 43.085224)", + locationLabel: "Q3905100", + }, + { + location: "http://www.wikidata.org/entity/Q3891058", + cordinates: "Point(10.223 45.53815)", + locationLabel: "Q3891058", + }, + { + location: "http://www.wikidata.org/entity/Q38267005", + cordinates: "Point(140.74008333 38.22138889)", + locationLabel: "Q38267005", + }, + { + location: "http://www.wikidata.org/entity/Q3521784", + cordinates: "Point(-80.20493 25.80187)", + locationLabel: "Q3521784", + }, + { + location: "http://www.wikidata.org/entity/Q3345111", + cordinates: "Point(30.31682 59.94168)", + locationLabel: "Q3345111", + }, + { + location: "http://www.wikidata.org/entity/Q3329637", + cordinates: "Point(8.94631 45.9959)", + locationLabel: "Q3329637", + }, + { + location: "http://www.wikidata.org/entity/Q3329360", + cordinates: "Point(2.2747222 48.8673611)", + locationLabel: "Q3329360", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "1926", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "2307", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "2571", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "2857", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "3230", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "3420", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "4281", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "4322", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "4457", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "4512", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "4794", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "5432", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "5784", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "6143", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "6280", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "7087", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q3329224", + visitors: "9346", + cordinates: "Point(0.15992 47.43646)", + locationLabel: "Q3329224", + }, + { + location: "http://www.wikidata.org/entity/Q31197883", + cordinates: "Point(34.773583333 32.087555555)", + locationLabel: "Q31197883", + }, + { + location: "http://www.wikidata.org/entity/Q30927870", + cordinates: "Point(137.29712428 36.74383197)", + locationLabel: "Q30927870", + }, + { + location: "http://www.wikidata.org/entity/Q30925818", + cordinates: "Point(136.99480556 36.57238889)", + locationLabel: "Q30925818", + }, + { + location: "http://www.wikidata.org/entity/Q30923413", + cordinates: "Point(139.11069167 35.15313611)", + locationLabel: "Q30923413", + }, + { + location: "http://www.wikidata.org/entity/Q30922602", + cordinates: "Point(143.58958333 43.67694444)", + locationLabel: "Q30922602", + }, + { + location: "http://www.wikidata.org/entity/Q30921640", + cordinates: "Point(137.08466667 36.75247222)", + locationLabel: "Q30921640", + }, + { + location: "http://www.wikidata.org/entity/Q30748589", + cordinates: "Point(-73.560069 45.515414901)", + locationLabel: "Q30748589", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "27790", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "36681", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "37022", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "37473", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "37755", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "38076", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "38358", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "39149", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "40807", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "41005", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "41223", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "41729", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "43165", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "47191", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "48238", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "50230", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q30253172", + visitors: "53355", + cordinates: "Point(4.355 43.838055555)", + locationLabel: "Q30253172", + }, + { + location: "http://www.wikidata.org/entity/Q29961532", + cordinates: "Point(24.7525 42.148888888)", + locationLabel: "Q29961532", + }, + { + location: "http://www.wikidata.org/entity/Q29917710", + cordinates: "Point(9.93599 57.35667)", + locationLabel: "Q29917710", + }, + { + location: "http://www.wikidata.org/entity/Q29570077", + cordinates: "Point(139.888306 35.702885)", + locationLabel: "Q29570077", + }, + { + location: "http://www.wikidata.org/entity/Q28799982", + cordinates: "Point(15.8797811 49.2176806)", + locationLabel: "Q28799982", + }, + { + location: "http://www.wikidata.org/entity/Q28692054", + cordinates: "Point(140.883611 38.446389)", + locationLabel: "Q28692054", + }, + { + location: "http://www.wikidata.org/entity/Q28689358", + cordinates: "Point(138.86488056 36.26821111)", + locationLabel: "Q28689358", + }, + { + location: "http://www.wikidata.org/entity/Q28688791", + cordinates: "Point(139.861722222 37.651166666)", + locationLabel: "Q28688791", + }, + { + location: "http://www.wikidata.org/entity/Q28686116", + cordinates: "Point(138.69361111 37.1125)", + locationLabel: "Q28686116", + }, + { + location: "http://www.wikidata.org/entity/Q28686074", + cordinates: "Point(138.615 37.13166667)", + locationLabel: "Q28686074", + }, + { + location: "http://www.wikidata.org/entity/Q28686072", + cordinates: "Point(138.76027778 37.13888889)", + locationLabel: "Q28686072", + }, + { + location: "http://www.wikidata.org/entity/Q28684363", + cordinates: "Point(137.39161111 36.74191667)", + locationLabel: "Q28684363", + }, + { + location: "http://www.wikidata.org/entity/Q28683263", + cordinates: "Point(138.63344444 36.351)", + locationLabel: "Q28683263", + }, + { + location: "http://www.wikidata.org/entity/Q28682124", + cordinates: "Point(136.95657222 35.14253611)", + locationLabel: "Q28682124", + }, + { + location: "http://www.wikidata.org/entity/Q28519675", + cordinates: "Point(131.368805555 33.275666666)", + locationLabel: "Q28519675", + }, + { + location: "http://www.wikidata.org/entity/Q28493267", + cordinates: "Point(6.464874 43.5380689)", + locationLabel: "Q28493267", + }, + { + location: "http://www.wikidata.org/entity/Q28478492", + cordinates: "Point(38.9397 47.2106)", + locationLabel: "Q28478492", + }, + { + location: "http://www.wikidata.org/entity/Q28465480", + cordinates: "Point(140.353541666 38.517838888)", + locationLabel: "Q28465480", + }, + { + location: "http://www.wikidata.org/entity/Q2843653", + cordinates: "Point(-73.051277777 -36.827555555)", + locationLabel: "Q2843653", + }, + { + location: "http://www.wikidata.org/entity/Q28052706", + cordinates: "Point(37.525154 55.645116)", + locationLabel: "Q28052706", + }, + { + location: "http://www.wikidata.org/entity/Q27490235", + cordinates: "Point(8.54803 47.37658)", + locationLabel: "Q27490235", + }, + { + location: "http://www.wikidata.org/entity/Q27489876", + cordinates: "Point(8.729 47.5004)", + locationLabel: "Q27489876", + }, + { + location: "http://www.wikidata.org/entity/Q27489019", + cordinates: "Point(7.63727 46.777751)", + locationLabel: "Q27489019", + }, + { + location: "http://www.wikidata.org/entity/Q27487121", + cordinates: "Point(6.660449 46.50896)", + locationLabel: "Q27487121", + }, + { + location: "http://www.wikidata.org/entity/Q27487055", + cordinates: "Point(6.937758 46.820531)", + locationLabel: "Q27487055", + }, + { + location: "http://www.wikidata.org/entity/Q27487042", + cordinates: "Point(8.79353 46.17534)", + locationLabel: "Q27487042", + }, + { + location: "http://www.wikidata.org/entity/Q27485223", + cordinates: "Point(7.37841 47.28113)", + locationLabel: "Q27485223", + }, + { + location: "http://www.wikidata.org/entity/Q27485218", + cordinates: "Point(6.79334 46.66961)", + locationLabel: "Q27485218", + }, + { + location: "http://www.wikidata.org/entity/Q27485159", + cordinates: "Point(8.81482 46.17479)", + locationLabel: "Q27485159", + }, + { + location: "http://www.wikidata.org/entity/Q27484989", + cordinates: "Point(8.99787 46.01145)", + locationLabel: "Q27484989", + }, + { + location: "http://www.wikidata.org/entity/Q27484986", + cordinates: "Point(8.94264 45.98409)", + locationLabel: "Q27484986", + }, + { + location: "http://www.wikidata.org/entity/Q27484221", + cordinates: "Point(6.75085 47.05929)", + locationLabel: "Q27484221", + }, + { + location: "http://www.wikidata.org/entity/Q27481498", + cordinates: "Point(7.85706 46.68449)", + locationLabel: "Q27481498", + }, + { + location: "http://www.wikidata.org/entity/Q27481363", + cordinates: "Point(7.39812 47.18912)", + locationLabel: "Q27481363", + }, + { + location: "http://www.wikidata.org/entity/Q27481283", + cordinates: "Point(8.87053 46.4055)", + locationLabel: "Q27481283", + }, + { + location: "http://www.wikidata.org/entity/Q27480254", + cordinates: "Point(7.16317 46.80615)", + locationLabel: "Q27480254", + }, + { + location: "http://www.wikidata.org/entity/Q27480210", + cordinates: "Point(8.14402 46.39879)", + locationLabel: "Q27480210", + }, + { + location: "http://www.wikidata.org/entity/Q27479763", + cordinates: "Point(9.03299 46.20399)", + locationLabel: "Q27479763", + }, + { + location: "http://www.wikidata.org/entity/Q27479758", + cordinates: "Point(9.03036 46.18816)", + locationLabel: "Q27479758", + }, + { + location: "http://www.wikidata.org/entity/Q27479558", + cordinates: "Point(8.7698709 46.1545786)", + locationLabel: "Q27479558", + }, + { + location: "http://www.wikidata.org/entity/Q26100586", + cordinates: "Point(9.03654444 56.56934167)", + locationLabel: "Q26100586", + }, + { + location: "http://www.wikidata.org/entity/Q25907240", + cordinates: "Point(26.319444444 42.680277777)", + locationLabel: "Q25907240", + }, + { + location: "http://www.wikidata.org/entity/Q25492765", + cordinates: "Point(34.770472222 32.051944444)", + locationLabel: "Q25492765", + }, + { + location: "http://www.wikidata.org/entity/Q25476672", + cordinates: "Point(27.916944444 43.199444444)", + locationLabel: "Q25476672", + }, + { + location: "http://www.wikidata.org/entity/Q25422092", + cordinates: "Point(30.514722222 50.459722222)", + locationLabel: "Q25422092", + }, + { + location: "http://www.wikidata.org/entity/Q25420908", + cordinates: "Point(-17.180555555 32.722777777)", + locationLabel: "Q25420908", + }, + { + location: "http://www.wikidata.org/entity/Q25301493", + cordinates: "Point(13.422312 41.913791)", + locationLabel: "Q25301493", + }, + { + location: "http://www.wikidata.org/entity/Q24944698", + cordinates: "Point(16.927194 52.401889)", + locationLabel: "Q24944698", + }, + { + location: "http://www.wikidata.org/entity/Q24874639", + cordinates: "Point(131.50133333 33.31286111)", + locationLabel: "Q24874639", + }, + { + location: "http://www.wikidata.org/entity/Q24863867", + cordinates: "Point(137.43991667 35.64008056)", + locationLabel: "Q24863867", + }, + { + location: "http://www.wikidata.org/entity/Q24612942", + cordinates: "Point(23.547222222 43.200555555)", + locationLabel: "Q24612942", + }, + { + location: "http://www.wikidata.org/entity/Q23787561", + cordinates: "Point(12.370833333 51.34)", + locationLabel: "Q23787561", + }, + { + location: "http://www.wikidata.org/entity/Q22997039", + visitors: "5362", + cordinates: "Point(1.6177 44.7993)", + locationLabel: "Q22997039", + }, + { + location: "http://www.wikidata.org/entity/Q22997039", + visitors: "5658", + cordinates: "Point(1.6177 44.7993)", + locationLabel: "Q22997039", + }, + { + location: "http://www.wikidata.org/entity/Q22997039", + visitors: "7811", + cordinates: "Point(1.6177 44.7993)", + locationLabel: "Q22997039", + }, + { + location: "http://www.wikidata.org/entity/Q22997039", + visitors: "8689", + cordinates: "Point(1.6177 44.7993)", + locationLabel: "Q22997039", + }, + { + location: "http://www.wikidata.org/entity/Q22914379", + cordinates: "Point(7.96645 50.56087)", + locationLabel: "Q22914379", + }, + { + location: "http://www.wikidata.org/entity/Q22815406", + cordinates: "Point(17.957222222 59.364333333)", + locationLabel: "Q22815406", + }, + { + location: "http://www.wikidata.org/entity/Q22120437", + cordinates: "Point(134.69155556 34.83294444)", + locationLabel: "Q22120437", + }, + { + location: "http://www.wikidata.org/entity/Q22119906", + cordinates: "Point(138.42944444 35.70083333)", + locationLabel: "Q22119906", + }, + { + location: "http://www.wikidata.org/entity/Q22119820", + cordinates: "Point(136.85227778 36.57313889)", + locationLabel: "Q22119820", + }, + { + location: "http://www.wikidata.org/entity/Q22119783", + cordinates: "Point(140.863056 38.294722)", + locationLabel: "Q22119783", + }, + { + location: "http://www.wikidata.org/entity/Q22119215", + cordinates: "Point(135.94288889 33.60169444)", + locationLabel: "Q22119215", + }, + { + location: "http://www.wikidata.org/entity/Q22118917", + cordinates: "Point(141.01666667 38.31583333)", + locationLabel: "Q22118917", + }, + { + location: "http://www.wikidata.org/entity/Q22118199", + cordinates: "Point(132.86833333 34.77638889)", + locationLabel: "Q22118199", + }, + { + location: "http://www.wikidata.org/entity/Q22118153", + cordinates: "Point(140.881944444 38.469166666)", + locationLabel: "Q22118153", + }, + { + location: "http://www.wikidata.org/entity/Q22117727", + cordinates: "Point(132.62029167 34.63334722)", + locationLabel: "Q22117727", + }, + { + location: "http://www.wikidata.org/entity/Q21653680", + cordinates: "Point(138.95486111 36.79022222)", + locationLabel: "Q21653680", + }, + { + location: "http://www.wikidata.org/entity/Q21644548", + cordinates: "Point(44.515444 48.705444)", + locationLabel: "Q21644548", + }, + { + location: "http://www.wikidata.org/entity/Q21635968", + cordinates: "Point(37.9975 44.574166666)", + locationLabel: "Q21635968", + }, + { + location: "http://www.wikidata.org/entity/Q21512958", + cordinates: "Point(44.518055555 40.187222222)", + locationLabel: "Q21512958", + }, + { + location: "http://www.wikidata.org/entity/Q2117985", + cordinates: "Point(8.51778 47.3906)", + locationLabel: "Q2117985", + }, + { + location: "http://www.wikidata.org/entity/Q21127450", + cordinates: "Point(35.531838888 33.893755555)", + locationLabel: "Q21127450", + }, + { + location: "http://www.wikidata.org/entity/Q20973645", + cordinates: "Point(2.914556 51.225614)", + locationLabel: "Q20973645", + }, + { + location: "http://www.wikidata.org/entity/Q20859376", + cordinates: "Point(35.209797222 31.786491666)", + locationLabel: "Q20859376", + }, + { + location: "http://www.wikidata.org/entity/Q20616466", + cordinates: "Point(7.5904 47.5617)", + locationLabel: "Q20616466", + }, + { + location: "http://www.wikidata.org/entity/Q20518316", + cordinates: "Point(45.334130555 39.768172222)", + locationLabel: "Q20518316", + }, + { + location: "http://www.wikidata.org/entity/Q20517397", + cordinates: "Point(45.676727777 39.839083333)", + locationLabel: "Q20517397", + }, + { + location: "http://www.wikidata.org/entity/Q20516839", + cordinates: "Point(45.307188888 40.140261111)", + locationLabel: "Q20516839", + }, + { + location: "http://www.wikidata.org/entity/Q20515381", + cordinates: "Point(45.125061111 40.356)", + locationLabel: "Q20515381", + }, + { + location: "http://www.wikidata.org/entity/Q20515356", + cordinates: "Point(44.758888888 40.493361111)", + locationLabel: "Q20515356", + }, + { + location: "http://www.wikidata.org/entity/Q20515179", + cordinates: "Point(44.6512 41.094)", + locationLabel: "Q20515179", + }, + { + location: "http://www.wikidata.org/entity/Q20501046", + cordinates: "Point(23.253261 42.677281)", + locationLabel: "Q20501046", + }, + { + location: "http://www.wikidata.org/entity/Q20500544", + cordinates: "Point(26.523888888 43.525833333)", + locationLabel: "Q20500544", + }, + { + location: "http://www.wikidata.org/entity/Q20075384", + cordinates: "Point(30.524166666 50.451944444)", + locationLabel: "Q20075384", + }, + { + location: "http://www.wikidata.org/entity/Q20043654", + cordinates: "Point(140.95705556 38.78105556)", + locationLabel: "Q20043654", + }, + { + location: "http://www.wikidata.org/entity/Q20032407", + cordinates: "Point(20.992222 52.265889)", + locationLabel: "Q20032407", + }, + { + location: "http://www.wikidata.org/entity/Q20032406", + cordinates: "Point(21.016139 52.216556)", + locationLabel: "Q20032406", + }, + { + location: "http://www.wikidata.org/entity/Q19309462", + cordinates: "Point(16.87472222 48.75869167)", + locationLabel: "Q19309462", + }, + { + location: "http://www.wikidata.org/entity/Q18674707", + cordinates: "Point(10.689166666 53.862777777)", + locationLabel: "Q18674707", + }, + { + location: "http://www.wikidata.org/entity/Q18431938", + cordinates: "Point(21.014486 52.248794)", + locationLabel: "Q18431938", + }, + { + location: "http://www.wikidata.org/entity/Q18417002", + cordinates: "Point(-74.80136108 11.10188866)", + locationLabel: "Q18417002", + }, + { + location: "http://www.wikidata.org/entity/Q18016002", + cordinates: "Point(126.564943 33.245849)", + locationLabel: "Q18016002", + }, + { + location: "http://www.wikidata.org/entity/Q1792308", + cordinates: "Point(10.9904 49.4776)", + locationLabel: "Q1792308", + }, + { + location: "http://www.wikidata.org/entity/Q17773934", + cordinates: "Point(10.6308 59.6637)", + locationLabel: "Q17773934", + }, + { + location: "http://www.wikidata.org/entity/Q17623085", + cordinates: "Point(-68.1322476 -16.5025698)", + locationLabel: "Q17623085", + }, + { + location: "http://www.wikidata.org/entity/Q17616321", + cordinates: "Point(2.16701 41.3911)", + locationLabel: "Q17616321", + }, + { + location: "http://www.wikidata.org/entity/Q17209769", + cordinates: "Point(139.112361 37.762528)", + locationLabel: "Q17209769", + }, + { + location: "http://www.wikidata.org/entity/Q17209701", + cordinates: "Point(139.80219444 35.68522222)", + locationLabel: "Q17209701", + }, + { + location: "http://www.wikidata.org/entity/Q17209461", + cordinates: "Point(137.41336111 35.47063889)", + locationLabel: "Q17209461", + }, + { + location: "http://www.wikidata.org/entity/Q1720815", + cordinates: "Point(8.58262 53.5404)", + locationLabel: "Q1720815", + }, + { + location: "http://www.wikidata.org/entity/Q17193670", + cordinates: "Point(140.927361 37.070444)", + locationLabel: "Q17193670", + }, + { + location: "http://www.wikidata.org/entity/Q17193257", + cordinates: "Point(140.160639 35.349306)", + locationLabel: "Q17193257", + }, + { + location: "http://www.wikidata.org/entity/Q17192099", + cordinates: "Point(138.45545278 35.27968333)", + locationLabel: "Q17192099", + }, + { + location: "http://www.wikidata.org/entity/Q17191286", + cordinates: "Point(130.500167 32.271583)", + locationLabel: "Q17191286", + }, + { + location: "http://www.wikidata.org/entity/Q17066668", + cordinates: "Point(11.430488 48.766702)", + locationLabel: "Q17066668", + }, + { + location: "http://www.wikidata.org/entity/Q17043693", + cordinates: "Point(29.7403469 52.6267029)", + locationLabel: "Q17043693", + }, + { + location: "http://www.wikidata.org/entity/Q16947006", + cordinates: "Point(14.415795 50.06455)", + locationLabel: "Q16947006", + }, + { + location: "http://www.wikidata.org/entity/Q16875814", + cordinates: "Point(128.744223 35.34492)", + locationLabel: "Q16875814", + }, + { + location: "http://www.wikidata.org/entity/Q16735646", + cordinates: "Point(20.7855 38.9763)", + locationLabel: "Q16735646", + }, + { + location: "http://www.wikidata.org/entity/Q16704458", + cordinates: "Point(41.4561 52.7247)", + locationLabel: "Q16704458", + }, + { + location: "http://www.wikidata.org/entity/Q16679242", + cordinates: "Point(52.4098 55.742)", + locationLabel: "Q16679242", + }, + { + location: "http://www.wikidata.org/entity/Q16579865", + cordinates: "Point(19.4833 49.8667)", + locationLabel: "Q16579865", + }, + { + location: "http://www.wikidata.org/entity/Q16510058", + cordinates: "Point(-0.371003 43.2932)", + locationLabel: "Q16510058", + }, + { + location: "http://www.wikidata.org/entity/Q15126890", + cordinates: "Point(13.38396944 52.52351667)", + locationLabel: "Q15126890", + }, + { + location: "http://www.wikidata.org/entity/Q1491900", + cordinates: "Point(12.3297 51.6225)", + locationLabel: "Q1491900", + }, + { + location: "http://www.wikidata.org/entity/Q14565152", + cordinates: "Point(8.19179 47.20628)", + locationLabel: "Q14565152", + }, + { + location: "http://www.wikidata.org/entity/Q1417263", + cordinates: "Point(10.896 48.3597)", + locationLabel: "Q1417263", + }, + { + location: "http://www.wikidata.org/entity/Q1390752", + cordinates: "Point(10.9197 48.3675)", + locationLabel: "Q1390752", + }, + { + location: "http://www.wikidata.org/entity/Q13052144", + cordinates: "Point(44.508172222 40.180275)", + locationLabel: "Q13052144", + }, + { + location: "http://www.wikidata.org/entity/Q13028876", + cordinates: "Point(29.70814 53.99577)", + locationLabel: "Q13028876", + }, + { + location: "http://www.wikidata.org/entity/Q12766244", + cordinates: "Point(17.138644 48.144085)", + locationLabel: "Q12766244", + }, + { + location: "http://www.wikidata.org/entity/Q12766244", + cordinates: "Point(17.139637 48.144133)", + locationLabel: "Q12766244", + }, + { + location: "http://www.wikidata.org/entity/Q12393761", + cordinates: "Point(-8.271111111 43.339444444)", + locationLabel: "Q12393761", + }, + { + location: "http://www.wikidata.org/entity/Q12344307", + cordinates: "Point(11.7077 55.7179)", + locationLabel: "Q12344307", + }, + { + location: "http://www.wikidata.org/entity/Q12300266", + cordinates: "Point(9.9254 57.0462)", + locationLabel: "Q12300266", + }, + { + location: "http://www.wikidata.org/entity/Q12298614", + cordinates: "Point(25.315277777 42.868611111)", + locationLabel: "Q12298614", + }, + { + location: "http://www.wikidata.org/entity/Q12298607", + cordinates: "Point(24.718333333 43.131388888)", + locationLabel: "Q12298607", + }, + { + location: "http://www.wikidata.org/entity/Q12292690", + cordinates: "Point(25.954722222 43.843055555)", + locationLabel: "Q12292690", + }, + { + location: "http://www.wikidata.org/entity/Q12116815", + cordinates: "Point(30.55388889 50.43619444)", + locationLabel: "Q12116815", + }, + { + location: "http://www.wikidata.org/entity/Q12110681", + cordinates: "Point(28.88661 50.294507)", + locationLabel: "Q12110681", + }, + { + location: "http://www.wikidata.org/entity/Q12108895", + cordinates: "Point(46.75 39.816666666)", + locationLabel: "Q12108895", + }, + { + location: "http://www.wikidata.org/entity/Q12108893", + cordinates: "Point(33.461606 49.016456)", + locationLabel: "Q12108893", + }, + { + location: "http://www.wikidata.org/entity/Q12082009", + cordinates: "Point(36.7942 46.754)", + locationLabel: "Q12082009", + }, + { + location: "http://www.wikidata.org/entity/Q12018034", + cordinates: "Point(16.60645294 49.19325256)", + locationLabel: "Q12018034", + }, + { + location: "http://www.wikidata.org/entity/Q11712648", + cordinates: "Point(18.859468888 50.443225)", + locationLabel: "Q11712648", + }, + { + location: "http://www.wikidata.org/entity/Q11699309", + cordinates: "Point(19.0436 49.8211)", + locationLabel: "Q11699309", + }, + { + location: "http://www.wikidata.org/entity/Q11699305", + cordinates: "Point(21.1592 49.6586)", + locationLabel: "Q11699305", + }, + { + location: "http://www.wikidata.org/entity/Q11699304", + cordinates: "Point(19.020111 50.255639)", + locationLabel: "Q11699304", + }, + { + location: "http://www.wikidata.org/entity/Q11699300", + cordinates: "Point(20.989722 52.236944)", + locationLabel: "Q11699300", + }, + { + location: "http://www.wikidata.org/entity/Q11699299", + cordinates: "Point(20.475389 53.776528)", + locationLabel: "Q11699299", + }, + { + location: "http://www.wikidata.org/entity/Q11699296", + cordinates: "Point(19.949444 49.294139)", + locationLabel: "Q11699296", + }, + { + location: "http://www.wikidata.org/entity/Q11699294", + cordinates: "Point(21.031 52.219639)", + locationLabel: "Q11699294", + }, + { + location: "http://www.wikidata.org/entity/Q11699286", + cordinates: "Point(18.828778 54.344361)", + locationLabel: "Q11699286", + }, + { + location: "http://www.wikidata.org/entity/Q11699276", + cordinates: "Point(23.16675 53.1305)", + locationLabel: "Q11699276", + }, + { + location: "http://www.wikidata.org/entity/Q11675413", + cordinates: "Point(134.620361 34.178278)", + locationLabel: "Q11675413", + }, + { + location: "http://www.wikidata.org/entity/Q11673182", + cordinates: "Point(131.50388889 32.12083333)", + locationLabel: "Q11673182", + }, + { + location: "http://www.wikidata.org/entity/Q11672301", + cordinates: "Point(132.885472 33.769028)", + locationLabel: "Q11672301", + }, + { + location: "http://www.wikidata.org/entity/Q11670249", + cordinates: "Point(141.002139 39.387)", + locationLabel: "Q11670249", + }, + { + location: "http://www.wikidata.org/entity/Q11668569", + cordinates: "Point(138.145917 36.579556)", + locationLabel: "Q11668569", + }, + { + location: "http://www.wikidata.org/entity/Q11668358", + cordinates: "Point(138.86111111 37.44927778)", + locationLabel: "Q11668358", + }, + { + location: "http://www.wikidata.org/entity/Q11665929", + cordinates: "Point(137.240753 36.136961)", + locationLabel: "Q11665929", + }, + { + location: "http://www.wikidata.org/entity/Q11662781", + cordinates: "Point(137.479744 35.512572)", + locationLabel: "Q11662781", + }, + { + location: "http://www.wikidata.org/entity/Q11659823", + cordinates: "Point(142.30847222 43.77172222)", + locationLabel: "Q11659823", + }, + { + location: "http://www.wikidata.org/entity/Q11657578", + cordinates: "Point(134.547 34.070306)", + locationLabel: "Q11657578", + }, + { + location: "http://www.wikidata.org/entity/Q11655772", + cordinates: "Point(136.917894 35.495803)", + locationLabel: "Q11655772", + }, + { + location: "http://www.wikidata.org/entity/Q11647566", + cordinates: "Point(136.26122222 36.23066667)", + locationLabel: "Q11647566", + }, + { + location: "http://www.wikidata.org/entity/Q11645271", + cordinates: "Point(139.10430556 34.88944444)", + locationLabel: "Q11645271", + }, + { + location: "http://www.wikidata.org/entity/Q11644400", + cordinates: "Point(139.57541667 35.32077778)", + locationLabel: "Q11644400", + }, + { + location: "http://www.wikidata.org/entity/Q11641867", + cordinates: "Point(136.968106 35.220364)", + locationLabel: "Q11641867", + }, + { + location: "http://www.wikidata.org/entity/Q11631864", + cordinates: "Point(138.098361 36.038889)", + locationLabel: "Q11631864", + }, + { + location: "http://www.wikidata.org/entity/Q11631824", + cordinates: "Point(138.080333 36.028417)", + locationLabel: "Q11631824", + }, + { + location: "http://www.wikidata.org/entity/Q11627169", + cordinates: "Point(132.75219444 33.37941667)", + locationLabel: "Q11627169", + }, + { + location: "http://www.wikidata.org/entity/Q11624739", + cordinates: "Point(141.07175 38.37594444)", + locationLabel: "Q11624739", + }, + { + location: "http://www.wikidata.org/entity/Q11621785", + cordinates: "Point(138.234494 36.108714)", + locationLabel: "Q11621785", + }, + { + location: "http://www.wikidata.org/entity/Q11620132", + cordinates: "Point(133.4335 34.5815)", + locationLabel: "Q11620132", + }, + { + location: "http://www.wikidata.org/entity/Q11619959", + cordinates: "Point(134.558889 34.0705)", + locationLabel: "Q11619959", + }, + { + location: "http://www.wikidata.org/entity/Q11619469", + cordinates: "Point(141.00555556 38.31138889)", + locationLabel: "Q11619469", + }, + { + location: "http://www.wikidata.org/entity/Q11618013", + cordinates: "Point(137.658211 35.220964)", + locationLabel: "Q11618013", + }, + { + location: "http://www.wikidata.org/entity/Q11609528", + cordinates: "Point(138.95538889 36.49869444)", + locationLabel: "Q11609528", + }, + { + location: "http://www.wikidata.org/entity/Q11609219", + cordinates: "Point(136.9125 35.54716667)", + locationLabel: "Q11609219", + }, + { + location: "http://www.wikidata.org/entity/Q11605716", + cordinates: "Point(136.988775 34.944753)", + locationLabel: "Q11605716", + }, + { + location: "http://www.wikidata.org/entity/Q11605043", + cordinates: "Point(135.34725 33.670472)", + locationLabel: "Q11605043", + }, + { + location: "http://www.wikidata.org/entity/Q11599754", + cordinates: "Point(138.70583333 35.66058333)", + locationLabel: "Q11599754", + }, + { + location: "http://www.wikidata.org/entity/Q11598468", + cordinates: "Point(129.873833 32.752194)", + locationLabel: "Q11598468", + }, + { + location: "http://www.wikidata.org/entity/Q11596708", + cordinates: "Point(136.789386 35.246539)", + locationLabel: "Q11596708", + }, + { + location: "http://www.wikidata.org/entity/Q11594970", + cordinates: "Point(138.841646 37.420393)", + locationLabel: "Q11594970", + }, + { + location: "http://www.wikidata.org/entity/Q11593084", + cordinates: "Point(140.463147 37.764414)", + locationLabel: "Q11593084", + }, + { + location: "http://www.wikidata.org/entity/Q11588820", + cordinates: "Point(134.827611 34.795556)", + locationLabel: "Q11588820", + }, + { + location: "http://www.wikidata.org/entity/Q11586047", + cordinates: "Point(136.892083 37.389861)", + locationLabel: "Q11586047", + }, + { + location: "http://www.wikidata.org/entity/Q11582282", + cordinates: "Point(134.452083 33.797722)", + locationLabel: "Q11582282", + }, + { + location: "http://www.wikidata.org/entity/Q11568938", + cordinates: "Point(136.041194 33.984806)", + locationLabel: "Q11568938", + }, + { + location: "http://www.wikidata.org/entity/Q11568880", + cordinates: "Point(135.606167 33.813444)", + locationLabel: "Q11568880", + }, + { + location: "http://www.wikidata.org/entity/Q11568737", + cordinates: "Point(137.428517 35.6609)", + locationLabel: "Q11568737", + }, + { + location: "http://www.wikidata.org/entity/Q11561571", + cordinates: "Point(139.00472222 36.49572222)", + locationLabel: "Q11561571", + }, + { + location: "http://www.wikidata.org/entity/Q11561407", + cordinates: "Point(138.43458333 35.91719444)", + locationLabel: "Q11561407", + }, + { + location: "http://www.wikidata.org/entity/Q11557958", + cordinates: "Point(132.07544444 34.88641667)", + locationLabel: "Q11557958", + }, + { + location: "http://www.wikidata.org/entity/Q11555555", + cordinates: "Point(135.184278 34.684028)", + locationLabel: "Q11555555", + }, + { + location: "http://www.wikidata.org/entity/Q11551099", + cordinates: "Point(139.21925 35.324028)", + locationLabel: "Q11551099", + }, + { + location: "http://www.wikidata.org/entity/Q11545719", + cordinates: "Point(139.99922222 37.40619444)", + locationLabel: "Q11545719", + }, + { + location: "http://www.wikidata.org/entity/Q11542374", + cordinates: "Point(138.67877778 35.1945)", + locationLabel: "Q11542374", + }, + { + location: "http://www.wikidata.org/entity/Q11539869", + cordinates: "Point(136.909558 35.172392)", + locationLabel: "Q11539869", + }, + { + location: "http://www.wikidata.org/entity/Q11535060", + cordinates: "Point(135.417194 34.782556)", + locationLabel: "Q11535060", + }, + { + location: "http://www.wikidata.org/entity/Q11526757", + cordinates: "Point(137.55115 35.58588611)", + locationLabel: "Q11526757", + }, + { + location: "http://www.wikidata.org/entity/Q11516626", + cordinates: "Point(129.898756 33.190469)", + locationLabel: "Q11516626", + }, + { + location: "http://www.wikidata.org/entity/Q11505553", + cordinates: "Point(140.2645 37.48536111)", + locationLabel: "Q11505553", + }, + { + location: "http://www.wikidata.org/entity/Q11502885", + cordinates: "Point(139.22563889 37.91611111)", + locationLabel: "Q11502885", + }, + { + location: "http://www.wikidata.org/entity/Q11501954", + cordinates: "Point(133.28280556 33.96025)", + locationLabel: "Q11501954", + }, + { + location: "http://www.wikidata.org/entity/Q11501861", + cordinates: "Point(139.70625 35.69472222)", + locationLabel: "Q11501861", + }, + { + location: "http://www.wikidata.org/entity/Q11498377", + cordinates: "Point(140.05069444 38.01363889)", + locationLabel: "Q11498377", + }, + { + location: "http://www.wikidata.org/entity/Q11480891", + cordinates: "Point(141.43591667 40.54702778)", + locationLabel: "Q11480891", + }, + { + location: "http://www.wikidata.org/entity/Q11479985", + cordinates: "Point(137.127136 35.300139)", + locationLabel: "Q11479985", + }, + { + location: "http://www.wikidata.org/entity/Q11478345", + cordinates: "Point(139.701833 35.532028)", + locationLabel: "Q11478345", + }, + { + location: "http://www.wikidata.org/entity/Q11477972", + cordinates: "Point(139.715639 35.807)", + locationLabel: "Q11477972", + }, + { + location: "http://www.wikidata.org/entity/Q11477568", + cordinates: "Point(139.753583 36.569778)", + locationLabel: "Q11477568", + }, + { + location: "http://www.wikidata.org/entity/Q11475619", + cordinates: "Point(141.768083 43.201056)", + locationLabel: "Q11475619", + }, + { + location: "http://www.wikidata.org/entity/Q11471417", + cordinates: "Point(136.901292 35.453164)", + locationLabel: "Q11471417", + }, + { + location: "http://www.wikidata.org/entity/Q11470074", + cordinates: "Point(138.990306 36.317861)", + locationLabel: "Q11470074", + }, + { + location: "http://www.wikidata.org/entity/Q11462647", + cordinates: "Point(138.44008333 36.05927222)", + locationLabel: "Q11462647", + }, + { + location: "http://www.wikidata.org/entity/Q11459856", + cordinates: "Point(139.76097222 36.26061111)", + locationLabel: "Q11459856", + }, + { + location: "http://www.wikidata.org/entity/Q11450795", + cordinates: "Point(137.89136111 36.35455556)", + locationLabel: "Q11450795", + }, + { + location: "http://www.wikidata.org/entity/Q11450790", + cordinates: "Point(137.90636111 36.30547222)", + locationLabel: "Q11450790", + }, + { + location: "http://www.wikidata.org/entity/Q11445098", + cordinates: "Point(135.80216667 34.68516667)", + locationLabel: "Q11445098", + }, + { + location: "http://www.wikidata.org/entity/Q11436065", + cordinates: "Point(140.562972 39.59925)", + locationLabel: "Q11436065", + }, + { + location: "http://www.wikidata.org/entity/Q11431794", + cordinates: "Point(136.844617 35.162633)", + locationLabel: "Q11431794", + }, + { + location: "http://www.wikidata.org/entity/Q11427745", + cordinates: "Point(136.917158 35.181442)", + locationLabel: "Q11427745", + }, + { + location: "http://www.wikidata.org/entity/Q11425245", + cordinates: "Point(131.036403 33.127686)", + locationLabel: "Q11425245", + }, + { + location: "http://www.wikidata.org/entity/Q11422465", + cordinates: "Point(142.30772222 43.77202778)", + locationLabel: "Q11422465", + }, + { + location: "http://www.wikidata.org/entity/Q11408411", + cordinates: "Point(135.49175 34.709417)", + locationLabel: "Q11408411", + }, + { + location: "http://www.wikidata.org/entity/Q11407282", + cordinates: "Point(134.73411111 34.31625)", + locationLabel: "Q11407282", + }, + { + location: "http://www.wikidata.org/entity/Q11404260", + cordinates: "Point(138.187083 36.653083)", + locationLabel: "Q11404260", + }, + { + location: "http://www.wikidata.org/entity/Q11398790", + cordinates: "Point(133.15130615 35.30627823)", + locationLabel: "Q11398790", + }, + { + location: "http://www.wikidata.org/entity/Q11392950", + cordinates: "Point(134.826056 35.633694)", + locationLabel: "Q11392950", + }, + { + location: "http://www.wikidata.org/entity/Q11392465", + cordinates: "Point(135.241111111 34.758888888)", + locationLabel: "Q11392465", + }, + { + location: "http://www.wikidata.org/entity/Q11390430", + cordinates: "Point(138.27683333 35.96805556)", + locationLabel: "Q11390430", + }, + { + location: "http://www.wikidata.org/entity/Q11387679", + cordinates: "Point(142.30833333 43.77194444)", + locationLabel: "Q11387679", + }, + { + location: "http://www.wikidata.org/entity/Q11386685", + cordinates: "Point(133.822389 34.577556)", + locationLabel: "Q11386685", + }, + { + location: "http://www.wikidata.org/entity/Q11383307", + cordinates: "Point(138.240889 38.035139)", + locationLabel: "Q11383307", + }, + { + location: "http://www.wikidata.org/entity/Q11381010", + cordinates: "Point(138.95916667 36.50027778)", + locationLabel: "Q11381010", + }, + { + location: "http://www.wikidata.org/entity/Q11380269", + cordinates: "Point(134.872861 35.461833)", + locationLabel: "Q11380269", + }, + { + location: "http://www.wikidata.org/entity/Q11377199", + cordinates: "Point(132.944556 34.021917)", + locationLabel: "Q11377199", + }, + { + location: "http://www.wikidata.org/entity/Q11377196", + cordinates: "Point(132.998889 34.06275)", + locationLabel: "Q11377196", + }, + { + location: "http://www.wikidata.org/entity/Q11370334", + cordinates: "Point(131.24925 33.14630556)", + locationLabel: "Q11370334", + }, + { + location: "http://www.wikidata.org/entity/Q11368569", + cordinates: "Point(135.039194 35.173111)", + locationLabel: "Q11368569", + }, + { + location: "http://www.wikidata.org/entity/Q11368010", + cordinates: "Point(133.805194 34.301358)", + locationLabel: "Q11368010", + }, + { + location: "http://www.wikidata.org/entity/Q11364150", + cordinates: "Point(141.09675 42.85519444)", + locationLabel: "Q11364150", + }, + { + location: "http://www.wikidata.org/entity/Q11356210", + cordinates: "Point(137.024261 34.853231)", + locationLabel: "Q11356210", + }, + { + location: "http://www.wikidata.org/entity/Q11342621", + cordinates: "Point(137.234306 35.366667)", + locationLabel: "Q11342621", + }, + { + location: "http://www.wikidata.org/entity/Q11340324", + cordinates: "Point(137.031933 35.127675)", + locationLabel: "Q11340324", + }, + { + location: "http://www.wikidata.org/entity/Q11340103", + cordinates: "Point(136.81166 34.490784)", + locationLabel: "Q11340103", + }, + { + location: "http://www.wikidata.org/entity/Q11318993", + cordinates: "Point(136.851664 34.749317)", + locationLabel: "Q11318993", + }, + { + location: "http://www.wikidata.org/entity/Q11308090", + cordinates: "Point(136.624931 35.351533)", + locationLabel: "Q11308090", + }, + { + location: "http://www.wikidata.org/entity/Q11304896", + cordinates: "Point(141.2435 38.71908333)", + locationLabel: "Q11304896", + }, + { + location: "http://www.wikidata.org/entity/Q11298208", + cordinates: "Point(139.71541667 35.56455556)", + locationLabel: "Q11298208", + }, + { + location: "http://www.wikidata.org/entity/Q11294808", + cordinates: "Point(140.881306 38.254717)", + locationLabel: "Q11294808", + }, + { + location: "http://www.wikidata.org/entity/Q11286501", + cordinates: "Point(134.12509 34.354991)", + locationLabel: "Q11286501", + }, + { + location: "http://www.wikidata.org/entity/Q11285668", + cordinates: "Point(142.04252778 43.72116667)", + locationLabel: "Q11285668", + }, + { + location: "http://www.wikidata.org/entity/Q11285663", + cordinates: "Point(131.6095 33.24055556)", + locationLabel: "Q11285663", + }, + { + location: "http://www.wikidata.org/entity/Q11285428", + cordinates: "Point(137.954681 35.646611)", + locationLabel: "Q11285428", + }, + { + location: "http://www.wikidata.org/entity/Q11281495", + cordinates: "Point(135.301417 34.411167)", + locationLabel: "Q11281495", + }, + { + location: "http://www.wikidata.org/entity/Q11261375", + cordinates: "Point(137.213781 34.92695)", + locationLabel: "Q11261375", + }, + { + location: "http://www.wikidata.org/entity/Q10714204", + cordinates: "Point(16.17835556 58.58871944)", + locationLabel: "Q10714204", + }, + { + location: "http://www.wikidata.org/entity/Q106823402", + cordinates: "Point(0.760536312 44.283312178)", + locationLabel: "Q106823402", + }, + { + location: "http://www.wikidata.org/entity/Q106704782", + cordinates: "Point(16.176 47.16018)", + locationLabel: "Q106704782", + }, + { + location: "http://www.wikidata.org/entity/Q10669982", + cordinates: "Point(20.938333333 64.749444444)", + locationLabel: "Q10669982", + }, + { + location: "http://www.wikidata.org/entity/Q106454332", + cordinates: "Point(5.591247093 49.631793543)", + locationLabel: "Q106454332", + }, + { + location: "http://www.wikidata.org/entity/Q106307296", + cordinates: "Point(139.017694444 37.863583333)", + locationLabel: "Q106307296", + }, + { + location: "http://www.wikidata.org/entity/Q106306878", + cordinates: "Point(46.576122 24.7363772)", + locationLabel: "Q106306878", + }, + { + location: "http://www.wikidata.org/entity/Q105693451", + cordinates: "Point(-6.373333 39.471667)", + locationLabel: "Q105693451", + }, + { + location: "http://www.wikidata.org/entity/Q105514474", + cordinates: "Point(2.925048051 42.074836138)", + locationLabel: "Q105514474", + }, + { + location: "http://www.wikidata.org/entity/Q1054257", + cordinates: "Point(2.432788 39.580631)", + locationLabel: "Q1054257", + }, + { + location: "http://www.wikidata.org/entity/Q105334745", + cordinates: "Point(138.318988888 36.698494444)", + locationLabel: "Q105334745", + }, + { + location: "http://www.wikidata.org/entity/Q10502245", + cordinates: "Point(16.575305555 56.481527777)", + locationLabel: "Q10502245", + }, + { + location: "http://www.wikidata.org/entity/Q104967760", + cordinates: "Point(139.406277777 35.326194444)", + locationLabel: "Q104967760", + }, + { + location: "http://www.wikidata.org/entity/Q104575629", + cordinates: "Point(137.999194444 34.765611111)", + locationLabel: "Q104575629", + }, + { + location: "http://www.wikidata.org/entity/Q10411244", + cordinates: "Point(20.005988 60.008751)", + locationLabel: "Q10411244", + }, + { + location: "http://www.wikidata.org/entity/Q103829774", + cordinates: "Point(17.45952 49.06809)", + locationLabel: "Q103829774", + }, + { + location: "http://www.wikidata.org/entity/Q102299623", + cordinates: "Point(15.4132547 49.6127206)", + locationLabel: "Q102299623", + }, + { + location: "http://www.wikidata.org/entity/Q102045484", + cordinates: "Point(135.676444 35.013917)", + locationLabel: "Q102045484", + }, +]; + +module.exports = museums; diff --git a/wikidata/parseData.js b/wikidata/parseData.js new file mode 100644 index 0000000..6b12412 --- /dev/null +++ b/wikidata/parseData.js @@ -0,0 +1,134 @@ +const attractions = require("./attractionsRawData.js"); +const museums = require("./museumsRawData.js"); + +/*** + * This function parses out valid location names from locationLabel + * and de-dupes any duplicate names + * + * @params: + * [{location, cordinates, locationLabel, *visitor*}, {}] + * where *visitor* is optional + * + * @returns: + * { + * "jeff's museum": [], + * "art place": [], + * ... + * } + */ + +function getLocation(list) { + let names = list.map((item) => { + // filter out locationLabel that start with "Q#" + let nonName = /q[0-9]/i; + if (!item["locationLabel"].match(nonName)) { + return item["locationLabel"]; + } + }); + + // remove `undefined` elements + let filteredNames = names.filter((name) => name !== undefined); + + // add remaining elements name as key to object + // this de-dedupes the names + let obj = {}; + filteredNames.forEach((name) => (obj[name] = [])); + + return obj; +} + +/** + * This function parses out the median visitors for each location + * + * @params: + * [{location, cordinates, locationLabel, *visitor*}, {}] + * where *visitor* is optional + * + * @returns: + * { + * "jeff's museum": 1, + * "art place": 10 + * } + */ +function getVisitors(list) { + let names = getLocation(list); + + // for each matching locationLabel, push the # of visitors into array + // if visitor key is missing, pushes `undefined` + for (let name in names) { + for (let item of list) { + if (name === item["locationLabel"]) { + names[name].push(item["visitors"]); + } + } + } + + for (let name in names) { + // convert all `undefined` values to 0 + if (names[name].includes(undefined)) { + names[name] = names[name].map((name) => { + return name ? parseInt(name) : 0; + }); + + // attractions raw data occassionally has "t###" as visitors + // remove the "t" and convert ### into int + } else if (names[name][0] === "t") { + names[name] = parseInt(names[name].substring(1)); + } + + // if there are more than 1 visitor values in array + // get median value + let medianIdx = Math.floor(names[name].length / 2); + names[name] = parseInt(names[name][medianIdx]); + } + return names; +} + +/** + * @params: + * [{location, cordinates, locationLabel, *visitor*}, {}] + * @returns + * array with objects that includes name, visitors, and coordinates + * [["jeff's museum", 1, "Point(12, 35)"], ...] + */ +function getCoords(list) { + //converts object into array + let array = Object.entries(getVisitors(list)); + + // adds coord as last element to array + for (let name of array) { + for (let item of list) { + if (name[0] === item["locationLabel"]) { + name.push(item["cordinates"]); + } + } + } + + return array; +} + +/** + * @params: + * [{location, cordinates, locationLabel, *visitor*}, {}] + * create objects from arrays, adding all results to larger array + * sample array looks like: ["White House", 10, "Point(12, 34)"] + * + * @returns + * [ + * {name: "White House", visitors: 10, coordinates: "Point(12, 34)"}, + * {name: "jeff's museum", visitors: 1, coordinates: "Point(12,35"}, + * ] + */ +function collateDataToObj(list) { + let arrays = getCoords(list); + + return arrays.map((a) => { + let obj = {}; + obj["name"] = a[0]; + obj["visitors"] = a[1]; + obj["coordinates"] = a[2]; + return obj; + }); +} + +module.exports = { getLocation, getVisitors, getCoords, collateDataToObj }; diff --git a/wikidata/skyscrapersRawData.js b/wikidata/skyscrapersRawData.js new file mode 100644 index 0000000..c793136 --- /dev/null +++ b/wikidata/skyscrapersRawData.js @@ -0,0 +1,19216 @@ +const skyscrapers = [ + { + location: "http://www.wikidata.org/entity/Q3485327", + cordinates: "Point(28.9912 41.0604)", + locationLabel: "Şişli Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q30922310", + cordinates: "Point(139.76708333 35.68580556)", + locationLabel: "Ōtemachi urban net building", + }, + { + location: "http://www.wikidata.org/entity/Q11435566", + cordinates: "Point(139.76583333 35.68802778)", + locationLabel: "Ōtemachi financial city", + }, + { + location: "http://www.wikidata.org/entity/Q11435569", + cordinates: "Point(139.766222 35.68525)", + locationLabel: "Ōtemachi Nomura building", + }, + { + location: "http://www.wikidata.org/entity/Q11434388", + cordinates: "Point(139.619583 35.905528)", + locationLabel: "Ōmiya Sonic City", + }, + { + location: "http://www.wikidata.org/entity/Q1656109", + cordinates: "Point(-79.381584 43.642063)", + locationLabel: "ÏCE Condominiums at York Centre", + }, + { + location: "http://www.wikidata.org/entity/Q26434436", + cordinates: "Point(-73.56328 45.503)", + locationLabel: "Édifice de la Unity Building", + }, + { + location: "http://www.wikidata.org/entity/Q373143", + cordinates: "Point(-71.208066666 46.812963888)", + locationLabel: "Édifice Price", + height: "82", + numberOfElevators: "2", + }, + { + location: "http://www.wikidata.org/entity/Q373143", + cordinates: "Point(-71.208066666 46.812963888)", + locationLabel: "Édifice Price", + height: "269", + numberOfElevators: "2", + }, + { + location: "http://www.wikidata.org/entity/Q273781", + cordinates: "Point(-71.217222 46.808056)", + locationLabel: "Édifice Marie-Guyart", + }, + { + location: "http://www.wikidata.org/entity/Q16707849", + cordinates: "Point(-72.540161 46.342693)", + locationLabel: "Édifice Ameau", + }, + { + location: "http://www.wikidata.org/entity/Q7120580", + cordinates: "Point(103.801214 1.273575)", + locationLabel: "mTower", + }, + { + location: "http://www.wikidata.org/entity/Q96072166", + cordinates: "Point(37.530409 55.754861)", + locationLabel: "iCity", + }, + { + location: "http://www.wikidata.org/entity/Q308279", + cordinates: "Point(114.225 22.3125)", + locationLabel: "apm", + }, + { + location: "http://www.wikidata.org/entity/Q106843758", + cordinates: "Point(34.4525812 31.5147815)", + locationLabel: "al Jalaa Tower", + }, + { + location: "http://www.wikidata.org/entity/Q249065", + cordinates: "Point(21.002641 52.230139)", + locationLabel: "Złote Tarasy", + }, + { + location: "http://www.wikidata.org/entity/Q249053", + cordinates: "Point(21.0025 52.23111111)", + locationLabel: "Złota 44", + }, + { + location: "http://www.wikidata.org/entity/Q99539382", + cordinates: "Point(103.759305555 1.479527777)", + locationLabel: "Zurich Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8075003", + cordinates: "Point(121.266 14.558)", + locationLabel: "Zuellig Building", + }, + { + location: "http://www.wikidata.org/entity/Q101208801", + cordinates: "Point(-90.4947 14.58207)", + locationLabel: "Zona Pradera", + }, + { + location: "http://www.wikidata.org/entity/Q8072816", + cordinates: "Point(59.5844 36.29)", + locationLabel: "Zist-e Khavar", + }, + { + location: "http://www.wikidata.org/entity/Q76829415", + cordinates: "Point(-111.891549 40.762389)", + locationLabel: "Zions Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q16129964", + cordinates: "Point(34.774619444 32.064380555)", + locationLabel: "Zion Tower", + }, + { + location: "http://www.wikidata.org/entity/Q382121", + cordinates: "Point(118.778055555 32.062472222)", + locationLabel: "Zifeng Tower", + height: "316", + numberOfElevators: "54", + }, + { + location: "http://www.wikidata.org/entity/Q382121", + cordinates: "Point(118.778055555 32.062472222)", + locationLabel: "Zifeng Tower", + height: "450", + numberOfElevators: "54", + }, + { + location: "http://www.wikidata.org/entity/Q198226", + cordinates: "Point(113.327271 23.118219)", + locationLabel: "Zhujiang New City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2717933", + cordinates: "Point(113.928775 22.52044444)", + locationLabel: "Zhongzhou Holdings Financial Center", + height: "303", + numberOfElevators: "45", + }, + { + location: "http://www.wikidata.org/entity/Q8070910", + cordinates: "Point(87.605475 43.798633333)", + locationLabel: "Zhong Tian Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q6541959", + cordinates: "Point(24.080067 56.947297)", + locationLabel: "Z-Towers", + }, + { + location: "http://www.wikidata.org/entity/Q15120372", + cordinates: "Point(58.333361111 37.929611111)", + locationLabel: "Yyldyz Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q11643367", + cordinates: "Point(139.762733 35.681528)", + locationLabel: "Yusen Building", + }, + { + location: "http://www.wikidata.org/entity/Q11516524", + cordinates: "Point(139.76375 35.67425)", + locationLabel: "Yurakucho ITOCiA", + }, + { + location: "http://www.wikidata.org/entity/Q11378216", + cordinates: "Point(139.6985 35.68555556)", + locationLabel: "Yoyogi Seminar Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8058488", + cordinates: "Point(-84.512439 39.105628)", + locationLabel: "Young Women's Christian Association of Cincinnati", + }, + { + location: "http://www.wikidata.org/entity/Q11631626", + cordinates: "Point(139.766388888 35.690833333)", + locationLabel: "Yomiuri Shimbun Building", + }, + { + location: "http://www.wikidata.org/entity/Q11262858", + cordinates: "Point(139.62463889 35.46455556)", + locationLabel: "Yokohama Sky Building", + }, + { + location: "http://www.wikidata.org/entity/Q11542907", + cordinates: "Point(139.625 35.463167)", + locationLabel: "Yokohama Mitsui Building", + }, + { + location: "http://www.wikidata.org/entity/Q11542897", + cordinates: "Point(139.630017 35.459814)", + locationLabel: "Yokohama Media Tower", + }, + { + location: "http://www.wikidata.org/entity/Q587108", + cordinates: "Point(139.631666666 35.454722222)", + locationLabel: "Yokohama Landmark Tower", + height: "295.8", + numberOfElevators: "79", + }, + { + location: "http://www.wikidata.org/entity/Q11542840", + cordinates: "Point(139.635139 35.450139)", + locationLabel: "Yokohama Island Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11543018", + cordinates: "Point(139.637287 35.443758)", + locationLabel: "Yokohama City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q3572455", + cordinates: "Point(136.658 34.9933)", + locationLabel: "Yokkaichi Port Building", + }, + { + location: "http://www.wikidata.org/entity/Q1092242", + cordinates: "Point(106.574893 29.55554)", + locationLabel: "Yingli Tower", + height: "285", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q700636", + cordinates: "Point(125.751152777 38.998933333)", + locationLabel: "Yanggakdo International Hotel", + height: "170", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q17060465", + cordinates: "Point(-73.573055555 45.494722222)", + locationLabel: "YUL Condos", + }, + { + location: "http://www.wikidata.org/entity/Q27887650", + cordinates: "Point(120.300555555 22.627777777)", + locationLabel: "Xin-Fu-Hwa", + }, + { + location: "http://www.wikidata.org/entity/Q15855239", + cordinates: "Point(118.070599 24.467512)", + locationLabel: "Xiamen International Centre", + }, + { + location: "http://www.wikidata.org/entity/Q30766281", + cordinates: "Point(108.87786 34.1947)", + locationLabel: "Xi An Glory International Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q4021793", + cordinates: "Point(-77.6048 43.1545)", + locationLabel: "Xerox Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2597675", + cordinates: "Point(-79.3803 43.6701)", + locationLabel: "X Condominium", + }, + { + location: "http://www.wikidata.org/entity/Q16925204", + cordinates: "Point(113.571055555 22.14775)", + locationLabel: "Wynn Palace", + }, + { + location: "http://www.wikidata.org/entity/Q1309059", + cordinates: "Point(-115.166 36.1294)", + locationLabel: "Wynn Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q16995460", + cordinates: "Point(-89.64576 39.80015)", + locationLabel: "Wyndham Springfield City Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3359202", + cordinates: "Point(27.03194444 38.41166667)", + locationLabel: "Wyndham Grand İzmir Özdilek", + height: "113", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q2595527", + cordinates: "Point(120.304488 31.552405)", + locationLabel: "Wuxi Maoye City - Marriott Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1558596", + cordinates: "Point(120.3025 31.55055556)", + locationLabel: "Wuxi IFS", + }, + { + location: "http://www.wikidata.org/entity/Q22100488", + cordinates: "Point(114.270094 30.595232)", + locationLabel: "Wuhan New World International Trade Tower", + }, + { + location: "http://www.wikidata.org/entity/Q143235", + cordinates: "Point(114.31742 30.58582)", + locationLabel: "Wuhan Greenland Center", + height: "476", + numberOfElevators: "84", + }, + { + location: "http://www.wikidata.org/entity/Q2484373", + cordinates: "Point(114.23967 30.59665)", + locationLabel: "Wuhan Center", + }, + { + location: "http://www.wikidata.org/entity/Q8038893", + cordinates: "Point(114.173 22.2744)", + locationLabel: "Wu Chung House", + }, + { + location: "http://www.wikidata.org/entity/Q1464592", + cordinates: "Point(-87.624861 41.889707)", + locationLabel: "Wrigley Building", + }, + { + location: "http://www.wikidata.org/entity/Q8036350", + cordinates: "Point(114.184 22.2817)", + locationLabel: "World Trade Centre", + }, + { + location: "http://www.wikidata.org/entity/Q8036348", + cordinates: "Point(-79.3756 43.642)", + locationLabel: "World Trade Centre", + }, + { + location: "http://www.wikidata.org/entity/Q16903732", + cordinates: "Point(-122.675 45.5163)", + locationLabel: "World Trade Center, Portland", + }, + { + location: "http://www.wikidata.org/entity/Q2712478", + cordinates: "Point(-99.1744 19.3945)", + locationLabel: "World Trade Center Mexico City", + }, + { + location: "http://www.wikidata.org/entity/Q8036327", + cordinates: "Point(91.814922 22.325722)", + locationLabel: "World Trade Center Chittagong", + }, + { + location: "http://www.wikidata.org/entity/Q30156272", + cordinates: "Point(79.843611111 6.932777777)", + locationLabel: "World Trade Center - West Tower", + }, + { + location: "http://www.wikidata.org/entity/Q30156260", + cordinates: "Point(79.844166666 6.932777777)", + locationLabel: "World Trade Center - East Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2948463", + cordinates: "Point(139.757 35.6563)", + locationLabel: "World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q8036319", + cordinates: "Point(-84.493 38.0432)", + locationLabel: "World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q828343", + cordinates: "Point(4.484722222 51.904722222)", + locationLabel: "World Port Center", + }, + { + location: "http://www.wikidata.org/entity/Q507939", + cordinates: "Point(72.826469 19.002411)", + locationLabel: "World One", + height: "280.2", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q8035728", + cordinates: "Point(121.504 31.2405)", + locationLabel: "World Finance Tower", + }, + { + location: "http://www.wikidata.org/entity/Q30634153", + cordinates: "Point(106.826759 -6.229326)", + locationLabel: "World Capital Tower", + }, + { + location: "http://www.wikidata.org/entity/Q217652", + cordinates: "Point(-74.008061111 40.712219444)", + locationLabel: "Woolworth Building", + height: "351", + numberOfElevators: "34", + }, + { + location: "http://www.wikidata.org/entity/Q3615950", + cordinates: "Point(-123.108 49.2826)", + locationLabel: "Woodward's Building", + }, + { + location: "http://www.wikidata.org/entity/Q8033342", + cordinates: "Point(115.851944444 -31.952777777)", + locationLabel: "Woodside Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q8033101", + cordinates: "Point(-95.9393 41.258)", + locationLabel: "WoodmenLife Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17039466", + cordinates: "Point(-87.63761111 41.88736111)", + locationLabel: "Wolf Point South Tower", + }, + { + location: "http://www.wikidata.org/entity/Q26710810", + cordinates: "Point(-87.63677778 41.8875)", + locationLabel: "Wolf Point East Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8029040", + cordinates: "Point(-15.4298 28.1456)", + locationLabel: "Woermann Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8027667", + cordinates: "Point(111.825 2.29056)", + locationLabel: "Wisma Sanyan", + }, + { + location: "http://www.wikidata.org/entity/Q8027337", + cordinates: "Point(-87.9193448 43.0390656)", + locationLabel: "Wisconsin Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8027176", + cordinates: "Point(-87.903 43.0394)", + locationLabel: "Wisconsin Gas Building", + }, + { + location: "http://www.wikidata.org/entity/Q8026138", + cordinates: "Point(-80.243611 36.098056)", + locationLabel: "Winston Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5674592", + cordinates: "Point(114.157 22.284)", + locationLabel: "Wing On House", + }, + { + location: "http://www.wikidata.org/entity/Q8024640", + cordinates: "Point(-5.932 54.595)", + locationLabel: "Windsor House", + }, + { + location: "http://www.wikidata.org/entity/Q8024571", + cordinates: "Point(-43.17325833 -22.96454722)", + locationLabel: "Windsor Atlantica Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q8023957", + cordinates: "Point(55.137777777 25.068055555)", + locationLabel: "Wind Towers", + }, + { + location: "http://www.wikidata.org/entity/Q3569266", + cordinates: "Point(-80.1941 25.7706)", + locationLabel: "Wind Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2582539", + cordinates: "Point(-118.259926 34.04993)", + locationLabel: "Wilshire Grand Center", + height: "1100", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q8022896", + cordinates: "Point(-118.448 34.0563)", + locationLabel: "Wilshire Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q8022500", + cordinates: "Point(-81.6514 41.5065)", + locationLabel: "Willson Tower", + }, + { + location: "http://www.wikidata.org/entity/Q29294", + cordinates: "Point(-87.635833 41.878611)", + locationLabel: "Willis Tower", + height: "442.1", + numberOfElevators: "104", + }, + { + location: "http://www.wikidata.org/entity/Q29294", + cordinates: "Point(-87.635833 41.878611)", + locationLabel: "Willis Tower", + height: "1098", + numberOfElevators: "104", + }, + { + location: "http://www.wikidata.org/entity/Q3109593", + cordinates: "Point(-0.0815 51.5129)", + locationLabel: "Willis Building", + }, + { + location: "http://www.wikidata.org/entity/Q8021187", + cordinates: "Point(-73.9778 40.6856)", + locationLabel: "Williamsburgh Savings Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1357650", + cordinates: "Point(-95.461388888 29.737222222)", + locationLabel: "Williams Tower", + height: "274.6", + numberOfElevators: "49", + }, + { + location: "http://www.wikidata.org/entity/Q8017985", + cordinates: "Point(-79.99464 40.44341)", + locationLabel: "William S. Moorhead Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q8017288", + cordinates: "Point(-86.7849 36.1639)", + locationLabel: "William R. Snodgrass Tennessee Tower", + }, + { + location: "http://www.wikidata.org/entity/Q8010152", + cordinates: "Point(-83.0028 39.966389)", + locationLabel: "William Green Building", + }, + { + location: "http://www.wikidata.org/entity/Q1282400", + cordinates: "Point(-76.6141 39.2898)", + locationLabel: "William Donald Schaefer Building", + }, + { + location: "http://www.wikidata.org/entity/Q8000292", + cordinates: "Point(-102.078 31.9973)", + locationLabel: "Wilco Building", + }, + { + location: "http://www.wikidata.org/entity/Q1969086", + cordinates: "Point(-74.016111111 40.705555555)", + locationLabel: "Whitehall Building", + }, + { + location: "http://www.wikidata.org/entity/Q986382", + cordinates: "Point(113.23739 23.10852)", + locationLabel: "White Swan Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q598603", + cordinates: "Point(121.49361111 31.25111111)", + locationLabel: "White Magnolia Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7994115", + cordinates: "Point(-96.7989 32.7794)", + locationLabel: "Whitacre Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5015659", + cordinates: "Point(114.107 22.373)", + locationLabel: "Wharf Cable Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3648568", + cordinates: "Point(5.065147 51.560131)", + locationLabel: "Westpoint Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3567552", + cordinates: "Point(138.598333333 -34.924722222)", + locationLabel: "Westpac House", + }, + { + location: "http://www.wikidata.org/entity/Q7989405", + cordinates: "Point(-98.4922 29.4286)", + locationLabel: "Weston Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7988926", + cordinates: "Point(-122.408 37.7877)", + locationLabel: "Westin St. Francis", + }, + { + location: "http://www.wikidata.org/entity/Q7988923", + cordinates: "Point(-122.403 37.7865)", + locationLabel: "Westin San Francisco Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q7988922", + cordinates: "Point(-115.1657 36.1153)", + locationLabel: "Westin Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q7988917", + cordinates: "Point(-122.339 47.6143)", + locationLabel: "Westin Building", + }, + { + location: "http://www.wikidata.org/entity/Q12072758", + cordinates: "Point(-83.0505 42.332)", + locationLabel: "Westin Book Cadillac Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q882664", + cordinates: "Point(8.664166666 50.101111111)", + locationLabel: "Westhafen Tower", + height: "112.3", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q1340365", + cordinates: "Point(-115.1514 36.1361)", + locationLabel: "Westgate Las Vegas Resort & Casino", + }, + { + location: "http://www.wikidata.org/entity/Q7988406", + cordinates: "Point(-74.009722222 40.710833333)", + locationLabel: "Western Union Telegraph Building", + }, + { + location: "http://www.wikidata.org/entity/Q657979", + cordinates: "Point(8.6625 50.110555555)", + locationLabel: "Westendstrasse 1", + }, + { + location: "http://www.wikidata.org/entity/Q686587", + cordinates: "Point(8.6503 50.1142)", + locationLabel: "WestendGate", + }, + { + location: "http://www.wikidata.org/entity/Q2564456", + cordinates: "Point(8.65452 50.1206)", + locationLabel: "Westarkade", + }, + { + location: "http://www.wikidata.org/entity/Q2406016", + cordinates: "Point(-2.996666666 53.41)", + locationLabel: "West Tower", + height: "140", + numberOfElevators: "2", + }, + { + location: "http://www.wikidata.org/entity/Q713832", + cordinates: "Point(120.664993 28.006896)", + locationLabel: "Wenzhou World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q3567194", + cordinates: "Point(-86.808256 33.517717)", + locationLabel: "Wells Fargo Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7981666", + cordinates: "Point(-97.3318 32.7564)", + locationLabel: "Wells Fargo Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7981662", + cordinates: "Point(-106.485983 31.760092)", + locationLabel: "Wells Fargo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7981664", + cordinates: "Point(-117.161 32.7173)", + locationLabel: "Wells Fargo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q12072658", + cordinates: "Point(-112.076 33.4483)", + locationLabel: "Wells Fargo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q57767", + cordinates: "Point(-95.368263 29.7584396)", + locationLabel: "Wells Fargo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q954129", + cordinates: "Point(-111.89065 40.763417)", + locationLabel: "Wells Fargo Center", + height: "128.7", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q630856", + cordinates: "Point(-80.1886 25.7714)", + locationLabel: "Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q2543729", + cordinates: "Point(-118.252 34.0527)", + locationLabel: "Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q2688624", + cordinates: "Point(-122.334 47.605)", + locationLabel: "Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q3567195", + cordinates: "Point(-121.503 38.5784)", + locationLabel: "Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q7981655", + cordinates: "Point(-81.6564 30.3254)", + locationLabel: "Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q7981657", + cordinates: "Point(-82.45786 27.94467)", + locationLabel: "Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q7981650", + cordinates: "Point(-101.852 33.585)", + locationLabel: "Wells Fargo Building", + }, + { + location: "http://www.wikidata.org/entity/Q7981651", + cordinates: "Point(-75.164444 39.949444)", + locationLabel: "Wells Fargo Building", + }, + { + location: "http://www.wikidata.org/entity/Q3489836", + cordinates: "Point(-95.3698 29.7548)", + locationLabel: "Wedge International Tower", + }, + { + location: "http://www.wikidata.org/entity/Q25549664", + cordinates: "Point(129.14521 35.156091)", + locationLabel: "We've the Zenith Tower C", + }, + { + location: "http://www.wikidata.org/entity/Q1242598", + cordinates: "Point(129.14444444 35.1575)", + locationLabel: "We've the Zenith Tower A", + height: "300", + numberOfElevators: "21", + }, + { + location: "http://www.wikidata.org/entity/Q17184198", + cordinates: "Point(-87.8319 42.3614)", + locationLabel: "Waukegan Building", + }, + { + location: "http://www.wikidata.org/entity/Q15727066", + cordinates: "Point(139.767361 35.697528)", + locationLabel: "Waterras", + }, + { + location: "http://www.wikidata.org/entity/Q7974387", + cordinates: "Point(-71.4128 41.8273)", + locationLabel: "Waterplace", + }, + { + location: "http://www.wikidata.org/entity/Q7974377", + cordinates: "Point(-79.4059 43.6368)", + locationLabel: "Waterpark City", + }, + { + location: "http://www.wikidata.org/entity/Q7974089", + cordinates: "Point(153.03 -27.4703)", + locationLabel: "Waterfront Place, Brisbane", + }, + { + location: "http://www.wikidata.org/entity/Q1582716", + cordinates: "Point(-87.622361111 41.897916666)", + locationLabel: "Water Tower Place", + }, + { + location: "http://www.wikidata.org/entity/Q3063065", + cordinates: "Point(-0.907528 41.6704)", + locationLabel: "Water Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7972040", + cordinates: "Point(-77.0247 38.9036)", + locationLabel: "Washington Marriott Marquis", + }, + { + location: "http://www.wikidata.org/entity/Q60862279", + cordinates: "Point(20.985782 52.230147)", + locationLabel: "Warsaw Unit", + }, + { + location: "http://www.wikidata.org/entity/Q1049868", + cordinates: "Point(20.983055555 52.235555555)", + locationLabel: "Warsaw Trade Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1357866", + cordinates: "Point(20.984722222 52.233055555)", + locationLabel: "Warsaw Spire", + }, + { + location: "http://www.wikidata.org/entity/Q106497911", + cordinates: "Point(-87.619679532 41.89647782)", + locationLabel: "Ward Building", + }, + { + location: "http://www.wikidata.org/entity/Q24837128", + cordinates: "Point(121.566302777 25.038969444)", + locationLabel: "Walsin Lihwa Building", + }, + { + location: "http://www.wikidata.org/entity/Q7961604", + cordinates: "Point(-75.1651 39.9512)", + locationLabel: "Waldorf Astoria Hotel & Residences Philadelphia", + }, + { + location: "http://www.wikidata.org/entity/Q1140508", + cordinates: "Point(-87.6275 41.8997)", + locationLabel: "Waldorf Astoria Chicago", + height: "209", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q85883376", + cordinates: "Point(139.711472222 35.6555)", + locationLabel: "Wakagi Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7958765", + cordinates: "Point(-76.6136 39.29)", + locationLabel: "Wachovia Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7953275", + cordinates: "Point(-102.079 31.9974)", + locationLabel: "WNB Tower", + }, + { + location: "http://www.wikidata.org/entity/Q685377", + cordinates: "Point(-73.9825 40.7547)", + locationLabel: "W. R. Grace Building", + height: "192", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q2648096", + cordinates: "Point(-122.4 37.7854)", + locationLabel: "W San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q7958500", + cordinates: "Point(-74.0139 40.7093)", + locationLabel: "W New York Downtown Hotel and Residences", + }, + { + location: "http://www.wikidata.org/entity/Q7958478", + cordinates: "Point(-96.8091 32.7882)", + locationLabel: "W Dallas Victory Hotel and Residences", + }, + { + location: "http://www.wikidata.org/entity/Q7958469", + cordinates: "Point(-97.7471 30.2659)", + locationLabel: "W Austin Hotel and Residences", + }, + { + location: "http://www.wikidata.org/entity/Q12043047", + cordinates: "Point(18.2873 49.8425)", + locationLabel: "Věžový dům Ostrčilova", + }, + { + location: "http://www.wikidata.org/entity/Q12043047", + cordinates: "Point(18.287305555 49.842472222)", + locationLabel: "Věžový dům Ostrčilova", + }, + { + location: "http://www.wikidata.org/entity/Q65926775", + cordinates: "Point(60.61636 56.83597)", + locationLabel: "Vysotsky (skyscraper)", + }, + { + location: "http://www.wikidata.org/entity/Q16960749", + cordinates: "Point(-80.1936 25.76188)", + locationLabel: "Vue at Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q7936469", + cordinates: "Point(101.72 3.16194)", + locationLabel: "Vista Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1614219", + cordinates: "Point(55.264847 25.187986)", + locationLabel: "Vision Tower", + height: "260", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q717259", + cordinates: "Point(114.114 22.3703)", + locationLabel: "Vision City", + }, + { + location: "http://www.wikidata.org/entity/Q1982118", + cordinates: "Point(153.029 -27.4717)", + locationLabel: "Vision Brisbane", + }, + { + location: "http://www.wikidata.org/entity/Q19817567", + cordinates: "Point(144.960331 -37.807277)", + locationLabel: "Vision Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q7934802", + cordinates: "Point(-86.7795 36.1632)", + locationLabel: "Viridian Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7930406", + cordinates: "Point(-80.1918 25.7618)", + locationLabel: "Villa Magna Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q7928740", + cordinates: "Point(-84.3841 33.7779)", + locationLabel: "ViewPoint", + }, + { + location: "http://www.wikidata.org/entity/Q15549825", + cordinates: "Point(105.79 21.0825)", + locationLabel: "VietinBank Business Center Office Tower", + height: "363", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q15549825", + cordinates: "Point(105.790161 21.081778)", + locationLabel: "VietinBank Business Center Office Tower", + height: "363", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q20026285", + cordinates: "Point(106.705472222 10.775916666)", + locationLabel: "Vietcombank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q874387", + cordinates: "Point(16.346944444 48.168888888)", + locationLabel: "Vienna Twin Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7927562", + cordinates: "Point(-96.81007 32.788447)", + locationLabel: "Victory Tower", + }, + { + location: "http://www.wikidata.org/entity/Q241648", + cordinates: "Point(114.1686 22.302469)", + locationLabel: "Victoria Towers", + height: "213", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q7926966", + cordinates: "Point(144.946944444 -37.818611111)", + locationLabel: "Victoria Point", + }, + { + location: "http://www.wikidata.org/entity/Q7926936", + cordinates: "Point(-83.0391 42.3166)", + locationLabel: "Victoria Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q7924445", + cordinates: "Point(-112.075 33.4683)", + locationLabel: "Viad Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7984220", + cordinates: "Point(-73.993057 40.771479)", + locationLabel: "Via 57 West", + height: "142", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q7921883", + cordinates: "Point(-83.0008 39.9603)", + locationLabel: "Vern Riffe State Office Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2467339", + cordinates: "Point(4.337778 52.012778)", + locationLabel: "VermeerToren", + }, + { + location: "http://www.wikidata.org/entity/Q1983213", + cordinates: "Point(-74.012917 40.713753)", + locationLabel: "Verizon Building", + height: "116", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q7921042", + cordinates: "Point(55.2678 25.2703)", + locationLabel: "Verde Residences and Offices", + }, + { + location: "http://www.wikidata.org/entity/Q901058", + cordinates: "Point(-80.651281 28.586281)", + locationLabel: "Vehicle Assembly Building", + }, + { + location: "http://www.wikidata.org/entity/Q264203", + cordinates: "Point(-115.155137 36.148293)", + locationLabel: "Vegas World", + }, + { + location: "http://www.wikidata.org/entity/Q634258", + cordinates: "Point(-115.175 36.1074)", + locationLabel: "Veer Towers", + }, + { + location: "http://www.wikidata.org/entity/Q280910", + cordinates: "Point(-115.17808 36.10943)", + locationLabel: "Vdara", + }, + { + location: "http://www.wikidata.org/entity/Q7917190", + cordinates: "Point(104.919 11.5735)", + locationLabel: "Vattanac Capital", + }, + { + location: "http://www.wikidata.org/entity/Q1756313", + cordinates: "Point(-9.09138889 38.77472222)", + locationLabel: "Vasco da Gama Tower", + }, + { + location: "http://www.wikidata.org/entity/Q28320872", + cordinates: "Point(21.000101 52.228891)", + locationLabel: "Varso", + height: "310", + numberOfElevators: "47", + }, + { + location: "http://www.wikidata.org/entity/Q3554638", + cordinates: "Point(-117.156 32.7182)", + locationLabel: "Vantage Pointe Condominium", + }, + { + location: "http://www.wikidata.org/entity/Q14874782", + cordinates: "Point(-123.12 49.2881)", + locationLabel: "Vancouver Marriott Pinnacle Downtown Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q17029407", + cordinates: "Point(-110.97104 32.22169)", + locationLabel: "Valley National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q12268818", + cordinates: "Point(-2.98944444 43.29)", + locationLabel: "Vallehermoso Dorrea", + }, + { + location: "http://www.wikidata.org/entity/Q21150764", + cordinates: "Point(14.436389 50.049167)", + locationLabel: "V Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1262622", + cordinates: "Point(20.436944444 44.816111111)", + locationLabel: "Ušće Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11285725", + cordinates: "Point(136.9092 35.173058)", + locationLabel: "Urbannet Nagoya Building", + }, + { + location: "http://www.wikidata.org/entity/Q7900074", + cordinates: "Point(132.465 34.3995)", + locationLabel: "Urban View Grand Tower", + }, + { + location: "http://www.wikidata.org/entity/Q21644828", + cordinates: "Point(55.94972 54.73667)", + locationLabel: "Uralsib", + }, + { + location: "http://www.wikidata.org/entity/Q12268593", + cordinates: "Point(-2.47222222 43.18388889)", + locationLabel: "Unzaga Dorrea", + }, + { + location: "http://www.wikidata.org/entity/Q12268593", + cordinates: "Point(-2.472670268 43.184372522)", + locationLabel: "Unzaga Dorrea", + }, + { + location: "http://www.wikidata.org/entity/Q11660076", + cordinates: "Point(136.9205 35.169319)", + locationLabel: "Unryu Flex Building", + }, + { + location: "http://www.wikidata.org/entity/Q3551347", + cordinates: "Point(-73.9994 40.7276)", + locationLabel: "University Village", + }, + { + location: "http://www.wikidata.org/entity/Q7894715", + cordinates: "Point(-87.651 41.87377778)", + locationLabel: "University Hall", + }, + { + location: "http://www.wikidata.org/entity/Q7894599", + cordinates: "Point(-95.991111111 36.137222222)", + locationLabel: "University Club Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7894597", + cordinates: "Point(-87.8996 43.04218)", + locationLabel: "University Club Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7893648", + cordinates: "Point(-104.991388888 39.746111111)", + locationLabel: "United Western Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q17349272", + cordinates: "Point(-74.0111 40.7087)", + locationLabel: "United States Realty Building", + }, + { + location: "http://www.wikidata.org/entity/Q21016291", + cordinates: "Point(-122.3365 47.615)", + locationLabel: "United States Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q7889143", + cordinates: "Point(-122.337 47.6106)", + locationLabel: "United Shopping Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7889005", + cordinates: "Point(-79.0625 43.087222)", + locationLabel: "United Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q7888512", + cordinates: "Point(-73.968 40.749)", + locationLabel: "United Nations Secretariat Building", + }, + { + location: "http://www.wikidata.org/entity/Q15720599", + cordinates: "Point(90.2435 23.4735)", + locationLabel: "Unique Acropolis", + }, + { + location: "http://www.wikidata.org/entity/Q7886395", + cordinates: "Point(-72.9238 41.3085)", + locationLabel: "Union and New Haven Trust Building", + }, + { + location: "http://www.wikidata.org/entity/Q7885393", + cordinates: "Point(-117.159738 32.717514)", + locationLabel: "Union Bank of California Building", + }, + { + location: "http://www.wikidata.org/entity/Q4004762", + cordinates: "Point(-118.257 34.053)", + locationLabel: "Union Bank Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7885387", + cordinates: "Point(-97.1394 49.8988)", + locationLabel: "Union Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q26710807", + cordinates: "Point(26.067928 44.474194)", + locationLabel: "Unicredit Tower Bucharest", + }, + { + location: "http://www.wikidata.org/entity/Q963111", + cordinates: "Point(9.189877777 45.483844444)", + locationLabel: "UniCredit Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3402410", + cordinates: "Point(121.565 25.0396)", + locationLabel: "Uni-President International Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11538597", + cordinates: "Point(135.497944 34.700444)", + locationLabel: "Umeda Square Building", + }, + { + location: "http://www.wikidata.org/entity/Q1151808", + cordinates: "Point(135.489722222 34.705277777)", + locationLabel: "Umeda Sky Building", + }, + { + location: "http://www.wikidata.org/entity/Q11538590", + cordinates: "Point(135.497667 34.699861)", + locationLabel: "Umeda DT Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11538596", + cordinates: "Point(135.502 34.706)", + locationLabel: "Umeda Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q17227777", + cordinates: "Point(131.24494444 33.95508333)", + locationLabel: "Ube Industries Building", + }, + { + location: "http://www.wikidata.org/entity/Q47474", + cordinates: "Point(-93.2739 44.9756)", + locationLabel: "US Bancorp Center", + }, + { + location: "http://www.wikidata.org/entity/Q21036744", + cordinates: "Point(103.85 1.28555)", + locationLabel: "UOB Plaza One", + }, + { + location: "http://www.wikidata.org/entity/Q7864695", + cordinates: "Point(103.85 1.27792)", + locationLabel: "UIC Building", + }, + { + location: "http://www.wikidata.org/entity/Q20899643", + cordinates: "Point(36.81305556 -1.30055556)", + locationLabel: "UAP Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7863588", + cordinates: "Point(-6.2324 53.3449)", + locationLabel: "U2 Tower", + }, + { + location: "http://www.wikidata.org/entity/Q57900", + cordinates: "Point(-118.254353 34.050961)", + locationLabel: "U.S. Bank Tower", + height: "310.3", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q729176", + cordinates: "Point(-121.499 38.5786)", + locationLabel: "U.S. Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7863084", + cordinates: "Point(-104.993888888 39.7475)", + locationLabel: "U.S. Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7863081", + cordinates: "Point(-93.2678 44.9772)", + locationLabel: "U.S. Bank Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3066771", + cordinates: "Point(-122.335 47.6106)", + locationLabel: "U.S. Bank Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3487098", + cordinates: "Point(-87.902084 43.038356)", + locationLabel: "U.S. Bank Center", + height: "183.19", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q7863079", + cordinates: "Point(-112.075 33.4498)", + locationLabel: "U.S. Bank Center", + }, + { + location: "http://www.wikidata.org/entity/Q1385414", + cordinates: "Point(-122.6759 45.5228)", + locationLabel: "U.S. Bancorp Tower", + height: "163.4", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q2904163", + cordinates: "Point(34.7939 32.0908)", + locationLabel: "Tzameret Towers", + }, + { + location: "http://www.wikidata.org/entity/Q20445008", + cordinates: "Point(-74.0135 40.712778)", + locationLabel: "Two World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q7859331", + cordinates: "Point(-80.8447 35.2247)", + locationLabel: "Two Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q24036684", + cordinates: "Point(-122.33296 47.610294)", + locationLabel: "Two Union Square", + }, + { + location: "http://www.wikidata.org/entity/Q1121971", + cordinates: "Point(-87.622777777 41.885555555)", + locationLabel: "Two Prudential Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7859171", + cordinates: "Point(-78.639 35.7749)", + locationLabel: "Two Progress Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7859146", + cordinates: "Point(-80.000833333 40.441666666)", + locationLabel: "Two PNC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q540000", + cordinates: "Point(-75.1699 39.9556)", + locationLabel: "Two Logan Square", + }, + { + location: "http://www.wikidata.org/entity/Q14226100", + cordinates: "Point(114.15914 22.28538)", + locationLabel: "Two International Finance Centre", + height: "412", + numberOfElevators: "62", + }, + { + location: "http://www.wikidata.org/entity/Q7858934", + cordinates: "Point(-122.398 37.7949)", + locationLabel: "Two Embarcadero Center", + }, + { + location: "http://www.wikidata.org/entity/Q7858882", + cordinates: "Point(-76.6161 39.2922)", + locationLabel: "Two Charles Center", + }, + { + location: "http://www.wikidata.org/entity/Q2319313", + cordinates: "Point(-118.251542 34.051322)", + locationLabel: "Two California Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2462375", + cordinates: "Point(-79.3872 43.6702)", + locationLabel: "Two Bloor West", + height: "148", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q7858829", + cordinates: "Point(-96.7961 32.7928)", + locationLabel: "Two Arts Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q11318679", + cordinates: "Point(133.817306 34.311)", + locationLabel: "Twin Tower Seto-Ōhashi", + }, + { + location: "http://www.wikidata.org/entity/Q24036197", + cordinates: "Point(-84.388148 33.765034)", + locationLabel: "Twelve Centennial Park Tower I", + }, + { + location: "http://www.wikidata.org/entity/Q206435", + cordinates: "Point(12.976388888 55.613333333)", + locationLabel: "Turning Torso", + height: "190", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q7855828", + cordinates: "Point(-115.152 36.1409)", + locationLabel: "Turnberry Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1407337", + cordinates: "Point(58.238169444 37.862586111)", + locationLabel: "Turkmenistan Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6063129", + cordinates: "Point(-73.968333333 40.751388888)", + locationLabel: "Turkish Center", + height: "171", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q7854993", + cordinates: "Point(-71.4099 41.8246)", + locationLabel: "Turk's Head Building", + }, + { + location: "http://www.wikidata.org/entity/Q17638799", + cordinates: "Point(9.19622 45.477)", + locationLabel: "Turati Tower", + }, + { + location: "http://www.wikidata.org/entity/Q101403951", + cordinates: "Point(9.195475 45.477294)", + locationLabel: "Turati Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11079345", + cordinates: "Point(121.54916667 25.02888889)", + locationLabel: "Tuntex Tower", + }, + { + location: "http://www.wikidata.org/entity/Q337631", + cordinates: "Point(120.3 22.611666666)", + locationLabel: "Tuntex Sky Tower", + height: "378", + numberOfElevators: "54", + }, + { + location: "http://www.wikidata.org/entity/Q11078418", + cordinates: "Point(121.5163339 24.9924706)", + locationLabel: "Tuntex Highrise Building", + }, + { + location: "http://www.wikidata.org/entity/Q2459733", + cordinates: "Point(116.10944444 6.01722222)", + locationLabel: "Tun Mustapha Tower", + height: "122", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q60754464", + cordinates: "Point(-0.0799887 51.5144564)", + locationLabel: "Tulip", + }, + { + location: "http://www.wikidata.org/entity/Q512913", + cordinates: "Point(28.044722222 -26.206111111)", + locationLabel: "Trust Bank Building", + height: "140", + numberOfElevators: "31", + }, + { + location: "http://www.wikidata.org/entity/Q844324", + cordinates: "Point(-73.967664 40.75228)", + locationLabel: "Trump World Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7847787", + cordinates: "Point(28.9925 41.0675)", + locationLabel: "Trump Towers Istanbul", + }, + { + location: "http://www.wikidata.org/entity/Q7847786", + cordinates: "Point(-80.1217 25.9245)", + locationLabel: "Trump Towers", + }, + { + location: "http://www.wikidata.org/entity/Q868772", + cordinates: "Point(-73.974166666 40.7625)", + locationLabel: "Trump Tower", + height: "664", + numberOfElevators: "34", + }, + { + location: "http://www.wikidata.org/entity/Q7847784", + cordinates: "Point(-73.7655 41.032)", + locationLabel: "Trump Tower", + }, + { + location: "http://www.wikidata.org/entity/Q29954022", + cordinates: "Point(-80.12 25.9449)", + locationLabel: "Trump Royale", + }, + { + location: "http://www.wikidata.org/entity/Q12071549", + cordinates: "Point(-73.781388888 40.9125)", + locationLabel: "Trump Plaza (New Rochelle)", + }, + { + location: "http://www.wikidata.org/entity/Q7847778", + cordinates: "Point(-74.0365 40.7195)", + locationLabel: "Trump Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q28186627", + cordinates: "Point(-73.991794 40.725656)", + locationLabel: "Trump Parc", + }, + { + location: "http://www.wikidata.org/entity/Q3133340", + cordinates: "Point(-73.9619 40.7675)", + locationLabel: "Trump Palace Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q546221", + cordinates: "Point(-87.626672222 41.8891)", + locationLabel: "Trump International Hotel and Tower", + height: "423.2", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q1783427", + cordinates: "Point(-73.981572 40.769137)", + locationLabel: "Trump International Hotel and Tower", + height: "177.62", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q2155353", + cordinates: "Point(-123.12326389 49.28633333)", + locationLabel: "Trump International Hotel and Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7847768", + cordinates: "Point(-157.833 21.2792)", + locationLabel: "Trump International Hotel and Tower", + }, + { + location: "http://www.wikidata.org/entity/Q38251129", + cordinates: "Point(-74.035624 40.719687)", + locationLabel: "Trump Bay Street", + }, + { + location: "http://www.wikidata.org/entity/Q280339", + cordinates: "Point(-115.171 36.0992)", + locationLabel: "Tropicana Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q80367", + cordinates: "Point(37.520833333 55.798333333)", + locationLabel: "Triumph Palace", + }, + { + location: "http://www.wikidata.org/entity/Q14874469", + cordinates: "Point(103.837 1.30042)", + locationLabel: "TripleOne Somerset", + }, + { + location: "http://www.wikidata.org/entity/Q21058453", + cordinates: "Point(127.04515833 37.53933056)", + locationLabel: "Trimage", + }, + { + location: "http://www.wikidata.org/entity/Q2143136", + cordinates: "Point(-87.62367 41.890426)", + locationLabel: "Tribune Tower", + }, + { + location: "http://www.wikidata.org/entity/Q54952515", + cordinates: "Point(-87.622444444 41.890583333)", + locationLabel: "Tribune East Tower", + }, + { + location: "http://www.wikidata.org/entity/Q195166", + cordinates: "Point(8.666666666 50.1125)", + locationLabel: "Trianon", + height: "186", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q24036196", + cordinates: "Point(18.422356 -33.918942)", + locationLabel: "Triangle House", + }, + { + location: "http://www.wikidata.org/entity/Q3533204", + cordinates: "Point(2.28578 48.8314)", + locationLabel: "Triangle", + }, + { + location: "http://www.wikidata.org/entity/Q454985", + cordinates: "Point(13.4611 52.4953)", + locationLabel: "Treptowers", + }, + { + location: "http://www.wikidata.org/entity/Q7838155", + cordinates: "Point(-76.6144 39.2922)", + locationLabel: "Tremont Plaza Hotel & Grand Historic Venue", + }, + { + location: "http://www.wikidata.org/entity/Q3751504", + cordinates: "Point(114.152 22.2742)", + locationLabel: "Tregunter Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1360313", + cordinates: "Point(-115.171944444 36.125)", + locationLabel: "Treasure Island Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q3538183", + cordinates: "Point(-72.6724 41.7638)", + locationLabel: "Travelers Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24036185", + cordinates: "Point(-93.097764 44.946709)", + locationLabel: "Travelers Building", + }, + { + location: "http://www.wikidata.org/entity/Q1516792", + cordinates: "Point(71.416518 51.131356)", + locationLabel: "Transport Tower", + height: "155.15", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q1383405", + cordinates: "Point(-76.6142 39.2871)", + locationLabel: "Transamerica Tower", + }, + { + location: "http://www.wikidata.org/entity/Q216865", + cordinates: "Point(-122.402748 37.795135)", + locationLabel: "Transamerica Pyramid", + height: "260", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q1708994", + cordinates: "Point(-114.065 51.0489)", + locationLabel: "TransCanada Tower, Calgary", + }, + { + location: "http://www.wikidata.org/entity/Q977470", + cordinates: "Point(-96.7992 32.7875)", + locationLabel: "Trammell Crow Center", + }, + { + location: "http://www.wikidata.org/entity/Q7831907", + cordinates: "Point(-80.8457 35.2289)", + locationLabel: "TradeMark", + }, + { + location: "http://www.wikidata.org/entity/Q16129936", + cordinates: "Point(34.791834 32.065137)", + locationLabel: "Toyota Tower", + }, + { + location: "http://www.wikidata.org/entity/Q48747895", + cordinates: "Point(139.74883333 35.70366667)", + locationLabel: "Toyota Motor Corporation Tokyo Head Office", + }, + { + location: "http://www.wikidata.org/entity/Q3536032", + cordinates: "Point(139.796 35.6559)", + locationLabel: "Toyosu Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q11633499", + cordinates: "Point(136.89942778 35.16977222)", + locationLabel: "Toyoshima Building", + }, + { + location: "http://www.wikidata.org/entity/Q11456389", + cordinates: "Point(137.213639 36.695889)", + locationLabel: "Toyama City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q7829998", + cordinates: "Point(-94.5828 39.1006)", + locationLabel: "Town Pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q7829838", + cordinates: "Point(-121.503333333 38.58)", + locationLabel: "Towers on Capitol Mall", + }, + { + location: "http://www.wikidata.org/entity/Q7829835", + cordinates: "Point(-82.4473 27.9446)", + locationLabel: "Towers of Channelside", + }, + { + location: "http://www.wikidata.org/entity/Q7829834", + cordinates: "Point(-74.0316 40.7274)", + locationLabel: "Towers of America", + }, + { + location: "http://www.wikidata.org/entity/Q7829832", + cordinates: "Point(-98.4459 29.4639)", + locationLabel: "Towers at Park Lane", + }, + { + location: "http://www.wikidata.org/entity/Q7829831", + cordinates: "Point(-76.6144 39.2825)", + locationLabel: "Towers at Harbor Court", + }, + { + location: "http://www.wikidata.org/entity/Q7829752", + cordinates: "Point(-80.00017 40.44025)", + locationLabel: "Tower at PNC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7829750", + cordinates: "Point(-96.7925 32.8055)", + locationLabel: "Tower at Cityplace", + }, + { + location: "http://www.wikidata.org/entity/Q7829719", + cordinates: "Point(-96.796808 32.780843)", + locationLabel: "Tower Petroleum Building", + }, + { + location: "http://www.wikidata.org/entity/Q3535937", + cordinates: "Point(-98.491389 29.422778)", + locationLabel: "Tower Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q7829650", + cordinates: "Point(-81.5343 41.4639)", + locationLabel: "Tower East", + }, + { + location: "http://www.wikidata.org/entity/Q7829640", + cordinates: "Point(-77.0323 38.9028)", + locationLabel: "Tower Building", + }, + { + location: "http://www.wikidata.org/entity/Q1551686", + cordinates: "Point(-73.976944444 40.757222222)", + locationLabel: "Tower 49", + }, + { + location: "http://www.wikidata.org/entity/Q1331574", + cordinates: "Point(-0.083888888 51.515277777)", + locationLabel: "Tower 42", + height: "182.9", + numberOfElevators: "21", + }, + { + location: "http://www.wikidata.org/entity/Q2379770", + cordinates: "Point(37.5461 55.7464)", + locationLabel: "Tower 2000", + }, + { + location: "http://www.wikidata.org/entity/Q708060", + cordinates: "Point(8.656389 50.110556)", + locationLabel: "Tower 185", + height: "200", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q3490523", + cordinates: "Point(17.128 48.1413)", + locationLabel: "Tower 115", + }, + { + location: "http://www.wikidata.org/entity/Q7829623", + cordinates: "Point(137.216 36.7033)", + locationLabel: "Tower 111", + }, + { + location: "http://www.wikidata.org/entity/Q912078", + cordinates: "Point(2.286666666 48.901111111)", + locationLabel: "Tours de Levallois", + }, + { + location: "http://www.wikidata.org/entity/Q3052184", + cordinates: "Point(2.230555555 48.891944444)", + locationLabel: "Tours Société Générale", + }, + { + location: "http://www.wikidata.org/entity/Q21009432", + cordinates: "Point(2.238333 48.893889)", + locationLabel: "Tours Sisters", + }, + { + location: "http://www.wikidata.org/entity/Q3090088", + cordinates: "Point(2.23847 48.8965)", + locationLabel: "Tour Égée", + height: "155", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q3533629", + cordinates: "Point(-73.5682 45.5025)", + locationLabel: "Tour des Canadiens", + }, + { + location: "http://www.wikidata.org/entity/Q1702873", + cordinates: "Point(-73.5618 45.5006)", + locationLabel: "Tour de la Bourse", + height: "190", + numberOfElevators: "26", + }, + { + location: "http://www.wikidata.org/entity/Q1346081", + cordinates: "Point(-73.5594 45.5019)", + locationLabel: "Tour de la Banque Royale", + height: "121", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q766684", + cordinates: "Point(-73.5638 45.5019)", + locationLabel: "Tour de la Banque Nationale", + }, + { + location: "http://www.wikidata.org/entity/Q3533359", + cordinates: "Point(3.07639 50.6386)", + locationLabel: "Tour de Lille", + height: "120", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q815057", + cordinates: "Point(6.62886 46.52206)", + locationLabel: "Tour de Bel-Air", + height: "68", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q17640073", + cordinates: "Point(2.24111 48.8928)", + locationLabel: "Tour Trinity", + }, + { + location: "http://www.wikidata.org/entity/Q3533202", + cordinates: "Point(2.28372 48.8501)", + locationLabel: "Tour Totem", + }, + { + location: "http://www.wikidata.org/entity/Q743683", + cordinates: "Point(2.243055555 48.892777777)", + locationLabel: "Tour Total", + }, + { + location: "http://www.wikidata.org/entity/Q85810295", + cordinates: "Point(4.85897 45.7596)", + locationLabel: "Tour To-Lyon", + }, + { + location: "http://www.wikidata.org/entity/Q3533200", + cordinates: "Point(6.17489 48.69055)", + locationLabel: "Tour Thiers", + }, + { + location: "http://www.wikidata.org/entity/Q2818450", + cordinates: "Point(-73.6534 45.4869)", + locationLabel: "Tour Terminal", + }, + { + location: "http://www.wikidata.org/entity/Q3533198", + cordinates: "Point(-73.5676 45.5024)", + locationLabel: "Tour Telus", + }, + { + location: "http://www.wikidata.org/entity/Q278518", + cordinates: "Point(2.239444444 48.896111111)", + locationLabel: "Tour T1", + height: "185", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q9523", + cordinates: "Point(4.85868 45.763)", + locationLabel: "Tour Swiss Life", + }, + { + location: "http://www.wikidata.org/entity/Q3533192", + cordinates: "Point(2.359166666 48.821666666)", + locationLabel: "Tour Super-Italie", + }, + { + location: "http://www.wikidata.org/entity/Q106008631", + cordinates: "Point(2.231856416 48.893103333)", + locationLabel: "Tour Skylight", + }, + { + location: "http://www.wikidata.org/entity/Q3533185", + cordinates: "Point(4.85547 45.759)", + locationLabel: "Tour Silex 2", + }, + { + location: "http://www.wikidata.org/entity/Q3533187", + cordinates: "Point(2.23364 48.8915)", + locationLabel: "Tour Signal", + }, + { + location: "http://www.wikidata.org/entity/Q64174739", + cordinates: "Point(-73.567112 45.517737)", + locationLabel: "Tour Sherbrooke", + }, + { + location: "http://www.wikidata.org/entity/Q2412928", + cordinates: "Point(2.24 48.894)", + locationLabel: "Tour Sequoia", + height: "119", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q2376935", + cordinates: "Point(2.26886 48.8334)", + locationLabel: "Tour Sequana", + height: "100", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q3533184", + cordinates: "Point(-73.5755 45.5059)", + locationLabel: "Tour Scotia", + }, + { + location: "http://www.wikidata.org/entity/Q18380158", + cordinates: "Point(2.25139 48.8894)", + locationLabel: "Tour Saint-Gobain", + }, + { + location: "http://www.wikidata.org/entity/Q3090112", + cordinates: "Point(2.345 48.92)", + locationLabel: "Tour Pleyel", + }, + { + location: "http://www.wikidata.org/entity/Q3533158", + cordinates: "Point(2.3063 49.8909)", + locationLabel: "Tour Perret", + }, + { + location: "http://www.wikidata.org/entity/Q5270", + cordinates: "Point(4.853611111 45.761111111)", + locationLabel: "Tour Part-Dieu", + height: "169.4", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q8530", + cordinates: "Point(4.85684 45.7621)", + locationLabel: "Tour Oxygène", + height: "115", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q3533139", + cordinates: "Point(2.25417 48.8895)", + locationLabel: "Tour Neptune", + height: "113", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q3533127", + cordinates: "Point(2.24353 48.8888)", + locationLabel: "Tour Majunga", + }, + { + location: "http://www.wikidata.org/entity/Q3533119", + cordinates: "Point(2.25167 48.8944)", + locationLabel: "Tour Les Poissons", + height: "150", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q3533107", + cordinates: "Point(2.387777777 48.901666666)", + locationLabel: "Tour La Villette", + }, + { + location: "http://www.wikidata.org/entity/Q58208336", + cordinates: "Point(5.366889 43.313139)", + locationLabel: "Tour La Marseillaise", + }, + { + location: "http://www.wikidata.org/entity/Q3533104", + cordinates: "Point(-73.570864 45.504164)", + locationLabel: "Tour KPMG", + }, + { + location: "http://www.wikidata.org/entity/Q3090101", + cordinates: "Point(2.251388888 48.886944444)", + locationLabel: "Tour Initiale", + height: "109", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q8647", + cordinates: "Point(4.85093 45.7633)", + locationLabel: "Tour Incity", + height: "200", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q666483", + cordinates: "Point(2.22959 48.8918)", + locationLabel: "Tour Granite", + height: "50", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q995371", + cordinates: "Point(2.24980556 48.88888889)", + locationLabel: "Tour Gan", + }, + { + location: "http://www.wikidata.org/entity/Q3533093", + cordinates: "Point(2.240277777 48.889166666)", + locationLabel: "Tour Franklin", + height: "116", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q3090121", + cordinates: "Point(2.247639 48.883056)", + locationLabel: "Tour France", + }, + { + location: "http://www.wikidata.org/entity/Q1509747", + cordinates: "Point(2.2517 48.8889)", + locationLabel: "Tour First", + height: "231", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q9524", + cordinates: "Point(4.8592 45.7631)", + locationLabel: "Tour Eva", + }, + { + location: "http://www.wikidata.org/entity/Q3533084", + cordinates: "Point(2.245 48.891666666)", + locationLabel: "Tour Europlaza", + height: "135", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q105516029", + cordinates: "Point(2.249848333 48.886379166)", + locationLabel: "Tour Eria", + }, + { + location: "http://www.wikidata.org/entity/Q3533077", + cordinates: "Point(2.246666666 48.892222222)", + locationLabel: "Tour Eqho", + }, + { + location: "http://www.wikidata.org/entity/Q3090555", + cordinates: "Point(2.241388888 48.889722222)", + locationLabel: "Tour EDF", + }, + { + location: "http://www.wikidata.org/entity/Q3142331", + cordinates: "Point(2.2366775 48.887504722)", + locationLabel: "Tour Défense 2000", + height: "134", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q3533060", + cordinates: "Point(2.38296 48.8248)", + locationLabel: "Tour Duo", + }, + { + location: "http://www.wikidata.org/entity/Q2040985", + cordinates: "Point(2.247777777 48.890277777)", + locationLabel: "Tour D2", + height: "171", + numberOfElevators: "17", + }, + { + location: "http://www.wikidata.org/entity/Q9360324", + cordinates: "Point(2.2311 48.8917)", + locationLabel: "Tour Chassagne", + }, + { + location: "http://www.wikidata.org/entity/Q2041005", + cordinates: "Point(2.24583 48.8914)", + locationLabel: "Tour Carpe Diem", + height: "166", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q3533035", + cordinates: "Point(-73.5709 45.4985)", + locationLabel: "Tour CIBC", + }, + { + location: "http://www.wikidata.org/entity/Q640094", + cordinates: "Point(2.246666666 48.891111111)", + locationLabel: "Tour CBX", + }, + { + location: "http://www.wikidata.org/entity/Q2016004", + cordinates: "Point(2.24736 48.89)", + locationLabel: "Tour Aurore", + }, + { + location: "http://www.wikidata.org/entity/Q3090076", + cordinates: "Point(2.243611111 48.889444444)", + locationLabel: "Tour Ariane", + height: "152", + numberOfElevators: "19", + }, + { + location: "http://www.wikidata.org/entity/Q735913", + cordinates: "Point(2.241944444 48.892222222)", + locationLabel: "Tour Areva", + height: "178", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q16680551", + cordinates: "Point(2.25139 48.8894)", + locationLabel: "Tour Alto", + }, + { + location: "http://www.wikidata.org/entity/Q3533014", + cordinates: "Point(2.236666666 48.895)", + locationLabel: "Tour Adria", + }, + { + location: "http://www.wikidata.org/entity/Q2814680", + cordinates: "Point(-73.5722 45.5042)", + locationLabel: "Tour AXA", + }, + { + location: "http://www.wikidata.org/entity/Q3490161", + cordinates: "Point(-95.3685 29.7565)", + locationLabel: "Total Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2913606", + cordinates: "Point(139.714 35.7347)", + locationLabel: "Toshima Incineration Plant", + }, + { + location: "http://www.wikidata.org/entity/Q11273170", + cordinates: "Point(139.71666667 35.72625)", + locationLabel: "Toshima Eco-Musee Town", + }, + { + location: "http://www.wikidata.org/entity/Q7827579", + cordinates: "Point(-80.3145 25.6879)", + locationLabel: "Toscano", + }, + { + location: "http://www.wikidata.org/entity/Q16616997", + cordinates: "Point(10.21887 45.53852)", + locationLabel: "Torrione INA", + }, + { + location: "http://www.wikidata.org/entity/Q2919969", + cordinates: "Point(-3.691111111 40.425833333)", + locationLabel: "Torres de Colón", + height: "116", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q104519240", + cordinates: "Point(-90.52197 14.57773)", + locationLabel: "Torres ECHO", + }, + { + location: "http://www.wikidata.org/entity/Q3995702", + cordinates: "Point(-3.67201 40.4397)", + locationLabel: "Torres Blancas", + }, + { + location: "http://www.wikidata.org/entity/Q3995592", + cordinates: "Point(9.20085 45.451485)", + locationLabel: "Torre di Porta Romana", + }, + { + location: "http://www.wikidata.org/entity/Q7826994", + cordinates: "Point(-75.568536 6.249022)", + locationLabel: "Torre del Café", + height: "160", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q7826993", + cordinates: "Point(-99.149339 19.436197)", + locationLabel: "Torre del Caballito", + }, + { + location: "http://www.wikidata.org/entity/Q21609063", + cordinates: "Point(120.98416667 14.58472222)", + locationLabel: "Torre de Manila", + }, + { + location: "http://www.wikidata.org/entity/Q1063195", + cordinates: "Point(-3.712222222 40.424444444)", + locationLabel: "Torre de Madrid", + height: "142", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q7826984", + cordinates: "Point(-0.3525 39.4597)", + locationLabel: "Torre de Francia", + }, + { + location: "http://www.wikidata.org/entity/Q953610", + cordinates: "Point(-3.687222222 40.478055555)", + locationLabel: "Torre de Cristal", + height: "249", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q24088393", + cordinates: "Point(-1.75885 43.34290833)", + locationLabel: "Torre Zaisa", + }, + { + location: "http://www.wikidata.org/entity/Q1443364", + cordinates: "Point(2.127647 41.356465)", + locationLabel: "Torre Werfen", + }, + { + location: "http://www.wikidata.org/entity/Q15993877", + cordinates: "Point(-99.203333333 19.425)", + locationLabel: "Torre Virreyes", + }, + { + location: "http://www.wikidata.org/entity/Q1156274", + cordinates: "Point(9.190555555 45.46)", + locationLabel: "Torre Velasca", + height: "106", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q7826975", + cordinates: "Point(-103.415 20.7091)", + locationLabel: "Torre Titanium", + }, + { + location: "http://www.wikidata.org/entity/Q6150288", + cordinates: "Point(-3.694522222 40.446763888)", + locationLabel: "Torre Titania", + }, + { + location: "http://www.wikidata.org/entity/Q3533196", + cordinates: "Point(-70.6324 -33.437)", + locationLabel: "Torre Telefónica Chile", + }, + { + location: "http://www.wikidata.org/entity/Q47458785", + cordinates: "Point(-9.096371 38.76833)", + locationLabel: "Torre São Rafael", + }, + { + location: "http://www.wikidata.org/entity/Q3995285", + cordinates: "Point(9.19380222 45.48219028)", + locationLabel: "Torre Solaria", + }, + { + location: "http://www.wikidata.org/entity/Q3995283", + cordinates: "Point(9.19715389 45.46699528)", + locationLabel: "Torre Snia Viscosa", + }, + { + location: "http://www.wikidata.org/entity/Q3995281", + cordinates: "Point(9.194701 45.484011)", + locationLabel: "Torre Servizi Tecnici Comunali", + }, + { + location: "http://www.wikidata.org/entity/Q3433389", + cordinates: "Point(-99.1743 19.4246)", + locationLabel: "Torre Reforma", + }, + { + location: "http://www.wikidata.org/entity/Q1189521", + cordinates: "Point(2.1275 41.356388888)", + locationLabel: "Torre Realia BCN", + }, + { + location: "http://www.wikidata.org/entity/Q651643", + cordinates: "Point(-3.687777777 40.476666666)", + locationLabel: "Torre PwC", + }, + { + location: "http://www.wikidata.org/entity/Q16641572", + cordinates: "Point(2.1217984 41.357336)", + locationLabel: "Torre Puig", + }, + { + location: "http://www.wikidata.org/entity/Q3995246", + cordinates: "Point(12.893389 41.466218)", + locationLabel: "Torre Pontina", + }, + { + location: "http://www.wikidata.org/entity/Q2444546", + cordinates: "Point(-79.466424 9.010298)", + locationLabel: "Torre Planetarium", + }, + { + location: "http://www.wikidata.org/entity/Q1364394", + cordinates: "Point(-3.6925 40.450277777)", + locationLabel: "Torre Picasso", + height: "157", + numberOfElevators: "26", + }, + { + location: "http://www.wikidata.org/entity/Q30753498", + cordinates: "Point(-99.273333333 19.357222222)", + locationLabel: "Torre Paradox", + }, + { + location: "http://www.wikidata.org/entity/Q6150196", + cordinates: "Point(-99.174333333 19.424638888)", + locationLabel: "Torre Mitikah", + }, + { + location: "http://www.wikidata.org/entity/Q844813", + cordinates: "Point(-99.175555555 19.424166666)", + locationLabel: "Torre Mayor", + }, + { + location: "http://www.wikidata.org/entity/Q7826967", + cordinates: "Point(-3.694183333 40.448419444)", + locationLabel: "Torre Mahou", + }, + { + location: "http://www.wikidata.org/entity/Q25929457", + cordinates: "Point(-84.063055555 9.931111111)", + locationLabel: "Torre Latitud Los Yoses", + }, + { + location: "http://www.wikidata.org/entity/Q1805449", + cordinates: "Point(2.19732 41.429793)", + locationLabel: "Torre La Sagrera", + }, + { + location: "http://www.wikidata.org/entity/Q2779414", + cordinates: "Point(-99.175555555 19.424166666)", + locationLabel: "Torre Insignia", + }, + { + location: "http://www.wikidata.org/entity/Q1189214", + cordinates: "Point(2.1278 41.3571)", + locationLabel: "Torre Inbisa", + }, + { + location: "http://www.wikidata.org/entity/Q336246", + cordinates: "Point(2.189444444 41.403333333)", + locationLabel: "Torre Glòries", + height: "142", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q10972183", + cordinates: "Point(-58.37263889 -34.60569444)", + locationLabel: "Torre Galicia Central", + }, + { + location: "http://www.wikidata.org/entity/Q3995184", + cordinates: "Point(12.4576 41.8196)", + locationLabel: "Torre Eurosky", + }, + { + location: "http://www.wikidata.org/entity/Q3995181", + cordinates: "Point(12.4561 41.8172)", + locationLabel: "Torre Europarco", + }, + { + location: "http://www.wikidata.org/entity/Q2421828", + cordinates: "Point(-3.691666666 40.451666666)", + locationLabel: "Torre Europa", + }, + { + location: "http://www.wikidata.org/entity/Q1364354", + cordinates: "Point(-3.686666666 40.478888888)", + locationLabel: "Torre Espacio", + }, + { + location: "http://www.wikidata.org/entity/Q4121126", + cordinates: "Point(-89.246925 13.680911)", + locationLabel: "Torre El Pedregal", + height: "110.3", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q4121126", + cordinates: "Point(-89.247194444 13.680722222)", + locationLabel: "Torre El Pedregal", + height: "110.3", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q948178", + cordinates: "Point(-99.174722 19.438889)", + locationLabel: "Torre Ejecutiva Pemex", + height: "211", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q6150116", + cordinates: "Point(-66.882 10.4956)", + locationLabel: "Torre Domus", + }, + { + location: "http://www.wikidata.org/entity/Q3995174", + cordinates: "Point(9.19624861 45.48105444)", + locationLabel: "Torre Diamante", + }, + { + location: "http://www.wikidata.org/entity/Q26260970", + cordinates: "Point(-103.4150475 20.707083)", + locationLabel: "Torre Cube II", + }, + { + location: "http://www.wikidata.org/entity/Q47066126", + cordinates: "Point(-3.6720759 40.485909)", + locationLabel: "Torre Chamartín Merlin", + }, + { + location: "http://www.wikidata.org/entity/Q519568", + cordinates: "Point(-3.687777777 40.475555555)", + locationLabel: "Torre Cepsa", + height: "248.3", + numberOfElevators: "19", + }, + { + location: "http://www.wikidata.org/entity/Q7826957", + cordinates: "Point(-69.9456 18.4485)", + locationLabel: "Torre Caney", + }, + { + location: "http://www.wikidata.org/entity/Q7826955", + cordinates: "Point(-58.3686 -34.6017)", + locationLabel: "Torre Bouchard", + }, + { + location: "http://www.wikidata.org/entity/Q7826945", + cordinates: "Point(-60.6289 -32.9509)", + locationLabel: "Torre Aqualina", + }, + { + location: "http://www.wikidata.org/entity/Q2266944", + cordinates: "Point(-99.2674 19.3802)", + locationLabel: "Torre Altus", + }, + { + location: "http://www.wikidata.org/entity/Q53088", + cordinates: "Point(-99.165 19.3964)", + locationLabel: "Torre AXA México", + height: "132", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q53088", + cordinates: "Point(-99.165 19.3964)", + locationLabel: "Torre AXA México", + height: "433", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q1278419", + cordinates: "Point(-79.380277777 43.653888888)", + locationLabel: "Toronto Eaton Centre", + }, + { + location: "http://www.wikidata.org/entity/Q9360189", + cordinates: "Point(-79.3814 43.6476)", + locationLabel: "Toronto Dominion Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7826291", + cordinates: "Point(-79.3768 43.6473)", + locationLabel: "Toronto Board of Trade Building", + }, + { + location: "http://www.wikidata.org/entity/Q16724433", + cordinates: "Point(139.749 35.6669)", + locationLabel: "Toranomon Hills", + height: "255.5", + numberOfElevators: "49", + }, + { + location: "http://www.wikidata.org/entity/Q56433269", + cordinates: "Point(139.74691667 35.66988889)", + locationLabel: "Toranomon Daibiru Building", + }, + { + location: "http://www.wikidata.org/entity/Q7824667", + cordinates: "Point(-83.160833333 42.560277777)", + locationLabel: "Top of Troy", + }, + { + location: "http://www.wikidata.org/entity/Q70215636", + cordinates: "Point(14.3509433 50.0504531)", + locationLabel: "Top Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17222099", + cordinates: "Point(138.38758333 34.975)", + locationLabel: "Top Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q926767", + cordinates: "Point(121.465 31.232)", + locationLabel: "Tomorrow Square", + height: "204.6", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q17026106", + cordinates: "Point(-73.567777777 45.502777777)", + locationLabel: "Tom Condos", + }, + { + location: "http://www.wikidata.org/entity/Q11524839", + cordinates: "Point(140.879861 38.262778)", + locationLabel: "Tokyo Tatemono Sendai Building", + }, + { + location: "http://www.wikidata.org/entity/Q11524180", + cordinates: "Point(139.81275 35.710278)", + locationLabel: "Tokyo Skytree East Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7883397", + cordinates: "Point(139.761222 35.663)", + locationLabel: "Tokyo Shiodome Building", + }, + { + location: "http://www.wikidata.org/entity/Q1201889", + cordinates: "Point(139.68707 35.68309)", + locationLabel: "Tokyo Opera City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q48752023", + cordinates: "Point(139.75925 35.67372222)", + locationLabel: "Tokyo Midtown Hibiya", + }, + { + location: "http://www.wikidata.org/entity/Q7813885", + cordinates: "Point(139.76321111 35.68375556)", + locationLabel: "Tokyo Ginko Kyokai Building", + }, + { + location: "http://www.wikidata.org/entity/Q7813885", + cordinates: "Point(139.763 35.6836)", + locationLabel: "Tokyo Ginko Kyokai Building", + }, + { + location: "http://www.wikidata.org/entity/Q20025054", + cordinates: "Point(139.737006 35.679592)", + locationLabel: "Tokyo Garden Terrace Kioicho", + }, + { + location: "http://www.wikidata.org/entity/Q11525948", + cordinates: "Point(139.75275 35.67516667)", + locationLabel: "Tokyo Court Complex Building", + }, + { + location: "http://www.wikidata.org/entity/Q3530518", + cordinates: "Point(139.692 35.688)", + locationLabel: "Tokyo City Hall Tower II", + }, + { + location: "http://www.wikidata.org/entity/Q5364354", + cordinates: "Point(139.7643722 35.68255)", + locationLabel: "Tokyo Building", + }, + { + location: "http://www.wikidata.org/entity/Q705614", + cordinates: "Point(139.06 37.9262)", + locationLabel: "Toki Messe", + }, + { + location: "http://www.wikidata.org/entity/Q11526277", + cordinates: "Point(140.878333 38.265639)", + locationLabel: "Tohoku Electric Power Company Head Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q4250563", + cordinates: "Point(-70.6038 -33.4131)", + locationLabel: "Titanium La Portada", + }, + { + location: "http://www.wikidata.org/entity/Q4384864", + cordinates: "Point(36.823888888 -1.290277777)", + locationLabel: "Times Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1580807", + cordinates: "Point(-73.9867 40.7555)", + locationLabel: "Times Square Tower", + height: "221", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q3528913", + cordinates: "Point(-73.9808 40.7604)", + locationLabel: "Time-Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q7801872", + cordinates: "Point(-90.5539 14.6225)", + locationLabel: "Tikal Futura", + height: "75", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q106622689", + cordinates: "Point(-90.4816 14.57237)", + locationLabel: "Tigo Tower", + }, + { + location: "http://www.wikidata.org/entity/Q101208597", + cordinates: "Point(-90.51726 14.5847)", + locationLabel: "Tiffany Novena", + }, + { + location: "http://www.wikidata.org/entity/Q12058976", + cordinates: "Point(18.278 49.83074)", + locationLabel: "Tieto Towers", + }, + { + location: "http://www.wikidata.org/entity/Q100307841", + cordinates: "Point(114.603954 38.03597)", + locationLabel: "Tianshan Gate of the World Plots 27 and 28", + }, + { + location: "http://www.wikidata.org/entity/Q186406", + cordinates: "Point(117.196388888 39.128888888)", + locationLabel: "Tianjin World Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q2431130", + cordinates: "Point(117.6601 39.0018)", + locationLabel: "Tianjin R&F Guangdong Tower", + height: "468", + numberOfElevators: "57", + }, + { + location: "http://www.wikidata.org/entity/Q18745718", + cordinates: "Point(117.192 39.1192)", + locationLabel: "Tianjin Modern City Office Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1753759", + cordinates: "Point(117.217873 39.126068)", + locationLabel: "Tianjin Kerry Center", + }, + { + location: "http://www.wikidata.org/entity/Q10939987", + cordinates: "Point(117.69846 39.02138)", + locationLabel: "Tianjin Chow Tai Fook Binhai Center", + height: "530", + numberOfElevators: "267", + }, + { + location: "http://www.wikidata.org/entity/Q941908", + cordinates: "Point(-74.011608 40.710923)", + locationLabel: "Three World Trade Center", + height: "328.9", + numberOfElevators: "44", + }, + { + location: "http://www.wikidata.org/entity/Q7797911", + cordinates: "Point(-80.8463 35.2244)", + locationLabel: "Three Wells Fargo Center", + }, + { + location: "http://www.wikidata.org/entity/Q98937711", + cordinates: "Point(72.82335 19.01097)", + locationLabel: "Three Sixty West Tower B", + }, + { + location: "http://www.wikidata.org/entity/Q98937606", + cordinates: "Point(72.82261 19.0119)", + locationLabel: "Three Sixty West Tower A", + }, + { + location: "http://www.wikidata.org/entity/Q14684141", + cordinates: "Point(-121.887 37.33)", + locationLabel: "Three Sixty Residences", + }, + { + location: "http://www.wikidata.org/entity/Q7797711", + cordinates: "Point(-84.335 33.9208)", + locationLabel: "Three Ravinia Drive", + }, + { + location: "http://www.wikidata.org/entity/Q7797679", + cordinates: "Point(-80.0013 40.4414)", + locationLabel: "Three PNC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7797659", + cordinates: "Point(-83.0029 39.9672)", + locationLabel: "Three Nationwide Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4403620", + cordinates: "Point(126.926025 37.525219)", + locationLabel: "Three International Finance Center", + }, + { + location: "http://www.wikidata.org/entity/Q7797491", + cordinates: "Point(-80.005555 40.441814)", + locationLabel: "Three Gateway Center", + }, + { + location: "http://www.wikidata.org/entity/Q1787391", + cordinates: "Point(-87.630767 41.882331)", + locationLabel: "Three First National Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7797461", + cordinates: "Point(-122.397 37.7951)", + locationLabel: "Three Embarcadero Center", + }, + { + location: "http://www.wikidata.org/entity/Q11251035", + cordinates: "Point(139.727748 35.618434)", + locationLabel: "ThinkPark Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7774342", + cordinates: "Point(114.1398 22.2879)", + locationLabel: "The Westpoint", + }, + { + location: "http://www.wikidata.org/entity/Q105271646", + cordinates: "Point(115.864609895 -31.955472966)", + locationLabel: "The Westin Perth", + }, + { + location: "http://www.wikidata.org/entity/Q7774298", + cordinates: "Point(-115.172 36.0862)", + locationLabel: "The Western", + }, + { + location: "http://www.wikidata.org/entity/Q7773762", + cordinates: "Point(153.432 -28.0288)", + locationLabel: "The Wave", + }, + { + location: "http://www.wikidata.org/entity/Q7772604", + cordinates: "Point(-106.656 52.1318)", + locationLabel: "The View on Fifth", + }, + { + location: "http://www.wikidata.org/entity/Q1156708", + cordinates: "Point(113.560556 22.148611)", + locationLabel: "The Venetian Macao", + }, + { + location: "http://www.wikidata.org/entity/Q1049209", + cordinates: "Point(-115.168888888 36.121388888)", + locationLabel: "The Venetian", + }, + { + location: "http://www.wikidata.org/entity/Q7771874", + cordinates: "Point(-81.37618 28.54534)", + locationLabel: "The VUE at Lake Eola", + }, + { + location: "http://www.wikidata.org/entity/Q788064", + cordinates: "Point(-79.3874 43.6695)", + locationLabel: "The Uptown Residences", + height: "160", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q3523055", + cordinates: "Point(135.48905 34.694423)", + locationLabel: "The Tower Osaka", + }, + { + location: "http://www.wikidata.org/entity/Q7769726", + cordinates: "Point(-97.3329 32.7532)", + locationLabel: "The Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7769505", + cordinates: "Point(139.774 35.6556)", + locationLabel: "The Tokyo Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7769405", + cordinates: "Point(-73.9878 40.7576)", + locationLabel: "The Times Square Building", + }, + { + location: "http://www.wikidata.org/entity/Q7769217", + cordinates: "Point(-80.130351 25.783121)", + locationLabel: "The Tides", + }, + { + location: "http://www.wikidata.org/entity/Q3756285", + cordinates: "Point(114.184 22.2655)", + locationLabel: "The Summit", + }, + { + location: "http://www.wikidata.org/entity/Q7767281", + cordinates: "Point(-122.415 37.7984)", + locationLabel: "The Summit", + }, + { + location: "http://www.wikidata.org/entity/Q2219119", + cordinates: "Point(-87.61902778 41.89238889)", + locationLabel: "The Streeter", + }, + { + location: "http://www.wikidata.org/entity/Q20711738", + cordinates: "Point(-0.0066 51.5452)", + locationLabel: "The Stratford", + }, + { + location: "http://www.wikidata.org/entity/Q7766860", + cordinates: "Point(-82.49151 27.91776)", + locationLabel: "The Stovall", + }, + { + location: "http://www.wikidata.org/entity/Q3495315", + cordinates: "Point(121.056 14.5801)", + locationLabel: "The St. Francis Shangri-La Place", + }, + { + location: "http://www.wikidata.org/entity/Q3522811", + cordinates: "Point(-95.3885 29.7071)", + locationLabel: "The Spires", + }, + { + location: "http://www.wikidata.org/entity/Q20715099", + cordinates: "Point(-73.961389 40.758519)", + locationLabel: "The Sovereign", + }, + { + location: "http://www.wikidata.org/entity/Q4863716", + cordinates: "Point(55.2638 25.184)", + locationLabel: "The Skyscraper", + }, + { + location: "http://www.wikidata.org/entity/Q7764524", + cordinates: "Point(-71.4213 41.8227)", + locationLabel: "The Sister Dominica Manor", + }, + { + location: "http://www.wikidata.org/entity/Q916673", + cordinates: "Point(-115.166 36.1067)", + locationLabel: "The Signature at MGM Grand", + }, + { + location: "http://www.wikidata.org/entity/Q7763967", + cordinates: "Point(-87.61669 41.8867)", + locationLabel: "The Shoreham", + }, + { + location: "http://www.wikidata.org/entity/Q2414200", + cordinates: "Point(-73.9726 40.7644)", + locationLabel: "The Sherry-Netherland", + }, + { + location: "http://www.wikidata.org/entity/Q18536", + cordinates: "Point(-0.086666666 51.504444444)", + locationLabel: "The Shard", + height: "306", + numberOfElevators: "44", + }, + { + location: "http://www.wikidata.org/entity/Q2436539", + cordinates: "Point(121.021192 14.555006)", + locationLabel: "The Shang Grand Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2414168", + cordinates: "Point(11.5735 48.1319)", + locationLabel: "The Seven", + }, + { + location: "http://www.wikidata.org/entity/Q7763406", + cordinates: "Point(-80.128782 25.795988)", + locationLabel: "The Setai Miami Beach", + }, + { + location: "http://www.wikidata.org/entity/Q11306560", + cordinates: "Point(136.912639 35.216467)", + locationLabel: "The Scene Johoku", + }, + { + location: "http://www.wikidata.org/entity/Q4640138", + cordinates: "Point(-0.081453 51.513258)", + locationLabel: "The Scalpel", + }, + { + location: "http://www.wikidata.org/entity/Q1319147", + cordinates: "Point(-73.975 40.778)", + locationLabel: "The San Remo", + }, + { + location: "http://www.wikidata.org/entity/Q3522590", + cordinates: "Point(103.852794444 1.281102777)", + locationLabel: "The Sail @ Marina Bay", + }, + { + location: "http://www.wikidata.org/entity/Q2376507", + cordinates: "Point(100.51078796 13.72102356)", + locationLabel: "The River South Tower", + height: "258", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q7760273", + cordinates: "Point(-75.164722222 39.951388888)", + locationLabel: "The Residences at The Ritz-Carlton", + }, + { + location: "http://www.wikidata.org/entity/Q21619249", + cordinates: "Point(121.021 14.5511)", + locationLabel: "The Residences at Greenbelt – Laguna Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2383368", + cordinates: "Point(-71.415277777 41.825)", + locationLabel: "The Residences Providence", + }, + { + location: "http://www.wikidata.org/entity/Q21016121", + cordinates: "Point(-111.890216 40.767582)", + locationLabel: "The Regent", + }, + { + location: "http://www.wikidata.org/entity/Q38251198", + cordinates: "Point(106.79365 -6.10557)", + locationLabel: "The Regatta Jakarta", + }, + { + location: "http://www.wikidata.org/entity/Q2401375", + cordinates: "Point(4.489167 51.917222)", + locationLabel: "The Red Apple", + }, + { + location: "http://www.wikidata.org/entity/Q7757592", + cordinates: "Point(-122.91 49.2041)", + locationLabel: "The Point, New Westminster", + }, + { + location: "http://www.wikidata.org/entity/Q7757213", + cordinates: "Point(103.841388888 1.276666666)", + locationLabel: "The Pinnacle@Duxton", + height: "156", + numberOfElevators: "35", + }, + { + location: "http://www.wikidata.org/entity/Q55642324", + cordinates: "Point(36.81805556 -1.29666667)", + locationLabel: "The Pinnacle (Nairobi)", + }, + { + location: "http://www.wikidata.org/entity/Q7757214", + cordinates: "Point(-84.3618 33.8503)", + locationLabel: "The Pinnacle", + }, + { + location: "http://www.wikidata.org/entity/Q3557610", + cordinates: "Point(-81.6548 30.3188)", + locationLabel: "The Peninsula at St. Johns Center", + }, + { + location: "http://www.wikidata.org/entity/Q3522204", + cordinates: "Point(139.761 35.6747)", + locationLabel: "The Peninsula Tokyo", + }, + { + location: "http://www.wikidata.org/entity/Q2413390", + cordinates: "Point(-73.97541667 40.76175)", + locationLabel: "The Peninsula New York", + }, + { + location: "http://www.wikidata.org/entity/Q2413390", + cordinates: "Point(-73.975039 40.761544)", + locationLabel: "The Peninsula New York", + }, + { + location: "http://www.wikidata.org/entity/Q14874903", + cordinates: "Point(-113.529 53.5406)", + locationLabel: "The Pearl", + }, + { + location: "http://www.wikidata.org/entity/Q12521285", + cordinates: "Point(151.203 -33.8802)", + locationLabel: "The Peak Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q3522110", + cordinates: "Point(-81.4685 28.4275)", + locationLabel: "The Peabody Orlando", + }, + { + location: "http://www.wikidata.org/entity/Q2667628", + cordinates: "Point(-87.6147 41.8857)", + locationLabel: "The Parkshore", + }, + { + location: "http://www.wikidata.org/entity/Q7756144", + cordinates: "Point(-79.6524 43.604)", + locationLabel: "The Park Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q18207985", + cordinates: "Point(113.560719444 22.143677777)", + locationLabel: "The Parisian", + }, + { + location: "http://www.wikidata.org/entity/Q7756087", + cordinates: "Point(-84.3675 33.8512)", + locationLabel: "The Paramount at Buckhead", + }, + { + location: "http://www.wikidata.org/entity/Q7756001", + cordinates: "Point(100.542 13.6716)", + locationLabel: "The Pano", + }, + { + location: "http://www.wikidata.org/entity/Q7755983", + cordinates: "Point(103.85879 1.29225)", + locationLabel: "The Pan Pacific Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q7755954", + cordinates: "Point(55.146944444 25.072222222)", + locationLabel: "The Palladium", + }, + { + location: "http://www.wikidata.org/entity/Q1514587", + cordinates: "Point(-115.168 36.1244)", + locationLabel: "The Palazzo", + height: "196", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q1663698", + cordinates: "Point(-79.4733 43.6312)", + locationLabel: "The Palace Pier", + height: "138", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q95158872", + cordinates: "Point(174.76795 -36.84566)", + locationLabel: "The Pacifica", + }, + { + location: "http://www.wikidata.org/entity/Q2285176", + cordinates: "Point(-73.9926 40.7584)", + locationLabel: "The Orion", + }, + { + location: "http://www.wikidata.org/entity/Q14874468", + cordinates: "Point(103.832 1.30417)", + locationLabel: "The Orchard Residences", + }, + { + location: "http://www.wikidata.org/entity/Q7755241", + cordinates: "Point(153.432 -28.0307)", + locationLabel: "The Oracle", + }, + { + location: "http://www.wikidata.org/entity/Q24514680", + cordinates: "Point(-97.74952 30.265311)", + locationLabel: "The Northshore", + }, + { + location: "http://www.wikidata.org/entity/Q83182129", + cordinates: "Point(-87.58472222 41.80444444)", + locationLabel: "The Narragansett (Chicago)", + }, + { + location: "http://www.wikidata.org/entity/Q7752114", + cordinates: "Point(-87.64231 41.89587)", + locationLabel: "The Montgomery", + }, + { + location: "http://www.wikidata.org/entity/Q7751979", + cordinates: "Point(-96.7947 32.8083)", + locationLabel: "The Mondrian", + }, + { + location: "http://www.wikidata.org/entity/Q7751892", + cordinates: "Point(-87.9149 43.0453)", + locationLabel: "The Moderne", + }, + { + location: "http://www.wikidata.org/entity/Q16901541", + cordinates: "Point(-73.9663 40.8524)", + locationLabel: "The Modern (building)", + }, + { + location: "http://www.wikidata.org/entity/Q7751158", + cordinates: "Point(-79.3819 43.661)", + locationLabel: "The Met Condos", + }, + { + location: "http://www.wikidata.org/entity/Q1426419", + cordinates: "Point(100.53413889 13.72202778)", + locationLabel: "The Met", + }, + { + location: "http://www.wikidata.org/entity/Q7751117", + cordinates: "Point(114.126 22.2832)", + locationLabel: "The Merton", + }, + { + location: "http://www.wikidata.org/entity/Q7751036", + cordinates: "Point(-95.4678 29.7326)", + locationLabel: "The Mercer West Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7750950", + cordinates: "Point(-123.1236 49.2879)", + locationLabel: "The Melville", + }, + { + location: "http://www.wikidata.org/entity/Q1983016", + cordinates: "Point(114.173888888 22.2975)", + locationLabel: "The Masterpiece", + }, + { + location: "http://www.wikidata.org/entity/Q7750459", + cordinates: "Point(-115.182362 36.108633)", + locationLabel: "The Martin", + }, + { + location: "http://www.wikidata.org/entity/Q7750369", + cordinates: "Point(-80.189 25.7624)", + locationLabel: "The Mark on Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q7750336", + cordinates: "Point(-117.156944444 32.711111111)", + locationLabel: "The Mark", + }, + { + location: "http://www.wikidata.org/entity/Q1808317", + cordinates: "Point(55.14743 25.08798)", + locationLabel: "The Marina Torch", + height: "352", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q7748304", + cordinates: "Point(121.42575 31.21267)", + locationLabel: "The Longemont Shanghai", + }, + { + location: "http://www.wikidata.org/entity/Q7747995", + cordinates: "Point(-80.189888 25.775876)", + locationLabel: "The Loft 2", + }, + { + location: "http://www.wikidata.org/entity/Q7746901", + cordinates: "Point(114.184 22.2761)", + locationLabel: "The Leighton Hill", + }, + { + location: "http://www.wikidata.org/entity/Q1415203", + cordinates: "Point(-73.9837 40.75)", + locationLabel: "The Langham", + }, + { + location: "http://www.wikidata.org/entity/Q7745429", + cordinates: "Point(-115.155808 36.133051)", + locationLabel: "The Landmark Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q1735111", + cordinates: "Point(54.350683 24.484769)", + locationLabel: "The Landmark", + height: "324", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q28410912", + cordinates: "Point(120.643847 24.16405)", + locationLabel: "The Landmark", + }, + { + location: "http://www.wikidata.org/entity/Q11404884", + cordinates: "Point(136.902111 35.172944)", + locationLabel: "The Juroku Bank Nagoya Building", + }, + { + location: "http://www.wikidata.org/entity/Q55635321", + cordinates: "Point(106.810729 -6.219711)", + locationLabel: "The Jakarta Office Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3521382", + cordinates: "Point(-122.391 37.7894)", + locationLabel: "The Infinity", + }, + { + location: "http://www.wikidata.org/entity/Q1264855", + cordinates: "Point(55.279019 25.207117)", + locationLabel: "The Index", + height: "328", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q30766111", + cordinates: "Point(-97.75124 30.267917)", + locationLabel: "The Independent", + }, + { + location: "http://www.wikidata.org/entity/Q16901495", + cordinates: "Point(72.8129 18.9709)", + locationLabel: "The Imperial 3", + }, + { + location: "http://www.wikidata.org/entity/Q2613912", + cordinates: "Point(-95.418 29.7469)", + locationLabel: "The Huntingdon", + }, + { + location: "http://www.wikidata.org/entity/Q14684115", + cordinates: "Point(-122.405 37.7859)", + locationLabel: "The Humboldt Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q7739508", + cordinates: "Point(-0.090573 51.5199)", + locationLabel: "The Heron", + }, + { + location: "http://www.wikidata.org/entity/Q376658", + cordinates: "Point(-87.625597 41.884019)", + locationLabel: "The Heritage at Millennium Park", + }, + { + location: "http://www.wikidata.org/entity/Q2912992", + cordinates: "Point(-115.173611 36.108681)", + locationLabel: "The Harmon", + }, + { + location: "http://www.wikidata.org/entity/Q591683", + cordinates: "Point(114.193055555 22.303333333)", + locationLabel: "The Harbourfront Landmark", + }, + { + location: "http://www.wikidata.org/entity/Q7738602", + cordinates: "Point(-118.252805555 34.045083333)", + locationLabel: "The Haas Building", + }, + { + location: "http://www.wikidata.org/entity/Q7737515", + cordinates: "Point(114.261 22.3087)", + locationLabel: "The Grandiose", + }, + { + location: "http://www.wikidata.org/entity/Q7737509", + cordinates: "Point(-117.170555555 32.717777777)", + locationLabel: "The Grande at Santa Fe Place", + }, + { + location: "http://www.wikidata.org/entity/Q3987343", + cordinates: "Point(-80.1862 25.7915)", + locationLabel: "The Grand Doubletree", + }, + { + location: "http://www.wikidata.org/entity/Q7734920", + cordinates: "Point(55.2665 25.1868)", + locationLabel: "The Forum", + }, + { + location: "http://www.wikidata.org/entity/Q866660", + cordinates: "Point(-87.627103 41.894414)", + locationLabel: "The Fordham", + }, + { + location: "http://www.wikidata.org/entity/Q7732743", + cordinates: "Point(114.1841 22.2823)", + locationLabel: "The Excelsior", + }, + { + location: "http://www.wikidata.org/entity/Q2671628", + cordinates: "Point(-73.990067 40.748639)", + locationLabel: "The Epic", + }, + { + location: "http://www.wikidata.org/entity/Q850377", + cordinates: "Point(-73.967406 40.788361)", + locationLabel: "The El Dorado", + }, + { + location: "http://www.wikidata.org/entity/Q278380", + cordinates: "Point(-115.158889 36.1375)", + locationLabel: "The Drew Las Vegas", + height: "224", + numberOfElevators: "48", + }, + { + location: "http://www.wikidata.org/entity/Q7847781", + cordinates: "Point(-74.0053 40.7255)", + locationLabel: "The Dominick", + }, + { + location: "http://www.wikidata.org/entity/Q7730594", + cordinates: "Point(55.1382 25.0625)", + locationLabel: "The Dome", + }, + { + location: "http://www.wikidata.org/entity/Q1136654", + cordinates: "Point(-115.1427 36.1695)", + locationLabel: "The D Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q7728492", + cordinates: "Point(-104.996944444 39.745833333)", + locationLabel: "The Curtis", + }, + { + location: "http://www.wikidata.org/entity/Q13668711", + cordinates: "Point(49.859255555 40.373947222)", + locationLabel: "The Crescent Development project", + }, + { + location: "http://www.wikidata.org/entity/Q7727609", + cordinates: "Point(-73.9726 40.7465)", + locationLabel: "The Corinthian", + }, + { + location: "http://www.wikidata.org/entity/Q7727475", + cordinates: "Point(-73.989014 40.74839)", + locationLabel: "The Continental NYC", + }, + { + location: "http://www.wikidata.org/entity/Q7727359", + cordinates: "Point(-80.19023 25.77558)", + locationLabel: "The Congress Building", + }, + { + location: "http://www.wikidata.org/entity/Q7727300", + cordinates: "Point(103.862 1.30106)", + locationLabel: "The Concourse", + }, + { + location: "http://www.wikidata.org/entity/Q2788256", + cordinates: "Point(-87.6246 41.8677)", + locationLabel: "The Columbian", + }, + { + location: "http://www.wikidata.org/entity/Q2387082", + cordinates: "Point(-87.626306 41.897297)", + locationLabel: "The Clare at Water Tower", + }, + { + location: "http://www.wikidata.org/entity/Q25388662", + cordinates: "Point(106.816506 -6.210624)", + locationLabel: "The City Center @ Batavia City", + }, + { + location: "http://www.wikidata.org/entity/Q7721952", + cordinates: "Point(-118.414 34.0563)", + locationLabel: "The Century", + }, + { + location: "http://www.wikidata.org/entity/Q7721953", + cordinates: "Point(-73.980278 40.77)", + locationLabel: "The Century", + }, + { + location: "http://www.wikidata.org/entity/Q7721940", + cordinates: "Point(114.155 22.2807)", + locationLabel: "The Centrium", + }, + { + location: "http://www.wikidata.org/entity/Q130478", + cordinates: "Point(114.154444444 22.284722222)", + locationLabel: "The Center", + height: "346", + numberOfElevators: "41", + }, + { + location: "http://www.wikidata.org/entity/Q3520207", + cordinates: "Point(-93.2631 44.9819)", + locationLabel: "The Carlyle", + }, + { + location: "http://www.wikidata.org/entity/Q7721379", + cordinates: "Point(-81.658056 30.328333)", + locationLabel: "The Carling", + }, + { + location: "http://www.wikidata.org/entity/Q1229086", + cordinates: "Point(-114.062222222 51.047777777)", + locationLabel: "The Bow", + }, + { + location: "http://www.wikidata.org/entity/Q7718523", + cordinates: "Point(-0.966431 51.4556)", + locationLabel: "The Blade", + }, + { + location: "http://www.wikidata.org/entity/Q7718515", + cordinates: "Point(-80.133471 25.778496)", + locationLabel: "The Blackstone", + }, + { + location: "http://www.wikidata.org/entity/Q3177231", + cordinates: "Point(114.134 22.2856)", + locationLabel: "The Belcher's", + }, + { + location: "http://www.wikidata.org/entity/Q3297809", + cordinates: "Point(-97.7445 30.2648)", + locationLabel: "The Austonian", + }, + { + location: "http://www.wikidata.org/entity/Q30753820", + cordinates: "Point(103.763083333 1.473972222)", + locationLabel: "The Astaka", + }, + { + location: "http://www.wikidata.org/entity/Q7714665", + cordinates: "Point(-97.7458 30.2638)", + locationLabel: "The Ashton", + }, + { + location: "http://www.wikidata.org/entity/Q2743773", + cordinates: "Point(114.163 22.3036)", + locationLabel: "The Arch", + }, + { + location: "http://www.wikidata.org/entity/Q1364295", + cordinates: "Point(-73.9825 40.78)", + locationLabel: "The Ansonia", + }, + { + location: "http://www.wikidata.org/entity/Q7712967", + cordinates: "Point(-82.4911 27.9106)", + locationLabel: "The Alagon on Bayshore", + }, + { + location: "http://www.wikidata.org/entity/Q1567534", + cordinates: "Point(-79.3803 43.6497)", + locationLabel: "The Adelaide Hotel Toronto", + height: "277", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q7712376", + cordinates: "Point(55.27623 25.200909)", + locationLabel: "The Address the BLVD", + }, + { + location: "http://www.wikidata.org/entity/Q7711913", + cordinates: "Point(88.34975 22.54835)", + locationLabel: "The 42", + }, + { + location: "http://www.wikidata.org/entity/Q2677763", + cordinates: "Point(-96.798081 32.782006)", + locationLabel: "Thanksgiving Tower", + }, + { + location: "http://www.wikidata.org/entity/Q30686870", + cordinates: "Point(106.82263 -6.19914)", + locationLabel: "Thamrin Nine", + }, + { + location: "http://www.wikidata.org/entity/Q7708506", + cordinates: "Point(-71.4091 41.825)", + locationLabel: "Textron Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7708453", + cordinates: "Point(-118.250278 34.040833)", + locationLabel: "Textile Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q4985118", + cordinates: "Point(-115.190833333 36.197777777)", + locationLabel: "Texas Station", + }, + { + location: "http://www.wikidata.org/entity/Q4985118", + cordinates: "Point(-115.191 36.1978)", + locationLabel: "Texas Station", + }, + { + location: "http://www.wikidata.org/entity/Q7707598", + cordinates: "Point(-95.3619 29.7577)", + locationLabel: "Texas Company Annex", + }, + { + location: "http://www.wikidata.org/entity/Q7707296", + cordinates: "Point(-90.0679 29.9485)", + locationLabel: "Texaco Center", + }, + { + location: "http://www.wikidata.org/entity/Q2571475", + cordinates: "Point(8.93583 44.4056)", + locationLabel: "Terrazza Martini Tower", + }, + { + location: "http://www.wikidata.org/entity/Q598604", + cordinates: "Point(-81.693888888 41.498333333)", + locationLabel: "Terminal Tower", + height: "215.8", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q7701421", + cordinates: "Point(-80.1833 25.7694)", + locationLabel: "Tequesta Point", + }, + { + location: "http://www.wikidata.org/entity/Q3517944", + cordinates: "Point(-80.19 25.7846)", + locationLabel: "Ten Museum Park", + }, + { + location: "http://www.wikidata.org/entity/Q7698491", + cordinates: "Point(-79.3814 43.6512)", + locationLabel: "Temple Building", + }, + { + location: "http://www.wikidata.org/entity/Q2402458", + cordinates: "Point(-79.3809 43.6433)", + locationLabel: "Telus Tower", + height: "119", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q16255317", + cordinates: "Point(-114.0636 51.0468)", + locationLabel: "Telus Sky", + }, + { + location: "http://www.wikidata.org/entity/Q17277892", + cordinates: "Point(18.00472222 59.29833333)", + locationLabel: "Tellus Towers", + }, + { + location: "http://www.wikidata.org/entity/Q3995301", + cordinates: "Point(14.2797 40.8582)", + locationLabel: "Telecom Italia Tower", + height: "129", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q11278723", + cordinates: "Point(139.779889 35.617083)", + locationLabel: "Telecom Center", + }, + { + location: "http://www.wikidata.org/entity/Q7695553", + cordinates: "Point(34.798058 32.074103)", + locationLabel: "Tel Aviv Towers", + }, + { + location: "http://www.wikidata.org/entity/Q6077513", + cordinates: "Point(29.0089 41.0819)", + locationLabel: "Tekfen Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2037099", + cordinates: "Point(51.3991446 35.7426808)", + locationLabel: "Tehran International Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7694747", + cordinates: "Point(-113.493 53.5429)", + locationLabel: "Tegler Building", + }, + { + location: "http://www.wikidata.org/entity/Q830533", + cordinates: "Point(8.673055555 50.110555555)", + locationLabel: "TaunusTurm", + }, + { + location: "http://www.wikidata.org/entity/Q14693082", + cordinates: "Point(-93.2761 44.9736)", + locationLabel: "Target Plaza South", + }, + { + location: "http://www.wikidata.org/entity/Q30920691", + cordinates: "Point(121.57042 25.03854)", + locationLabel: "Tao Zhu Yin Yuan", + }, + { + location: "http://www.wikidata.org/entity/Q7681718", + cordinates: "Point(-82.454 27.941)", + locationLabel: "Tampa Marriott Waterside", + }, + { + location: "http://www.wikidata.org/entity/Q2391485", + cordinates: "Point(54.41166667 24.50472222)", + locationLabel: "Tameer Commercial Tower", + height: "300", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q15933302", + cordinates: "Point(121.53055556 25.01722222)", + locationLabel: "Taiwan Power Building", + }, + { + location: "http://www.wikidata.org/entity/Q10914092", + cordinates: "Point(121.561111111 25.034444444)", + locationLabel: "Taipei World Trade Centre International Trade Building", + }, + { + location: "http://www.wikidata.org/entity/Q10914092", + cordinates: "Point(121.56111111 25.03416667)", + locationLabel: "Taipei World Trade Centre International Trade Building", + }, + { + location: "http://www.wikidata.org/entity/Q1495752", + cordinates: "Point(121.5127 25.0487)", + locationLabel: "Taipei Twin Towers", + }, + { + location: "http://www.wikidata.org/entity/Q47528623", + cordinates: "Point(121.56605556 25.0365)", + locationLabel: "Taipei Sky Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24840610", + cordinates: "Point(121.5669 25.0344)", + locationLabel: "Taipei Nan Shan Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q83101", + cordinates: "Point(121.565 25.033611111)", + locationLabel: "Taipei 101", + height: "2", + numberOfElevators: "62", + }, + { + location: "http://www.wikidata.org/entity/Q83101", + cordinates: "Point(121.565 25.033611111)", + locationLabel: "Taipei 101", + height: "508", + numberOfElevators: "62", + }, + { + location: "http://www.wikidata.org/entity/Q104830683", + cordinates: "Point(120.63564 24.16218)", + locationLabel: "Taichung Time Square CBD", + }, + { + location: "http://www.wikidata.org/entity/Q30943611", + cordinates: "Point(120.636492 24.164454)", + locationLabel: "Taichung Commercial Bank Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q17040597", + cordinates: "Point(-87.632133333 41.882047222)", + locationLabel: "Tacoma Building", + }, + { + location: "http://www.wikidata.org/entity/Q11250380", + cordinates: "Point(135.531194 34.693028)", + locationLabel: "TWIN21", + }, + { + location: "http://www.wikidata.org/entity/Q7672535", + cordinates: "Point(-84.3878 33.7653)", + locationLabel: "TWELVE Centennial Park", + }, + { + location: "http://www.wikidata.org/entity/Q2384310", + cordinates: "Point(-79.390221 43.646835)", + locationLabel: "TIFF Bell Lightbox", + height: "157", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q2383874", + cordinates: "Point(-113.493055555 53.543611111)", + locationLabel: "TD Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7669907", + cordinates: "Point(-123.119 49.2827)", + locationLabel: "TD Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2383877", + cordinates: "Point(-114.068888888 51.046944444)", + locationLabel: "TD Canada Trust Tower", + height: "162", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q3499178", + cordinates: "Point(-118.263 34.0467)", + locationLabel: "TCW Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7667715", + cordinates: "Point(-97.327778 32.745944)", + locationLabel: "T&P Station", + }, + { + location: "http://www.wikidata.org/entity/Q5338065", + cordinates: "Point(-46.62833333 -23.5425)", + locationLabel: "São Vito Building", + }, + { + location: "http://www.wikidata.org/entity/Q3487044", + cordinates: "Point(-117.158 32.7183)", + locationLabel: "Symphony Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7661149", + cordinates: "Point(134.047 34.3524)", + locationLabel: "Symbol Tower", + height: "151.3", + numberOfElevators: "33", + }, + { + location: "http://www.wikidata.org/entity/Q1343055", + cordinates: "Point(103.853 1.29354)", + locationLabel: "Swissôtel The Stamford", + height: "226", + numberOfElevators: "79", + }, + { + location: "http://www.wikidata.org/entity/Q1630504", + cordinates: "Point(24.761511 59.432911)", + locationLabel: "Swissôtel Tallinn", + }, + { + location: "http://www.wikidata.org/entity/Q3277027", + cordinates: "Point(120.673 31.318)", + locationLabel: "Suzhou Zhongnan Center", + }, + { + location: "http://www.wikidata.org/entity/Q617082", + cordinates: "Point(120.7128 31.3241)", + locationLabel: "Suzhou IFS", + height: "450", + numberOfElevators: "62", + }, + { + location: "http://www.wikidata.org/entity/Q7643500", + cordinates: "Point(-81.689444 41.502361)", + locationLabel: "Superior Building", + }, + { + location: "http://www.wikidata.org/entity/Q602942", + cordinates: "Point(139.717777777 35.729583333)", + locationLabel: "Sunshine 60", + height: "239.7", + numberOfElevators: "40", + }, + { + location: "http://www.wikidata.org/entity/Q21609098", + cordinates: "Point(153.4196 -27.9742)", + locationLabel: "Sundale Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q12517722", + cordinates: "Point(151.2064 -33.8641)", + locationLabel: "Suncorp Place", + }, + { + location: "http://www.wikidata.org/entity/Q7639074", + cordinates: "Point(153.023611111 -27.4675)", + locationLabel: "Suncorp Metway Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1755735", + cordinates: "Point(-114.063 51.0481)", + locationLabel: "Suncor Energy Centre", + }, + { + location: "http://www.wikidata.org/entity/Q19817564", + cordinates: "Point(-81.6599 30.3259)", + locationLabel: "SunTrust Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1706824", + cordinates: "Point(-84.387 33.763)", + locationLabel: "SunTrust Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7638167", + cordinates: "Point(-80.1888 25.774)", + locationLabel: "SunTrust International Center", + }, + { + location: "http://www.wikidata.org/entity/Q3503723", + cordinates: "Point(-82.4561 27.9469)", + locationLabel: "SunTrust Financial Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3503721", + cordinates: "Point(-81.3799 28.5398)", + locationLabel: "SunTrust Center", + }, + { + location: "http://www.wikidata.org/entity/Q602277", + cordinates: "Point(-118.417 34.0587)", + locationLabel: "SunAmerica Center", + }, + { + location: "http://www.wikidata.org/entity/Q650762", + cordinates: "Point(-123.108 49.281)", + locationLabel: "Sun Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7638395", + cordinates: "Point(-79.3855 43.6479)", + locationLabel: "Sun Life Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3579113", + cordinates: "Point(-73.5702 45.5002)", + locationLabel: "Sun Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q849373", + cordinates: "Point(114.1769466 22.2802237)", + locationLabel: "Sun Hung Kai Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7637844", + cordinates: "Point(121.046 14.5866)", + locationLabel: "Summit One Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14711344", + cordinates: "Point(-102.08 31.9995)", + locationLabel: "Summit Building (Midland)", + }, + { + location: "http://www.wikidata.org/entity/Q17349580", + cordinates: "Point(139.7623 35.6849)", + locationLabel: "Sumitomo Mitsui Banking Corporation Head Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q11354240", + cordinates: "Point(136.899428 35.168881)", + locationLabel: "Sumitomo Mitsui Bank Nagoya Building", + }, + { + location: "http://www.wikidata.org/entity/Q11381741", + cordinates: "Point(139.708928 35.657958)", + locationLabel: "Sumitomo Fudosan Shibuya First Tower", + }, + { + location: "http://www.wikidata.org/entity/Q23666199", + cordinates: "Point(139.737661 35.6646)", + locationLabel: "Sumitomo Fudosan Roppongi Grand Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11381742", + cordinates: "Point(139.69575 35.69436111)", + locationLabel: "Sumitomo Fudosan Nishishinjuku Building", + }, + { + location: "http://www.wikidata.org/entity/Q11381738", + cordinates: "Point(139.74227778 35.64377778)", + locationLabel: "Sumitomo Fudosan Mitsui Twin Building", + }, + { + location: "http://www.wikidata.org/entity/Q9348100", + cordinates: "Point(140.042 35.6541)", + locationLabel: "Sumitomo Chemical Engineering Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q1641386", + cordinates: "Point(55.148922222 25.089502777)", + locationLabel: "Sulafa Tower", + height: "285", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q7623091", + cordinates: "Point(-87.6184 41.89219)", + locationLabel: "Streeter Place", + }, + { + location: "http://www.wikidata.org/entity/Q845846", + cordinates: "Point(-115.155388888 36.147386111)", + locationLabel: "Stratosphere Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q2284719", + cordinates: "Point(-0.099722222 51.492777777)", + locationLabel: "Strata SE1", + }, + { + location: "http://www.wikidata.org/entity/Q17332590", + cordinates: "Point(-73.9965 40.7938)", + locationLabel: "Stonehenge", + }, + { + location: "http://www.wikidata.org/entity/Q2350561", + cordinates: "Point(-0.086666666 51.514444444)", + locationLabel: "Stock Exchange Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7615529", + cordinates: "Point(-122.401 37.7913)", + locationLabel: "Stevenson Place", + }, + { + location: "http://www.wikidata.org/entity/Q7611475", + cordinates: "Point(-79.3816 43.651)", + locationLabel: "Sterling Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1810578", + cordinates: "Point(-90.05 35.144694444)", + locationLabel: "Sterick Building", + }, + { + location: "http://www.wikidata.org/entity/Q7610164", + cordinates: "Point(-80.1967 25.7756)", + locationLabel: "Stephen P. Clark Government Center", + }, + { + location: "http://www.wikidata.org/entity/Q7604256", + cordinates: "Point(-113.491 53.5478)", + locationLabel: "Station Lands", + }, + { + location: "http://www.wikidata.org/entity/Q12060043", + cordinates: "Point(-84.3906 33.7542)", + locationLabel: "State of Georgia Building", + }, + { + location: "http://www.wikidata.org/entity/Q7603586", + cordinates: "Point(-76.150833 43.050278)", + locationLabel: "State Tower Building", + }, + { + location: "http://www.wikidata.org/entity/Q7603550", + cordinates: "Point(-71.0542 42.3562)", + locationLabel: "State Street Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q7603395", + cordinates: "Point(153.022 -27.4689)", + locationLabel: "State Law Building", + }, + { + location: "http://www.wikidata.org/entity/Q7603387", + cordinates: "Point(174.776 -41.2867)", + locationLabel: "State Insurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q7603216", + cordinates: "Point(-88.9925 40.48)", + locationLabel: "State Farm Downtown Building", + }, + { + location: "http://www.wikidata.org/entity/Q3497287", + cordinates: "Point(57.501388888 -20.161944444)", + locationLabel: "State Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q202599", + cordinates: "Point(-115.165833333 36.133611111)", + locationLabel: "Stardust Resort and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q21092654", + cordinates: "Point(-113.496111111 53.545)", + locationLabel: "Stantec Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7598251", + cordinates: "Point(-122.678 45.5169)", + locationLabel: "Standard Insurance Center", + }, + { + location: "http://www.wikidata.org/entity/Q7598197", + cordinates: "Point(114.159 22.2801)", + locationLabel: "Standard Chartered Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q7598188", + cordinates: "Point(-81.6954 41.5008)", + locationLabel: "Standard Building", + }, + { + location: "http://www.wikidata.org/entity/Q7598177", + cordinates: "Point(28.039383 -26.206594)", + locationLabel: "Standard Bank Centre", + height: "139", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q2329263", + cordinates: "Point(19.01333333 50.26341667)", + locationLabel: "Stalexport Skyscrapers", + }, + { + location: "http://www.wikidata.org/entity/Q2571995", + cordinates: "Point(5.078378 51.560353)", + locationLabel: "StadsHeer", + }, + { + location: "http://www.wikidata.org/entity/Q7591596", + cordinates: "Point(-122.401 37.7863)", + locationLabel: "St. Regis Museum Tower", + }, + { + location: "http://www.wikidata.org/entity/Q19817578", + cordinates: "Point(-87.617222 41.887222)", + locationLabel: "St. Regis Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q2948552", + cordinates: "Point(-74.0086 40.7111)", + locationLabel: "St. Paul Building", + }, + { + location: "http://www.wikidata.org/entity/Q7588299", + cordinates: "Point(-0.081888888 51.5145)", + locationLabel: "St. Helen's", + }, + { + location: "http://www.wikidata.org/entity/Q7595195", + cordinates: "Point(-1.46828 53.3789)", + locationLabel: "St Pauls Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7594226", + cordinates: "Point(115.8593 -31.9551)", + locationLabel: "St Martins Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1469829", + cordinates: "Point(-0.127222222 51.485)", + locationLabel: "St George Wharf Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7586916", + cordinates: "Point(-4.25441 55.8645)", + locationLabel: "St Andrew House", + }, + { + location: "http://www.wikidata.org/entity/Q691263", + cordinates: "Point(47.988659 29.384857)", + locationLabel: "Square Capital Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7581168", + cordinates: "Point(-73.9858 40.7535)", + locationLabel: "Springs Mills Building", + }, + { + location: "http://www.wikidata.org/entity/Q7581153", + cordinates: "Point(103.8463 1.2751)", + locationLabel: "Springleaf Tower", + }, + { + location: "http://www.wikidata.org/entity/Q18392459", + cordinates: "Point(102.72 25.04)", + locationLabel: "Spring City 66", + }, + { + location: "http://www.wikidata.org/entity/Q7580361", + cordinates: "Point(-97.7539 30.2688)", + locationLabel: "Spring", + }, + { + location: "http://www.wikidata.org/entity/Q7577796", + cordinates: "Point(-84.3846 33.7782)", + locationLabel: "Spire", + }, + { + location: "http://www.wikidata.org/entity/Q7577796", + cordinates: "Point(-84.3849 33.7781)", + locationLabel: "Spire", + }, + { + location: "http://www.wikidata.org/entity/Q7577797", + cordinates: "Point(-104.996 39.7446)", + locationLabel: "Spire", + }, + { + location: "http://www.wikidata.org/entity/Q7577110", + cordinates: "Point(16.60611111 49.18222222)", + locationLabel: "Spielberk Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1292228", + cordinates: "Point(20.999166666 52.235)", + locationLabel: "Spektrum", + }, + { + location: "http://www.wikidata.org/entity/Q3498815", + cordinates: "Point(-122.3942 37.7934)", + locationLabel: "Spear Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1353503", + cordinates: "Point(7.471666666 51.359722222)", + locationLabel: "Sparkasse Hagen office tower", + height: "98", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q179473", + cordinates: "Point(54.388663888 24.502127777)", + locationLabel: "Sowwah Square Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q5556143", + cordinates: "Point(-0.086444444 51.504527777)", + locationLabel: "Southwark Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7571085", + cordinates: "Point(-96.79532444 32.76676861)", + locationLabel: "Southside on Lamar", + }, + { + location: "http://www.wikidata.org/entity/Q18158264", + cordinates: "Point(-83.1914 42.1885)", + locationLabel: "Southgate Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7570774", + cordinates: "Point(-83.2453 42.4766)", + locationLabel: "Southfield Town Center", + }, + { + location: "http://www.wikidata.org/entity/Q11304620", + cordinates: "Point(139.337611 35.654639)", + locationLabel: "Southern Sky Tower Hachioji", + }, + { + location: "http://www.wikidata.org/entity/Q7570276", + cordinates: "Point(-122.395 37.794)", + locationLabel: "Southern Pacific Building", + }, + { + location: "http://www.wikidata.org/entity/Q14715117", + cordinates: "Point(-72.92361111 41.30916667)", + locationLabel: + "Southern New England Telephone Company Administration Building", + }, + { + location: "http://www.wikidata.org/entity/Q7570086", + cordinates: "Point(28.0366 -26.2058)", + locationLabel: "Southern Life Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1749785", + cordinates: "Point(-80.18763889 25.77222222)", + locationLabel: "Southeast Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q1816400", + cordinates: "Point(4.33778 50.83806)", + locationLabel: "South Tower", + height: "150", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q7568549", + cordinates: "Point(-71.05497222 42.35158333)", + locationLabel: "South Station Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7568259", + cordinates: "Point(-80.134165 25.767269)", + locationLabel: "South Pointe Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1637090", + cordinates: "Point(-115.175 36.0114)", + locationLabel: "South Point Hotel, Casino & Spa", + }, + { + location: "http://www.wikidata.org/entity/Q11439969", + cordinates: "Point(135.496417 34.701722)", + locationLabel: "South Gate Building", + }, + { + location: "http://www.wikidata.org/entity/Q7567222", + cordinates: "Point(-74.0131 40.7009)", + locationLabel: "South Ferry Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q6411068", + cordinates: "Point(-0.107638888 51.507416666)", + locationLabel: "South Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1586256", + cordinates: "Point(117.196333 39.128754)", + locationLabel: "South Asian Gate", + }, + { + location: "http://www.wikidata.org/entity/Q59159622", + cordinates: "Point(18.421333333 -33.921972222)", + locationLabel: "South African Reserve Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q2887137", + cordinates: "Point(153.43 -28.0012)", + locationLabel: "Soul", + }, + { + location: "http://www.wikidata.org/entity/Q16340438", + cordinates: "Point(34.781861111 32.064088888)", + locationLabel: "Sonol Tower", + }, + { + location: "http://www.wikidata.org/entity/Q269261", + cordinates: "Point(139.69611111 35.69272222)", + locationLabel: "Sompo Japan Nipponkoa Insurance Head Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q632019", + cordinates: "Point(-73.9748 40.7639)", + locationLabel: "Solow Building", + height: "210", + numberOfElevators: "34", + }, + { + location: "http://www.wikidata.org/entity/Q11315389", + cordinates: "Point(139.700028 35.535083)", + locationLabel: "Solid Square", + }, + { + location: "http://www.wikidata.org/entity/Q7557556", + cordinates: "Point(-78.6842 35.8427)", + locationLabel: "Soleil Center", + }, + { + location: "http://www.wikidata.org/entity/Q7557553", + cordinates: "Point(153.032 -27.4623)", + locationLabel: "Soleil", + }, + { + location: "http://www.wikidata.org/entity/Q7555654", + cordinates: "Point(-81.37776 28.54075)", + locationLabel: "Solaire at the Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3488860", + cordinates: "Point(-73.981388888 40.755555555)", + locationLabel: "Sofitel New York Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7553765", + cordinates: "Point(-87.6276 41.8984)", + locationLabel: "Sofitel Chicago Water Tower", + }, + { + location: "http://www.wikidata.org/entity/Q23907605", + cordinates: "Point(-73.975925 40.750827777)", + locationLabel: "Socony-Mobil Building", + }, + { + location: "http://www.wikidata.org/entity/Q7552239", + cordinates: "Point(-81.694444 41.500556)", + locationLabel: "Society for Savings Building", + }, + { + location: "http://www.wikidata.org/entity/Q7548649", + cordinates: "Point(-1.898888888 52.484166666)", + locationLabel: "Snowhill", + }, + { + location: "http://www.wikidata.org/entity/Q1196348", + cordinates: "Point(-122.331730555 47.601925)", + locationLabel: "Smith Tower", + height: "159", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q28873234", + cordinates: "Point(103.8271984 1.2742749)", + locationLabel: "Skysuites @ Anson", + }, + { + location: "http://www.wikidata.org/entity/Q11311245", + cordinates: "Point(136.983653 35.302369)", + locationLabel: "Skystage 33", + }, + { + location: "http://www.wikidata.org/entity/Q166893", + cordinates: "Point(8.669166666 50.11)", + locationLabel: "Skyper", + height: "153.8", + numberOfElevators: "17", + }, + { + location: "http://www.wikidata.org/entity/Q15278137", + cordinates: "Point(72.8185115 19.0075626)", + locationLabel: "Skylink, Mumbai", + }, + { + location: "http://www.wikidata.org/entity/Q50220122", + cordinates: "Point(20.983685 52.229411)", + locationLabel: "Skyliner", + }, + { + location: "http://www.wikidata.org/entity/Q7537930", + cordinates: "Point(-80.19902 25.75257)", + locationLabel: "Skyline on Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q64854670", + cordinates: "Point(-73.944472222 40.747986111)", + locationLabel: "Skyline Tower (New York City)", + }, + { + location: "http://www.wikidata.org/entity/Q3995282", + cordinates: "Point(16.24536 39.31762)", + locationLabel: "Skyline Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7537890", + cordinates: "Point(153.033 -27.4629)", + locationLabel: "Skyline Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q28221132", + cordinates: "Point(28.9876 41.1019)", + locationLabel: "Skyland Istanbul", + }, + { + location: "http://www.wikidata.org/entity/Q7537692", + cordinates: "Point(-119.497 49.8962)", + locationLabel: "Skye at Waterscapes", + }, + { + location: "http://www.wikidata.org/entity/Q7537193", + cordinates: "Point(-82.460324 27.94988)", + locationLabel: "SkyPoint", + }, + { + location: "http://www.wikidata.org/entity/Q11311251", + cordinates: "Point(140.282 38.1383)", + locationLabel: "Sky Tower 41", + }, + { + location: "http://www.wikidata.org/entity/Q1435741", + cordinates: "Point(54.407514 24.495948)", + locationLabel: "Sky Tower", + height: "292", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q2740354", + cordinates: "Point(17.0175 51.093888888)", + locationLabel: "Sky Tower", + height: "212", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q5460511", + cordinates: "Point(26.103888888 44.478333333)", + locationLabel: "Sky Tower", + height: "137", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q7537460", + cordinates: "Point(-1.5434 53.80443)", + locationLabel: "Sky Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q28405790", + cordinates: "Point(23.3958 42.6464)", + locationLabel: "Sky Fort", + }, + { + location: "http://www.wikidata.org/entity/Q28873276", + cordinates: "Point(4.861156 45.75338)", + locationLabel: "Sky 56", + }, + { + location: "http://www.wikidata.org/entity/Q15106137", + cordinates: "Point(-73.998601 40.761435)", + locationLabel: "Sky", + height: "206", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q1032561", + cordinates: "Point(18.073611111 59.311944444)", + locationLabel: "Skatteskrapan", + }, + { + location: "http://www.wikidata.org/entity/Q2289545", + cordinates: "Point(117.66361111 39.00472222)", + locationLabel: "Sino-Steel Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7524806", + cordinates: "Point(114.182 22.2814)", + locationLabel: "Sino Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q651362", + cordinates: "Point(-74.01 40.709722222)", + locationLabel: "Singer Building", + }, + { + location: "http://www.wikidata.org/entity/Q7523040", + cordinates: "Point(103.852 1.2846)", + locationLabel: "Singapore Land Tower", + }, + { + location: "http://www.wikidata.org/entity/Q153625", + cordinates: "Point(-79.3812 43.652)", + locationLabel: "Simpson Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1762378", + cordinates: "Point(-79.3858 43.645)", + locationLabel: "Simcoe Place", + height: "148", + numberOfElevators: "17", + }, + { + location: "http://www.wikidata.org/entity/Q7516682", + cordinates: "Point(55.138355555 25.075211111)", + locationLabel: "Silverene", + }, + { + location: "http://www.wikidata.org/entity/Q2286559", + cordinates: "Point(54.359563 24.492558)", + locationLabel: "Silver Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7515493", + cordinates: "Point(-76.5889 39.2719)", + locationLabel: "Silo Point", + }, + { + location: "http://www.wikidata.org/entity/Q247531", + cordinates: "Point(8.669438888 50.109719444)", + locationLabel: "Silberturm", + height: "166.3", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q7512848", + cordinates: "Point(55.267647222 25.184786111)", + locationLabel: "Signature Towers", + }, + { + location: "http://www.wikidata.org/entity/Q17055899", + cordinates: "Point(106.8098 -6.2262)", + locationLabel: "Signature Tower Jakarta", + }, + { + location: "http://www.wikidata.org/entity/Q236201", + cordinates: "Point(114.105833333 22.545277777)", + locationLabel: "Shun Hing Square", + height: "384", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q7504742", + cordinates: "Point(114.17147 22.28018)", + locationLabel: "Shui On Centre", + }, + { + location: "http://www.wikidata.org/entity/Q11550514", + cordinates: "Point(139.760139 35.662222)", + locationLabel: "Shiodome Sumitomo Building", + }, + { + location: "http://www.wikidata.org/entity/Q1134566", + cordinates: "Point(139.76098 35.6653507)", + locationLabel: "Shiodome City Center", + }, + { + location: "http://www.wikidata.org/entity/Q11550511", + cordinates: "Point(139.7595 35.656917)", + locationLabel: "Shiodome Building", + }, + { + location: "http://www.wikidata.org/entity/Q17217568", + cordinates: "Point(139.701989 35.695261)", + locationLabel: "Shinjuku Toho Building", + }, + { + location: "http://www.wikidata.org/entity/Q1348023", + cordinates: "Point(139.69095 35.685638888)", + locationLabel: "Shinjuku Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1048673", + cordinates: "Point(139.69527778 35.69277778)", + locationLabel: "Shinjuku Nomura Building", + }, + { + location: "http://www.wikidata.org/entity/Q863639", + cordinates: "Point(139.69319444 35.69333333)", + locationLabel: "Shinjuku NS Building", + }, + { + location: "http://www.wikidata.org/entity/Q11501806", + cordinates: "Point(139.698875 35.68661944)", + locationLabel: "Shinjuku Maynds Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5365210", + cordinates: "Point(139.69527778 35.69277778)", + locationLabel: "Shinjuku L Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5364378", + cordinates: "Point(139.69319444 35.69333333)", + locationLabel: "Shinjuku I-Land Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17217521", + cordinates: "Point(139.708194 35.69675)", + locationLabel: "Shinjuku Eastside Square", + }, + { + location: "http://www.wikidata.org/entity/Q1134395", + cordinates: "Point(139.69555556 35.69166667)", + locationLabel: "Shinjuku Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q8422510", + cordinates: "Point(114.162333333 22.326)", + locationLabel: "Shining Heights", + }, + { + location: "http://www.wikidata.org/entity/Q11418363", + cordinates: "Point(139.748694 35.610056)", + locationLabel: "Shinagawa Seaside", + }, + { + location: "http://www.wikidata.org/entity/Q11418358", + cordinates: "Point(139.740875 35.627764)", + locationLabel: "Shinagawa East One Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1134387", + cordinates: "Point(139.764373 35.68255)", + locationLabel: "Shin-Marunouchi Building", + }, + { + location: "http://www.wikidata.org/entity/Q704778", + cordinates: "Point(121.515336 25.045939)", + locationLabel: "Shin Kong Life Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1161278", + cordinates: "Point(121.471667 31.234444)", + locationLabel: "Shimao International Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q64026922", + cordinates: "Point(139.701611111 35.658277777)", + locationLabel: "Shibuya Scramble Square", + }, + { + location: "http://www.wikidata.org/entity/Q5364903", + cordinates: "Point(139.698694 35.658278)", + locationLabel: "Shibuya Mark City", + }, + { + location: "http://www.wikidata.org/entity/Q11561661", + cordinates: "Point(139.700861 35.65525)", + locationLabel: "Shibuya Infoss Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11561670", + cordinates: "Point(139.703 35.6589)", + locationLabel: "Shibuya Hikarie", + }, + { + location: "http://www.wikidata.org/entity/Q38252237", + cordinates: "Point(-97.39361111 27.79666667)", + locationLabel: "Sherman Building", + }, + { + location: "http://www.wikidata.org/entity/Q7494700", + cordinates: "Point(-112.071 33.4522)", + locationLabel: "Sheraton Phoenix Downtown", + }, + { + location: "http://www.wikidata.org/entity/Q7494693", + cordinates: "Point(-73.9817 40.7625)", + locationLabel: "Sheraton New York Hotel and Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7494691", + cordinates: "Point(-90.0681 29.952)", + locationLabel: "Sheraton New Orleans", + }, + { + location: "http://www.wikidata.org/entity/Q7494684", + cordinates: "Point(101.699955 3.1586584)", + locationLabel: "Sheraton Imperial Kuala Lumpur", + }, + { + location: "http://www.wikidata.org/entity/Q14498348", + cordinates: "Point(120.611 30.5734)", + locationLabel: "Sheraton Huzhou Hot Spring Resort", + }, + { + location: "http://www.wikidata.org/entity/Q7494676", + cordinates: "Point(-96.7949 32.7851)", + locationLabel: "Sheraton Dallas Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q2278240", + cordinates: "Point(-79.384166666 43.651111111)", + locationLabel: "Sheraton Centre Toronto Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q30348822", + cordinates: "Point(7.7625 36.902222222)", + locationLabel: "Sheraton Annaba Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3481901", + cordinates: "Point(32.8647 39.9)", + locationLabel: "Sheraton Ankara", + }, + { + location: "http://www.wikidata.org/entity/Q21139904", + cordinates: "Point(114.0488 22.5442)", + locationLabel: "Shenzhen Stock Exchange Building", + }, + { + location: "http://www.wikidata.org/entity/Q7494345", + cordinates: "Point(123.435908 41.814422)", + locationLabel: "Shenyang International Finance Center", + }, + { + location: "http://www.wikidata.org/entity/Q21139866", + cordinates: "Point(114.1035 22.5432)", + locationLabel: "Shen Ye Center", + }, + { + location: "http://www.wikidata.org/entity/Q1623160", + cordinates: "Point(-114.071 51.05)", + locationLabel: "Shell Centre", + height: "140", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q939044", + cordinates: "Point(-0.116888888 51.503833333)", + locationLabel: "Shell Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3481830", + cordinates: "Point(-122.4 37.7915)", + locationLabel: "Shell Building", + }, + { + location: "http://www.wikidata.org/entity/Q763076", + cordinates: "Point(-123.118 49.2883)", + locationLabel: "Shaw Tower", + height: "149", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q15914584", + cordinates: "Point(120.2137 22.9964)", + locationLabel: "Shangri-La's Far Eastern Plaza Hotel Tainan", + }, + { + location: "http://www.wikidata.org/entity/Q2276983", + cordinates: "Point(-79.386 43.649)", + locationLabel: "Shangri-La Toronto", + }, + { + location: "http://www.wikidata.org/entity/Q7488586", + cordinates: "Point(101.70638889 3.15416667)", + locationLabel: "Shangri-La Kuala Lumpur", + }, + { + location: "http://www.wikidata.org/entity/Q6146488", + cordinates: "Point(103.826 1.31122)", + locationLabel: "Shangri-La Hotel Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q80852", + cordinates: "Point(121.502777777 31.236666666)", + locationLabel: "Shanghai World Financial Center", + height: "492", + numberOfElevators: "91", + }, + { + location: "http://www.wikidata.org/entity/Q430218", + cordinates: "Point(121.44013889 31.22361111)", + locationLabel: "Shanghai Wheelock Square", + }, + { + location: "http://www.wikidata.org/entity/Q18547", + cordinates: "Point(121.501 31.2355)", + locationLabel: "Shanghai Tower", + height: "632", + numberOfElevators: "106", + }, + { + location: "http://www.wikidata.org/entity/Q3481400", + cordinates: "Point(121.506388888 31.238333333)", + locationLabel: "Shanghai Securities Exchange Building", + }, + { + location: "http://www.wikidata.org/entity/Q7488448", + cordinates: "Point(121.530432 31.227886)", + locationLabel: "Shanghai Futures Building", + }, + { + location: "http://www.wikidata.org/entity/Q7488428", + cordinates: "Point(121.448 31.226)", + locationLabel: "Shanghai Dong Hai Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q28057941", + cordinates: "Point(117.683174 38.997776)", + locationLabel: "Shangbang Leasing Tower", + height: "246", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q7487659", + cordinates: "Point(-95.4078 29.705)", + locationLabel: "Shamrock Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q11153422", + cordinates: "Point(114.1585426 22.2436879)", + locationLabel: "Sham Wan Towers", + }, + { + location: "http://www.wikidata.org/entity/Q2915137", + cordinates: "Point(34.769772222 32.064019444)", + locationLabel: "Shalom Meir Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15709552", + cordinates: "Point(-0.0949 51.5202)", + locationLabel: "Shakespeare Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3536246", + cordinates: "Point(55.1709 25.0973)", + locationLabel: "Shaiba Towers", + }, + { + location: "http://www.wikidata.org/entity/Q18922871", + cordinates: "Point(46.361146 38.037121)", + locationLabel: "Shahran Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7451857", + cordinates: "Point(51.427222222 35.706111111)", + locationLabel: "Sepehr Tower", + }, + { + location: "http://www.wikidata.org/entity/Q202477", + cordinates: "Point(126.888419 37.574575)", + locationLabel: "Seoul Lite", + }, + { + location: "http://www.wikidata.org/entity/Q17063396", + cordinates: "Point(127.0258333 37.49805556)", + locationLabel: "Seocho Garak Tower East", + }, + { + location: "http://www.wikidata.org/entity/Q7092695", + cordinates: "Point(-78.8757 42.8795)", + locationLabel: "Seneca One Tower", + height: "161.24", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q7449921", + cordinates: "Point(90.422754 23.726898)", + locationLabel: "Sena Kalyan Bhaban", + }, + { + location: "http://www.wikidata.org/entity/Q12811774", + cordinates: "Point(32.494197 37.888808)", + locationLabel: "Seljuk Tower", + }, + { + location: "http://www.wikidata.org/entity/Q9334925", + cordinates: "Point(140.041 35.6534)", + locationLabel: "Seiko Instruments Head Office Makuhari Building", + }, + { + location: "http://www.wikidata.org/entity/Q127172", + cordinates: "Point(-46.699192 -23.617078)", + locationLabel: "Sede do BankBoston", + }, + { + location: "http://www.wikidata.org/entity/Q14683935", + cordinates: "Point(-118.328 34.1025)", + locationLabel: "Security Trust and Savings", + }, + { + location: "http://www.wikidata.org/entity/Q7444950", + cordinates: "Point(-118.25 34.0469)", + locationLabel: "Security Building", + }, + { + location: "http://www.wikidata.org/entity/Q11308871", + cordinates: "Point(139.756556 35.649639)", + locationLabel: "Seavans", + }, + { + location: "http://www.wikidata.org/entity/Q7442196", + cordinates: "Point(-122.334167 47.608056)", + locationLabel: "Seattle Tower", + }, + { + location: "http://www.wikidata.org/entity/Q321040", + cordinates: "Point(8.7025 50.109438888)", + locationLabel: "Seat of the European Central Bank", + height: "185", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q737484", + cordinates: "Point(-73.972138888 40.758444444)", + locationLabel: "Seagram Building", + }, + { + location: "http://www.wikidata.org/entity/Q11308886", + cordinates: "Point(139.751 35.624194)", + locationLabel: "Seafort Square", + }, + { + location: "http://www.wikidata.org/entity/Q594451", + cordinates: "Point(18.548888888 54.521666666)", + locationLabel: "Sea Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7439961", + cordinates: "Point(34.85392222 32.34046667)", + locationLabel: "Sea Opera", + }, + { + location: "http://www.wikidata.org/entity/Q7435588", + cordinates: "Point(-123.118 49.2818)", + locationLabel: "Scotia Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1327514", + cordinates: "Point(-79.3794 43.6492)", + locationLabel: "Scotia Plaza", + height: "275", + numberOfElevators: "44", + }, + { + location: "http://www.wikidata.org/entity/Q7435582", + cordinates: "Point(-114.067 51.0463)", + locationLabel: "Scotia Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7432986", + cordinates: "Point(-81.66 30.327778)", + locationLabel: "Schultz Building", + }, + { + location: "http://www.wikidata.org/entity/Q7431694", + cordinates: "Point(28.0410794 -26.1949341)", + locationLabel: "Schlesinger Building", + }, + { + location: "http://www.wikidata.org/entity/Q1300529", + cordinates: "Point(17.9575 59.40666667)", + locationLabel: "Scandic Victoria Tower", + }, + { + location: "http://www.wikidata.org/entity/Q105320217", + cordinates: "Point(120.644344652 24.155641293)", + locationLabel: "Savoy Palace", + }, + { + location: "http://www.wikidata.org/entity/Q20011078", + cordinates: "Point(100.515278 13.717222)", + locationLabel: "Sathorn Unique Tower", + }, + { + location: "http://www.wikidata.org/entity/Q52386264", + cordinates: "Point(141.355555555 43.063055555)", + locationLabel: "Sapporo Sosei Square", + }, + { + location: "http://www.wikidata.org/entity/Q7421067", + cordinates: "Point(-79.3821 43.6504)", + locationLabel: "Sapphire Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7421068", + cordinates: "Point(-117.169 32.7192)", + locationLabel: "Sapphire Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14935554", + cordinates: "Point(153.02083333 -27.46861111)", + locationLabel: "Santos Place", + }, + { + location: "http://www.wikidata.org/entity/Q3472677", + cordinates: "Point(-80.194839 25.755405)", + locationLabel: "Santa Maria", + }, + { + location: "http://www.wikidata.org/entity/Q7419570", + cordinates: "Point(-115.245 36.25)", + locationLabel: "Santa Fe Station", + }, + { + location: "http://www.wikidata.org/entity/Q7419506", + cordinates: "Point(-101.838055555 35.204333333)", + locationLabel: "Santa Fe Building", + }, + { + location: "http://www.wikidata.org/entity/Q1101096", + cordinates: "Point(139.740277777 35.673055555)", + locationLabel: "Sanno Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7416044", + cordinates: "Point(-87.8817879 43.078344)", + locationLabel: "Sandburg Halls", + }, + { + location: "http://www.wikidata.org/entity/Q7415750", + cordinates: "Point(-97.5147 35.4703)", + locationLabel: "SandRidge Center", + }, + { + location: "http://www.wikidata.org/entity/Q1109555", + cordinates: "Point(-121.886 37.3378)", + locationLabel: "San José City Hall", + height: "86.9", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q7414128", + cordinates: "Point(-122.397 37.7899)", + locationLabel: "San Francisco Transbay development", + }, + { + location: "http://www.wikidata.org/entity/Q3471438", + cordinates: "Point(-122.404 37.7849)", + locationLabel: "San Francisco Marriott Marquis", + }, + { + location: "http://www.wikidata.org/entity/Q7414007", + cordinates: "Point(-122.411944444 37.779166666)", + locationLabel: "San Francisco Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q2853692", + cordinates: "Point(-95.481692 29.749578)", + locationLabel: "San Felipe Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5151536", + cordinates: "Point(-117.159 32.7182)", + locationLabel: "San Diego Union-Tribune Building", + }, + { + location: "http://www.wikidata.org/entity/Q3294850", + cordinates: "Point(-117.166 32.708)", + locationLabel: "San Diego Marriott Hotel and Marina", + }, + { + location: "http://www.wikidata.org/entity/Q7413338", + cordinates: "Point(-98.4847 29.4227)", + locationLabel: "San Antonio Marriott Riverwalk", + }, + { + location: "http://www.wikidata.org/entity/Q7413321", + cordinates: "Point(-98.493 29.4287)", + locationLabel: "San Antonio Crowne Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1320312", + cordinates: "Point(127.05325833 37.48716389)", + locationLabel: "Samsung Tower Palace 3 – Tower G", + }, + { + location: "http://www.wikidata.org/entity/Q484441", + cordinates: "Point(127.05402778 37.48847222)", + locationLabel: "Samsung Tower Palace", + }, + { + location: "http://www.wikidata.org/entity/Q14874464", + cordinates: "Point(103.85 1.28321)", + locationLabel: "Samsung Hub", + }, + { + location: "http://www.wikidata.org/entity/Q29837525", + cordinates: "Point(116.45888889 39.91083333)", + locationLabel: "Samsung China Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q3545225", + cordinates: "Point(-115.0614 36.112)", + locationLabel: "Sam's Town Hotel and Gambling Hall, Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q7406180", + cordinates: "Point(-71.0621 42.3603)", + locationLabel: "Saltonstall Building", + }, + { + location: "http://www.wikidata.org/entity/Q7405547", + cordinates: "Point(-73.9819 40.7542)", + locationLabel: "Salmon Tower Building", + }, + { + location: "http://www.wikidata.org/entity/Q14684154", + cordinates: "Point(-122.397 37.7899)", + locationLabel: "Salesforce Tower", + height: "326", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q12266788", + cordinates: "Point(-2.64888889 42.84519444)", + locationLabel: "Salburu bulebarra 31", + }, + { + location: "http://www.wikidata.org/entity/Q11314162", + cordinates: "Point(138.572556 35.667611)", + locationLabel: "Saints .25", + }, + { + location: "http://www.wikidata.org/entity/Q2736562", + cordinates: "Point(139.77888889 35.66677778)", + locationLabel: "Saint Luke's Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6353162", + cordinates: "Point(106.704 10.7717)", + locationLabel: "Saigon Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q6352680", + cordinates: "Point(106.70477 10.77391)", + locationLabel: "Saigon Times Square", + }, + { + location: "http://www.wikidata.org/entity/Q6351258", + cordinates: "Point(106.704 10.7717)", + locationLabel: "Saigon One Tower", + height: "195.3", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q1147483", + cordinates: "Point(-115.156 36.1422)", + locationLabel: "Sahara Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q12050823", + cordinates: "Point(-122.334 47.6061)", + locationLabel: "Safeco Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7395812", + cordinates: "Point(-80.190046 25.762257)", + locationLabel: "Sabadell Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q7395801", + cordinates: "Point(55.1415 25.0721)", + locationLabel: "Saba Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q7390199", + cordinates: "Point(13.64277778 50.50611111)", + locationLabel: "SaS group Tower", + }, + { + location: "http://www.wikidata.org/entity/Q870916", + cordinates: "Point(11.6353 48.137)", + locationLabel: "SV-Hochhaus", + }, + { + location: "http://www.wikidata.org/entity/Q7395015", + cordinates: "Point(-73.7495 42.6481)", + locationLabel: "SUNY Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7395004", + cordinates: "Point(100.28631944 5.32563056)", + locationLabel: "SUNTECH Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11305535", + cordinates: "Point(136.946667 35.167361)", + locationLabel: "SUNCREA Ikeshita", + }, + { + location: "http://www.wikidata.org/entity/Q11381769", + cordinates: "Point(140.878056 38.256389)", + locationLabel: "SS30", + }, + { + location: "http://www.wikidata.org/entity/Q28791021", + cordinates: "Point(46.659284 24.739281)", + locationLabel: "SPX Tower", + height: "255", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q1471340", + cordinates: "Point(-79.3753 43.6514)", + locationLabel: "SP!RE", + height: "143", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q16495812", + cordinates: "Point(49.90194444 40.41416667)", + locationLabel: "SOFAZ Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1368798", + cordinates: "Point(114.0825 22.544166666)", + locationLabel: "SEG Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q11290048", + cordinates: "Point(139.693139 35.693222)", + locationLabel: "S-tec Information Building", + }, + { + location: "http://www.wikidata.org/entity/Q106868216", + cordinates: "Point(2.235239166 48.88841025)", + locationLabel: "Résidence Campuséa", + }, + { + location: "http://www.wikidata.org/entity/Q106873555", + cordinates: "Point(2.227190555 48.892334166)", + locationLabel: "Résidence Altana", + }, + { + location: "http://www.wikidata.org/entity/Q29272", + cordinates: "Point(125.730555555 39.036388888)", + locationLabel: "Ryugyong Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7381595", + cordinates: "Point(-122.337 47.6073)", + locationLabel: "Russell Investments Center", + }, + { + location: "http://www.wikidata.org/entity/Q7381107", + cordinates: "Point(-122.403 37.7912)", + locationLabel: "Russ Building", + }, + { + location: "http://www.wikidata.org/entity/Q7377952", + cordinates: "Point(121.01828611 14.55801667)", + locationLabel: "Rufino Pacific Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24836619", + cordinates: "Point(121.60705556 25.05319444)", + locationLabel: "Ruentex Nangang Station Complex", + }, + { + location: "http://www.wikidata.org/entity/Q3446433", + cordinates: "Point(-93.626 41.587)", + locationLabel: "Ruan Center", + }, + { + location: "http://www.wikidata.org/entity/Q2170980", + cordinates: "Point(-123.122 49.2853)", + locationLabel: "Royal Centre", + height: "141", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q22964788", + cordinates: "Point(34.771694444 32.063)", + locationLabel: "Rothschild 22 Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2404290", + cordinates: "Point(-96.800247 32.784519)", + locationLabel: "Ross Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1771772", + cordinates: "Point(139.729166666 35.660555555)", + locationLabel: "Roppongi Hills Mori Tower", + height: "238", + numberOfElevators: "67", + }, + { + location: "http://www.wikidata.org/entity/Q7366425", + cordinates: "Point(-118.256389 34.0175)", + locationLabel: "Roosevelt Building", + }, + { + location: "http://www.wikidata.org/entity/Q7365352", + cordinates: "Point(-122.274722222 37.804722222)", + locationLabel: "Ronald V. Dellums Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q2262649", + cordinates: "Point(6.165556 51.368611)", + locationLabel: "Romertoren", + }, + { + location: "http://www.wikidata.org/entity/Q2377122", + cordinates: "Point(4.359166666 50.856388888)", + locationLabel: "Rogier Tower", + height: "137", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q21016130", + cordinates: "Point(-81.6975 41.49805556)", + locationLabel: "Rockefeller Building", + }, + { + location: "http://www.wikidata.org/entity/Q14875567", + cordinates: "Point(-73.5718 45.4969)", + locationLabel: "Roccabella", + }, + { + location: "http://www.wikidata.org/entity/Q7352982", + cordinates: "Point(103.848 1.27756)", + locationLabel: "Robinson 77", + }, + { + location: "http://www.wikidata.org/entity/Q7350239", + cordinates: "Point(-121.49874 38.5835)", + locationLabel: "Robert T. Matsui United States Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q12641294", + cordinates: "Point(-149.893 61.2152)", + locationLabel: "Robert B. Atwood Building", + }, + { + location: "http://www.wikidata.org/entity/Q7339772", + cordinates: "Point(-87.632333 41.881583)", + locationLabel: "Roanoke Building", + }, + { + location: "http://www.wikidata.org/entity/Q1535845", + cordinates: "Point(-115.162 36.135)", + locationLabel: "Riviera Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q7338609", + cordinates: "Point(-73.988585 40.77812)", + locationLabel: "Riverside South", + }, + { + location: "http://www.wikidata.org/entity/Q7338579", + cordinates: "Point(-93.2489 44.97)", + locationLabel: "Riverside Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q19817563", + cordinates: "Point(-87.6412 41.8844)", + locationLabel: "Riverside Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7338447", + cordinates: "Point(153.03 -27.4672)", + locationLabel: "Riverside Centre, Brisbane", + }, + { + location: "http://www.wikidata.org/entity/Q7338278", + cordinates: "Point(-81.656541 30.319403)", + locationLabel: "Riverplace Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17029640", + cordinates: "Point(-82.460632 27.94731)", + locationLabel: "Rivergate Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1937566", + cordinates: "Point(-80.19504547 25.76953269)", + locationLabel: "Riverfront", + height: "192", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q21161342", + cordinates: "Point(-75.554311 39.735456)", + locationLabel: "River Tower at Christina Landing", + }, + { + location: "http://www.wikidata.org/entity/Q3307842", + cordinates: "Point(-87.62577778 41.88980556)", + locationLabel: "River Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2050970", + cordinates: "Point(-87.617803 41.891447)", + locationLabel: "River East Center", + }, + { + location: "http://www.wikidata.org/entity/Q1143174", + cordinates: "Point(-79.387 43.645)", + locationLabel: "Ritz-Carlton Toronto", + height: "209.8", + numberOfElevators: "19", + }, + { + location: "http://www.wikidata.org/entity/Q3433364", + cordinates: "Point(-75.1642 39.9514)", + locationLabel: "Ritz-Carlton Philadelphia", + }, + { + location: "http://www.wikidata.org/entity/Q16899335", + cordinates: "Point(-122.403 37.7883)", + locationLabel: "Ritz-Carlton Club and Residences", + }, + { + location: "http://www.wikidata.org/entity/Q7336919", + cordinates: "Point(-80.1297 25.7921)", + locationLabel: "Ritz Plaza Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q597184", + cordinates: "Point(153.03 -27.4681)", + locationLabel: "Riparian Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7335335", + cordinates: "Point(-43.176033 -22.957314)", + locationLabel: "Rio Sul Center", + }, + { + location: "http://www.wikidata.org/entity/Q2673535", + cordinates: "Point(135.3 34.411111111)", + locationLabel: "Rinku Gate Tower Building", + }, + { + location: "http://www.wikidata.org/entity/Q12641225", + cordinates: "Point(14.43803072 45.32802827)", + locationLabel: "Riječki neboder", + }, + { + location: "http://www.wikidata.org/entity/Q7330440", + cordinates: "Point(-118.257 34.0508)", + locationLabel: "Richfield Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3431400", + cordinates: "Point(-97.1378 49.8961)", + locationLabel: "Richardson Building", + }, + { + location: "http://www.wikidata.org/entity/Q1766475", + cordinates: "Point(-87.6302 41.8839)", + locationLabel: "Richard J. Daley Center", + }, + { + location: "http://www.wikidata.org/entity/Q7323872", + cordinates: "Point(-84.3961 33.7532)", + locationLabel: "Richard B. Russell Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q1138772", + cordinates: "Point(144.958333333 -37.818888888)", + locationLabel: "Rialto Towers", + height: "251", + numberOfElevators: "33", + }, + { + location: "http://www.wikidata.org/entity/Q7321037", + cordinates: "Point(-81.6756 41.5032)", + locationLabel: "Rhodes Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7319632", + cordinates: "Point(-80.2444 36.0988)", + locationLabel: "Reynolds Building", + }, + { + location: "http://www.wikidata.org/entity/Q3052060", + cordinates: "Point(114.171944444 22.279722222)", + locationLabel: "Revenue Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17213395", + cordinates: "Point(139.762083 35.686111)", + locationLabel: "Resona Maruha Building", + }, + { + location: "http://www.wikidata.org/entity/Q14530911", + cordinates: "Point(-0.154645 38.538045)", + locationLabel: "Residential Intempo", + height: "187", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q7315260", + cordinates: "Point(-81.6849 41.5032)", + locationLabel: "Reserve Square", + }, + { + location: "http://www.wikidata.org/entity/Q587586", + cordinates: "Point(103.851 1.28278)", + locationLabel: "Republic Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1147408", + cordinates: "Point(-104.988611111 39.743333333)", + locationLabel: "Republic Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7314394", + cordinates: "Point(-96.798022 32.783211)", + locationLabel: "Republic Center", + }, + { + location: "http://www.wikidata.org/entity/Q7312456", + cordinates: "Point(-77.0233 38.9014)", + locationLabel: "Renaissance Washington DC Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1515605", + cordinates: "Point(-96.802 32.7812)", + locationLabel: "Renaissance Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7312450", + cordinates: "Point(-121.496 38.5801)", + locationLabel: "Renaissance Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3542610", + cordinates: "Point(-112.075 33.4487)", + locationLabel: "Renaissance Square", + }, + { + location: "http://www.wikidata.org/entity/Q7312435", + cordinates: "Point(-86.781159 36.160704)", + locationLabel: "Renaissance Nashville Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7312416", + cordinates: "Point(-96.832 32.8037)", + locationLabel: "Renaissance Dallas Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q9306302", + cordinates: "Point(-83.039 42.3288)", + locationLabel: "Renaissance Center Tower 300", + }, + { + location: "http://www.wikidata.org/entity/Q1541365", + cordinates: "Point(-83.039722222 42.328888888)", + locationLabel: "Renaissance Center", + }, + { + location: "http://www.wikidata.org/entity/Q7312400", + cordinates: "Point(-73.950278 40.682222)", + locationLabel: "Renaissance Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q2361620", + cordinates: "Point(4.917011111 52.345083333)", + locationLabel: "Rembrandt Tower", + }, + { + location: "http://www.wikidata.org/entity/Q662846", + cordinates: "Point(-95.3656 29.7568)", + locationLabel: "Reliant Energy Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q786387", + cordinates: "Point(-87.627778 41.882778)", + locationLabel: "Reliance Building", + }, + { + location: "http://www.wikidata.org/entity/Q7309281", + cordinates: "Point(-93.7477 32.5137)", + locationLabel: "Regions Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7309274", + cordinates: "Point(-86.808994 33.518044)", + locationLabel: "Regions Center", + }, + { + location: "http://www.wikidata.org/entity/Q7309276", + cordinates: "Point(-86.7796 36.1659)", + locationLabel: "Regions Center", + }, + { + location: "http://www.wikidata.org/entity/Q7309052", + cordinates: "Point(-79.996944444 40.441388888)", + locationLabel: "Regional Enterprise Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7308132", + cordinates: "Point(-87.58483333 41.80333333)", + locationLabel: "Regents Park", + }, + { + location: "http://www.wikidata.org/entity/Q1992056", + cordinates: "Point(37.649444444 55.769722222)", + locationLabel: "Red Gate Building", + }, + { + location: "http://www.wikidata.org/entity/Q15272136", + cordinates: "Point(90.2505 23.4341)", + locationLabel: "Red Crescent Rupayan Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3930372", + cordinates: "Point(-16.25305556 28.46027778)", + locationLabel: "Rascacielos de la avenida Tres de Mayo", + }, + { + location: "http://www.wikidata.org/entity/Q2130764", + cordinates: "Point(-73.9825 40.7653)", + locationLabel: "Random House Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7291873", + cordinates: "Point(-87.633411 41.884848)", + locationLabel: "Randolph Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7291429", + cordinates: "Point(-87.633027777 41.879222222)", + locationLabel: "Rand McNally Building", + }, + { + location: "http://www.wikidata.org/entity/Q7291419", + cordinates: "Point(-78.8734 42.8862)", + locationLabel: "Rand Building", + }, + { + location: "http://www.wikidata.org/entity/Q7289174", + cordinates: "Point(34.783333333 31.233333333)", + locationLabel: "Rambam Square", + }, + { + location: "http://www.wikidata.org/entity/Q18415146", + cordinates: "Point(100.568 13.7574)", + locationLabel: "Rama IX Super Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7855580", + cordinates: "Point(-84.2849 30.435)", + locationLabel: "Ralph D. Turlington Florida Education Center", + }, + { + location: "http://www.wikidata.org/entity/Q20639525", + cordinates: "Point(-78.6397 35.7775)", + locationLabel: "Raleigh Banking and Trust Company Building", + }, + { + location: "http://www.wikidata.org/entity/Q7284914", + cordinates: "Point(-122.334 47.609)", + locationLabel: "Rainier Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2195212", + cordinates: "Point(121.472 31.2345)", + locationLabel: "Raffles City Shanghai", + }, + { + location: "http://www.wikidata.org/entity/Q11102554", + cordinates: "Point(120.2085 30.250777777)", + locationLabel: "Raffles City Hangzhou", + height: "242", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q11102554", + cordinates: "Point(120.2085 30.250777777)", + locationLabel: "Raffles City Hangzhou", + height: "257.6", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q55908607", + cordinates: "Point(106.58375 29.568222222)", + locationLabel: "Raffles City Chongqing", + }, + { + location: "http://www.wikidata.org/entity/Q1352978", + cordinates: "Point(24.75791667 59.43347222)", + locationLabel: "Radisson Blu Hotel Tallinn", + }, + { + location: "http://www.wikidata.org/entity/Q15920592", + cordinates: "Point(121.4681 31.2368)", + locationLabel: "Radisson Blu Hotel Shanghai New World", + }, + { + location: "http://www.wikidata.org/entity/Q12670658", + cordinates: "Point(25.274971 54.694955)", + locationLabel: "Radisson Blu Hotel Lietuva", + }, + { + location: "http://www.wikidata.org/entity/Q826376", + cordinates: "Point(9.986944444 53.561666666)", + locationLabel: "Radisson Blu Hotel Hamburg", + }, + { + location: "http://www.wikidata.org/entity/Q7277702", + cordinates: "Point(-88.0414 30.6928)", + locationLabel: "RSA–BankTrust Building", + }, + { + location: "http://www.wikidata.org/entity/Q3049341", + cordinates: "Point(-88.0397 30.6931)", + locationLabel: "RSA Battle House Tower", + height: "227.1", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q11811529", + cordinates: "Point(34.7972 32.0872)", + locationLabel: "ROM TLV Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7276071", + cordinates: "Point(121.01653333 14.56076111)", + locationLabel: "RCBC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1224878", + cordinates: "Point(-79.385 43.6457)", + locationLabel: "RBC Centre", + height: "208", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q7273221", + cordinates: "Point(113.31647 23.11994)", + locationLabel: "R&F Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7271131", + cordinates: "Point(114.163888888 22.277777777)", + locationLabel: "Queensway Government Offices", + }, + { + location: "http://www.wikidata.org/entity/Q22827744", + cordinates: "Point(-79.397593 43.705454)", + locationLabel: "Quantum 2", + }, + { + location: "http://www.wikidata.org/entity/Q1243576", + cordinates: "Point(51.520277777 25.312777777)", + locationLabel: "Qatar National Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7265614", + cordinates: "Point(115.851 -31.9524)", + locationLabel: "QV.1", + }, + { + location: "http://www.wikidata.org/entity/Q15661493", + cordinates: "Point(20.9978 52.2356)", + locationLabel: "Q22", + }, + { + location: "http://www.wikidata.org/entity/Q125846", + cordinates: "Point(153.429444444 -28.006111111)", + locationLabel: "Q1", + height: "322", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q749558", + cordinates: "Point(2.320833333 48.838333333)", + locationLabel: "Pullman Paris Montparnasse Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7553769", + cordinates: "Point(100.523888888 13.725277777)", + locationLabel: "Pullman Bangkok Hotel G", + }, + { + location: "http://www.wikidata.org/entity/Q18398338", + cordinates: "Point(121.5073 31.2372)", + locationLabel: "Pufa Tower", + }, + { + location: "http://www.wikidata.org/entity/Q56787345", + cordinates: "Point(-3.688244444 40.466747222)", + locationLabel: "Puerta de Europa II", + }, + { + location: "http://www.wikidata.org/entity/Q56787231", + cordinates: "Point(-3.690136111 40.467025)", + locationLabel: "Puerta de Europa I", + }, + { + location: "http://www.wikidata.org/entity/Q7258354", + cordinates: "Point(121.5058 31.2375)", + locationLabel: "Pudong International Information Port", + }, + { + location: "http://www.wikidata.org/entity/Q21619127", + cordinates: "Point(103.763027777 1.461805555)", + locationLabel: "Public Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q606823", + cordinates: "Point(-71.0825 42.3472)", + locationLabel: "Prudential Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11335763", + cordinates: "Point(139.738611 35.676028)", + locationLabel: "Prudential Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7252985", + cordinates: "Point(-74.17106 40.7335)", + locationLabel: "Prudential Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q3778256", + cordinates: "Point(-78.876739 42.882761)", + locationLabel: "Prudential (Guaranty) Building", + }, + { + location: "http://www.wikidata.org/entity/Q2363386", + cordinates: "Point(4.358333333 50.859722222)", + locationLabel: "Proximus Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7252537", + cordinates: "Point(-122.395 37.7912)", + locationLabel: "Providian Financial Building", + }, + { + location: "http://www.wikidata.org/entity/Q7252411", + cordinates: "Point(-71.4069 41.8255)", + locationLabel: "Providence County Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q7252390", + cordinates: "Point(-71.413611 41.824167)", + locationLabel: "Providence Biltmore", + }, + { + location: "http://www.wikidata.org/entity/Q16898814", + cordinates: "Point(-87.5808 41.7942)", + locationLabel: "Promontory Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q7249706", + cordinates: "Point(-84.385139 33.787999)", + locationLabel: "Promenade II", + }, + { + location: "http://www.wikidata.org/entity/Q11336171", + cordinates: "Point(135.181 34.679722)", + locationLabel: "Promena Kobe", + }, + { + location: "http://www.wikidata.org/entity/Q19492", + cordinates: "Point(55.146858333 25.088625)", + locationLabel: "Princess Tower", + height: "414", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q7243728", + cordinates: "Point(114.15933 22.28124)", + locationLabel: "Prince's Building", + }, + { + location: "http://www.wikidata.org/entity/Q683345", + cordinates: "Point(8.51689 47.3859)", + locationLabel: "Prime Tower", + }, + { + location: "http://www.wikidata.org/entity/Q30591083", + cordinates: "Point(-87.6426838 41.8814362)", + locationLabel: "Presidential Towers", + }, + { + location: "http://www.wikidata.org/entity/Q17347241", + cordinates: "Point(4.35245 50.8644)", + locationLabel: "Premiumtoren", + }, + { + location: "http://www.wikidata.org/entity/Q4827372", + cordinates: "Point(-122.332561 47.61303)", + locationLabel: "Premiere on Pine", + }, + { + location: "http://www.wikidata.org/entity/Q7237562", + cordinates: "Point(-96.798301 32.781124)", + locationLabel: "Praetorian Building", + }, + { + location: "http://www.wikidata.org/entity/Q282968", + cordinates: "Point(10.75399444 59.91171389)", + locationLabel: "Postgirobygget", + }, + { + location: "http://www.wikidata.org/entity/Q2105997", + cordinates: "Point(7.012222222 51.450555555)", + locationLabel: "Postbank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q167195", + cordinates: "Point(7.130037 50.715512)", + locationLabel: "Post Tower", + height: "162.5", + numberOfElevators: "19", + }, + { + location: "http://www.wikidata.org/entity/Q7233667", + cordinates: "Point(-95.462 29.746)", + locationLabel: "Post Oak Central", + }, + { + location: "http://www.wikidata.org/entity/Q1012819", + cordinates: "Point(113.288639 23.1273)", + locationLabel: "Post & Telecommunication Hub", + }, + { + location: "http://www.wikidata.org/entity/Q3399359", + cordinates: "Point(-80.135051 25.767664)", + locationLabel: "Portofino Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3755685", + cordinates: "Point(-0.141694444 51.497583333)", + locationLabel: "Portland House", + }, + { + location: "http://www.wikidata.org/entity/Q2376061", + cordinates: "Point(5.474444 51.467778)", + locationLabel: "Porthos", + }, + { + location: "http://www.wikidata.org/entity/Q7231539", + cordinates: "Point(136.64930556 36.57630556)", + locationLabel: "Porte Kanazawa", + }, + { + location: "http://www.wikidata.org/entity/Q4047261", + cordinates: "Point(49.86 40.375555555)", + locationLabel: "Port Baku Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7230398", + cordinates: "Point(-80.1205 25.9482)", + locationLabel: "Porsche Design Tower", + }, + { + location: "http://www.wikidata.org/entity/Q25998014", + cordinates: "Point(4.886177 52.393069)", + locationLabel: "Pontsteiger building", + }, + { + location: "http://www.wikidata.org/entity/Q7209427", + cordinates: "Point(103.839 1.27841)", + locationLabel: "Police Cantonment Complex", + }, + { + location: "http://www.wikidata.org/entity/Q21600725", + cordinates: "Point(27.210277777 38.430555555)", + locationLabel: "Point Bornova", + }, + { + location: "http://www.wikidata.org/entity/Q7203718", + cordinates: "Point(-96.795441 32.787166)", + locationLabel: "Plaza of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q7203664", + cordinates: "Point(-93.2735 44.9771)", + locationLabel: "Plaza VII", + }, + { + location: "http://www.wikidata.org/entity/Q7203661", + cordinates: "Point(-90.076666666 29.946388888)", + locationLabel: "Plaza Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3786369", + cordinates: "Point(101.702777777 3.144722222)", + locationLabel: "Plaza Rakyat", + }, + { + location: "http://www.wikidata.org/entity/Q7203612", + cordinates: "Point(-115.1468 36.1719)", + locationLabel: "Plaza Hotel & Casino", + }, + { + location: "http://www.wikidata.org/entity/Q1066676", + cordinates: "Point(-73.974444444 40.764527777)", + locationLabel: "Plaza Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7203610", + cordinates: "Point(-106.488333 31.758611)", + locationLabel: "Plaza Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7203589", + cordinates: "Point(-46.69608 -23.60566)", + locationLabel: "Plaza Centenário", + }, + { + location: "http://www.wikidata.org/entity/Q7203586", + cordinates: "Point(-93.621388888 41.586111111)", + locationLabel: "Plaza Building", + }, + { + location: "http://www.wikidata.org/entity/Q24255243", + cordinates: "Point(121.449 31.23)", + locationLabel: "Plaza 66 Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q543353", + cordinates: "Point(121.44930556 31.22991667)", + locationLabel: "Plaza 66", + }, + { + location: "http://www.wikidata.org/entity/Q7203573", + cordinates: "Point(-87.6266 41.89)", + locationLabel: "Plaza 440", + }, + { + location: "http://www.wikidata.org/entity/Q105227265", + cordinates: "Point(120.638027369 24.166878566)", + locationLabel: "Plato Palace", + }, + { + location: "http://www.wikidata.org/entity/Q5711011", + cordinates: "Point(51.420833333 35.694722222)", + locationLabel: "Plasco Building", + }, + { + location: "http://www.wikidata.org/entity/Q7201100", + cordinates: "Point(72.83 18.98083333)", + locationLabel: "Planet Godrej", + }, + { + location: "http://www.wikidata.org/entity/Q7200238", + cordinates: "Point(-75.7043 45.419)", + locationLabel: "Place de Ville", + }, + { + location: "http://www.wikidata.org/entity/Q1344856", + cordinates: "Point(-73.5684 45.5015)", + locationLabel: "Place Ville Marie", + height: "188", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q1344856", + cordinates: "Point(-73.5684 45.5015)", + locationLabel: "Place Ville Marie", + height: "616.8", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q66048529", + cordinates: "Point(-73.575664 45.502238)", + locationLabel: "Place Sherbrooke", + height: "104", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q66048529", + cordinates: "Point(-73.575664 45.502238)", + locationLabel: "Place Sherbrooke", + height: "341.21", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q3389848", + cordinates: "Point(-71.217941666 46.809502777)", + locationLabel: "Place Hauteville", + }, + { + location: "http://www.wikidata.org/entity/Q38272014", + cordinates: "Point(-73.5671931 45.4975261)", + locationLabel: "Place Du Canada", + }, + { + location: "http://www.wikidata.org/entity/Q920809", + cordinates: "Point(9.201221 45.484788)", + locationLabel: "Pirelli Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3388773", + cordinates: "Point(-117.165 32.7101)", + locationLabel: "Pinnacle Marina Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2095908", + cordinates: "Point(-79.3765 43.6429)", + locationLabel: "Pinnacle Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1077308", + cordinates: "Point(114.050277777 22.536666666)", + locationLabel: "Ping An Finance Centre", + height: "599.05", + numberOfElevators: "80", + }, + { + location: "http://www.wikidata.org/entity/Q3905052", + cordinates: "Point(21.146944444 55.691111111)", + locationLabel: "Pilsotas", + }, + { + location: "http://www.wikidata.org/entity/Q3775875", + cordinates: "Point(7.66167 45.025)", + locationLabel: "Piedmont Region Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q2813484", + cordinates: "Point(103.848266 1.285201)", + locationLabel: "Pickering Operations Complex", + }, + { + location: "http://www.wikidata.org/entity/Q65561141", + cordinates: "Point(34.803223 32.066877)", + locationLabel: "Phoenix house", + }, + { + location: "http://www.wikidata.org/entity/Q7187008", + cordinates: "Point(-95.4289 29.7306)", + locationLabel: "Phoenix Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7186931", + cordinates: "Point(-72.676667 41.77)", + locationLabel: "Phoenix Mutual Life Insurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q2088508", + cordinates: "Point(-112.077 33.4489)", + locationLabel: "Phoenix City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q3381275", + cordinates: "Point(-95.988611 36.151944)", + locationLabel: "Philtower Building", + }, + { + location: "http://www.wikidata.org/entity/Q7185633", + cordinates: "Point(-122.418 37.7818)", + locationLabel: "Phillip Burton Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q1138183", + cordinates: "Point(-75.163894 39.952247)", + locationLabel: "Philadelphia City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q83063", + cordinates: "Point(101.711667 3.157778)", + locationLabel: "Petronas Towers", + height: "451.9", + numberOfElevators: "39", + }, + { + location: "http://www.wikidata.org/entity/Q6816462", + cordinates: "Point(101.71111111 3.15666667)", + locationLabel: "Petronas Tower 3", + }, + { + location: "http://www.wikidata.org/entity/Q30625724", + cordinates: "Point(-93.74888889 32.51388889)", + locationLabel: "Petroleum Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7178938", + cordinates: "Point(-102.076 31.9987)", + locationLabel: "Petroleum Building", + }, + { + location: "http://www.wikidata.org/entity/Q16898265", + cordinates: "Point(106.83 -6.21554)", + locationLabel: "Pertamina Energy Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7165657", + cordinates: "Point(103.842 1.28406)", + locationLabel: "People's Park Complex", + }, + { + location: "http://www.wikidata.org/entity/Q7165268", + cordinates: "Point(-81.6906 41.5041)", + locationLabel: "Penton Media Building", + }, + { + location: "http://www.wikidata.org/entity/Q374662", + cordinates: "Point(55.149889 25.089111)", + locationLabel: "Pentominium", + height: "516", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q3512622", + cordinates: "Point(-95.3657 29.7603)", + locationLabel: "Pennzoil Place", + }, + { + location: "http://www.wikidata.org/entity/Q7163221", + cordinates: "Point(-73.9984 40.7479)", + locationLabel: "Penn South", + }, + { + location: "http://www.wikidata.org/entity/Q18380101", + cordinates: "Point(-75.1674 39.9542)", + locationLabel: "Penn Center Suburban Station", + }, + { + location: "http://www.wikidata.org/entity/Q7161584", + cordinates: "Point(-118.307778 34.061111)", + locationLabel: "Pellissier Building and Wiltern Theatre", + }, + { + location: "http://www.wikidata.org/entity/Q7158208", + cordinates: "Point(120.97955833 14.5769)", + locationLabel: "Pearl of the Orient Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7213032", + cordinates: "Point(114.186 22.281)", + locationLabel: "Pearl City Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q7158038", + cordinates: "Point(103.84 1.28317)", + locationLabel: "Pearl Bank Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q7157722", + cordinates: "Point(-84.3871 33.7653)", + locationLabel: "Peachtree Summit", + }, + { + location: "http://www.wikidata.org/entity/Q85877619", + cordinates: "Point(121.5264 25.026986111)", + locationLabel: "Peace Palace", + }, + { + location: "http://www.wikidata.org/entity/Q6541791", + cordinates: "Point(14.55611111 53.43222222)", + locationLabel: "Pazim", + }, + { + location: "http://www.wikidata.org/entity/Q7155871", + cordinates: "Point(101.71318 3.1485)", + locationLabel: "Pavilion Kuala Lumpur", + }, + { + location: "http://www.wikidata.org/entity/Q14711218", + cordinates: "Point(-96.797 32.7841)", + locationLabel: "Patriot Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7147772", + cordinates: "Point(-83.0532 42.3312)", + locationLabel: "Patrick V. McNamara Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q2083408", + cordinates: "Point(30.527361111 50.437069444)", + locationLabel: "Parus Business Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5735208", + cordinates: "Point(51.413211 35.790372)", + locationLabel: "Parsian Esteghlal Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7139977", + cordinates: "Point(51.390017 35.789611)", + locationLabel: "Parsian Azadi Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q3365482", + cordinates: "Point(103.858 1.30014)", + locationLabel: "Parkview Square", + }, + { + location: "http://www.wikidata.org/entity/Q21161330", + cordinates: "Point(-82.6347 27.7753)", + locationLabel: "Parkshore Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3335430", + cordinates: "Point(135.501198 34.66159)", + locationLabel: "Parks Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6763868", + cordinates: "Point(103.857 1.2917)", + locationLabel: "Parkroyal Collection Marina Bay, Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q7138101", + cordinates: "Point(-95.4545 29.7556)", + locationLabel: "Park Towers", + }, + { + location: "http://www.wikidata.org/entity/Q2363313", + cordinates: "Point(-87.6547 41.9803)", + locationLabel: "Park Tower Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q1810424", + cordinates: "Point(-87.625277777 41.896944444)", + locationLabel: "Park Tower", + height: "257", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q195212", + cordinates: "Point(8.67056 50.1169)", + locationLabel: "Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7138097", + cordinates: "Point(-82.459342 27.947739)", + locationLabel: "Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7863083", + cordinates: "Point(-121.495 38.5811)", + locationLabel: "Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1066662", + cordinates: "Point(-74.0077 40.71139)", + locationLabel: "Park Row Building", + height: "119", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q7137938", + cordinates: "Point(-84.4971 38.0455)", + locationLabel: "Park Plaza Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q2707913", + cordinates: "Point(-87.6475 41.9546)", + locationLabel: "Park Place Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7137922", + cordinates: "Point(-84.3882 33.8276)", + locationLabel: "Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q7137930", + cordinates: "Point(-123.119 49.2849)", + locationLabel: "Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q1854509", + cordinates: "Point(-115.176 36.1047)", + locationLabel: "Park MGM", + }, + { + location: "http://www.wikidata.org/entity/Q1854509", + cordinates: "Point(-115.176 36.104694444)", + locationLabel: "Park MGM", + }, + { + location: "http://www.wikidata.org/entity/Q701571", + cordinates: "Point(13.412777777 52.522777777)", + locationLabel: "Park Inn by Radisson Berlin Alexanderplatz", + }, + { + location: "http://www.wikidata.org/entity/Q7137668", + cordinates: "Point(-118.254 34.0475)", + locationLabel: "Park Central Building", + }, + { + location: "http://www.wikidata.org/entity/Q7137639", + cordinates: "Point(-122.681 45.5194)", + locationLabel: "Park Avenue West Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7137627", + cordinates: "Point(-84.3618 33.8553)", + locationLabel: "Park Avenue Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q2974817", + cordinates: "Point(2.31066 48.89465)", + locationLabel: "Paris Tribunal", + height: "160", + numberOfElevators: "51", + }, + { + location: "http://www.wikidata.org/entity/Q1774820", + cordinates: "Point(126.928003 37.526621)", + locationLabel: "Parc1 Tower A", + }, + { + location: "http://www.wikidata.org/entity/Q18392346", + cordinates: "Point(-80.1862 25.8062)", + locationLabel: "Paraíso Bay", + }, + { + location: "http://www.wikidata.org/entity/Q7135299", + cordinates: "Point(-122.402 37.7867)", + locationLabel: "Paramount, San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q2051730", + cordinates: "Point(-73.9845 40.7621)", + locationLabel: "Paramount Plaza", + height: "204.2", + numberOfElevators: "42", + }, + { + location: "http://www.wikidata.org/entity/Q7135305", + cordinates: "Point(-80.187675 25.796729)", + locationLabel: "Paramount Bay at Edgewater Square", + }, + { + location: "http://www.wikidata.org/entity/Q7131626", + cordinates: "Point(-79.379 43.655)", + locationLabel: "Pantages Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5198534", + cordinates: "Point(-115.182 36.1075)", + locationLabel: "Panorama Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1827435", + cordinates: "Point(114.117217 22.543858)", + locationLabel: "Panglin Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q12043616", + cordinates: "Point(14.472257 50.078004)", + locationLabel: "Palác Vinohrady", + }, + { + location: "http://www.wikidata.org/entity/Q2048307", + cordinates: "Point(-115.195 36.114444)", + locationLabel: "Palms Casino Resort", + }, + { + location: "http://www.wikidata.org/entity/Q97357472", + cordinates: "Point(77.215361111 28.628388888)", + locationLabel: "Palika Kendra", + }, + { + location: "http://www.wikidata.org/entity/Q616863", + cordinates: "Point(9.1961 45.4866)", + locationLabel: "Palazzo Lombardia", + height: "161.3", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q3361020", + cordinates: "Point(-73.5553 45.5071)", + locationLabel: "Palais de justice", + }, + { + location: "http://www.wikidata.org/entity/Q620809", + cordinates: "Point(72.82027778 18.99916667)", + locationLabel: "Palais Royale", + height: "320", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q895606", + cordinates: "Point(8.68139 50.1147)", + locationLabel: "Palais Quartier", + }, + { + location: "http://www.wikidata.org/entity/Q571763", + cordinates: "Point(-58.385861111 -34.609555555)", + locationLabel: "Palacio Barolo", + }, + { + location: "http://www.wikidata.org/entity/Q167566", + cordinates: "Point(21.006388888 52.231666666)", + locationLabel: "Palace of Culture and Science", + }, + { + location: "http://www.wikidata.org/entity/Q7126178", + cordinates: "Point(-122.402 37.7873)", + locationLabel: "Palace Hotel Residential Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4260648", + cordinates: "Point(120.97754 14.519863)", + locationLabel: "Pagcor Tower", + }, + { + location: "http://www.wikidata.org/entity/Q19817559", + cordinates: "Point(121.027222222 14.561111111)", + locationLabel: "Pacific Star Building", + height: "112.5", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q3906835", + cordinates: "Point(121.045175 14.548578)", + locationLabel: "Pacific Plaza Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7122624", + cordinates: "Point(-96.795288 32.782652)", + locationLabel: "Pacific Place", + }, + { + location: "http://www.wikidata.org/entity/Q3486922", + cordinates: "Point(-122.395758 37.791761)", + locationLabel: "Pacific Gas & Electric Building", + }, + { + location: "http://www.wikidata.org/entity/Q7122339", + cordinates: "Point(139.76694444 35.67805556)", + locationLabel: "Pacific Century Place Marunouchi", + }, + { + location: "http://www.wikidata.org/entity/Q38252040", + cordinates: "Point(-122.3322 47.604)", + locationLabel: "Pacific Building", + }, + { + location: "http://www.wikidata.org/entity/Q7121859", + cordinates: "Point(-122.68 45.5153)", + locationLabel: "PacWest Center", + }, + { + location: "http://www.wikidata.org/entity/Q14714579", + cordinates: "Point(-87.9094 43.0389)", + locationLabel: "Pabst Building", + }, + { + location: "http://www.wikidata.org/entity/Q14708129", + cordinates: "Point(-78.6387 35.7767)", + locationLabel: "PNC Plaza (Raleigh)", + }, + { + location: "http://www.wikidata.org/entity/Q3359758", + cordinates: "Point(-85.7589 38.2536)", + locationLabel: "PNC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7119820", + cordinates: "Point(-81.6875 41.5007)", + locationLabel: "PNC Center", + }, + { + location: "http://www.wikidata.org/entity/Q7119821", + cordinates: "Point(-80.1409 26.1219)", + locationLabel: "PNC Center", + }, + { + location: "http://www.wikidata.org/entity/Q3382213", + cordinates: "Point(135.497 34.7095)", + locationLabel: "PIAS Tower", + }, + { + location: "http://www.wikidata.org/entity/Q247799", + cordinates: "Point(21.00416667 52.22611111)", + locationLabel: "Oxford Tower", + }, + { + location: "http://www.wikidata.org/entity/Q23338352", + cordinates: "Point(-113.4925 53.544166666)", + locationLabel: "Oxford Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7115473", + cordinates: "Point(-79.384 43.65)", + locationLabel: "Oxford Tower", + height: "137", + numberOfElevators: "17", + }, + { + location: "http://www.wikidata.org/entity/Q11524377", + cordinates: "Point(139.765275 35.685606)", + locationLabel: "Otemachi Tower", + }, + { + location: "http://www.wikidata.org/entity/Q28686366", + cordinates: "Point(139.764722222 35.688611111)", + locationLabel: "Otemachi Financial City Grand Cube", + }, + { + location: "http://www.wikidata.org/entity/Q3499753", + cordinates: "Point(10.75525 59.91225)", + locationLabel: "Oslo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1201344", + cordinates: "Point(135.415 34.63833333)", + locationLabel: "Osaka Prefectural Government Sakishima Building", + }, + { + location: "http://www.wikidata.org/entity/Q11440019", + cordinates: "Point(135.490417 34.694472)", + locationLabel: "Osaka Nakanoshima National Government Building", + }, + { + location: "http://www.wikidata.org/entity/Q11439996", + cordinates: "Point(135.496889 34.700028)", + locationLabel: "Osaka Marubiru", + }, + { + location: "http://www.wikidata.org/entity/Q11440183", + cordinates: "Point(135.500139 34.702278)", + locationLabel: "Osaka Fukoku Seimei Building", + }, + { + location: "http://www.wikidata.org/entity/Q11441684", + cordinates: "Point(135.499222 34.698917)", + locationLabel: "Osaka Ekimae Building No.3", + }, + { + location: "http://www.wikidata.org/entity/Q2883948", + cordinates: "Point(135.460222 34.669806)", + locationLabel: "Osaka Bay Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14680637", + cordinates: "Point(-112.075 33.4495)", + locationLabel: "Orpheum Lofts", + }, + { + location: "http://www.wikidata.org/entity/Q223207", + cordinates: "Point(121.494716666 31.241669444)", + locationLabel: "Oriental Pearl Tower", + height: "465", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q7100949", + cordinates: "Point(-122.264 37.8099)", + locationLabel: "Ordway Building", + }, + { + location: "http://www.wikidata.org/entity/Q3355048", + cordinates: "Point(-81.3792 28.5481)", + locationLabel: "Orange County Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q7099073", + cordinates: "Point(144.962 -37.8173)", + locationLabel: "Optus Centre", + }, + { + location: "http://www.wikidata.org/entity/Q41811212", + cordinates: "Point(-87.621667 41.891111)", + locationLabel: "Optima Signature", + }, + { + location: "http://www.wikidata.org/entity/Q686644", + cordinates: "Point(8.67 50.115833)", + locationLabel: "OpernTurm", + height: "170", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q2471603", + cordinates: "Point(-80.186956 25.792394)", + locationLabel: "Opera Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7095550", + cordinates: "Point(-1.541283 53.802786)", + locationLabel: "Opal Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2023928", + cordinates: "Point(-73.9792 40.7652)", + locationLabel: "One57", + height: "257", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q2023928", + cordinates: "Point(-73.9792 40.7652)", + locationLabel: "One57", + height: "1005", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q7093438", + cordinates: "Point(-79.3744 43.6422)", + locationLabel: "One Yonge Street", + }, + { + location: "http://www.wikidata.org/entity/Q1342690", + cordinates: "Point(-73.9877 40.7624)", + locationLabel: "One Worldwide Plaza", + height: "237.1", + numberOfElevators: "26", + }, + { + location: "http://www.wikidata.org/entity/Q11245", + cordinates: "Point(-74.0135 40.713)", + locationLabel: "One World Trade Center", + height: "541", + numberOfElevators: "73", + }, + { + location: "http://www.wikidata.org/entity/Q7093422", + cordinates: "Point(-118.19984 33.76774)", + locationLabel: "One World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q20445370", + cordinates: "Point(-74.0135 40.712778)", + locationLabel: "One World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q7093400", + cordinates: "Point(-83.045556 42.328889)", + locationLabel: "One Woodward Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q683915", + cordinates: "Point(-123.127 49.2805)", + locationLabel: "One Wall Centre", + height: "150", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q7093327", + cordinates: "Point(-96.81027 32.785944)", + locationLabel: "One Victory Park", + }, + { + location: "http://www.wikidata.org/entity/Q18398409", + cordinates: "Point(-73.9785 40.753)", + locationLabel: "One Vanderbilt", + height: "427", + numberOfElevators: "42", + }, + { + location: "http://www.wikidata.org/entity/Q7093326", + cordinates: "Point(-111.891 40.7649)", + locationLabel: "One Utah Center", + }, + { + location: "http://www.wikidata.org/entity/Q7093323", + cordinates: "Point(-90.1909 38.63)", + locationLabel: "One US Bank Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q11798330", + cordinates: "Point(34.7961 32.0872)", + locationLabel: "One Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1139633", + cordinates: "Point(-73.9865 40.7564)", + locationLabel: "One Times Square", + }, + { + location: "http://www.wikidata.org/entity/Q19817557", + cordinates: "Point(-80.1901 25.7842)", + locationLabel: "One Thousand Museum", + }, + { + location: "http://www.wikidata.org/entity/Q20713758", + cordinates: "Point(-0.1013 51.4936)", + locationLabel: "One The Elephant", + }, + { + location: "http://www.wikidata.org/entity/Q7093278", + cordinates: "Point(-82.4569 27.9469)", + locationLabel: "One Tampa City Center", + }, + { + location: "http://www.wikidata.org/entity/Q3352653", + cordinates: "Point(-104.996111111 39.749166666)", + locationLabel: "One Tabor Center", + }, + { + location: "http://www.wikidata.org/entity/Q7093266", + cordinates: "Point(-73.960476 40.756831)", + locationLabel: "One Sutton Place South", + }, + { + location: "http://www.wikidata.org/entity/Q2257273", + cordinates: "Point(-87.629 41.8955)", + locationLabel: "One Superior Place", + }, + { + location: "http://www.wikidata.org/entity/Q21609056", + cordinates: "Point(-82.721169 27.692254)", + locationLabel: "One St. Petersburg", + }, + { + location: "http://www.wikidata.org/entity/Q2259682", + cordinates: "Point(-87.6362 41.8816)", + locationLabel: "One South Wacker", + }, + { + location: "http://www.wikidata.org/entity/Q7093219", + cordinates: "Point(-75.163611111 39.951388888)", + locationLabel: "One South Broad", + }, + { + location: "http://www.wikidata.org/entity/Q7093178", + cordinates: "Point(103.851 1.27925)", + locationLabel: "One Shenton Way", + }, + { + location: "http://www.wikidata.org/entity/Q28868", + cordinates: "Point(-90.0711 29.9502)", + locationLabel: "One Shell Square", + }, + { + location: "http://www.wikidata.org/entity/Q1537698", + cordinates: "Point(-95.3677 29.7591)", + locationLabel: "One Shell Plaza", + height: "218", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q7093168", + cordinates: "Point(-83.53055556 41.65333333)", + locationLabel: "One SeaGate", + }, + { + location: "http://www.wikidata.org/entity/Q3499076", + cordinates: "Point(-122.401 37.7904)", + locationLabel: "One Sansome Street", + }, + { + location: "http://www.wikidata.org/entity/Q16896193", + cordinates: "Point(-74.1671 40.7402)", + locationLabel: "One Riverview (Newark)", + }, + { + location: "http://www.wikidata.org/entity/Q16896186", + cordinates: "Point(-73.9914 40.7744)", + locationLabel: "One Riverside Park", + }, + { + location: "http://www.wikidata.org/entity/Q7093156", + cordinates: "Point(-83.0404 42.3192)", + locationLabel: "One Riverside Drive", + }, + { + location: "http://www.wikidata.org/entity/Q3352644", + cordinates: "Point(-122.39213889 37.78577806)", + locationLabel: "One Rincon Hill", + }, + { + location: "http://www.wikidata.org/entity/Q25707769", + cordinates: "Point(103.852222 1.281667)", + locationLabel: "One Raffles Quay North Tower", + }, + { + location: "http://www.wikidata.org/entity/Q333305", + cordinates: "Point(103.851063888 1.284258333)", + locationLabel: "One Raffles Place", + }, + { + location: "http://www.wikidata.org/entity/Q643334", + cordinates: "Point(-87.6233 41.8849)", + locationLabel: "One Prudential Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7093134", + cordinates: "Point(-82.6359 27.7705)", + locationLabel: "One Progress Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1138648", + cordinates: "Point(-73.9931 40.7514)", + locationLabel: "One Penn Plaza", + height: "229", + numberOfElevators: "44", + }, + { + location: "http://www.wikidata.org/entity/Q10902454", + cordinates: "Point(114.17002778 22.29608333)", + locationLabel: "One Peking Road", + }, + { + location: "http://www.wikidata.org/entity/Q7093107", + cordinates: "Point(-84.3894 33.7547)", + locationLabel: "One Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7093108", + cordinates: "Point(-79.6483 43.5881)", + locationLabel: "One Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3352624", + cordinates: "Point(-95.3611 29.7542)", + locationLabel: "One Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q21075757", + cordinates: "Point(-80.0032 40.4398)", + locationLabel: "One PPG Place", + }, + { + location: "http://www.wikidata.org/entity/Q7093103", + cordinates: "Point(-80.0006 40.4411)", + locationLabel: "One PNC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q11696609", + cordinates: "Point(153.03 -27.4676)", + locationLabel: "One One One Eagle Street", + }, + { + location: "http://www.wikidata.org/entity/Q7093018", + cordinates: "Point(-83.0024 39.9685)", + locationLabel: "One Nationwide Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7093005", + cordinates: "Point(-86.778 36.1629)", + locationLabel: "One Nashville Place", + }, + { + location: "http://www.wikidata.org/entity/Q7093003", + cordinates: "Point(-87.6223 41.8671)", + locationLabel: "One Museum Park West", + }, + { + location: "http://www.wikidata.org/entity/Q7092936", + cordinates: "Point(-94.7899 29.307)", + locationLabel: "One Moody Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3498806", + cordinates: "Point(-122.403 37.7891)", + locationLabel: "One Montgomery Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7092892", + cordinates: "Point(-75.164722222 39.951388888)", + locationLabel: "One Meridian Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092890", + cordinates: "Point(121.04505556 14.54767778)", + locationLabel: "One McKinley Place", + }, + { + location: "http://www.wikidata.org/entity/Q7092888", + cordinates: "Point(-122.399166666 37.795555555)", + locationLabel: "One Maritime Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092886", + cordinates: "Point(103.852 1.28226)", + locationLabel: "One Marina Boulevard", + }, + { + location: "http://www.wikidata.org/entity/Q19833930", + cordinates: "Point(-73.991227 40.710446)", + locationLabel: "One Manhattan Square", + }, + { + location: "http://www.wikidata.org/entity/Q7092849", + cordinates: "Point(-96.8018 32.7804)", + locationLabel: "One Main Place", + }, + { + location: "http://www.wikidata.org/entity/Q7092848", + cordinates: "Point(-73.98807 40.74064)", + locationLabel: "One Madison", + height: "621", + numberOfElevators: "2", + }, + { + location: "http://www.wikidata.org/entity/Q7092847", + cordinates: "Point(-82.4557 27.9479)", + locationLabel: "One Mack-Cali Center", + }, + { + location: "http://www.wikidata.org/entity/Q14707143", + cordinates: "Point(-78.8742 42.8838)", + locationLabel: "One M&T Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2024017", + cordinates: "Point(121.506523 31.241264)", + locationLabel: "One Lujiazui", + }, + { + location: "http://www.wikidata.org/entity/Q7092825", + cordinates: "Point(-81.2466 42.9857)", + locationLabel: "One London Place", + }, + { + location: "http://www.wikidata.org/entity/Q7092821", + cordinates: "Point(-75.17 39.9564)", + locationLabel: "One Logan Square", + }, + { + location: "http://www.wikidata.org/entity/Q12501357", + cordinates: "Point(-122.201 47.6158)", + locationLabel: "One Lincoln Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6351283", + cordinates: "Point(-71.058088888 42.352538888)", + locationLabel: "One Lincoln Street", + }, + { + location: "http://www.wikidata.org/entity/Q1144187", + cordinates: "Point(-74.010833333 40.709722222)", + locationLabel: "One Liberty Plaza", + height: "226", + numberOfElevators: "39", + }, + { + location: "http://www.wikidata.org/entity/Q2024006", + cordinates: "Point(-79.3781 43.6488)", + locationLabel: "One King Street West", + }, + { + location: "http://www.wikidata.org/entity/Q1417597", + cordinates: "Point(114.21336 22.28606)", + locationLabel: "One Island East", + height: "298.4", + numberOfElevators: "37", + }, + { + location: "http://www.wikidata.org/entity/Q1517863", + cordinates: "Point(-73.978769 40.752044)", + locationLabel: "One Grand Central Place", + height: "205.1", + numberOfElevators: "31", + }, + { + location: "http://www.wikidata.org/entity/Q7092664", + cordinates: "Point(103.8477 1.2858)", + locationLabel: "One George Street", + }, + { + location: "http://www.wikidata.org/entity/Q3498789", + cordinates: "Point(-122.399 37.7918)", + locationLabel: "One Front Street", + }, + { + location: "http://www.wikidata.org/entity/Q7092634", + cordinates: "Point(-71.41 41.8253)", + locationLabel: "One Financial Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092633", + cordinates: "Point(-80.14 26.121666666)", + locationLabel: "One Financial Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1351185", + cordinates: "Point(-71.056164 42.352272)", + locationLabel: "One Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q7092603", + cordinates: "Point(-122.4 37.7945)", + locationLabel: "One Embarcadero Center", + }, + { + location: "http://www.wikidata.org/entity/Q7092585", + cordinates: "Point(-71.0575 42.358)", + locationLabel: "One Devonshire Place", + }, + { + location: "http://www.wikidata.org/entity/Q429236", + cordinates: "Point(-73.97 40.7535)", + locationLabel: "One Dag Hammarskjöld Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q781961", + cordinates: "Point(-73.944286 40.747078)", + locationLabel: "One Court Square", + height: "205", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q14711206", + cordinates: "Point(-97.7448 30.2642)", + locationLabel: "One Congress Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092535", + cordinates: "Point(-73.7593 42.6551)", + locationLabel: "One Commerce Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092534", + cordinates: "Point(-83.00121 39.96246)", + locationLabel: "One Columbus Center", + }, + { + location: "http://www.wikidata.org/entity/Q2023965", + cordinates: "Point(-81.6892 41.5036)", + locationLabel: "One Cleveland Center", + }, + { + location: "http://www.wikidata.org/entity/Q7092530", + cordinates: "Point(-95.3647 29.7562)", + locationLabel: "One City Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7092526", + cordinates: "Point(-71.4107 41.8274)", + locationLabel: "One Citizens Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q138768", + cordinates: "Point(-0.014 51.5055)", + locationLabel: "One Churchill Place", + }, + { + location: "http://www.wikidata.org/entity/Q10931638", + cordinates: "Point(113.54653 22.18543)", + locationLabel: "One Central", + }, + { + location: "http://www.wikidata.org/entity/Q7092514", + cordinates: "Point(-90.0655 29.9514)", + locationLabel: "One Canal Place", + }, + { + location: "http://www.wikidata.org/entity/Q503477", + cordinates: "Point(-0.02 51.505)", + locationLabel: "One Canada Square", + height: "240", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q2436941", + cordinates: "Point(-118.251311 34.05223)", + locationLabel: "One California Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092509", + cordinates: "Point(-122.397 37.7932)", + locationLabel: "One California", + }, + { + location: "http://www.wikidata.org/entity/Q12064827", + cordinates: "Point(-122.4 37.7908)", + locationLabel: "One Bush Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q646874", + cordinates: "Point(-80.193549 25.759114)", + locationLabel: "One Broadway", + }, + { + location: "http://www.wikidata.org/entity/Q1636790", + cordinates: "Point(-71.0584 42.3585)", + locationLabel: "One Boston Place", + }, + { + location: "http://www.wikidata.org/entity/Q612340", + cordinates: "Point(-79.3862 43.67)", + locationLabel: "One Bloor East", + }, + { + location: "http://www.wikidata.org/entity/Q2893700", + cordinates: "Point(-0.105051 51.507764)", + locationLabel: "One Blackfriars", + }, + { + location: "http://www.wikidata.org/entity/Q7092489", + cordinates: "Point(-80.187989 25.773984)", + locationLabel: "One Biscayne Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2023952", + cordinates: "Point(-80.187788 25.773251)", + locationLabel: "One Bayfront Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q659652", + cordinates: "Point(-73.986388888 40.757777777)", + locationLabel: "One Astor Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092458", + cordinates: "Point(-96.7953 32.7919)", + locationLabel: "One Arts Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7092446", + cordinates: "Point(-97.7432 30.2686)", + locationLabel: "One American Center", + }, + { + location: "http://www.wikidata.org/entity/Q1922608", + cordinates: "Point(-117.169 32.7162)", + locationLabel: "One America Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3352062", + cordinates: "Point(-117.159 32.7067)", + locationLabel: "Omni San Diego Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7090338", + cordinates: "Point(-71.4162 41.8253)", + locationLabel: "Omni Providence Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q18414927", + cordinates: "Point(-97.32842 32.74895)", + locationLabel: "Omni Fort Worth Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7090323", + cordinates: "Point(-96.804 32.7755)", + locationLabel: "Omni Dallas Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q510272", + cordinates: "Point(-73.975994 40.759175)", + locationLabel: "Olympic Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1787863", + cordinates: "Point(-87.623064 41.896358)", + locationLabel: "Olympia Centre", + }, + { + location: "http://www.wikidata.org/entity/Q48842378", + cordinates: "Point(18.570457 54.403635)", + locationLabel: "Olivia Star", + }, + { + location: "http://www.wikidata.org/entity/Q7087430", + cordinates: "Point(-79.9981 40.4411)", + locationLabel: "Oliver Building", + }, + { + location: "http://www.wikidata.org/entity/Q7087125", + cordinates: "Point(-122.334 47.6136)", + locationLabel: "Olive 8", + }, + { + location: "http://www.wikidata.org/entity/Q14687991", + cordinates: "Point(-87.629 41.8766)", + locationLabel: "Old Colony Building", + }, + { + location: "http://www.wikidata.org/entity/Q18155373", + cordinates: "Point(-87.63744444 41.875)", + locationLabel: "Old Chicago Main Post Office Twin Towers", + }, + { + location: "http://www.wikidata.org/entity/Q7082410", + cordinates: "Point(-97.5164 35.4686)", + locationLabel: "Oklahoma Tower", + }, + { + location: "http://www.wikidata.org/entity/Q23058895", + cordinates: "Point(-90.074166599 29.954010042)", + locationLabel: "Oil and Gas Building", + }, + { + location: "http://www.wikidata.org/entity/Q11073866", + cordinates: "Point(113.25155278 23.11205833)", + locationLabel: "Oi Kwan Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q11073866", + cordinates: "Point(113.2550009 23.1095601)", + locationLabel: "Oi Kwan Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7080890", + cordinates: "Point(-81.6874 41.5015)", + locationLabel: "Ohio Savings Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q12027938", + cordinates: "Point(16.5913 49.2097)", + locationLabel: "Office complex in Šumavská street", + }, + { + location: "http://www.wikidata.org/entity/Q6048391", + cordinates: "Point(-99.8511 16.8469)", + locationLabel: "Oceanic 2000", + }, + { + location: "http://www.wikidata.org/entity/Q7076051", + cordinates: "Point(114.062 22.3657)", + locationLabel: "Ocean Pointe", + }, + { + location: "http://www.wikidata.org/entity/Q134124", + cordinates: "Point(55.149989 25.090914)", + locationLabel: "Ocean Heights", + height: "310", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q96096732", + cordinates: "Point(139.634361111 35.458111111)", + locationLabel: "Ocean Gate Minato Mirai", + }, + { + location: "http://www.wikidata.org/entity/Q7075994", + cordinates: "Point(103.852 1.28509)", + locationLabel: "Ocean Financial Centre", + }, + { + location: "http://www.wikidata.org/entity/Q4923599", + cordinates: "Point(100.871 12.899)", + locationLabel: "Ocean 1 Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7075457", + cordinates: "Point(-93.6227 41.5867)", + locationLabel: "Observatory Building", + }, + { + location: "http://www.wikidata.org/entity/Q7074428", + cordinates: "Point(121.466214 31.206379)", + locationLabel: "Oasis Skyway Garden Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q5359208", + cordinates: "Point(131.60166667 33.23805556)", + locationLabel: "Oasis Hiroba 21", + }, + { + location: "http://www.wikidata.org/entity/Q24036204", + cordinates: "Point(103.84433 1.27588)", + locationLabel: "Oasia Hotel Downtown", + }, + { + location: "http://www.wikidata.org/entity/Q7073736", + cordinates: "Point(-94.5789 39.1012)", + locationLabel: "Oak Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11237600", + cordinates: "Point(136.905861 35.174056)", + locationLabel: "OS Plaza Building", + }, + { + location: "http://www.wikidata.org/entity/Q29837565", + cordinates: "Point(113.978 22.5375)", + locationLabel: "OCT Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2790093", + cordinates: "Point(103.8491 1.285)", + locationLabel: "OCBC Centre", + }, + { + location: "http://www.wikidata.org/entity/Q11237066", + cordinates: "Point(135.533056 34.69175)", + locationLabel: "OBP Castle Tower", + }, + { + location: "http://www.wikidata.org/entity/Q646697", + cordinates: "Point(135.5198336 34.6998837)", + locationLabel: "OAP Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7072173", + cordinates: "Point(-106.570833 31.891389)", + locationLabel: "O. T. Bassett Tower", + }, + { + location: "http://www.wikidata.org/entity/Q428683", + cordinates: "Point(55.26972222 25.18083333)", + locationLabel: "O-14", + }, + { + location: "http://www.wikidata.org/entity/Q1338561", + cordinates: "Point(-79.3865 43.6702)", + locationLabel: "Number One Bloor", + height: "257", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q46996839", + cordinates: "Point(-97.7432 30.2694)", + locationLabel: "Norwood Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7056379", + cordinates: "Point(-81.6909 41.5066)", + locationLabel: "North Point Office Building and Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2166184", + cordinates: "Point(-87.6146 41.8908)", + locationLabel: "North Pier Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q774991", + cordinates: "Point(-87.6155 41.8854)", + locationLabel: "North Harbor Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11325867", + cordinates: "Point(135.4955 34.703)", + locationLabel: "North Gate Building", + }, + { + location: "http://www.wikidata.org/entity/Q2788570", + cordinates: "Point(4.359166666 50.861388888)", + locationLabel: "North Galaxy Towers", + height: "107", + numberOfElevators: "35", + }, + { + location: "http://www.wikidata.org/entity/Q3696010", + cordinates: "Point(-100.783 46.8208)", + locationLabel: "North Dakota State Capitol", + }, + { + location: "http://www.wikidata.org/entity/Q87472061", + cordinates: "Point(-97.147111111 49.888472222)", + locationLabel: "Norquay Building", + }, + { + location: "http://www.wikidata.org/entity/Q7041956", + cordinates: "Point(-98.4897 29.4256)", + locationLabel: "Nix Professional Building", + }, + { + location: "http://www.wikidata.org/entity/Q28873182", + cordinates: "Point(121.607075 29.868919)", + locationLabel: "Ningbo Global Shipping Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1605680", + cordinates: "Point(121.607985 29.864661)", + locationLabel: "Ningbo Center", + }, + { + location: "http://www.wikidata.org/entity/Q520839", + cordinates: "Point(114.113055555 22.368611111)", + locationLabel: "Nina Tower", + }, + { + location: "http://www.wikidata.org/entity/Q7037103", + cordinates: "Point(55.211333333 25.059675)", + locationLabel: "Nili Tower", + }, + { + location: "http://www.wikidata.org/entity/Q16747427", + cordinates: "Point(139.056111 37.918611)", + locationLabel: "Niigata Nippo Media Ship", + }, + { + location: "http://www.wikidata.org/entity/Q11508317", + cordinates: "Point(139.774472 35.682611)", + locationLabel: "Nihonbashi Icchōme Mitsui building", + }, + { + location: "http://www.wikidata.org/entity/Q3341282", + cordinates: "Point(-95.3653 29.759)", + locationLabel: "Niels Esperson Building", + }, + { + location: "http://www.wikidata.org/entity/Q11234904", + cordinates: "Point(139.04327778 37.9225)", + locationLabel: "Next21", + }, + { + location: "http://www.wikidata.org/entity/Q7020873", + cordinates: "Point(-114.079444444 51.046388888)", + locationLabel: "Nexen Building, Calgary", + }, + { + location: "http://www.wikidata.org/entity/Q3339164", + cordinates: "Point(103.842183333 1.317825)", + locationLabel: "Newton Suites", + }, + { + location: "http://www.wikidata.org/entity/Q744279", + cordinates: "Point(-74.0351 40.7278)", + locationLabel: "Newport Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15917518", + cordinates: "Point(-0.02508333 51.50430556)", + locationLabel: "Newfoundland Quay", + height: "219.8", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q2190930", + cordinates: "Point(-87.6289 41.9016)", + locationLabel: "Newberry Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q14705805", + cordinates: "Point(-74.1644 40.7358)", + locationLabel: "Newark Legal Center", + }, + { + location: "http://www.wikidata.org/entity/Q1429071", + cordinates: "Point(-115.175 36.102)", + locationLabel: "New York-New York Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q956198", + cordinates: "Point(-74.0053 40.7121)", + locationLabel: "New York World Building", + }, + { + location: "http://www.wikidata.org/entity/Q7014774", + cordinates: "Point(-74.0053 40.7114)", + locationLabel: "New York Tribune Building", + }, + { + location: "http://www.wikidata.org/entity/Q192680", + cordinates: "Point(-73.99 40.756388888)", + locationLabel: "New York Times Building", + height: "318.8", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q14707082", + cordinates: "Point(-73.9863 40.7424)", + locationLabel: "New York Merchandise Mart", + }, + { + location: "http://www.wikidata.org/entity/Q7013741", + cordinates: "Point(-73.98568 40.758434)", + locationLabel: "New York Marriott Marquis", + }, + { + location: "http://www.wikidata.org/entity/Q1499859", + cordinates: "Point(-73.985555555 40.742777777)", + locationLabel: "New York Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q7012602", + cordinates: "Point(-80.188174 25.775722)", + locationLabel: "New World Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11080920", + cordinates: "Point(114.174 22.2945)", + locationLabel: "New World Centre", + }, + { + location: "http://www.wikidata.org/entity/Q7012506", + cordinates: "Point(114.05038889 22.54805556)", + locationLabel: "New World Center", + }, + { + location: "http://www.wikidata.org/entity/Q7010746", + cordinates: "Point(-90.0672 29.9526)", + locationLabel: "New Orleans Marriott", + }, + { + location: "http://www.wikidata.org/entity/Q11080948", + cordinates: "Point(118.79008333 32.04247222)", + locationLabel: "New Century Plaza Tower A", + }, + { + location: "http://www.wikidata.org/entity/Q2902481", + cordinates: "Point(34.76669722 32.05969167)", + locationLabel: "Neve Tzedek Tower", + }, + { + location: "http://www.wikidata.org/entity/Q21026850", + cordinates: "Point(37.53444444 55.75138889)", + locationLabel: "Neva Towers", + }, + { + location: "http://www.wikidata.org/entity/Q59149414", + cordinates: "Point(8.693333333 50.097222222)", + locationLabel: "Neuer Henninger Turm", + }, + { + location: "http://www.wikidata.org/entity/Q24836698", + cordinates: "Point(121.46880556 25.02347222)", + locationLabel: "Neo Sky Dome", + }, + { + location: "http://www.wikidata.org/entity/Q4080267", + cordinates: "Point(-73.990833333 40.751388888)", + locationLabel: "Nelson Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3757252", + cordinates: "Point(-0.12144444 38.54448056)", + locationLabel: "Neguri Gane", + }, + { + location: "http://www.wikidata.org/entity/Q26000285", + cordinates: "Point(101.71861 3.1547)", + locationLabel: "Naza Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15719427", + cordinates: "Point(90.41638889 23.78027778)", + locationLabel: "Navana Tower", + }, + { + location: "http://www.wikidata.org/entity/Q960951", + cordinates: "Point(144.970833333 -37.813333333)", + locationLabel: "Nauru House", + height: "190", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q38242325", + cordinates: "Point(120.636492 24.164454)", + locationLabel: "National Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q6974579", + cordinates: "Point(-74.171032 40.736653)", + locationLabel: "National Newark Building", + }, + { + location: "http://www.wikidata.org/entity/Q6971504", + cordinates: "Point(-83.535225 41.651289)", + locationLabel: "National City Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q3336839", + cordinates: "Point(55.314444444 25.260555555)", + locationLabel: "National Bank of Dubai", + }, + { + location: "http://www.wikidata.org/entity/Q6970341", + cordinates: "Point(-90.070556 29.952222)", + locationLabel: "National American Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q6967586", + cordinates: "Point(-73.554883 40.726106)", + locationLabel: "Nassau University Medical Center", + }, + { + location: "http://www.wikidata.org/entity/Q6966961", + cordinates: "Point(-86.7817 36.1639)", + locationLabel: "Nashville City Center", + height: "123", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q1964773", + cordinates: "Point(120.893906 31.976095)", + locationLabel: "Nantong Zhongnan International Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1964601", + cordinates: "Point(118.718247 31.995685)", + locationLabel: "Nanjing World Trade Center Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q621675", + cordinates: "Point(72.823257 18.991499)", + locationLabel: "Namaste Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6960571", + cordinates: "Point(46.6527611 24.748836019)", + locationLabel: "Nakheel Tower, Riyadh", + }, + { + location: "http://www.wikidata.org/entity/Q11362859", + cordinates: "Point(135.48494444 34.68805556)", + locationLabel: "Nakanoshima Intes", + }, + { + location: "http://www.wikidata.org/entity/Q3335339", + cordinates: "Point(135.49675 34.69352778)", + locationLabel: "Nakanoshima Festival Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3335322", + cordinates: "Point(139.7002 35.6438)", + locationLabel: "Nakameguro Atlas Tower", + }, + { + location: "http://www.wikidata.org/entity/Q420521", + cordinates: "Point(136.907972 35.156194)", + locationLabel: "Nagoya-Center Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11414846", + cordinates: "Point(136.885417 35.175833)", + locationLabel: "Nagoya Prime Central Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11414855", + cordinates: "Point(136.886331 35.167558)", + locationLabel: "Nagoya Mitsui Building", + }, + { + location: "http://www.wikidata.org/entity/Q11414868", + cordinates: "Point(136.898622 35.172736)", + locationLabel: "Nagoya Marubeni Building", + }, + { + location: "http://www.wikidata.org/entity/Q2913609", + cordinates: "Point(136.88111111 35.17527778)", + locationLabel: "Nagoya Lucent Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6125413", + cordinates: "Point(136.8903028 35.17280556)", + locationLabel: "Nagoya International Center", + }, + { + location: "http://www.wikidata.org/entity/Q11414806", + cordinates: "Point(136.896781 35.169706)", + locationLabel: "Nagoya Intercity", + }, + { + location: "http://www.wikidata.org/entity/Q11415169", + cordinates: "Point(136.90025 35.168056)", + locationLabel: "Nagoya Hirokōji Building", + }, + { + location: "http://www.wikidata.org/entity/Q11414815", + cordinates: "Point(136.886486 35.170378)", + locationLabel: "Nagoya Crosscourt Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11415038", + cordinates: "Point(136.935556 35.139722)", + locationLabel: "Nagoya City University Hospital", + }, + { + location: "http://www.wikidata.org/entity/Q11414843", + cordinates: "Point(136.885028 35.171067)", + locationLabel: "Nagoya Building", + }, + { + location: "http://www.wikidata.org/entity/Q302517", + cordinates: "Point(15.2891 -4.27212)", + locationLabel: "Nabemba Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2913644", + cordinates: "Point(139.75991111 35.66441944)", + locationLabel: "NTV Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11236089", + cordinates: "Point(139.795833 35.698333)", + locationLabel: "NTT DoCoMo Sumida Building", + }, + { + location: "http://www.wikidata.org/entity/Q28684921", + cordinates: "Point(139.69425 35.52861111)", + locationLabel: "NTT DoCoMo Kawasaki Building", + }, + { + location: "http://www.wikidata.org/entity/Q11236077", + cordinates: "Point(136.898194 35.168611)", + locationLabel: "NTT Data Fushimi Building", + }, + { + location: "http://www.wikidata.org/entity/Q16733944", + cordinates: "Point(3.39751 6.4461)", + locationLabel: "NITEL Building", + }, + { + location: "http://www.wikidata.org/entity/Q11441439", + cordinates: "Point(135.52179722 34.68276944)", + locationLabel: "NHK Osaka Broadcasting Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q1664761", + cordinates: "Point(114.029556 22.535807)", + locationLabel: "NEO Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1621350", + cordinates: "Point(139.748055555 35.649444444)", + locationLabel: "NEC Supertower", + }, + { + location: "http://www.wikidata.org/entity/Q1810949", + cordinates: "Point(-87.621106 41.889955)", + locationLabel: "NBC Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11788312", + cordinates: "Point(34.7964 32.09)", + locationLabel: "NAM Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11323905", + cordinates: "Point(136.905747 35.165558)", + locationLabel: "NADYA PARK", + }, + { + location: "http://www.wikidata.org/entity/Q6940696", + cordinates: "Point(-80.1971 25.7736)", + locationLabel: "Museum Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6940697", + cordinates: "Point(-96.800248 32.789386)", + locationLabel: "Museum Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11453061", + cordinates: "Point(139.774194 35.686722)", + locationLabel: "Muromachi Higashi-Mitsui building", + }, + { + location: "http://www.wikidata.org/entity/Q18457937", + cordinates: "Point(139.774833 35.686917)", + locationLabel: "Muromachi Furukawa-Mitsui building", + }, + { + location: "http://www.wikidata.org/entity/Q17218121", + cordinates: "Point(139.77438889 35.68619444)", + locationLabel: "Muromachi Chibagin-Mitsui building", + }, + { + location: "http://www.wikidata.org/entity/Q11786697", + cordinates: "Point(55.1492 25.0856)", + locationLabel: "Murjan Tower", + }, + { + location: "http://www.wikidata.org/entity/Q99074227", + cordinates: "Point(139.626222222 35.459055555)", + locationLabel: "Murata Manufacturing Minatomirai Innovation Center", + }, + { + location: "http://www.wikidata.org/entity/Q6937326", + cordinates: "Point(-79.386 43.6621)", + locationLabel: "Murano, Toronto", + }, + { + location: "http://www.wikidata.org/entity/Q15260285", + cordinates: "Point(-80.137759 25.768533)", + locationLabel: "Murano at Portofino", + }, + { + location: "http://www.wikidata.org/entity/Q6937329", + cordinates: "Point(-80.140324 25.772843)", + locationLabel: "Murano Grande at Portofino", + }, + { + location: "http://www.wikidata.org/entity/Q15260284", + cordinates: "Point(-75.1753 39.9541)", + locationLabel: "Murano (skyscraper)", + }, + { + location: "http://www.wikidata.org/entity/Q14687923", + cordinates: "Point(-87.6244 41.88)", + locationLabel: "Municipal Courts Building", + }, + { + location: "http://www.wikidata.org/entity/Q6935770", + cordinates: "Point(-87.656944 41.998333)", + locationLabel: "Mundelein College Skyscraper", + }, + { + location: "http://www.wikidata.org/entity/Q14429066", + cordinates: "Point(102.563274 2.046187)", + locationLabel: "Muar Trade Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1770602", + cordinates: "Point(139.73166667 35.65361111)", + locationLabel: "Motoazabu Hills", + }, + { + location: "http://www.wikidata.org/entity/Q1093913", + cordinates: "Point(34.803888888 32.083333333)", + locationLabel: "Moshe Aviv Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6914041", + cordinates: "Point(-87.6301 41.8816)", + locationLabel: "Morrison Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1608810", + cordinates: "Point(-73.985767 40.760131)", + locationLabel: "Morgan Stanley Building", + }, + { + location: "http://www.wikidata.org/entity/Q18154595", + cordinates: "Point(-95.3416 29.7173)", + locationLabel: "Moody Towers", + }, + { + location: "http://www.wikidata.org/entity/Q323767", + cordinates: "Point(2.32198 48.84211)", + locationLabel: "Montparnasse Tower", + height: "209", + numberOfElevators: "25", + }, + { + location: "http://www.wikidata.org/entity/Q176278", + cordinates: "Point(4.485556 51.903611)", + locationLabel: "Montevideo", + height: "152.3", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q6905041", + cordinates: "Point(-118.334167 34.105)", + locationLabel: "Montecito Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q6904482", + cordinates: "Point(-87.631916666 41.880527777)", + locationLabel: "Montauk Building", + }, + { + location: "http://www.wikidata.org/entity/Q3322381", + cordinates: "Point(-73.9909 40.6936)", + locationLabel: "Montague-Court Building", + }, + { + location: "http://www.wikidata.org/entity/Q99718822", + cordinates: "Point(21.012380555 52.234972222)", + locationLabel: "Moniuszki Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4305041", + cordinates: "Point(-72.0914 41.4922)", + locationLabel: "Mohegan Sun", + }, + { + location: "http://www.wikidata.org/entity/Q25452628", + cordinates: "Point(-6.80513 34.019018)", + locationLabel: "Mohammed VI Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2878337", + cordinates: "Point(136.885833333 35.168055555)", + locationLabel: "Mode Gakuen Spiral Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1030463", + cordinates: "Point(139.696944444 35.691666666)", + locationLabel: "Mode Gakuen Cocoon Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6884774", + cordinates: "Point(139.757222222 35.670555555)", + locationLabel: "Mizuho Bank Uchisaiwaichō Head Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q11453702", + cordinates: "Point(140.872167 38.268722)", + locationLabel: "Miyagi Prefectural Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q21019638", + cordinates: "Point(139.76225 35.68780556)", + locationLabel: "Mitsui Bussan Building", + }, + { + location: "http://www.wikidata.org/entity/Q11357150", + cordinates: "Point(139.629722 35.456056)", + locationLabel: "Mitsubishi Heavy Industries Yokohama Building", + }, + { + location: "http://www.wikidata.org/entity/Q11356685", + cordinates: "Point(139.744778 35.653556)", + locationLabel: "Mita Kokusai Building", + }, + { + location: "http://www.wikidata.org/entity/Q89362207", + cordinates: "Point(27.177972222 38.447861111)", + locationLabel: "Mistral Residential Tower", + }, + { + location: "http://www.wikidata.org/entity/Q30752740", + cordinates: "Point(27.179388888 38.448027777)", + locationLabel: "Mistral Office Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1589842", + cordinates: "Point(16.4119 48.2358)", + locationLabel: "Mischek Tower", + }, + { + location: "http://www.wikidata.org/entity/Q42258", + cordinates: "Point(-46.635422 -23.5422)", + locationLabel: "Mirante do Vale", + height: "170", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q6872874", + cordinates: "Point(-83.0056 39.9547)", + locationLabel: "Miranova Place", + }, + { + location: "http://www.wikidata.org/entity/Q25389789", + cordinates: "Point(125.725563888 38.992438888)", + locationLabel: "Mirae Unha Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11341870", + cordinates: "Point(139.59472222 35.4075)", + locationLabel: "Mioka", + }, + { + location: "http://www.wikidata.org/entity/Q6869663", + cordinates: "Point(-75.7506 45.3976)", + locationLabel: "Minto Metropole", + }, + { + location: "http://www.wikidata.org/entity/Q1357656", + cordinates: "Point(114.267778 30.596389)", + locationLabel: "Minsheng Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q1384874", + cordinates: "Point(-93.265277777 44.977222222)", + locationLabel: "Minneapolis City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q3954120", + cordinates: "Point(37.584166666 55.745833333)", + locationLabel: "Ministry of Foreign Affairs of Russia main building", + height: "172", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q17210788", + cordinates: "Point(139.629333 35.458667)", + locationLabel: "Minato Mirai Grand Central Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6859956", + cordinates: "Point(-122.401 37.7913)", + locationLabel: "Mills Building", + }, + { + location: "http://www.wikidata.org/entity/Q12037426", + cordinates: "Point(17.14028 48.16958)", + locationLabel: "Millennium Tower II", + }, + { + location: "http://www.wikidata.org/entity/Q623517", + cordinates: "Point(55.265833333 25.194722222)", + locationLabel: "Millennium Tower", + height: "285", + numberOfElevators: "21", + }, + { + location: "http://www.wikidata.org/entity/Q80495", + cordinates: "Point(16.386944444 48.24)", + locationLabel: "Millennium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q195155", + cordinates: "Point(8.65555556 50.10944444)", + locationLabel: "Millennium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2180366", + cordinates: "Point(4.471667 51.9225)", + locationLabel: "Millennium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2662373", + cordinates: "Point(4.837222 52.393333)", + locationLabel: "Millennium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17109414", + cordinates: "Point(-71.0594 42.3558)", + locationLabel: "Millennium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q18619416", + cordinates: "Point(-73.98129 40.774775)", + locationLabel: "Millennium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6858922", + cordinates: "Point(-74.01736111 40.70541667)", + locationLabel: "Millennium Point", + }, + { + location: "http://www.wikidata.org/entity/Q18128054", + cordinates: "Point(-48.629121736 -26.992501925)", + locationLabel: "Millennium Palace", + height: "177.3", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q2342206", + cordinates: "Point(-87.629344 41.892831)", + locationLabel: "Millennium Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5102958", + cordinates: "Point(-74.010277777 40.711111111)", + locationLabel: "Millenium Hilton", + }, + { + location: "http://www.wikidata.org/entity/Q888058", + cordinates: "Point(103.86 1.29278)", + locationLabel: "Millenia Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14716226", + cordinates: "Point(-83.0426 42.3304)", + locationLabel: "Millender Center Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q2915930", + cordinates: "Point(-0.125972222 51.492222222)", + locationLabel: "Millbank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q98545390", + cordinates: "Point(12.347088 44.275819)", + locationLabel: "Milano Marittima Skyscraper", + }, + { + location: "http://www.wikidata.org/entity/Q25933332", + cordinates: "Point(34.793611111 32.0775)", + locationLabel: "Midtown Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1150357", + cordinates: "Point(139.731666666 35.666388888)", + locationLabel: "Midtown Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11342265", + cordinates: "Point(140.73538889 40.82763889)", + locationLabel: "Midlife Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1155401", + cordinates: "Point(136.885 35.17055556)", + locationLabel: "Midland Square", + }, + { + location: "http://www.wikidata.org/entity/Q6840875", + cordinates: "Point(-90.5736 41.5217)", + locationLabel: "MidAmerican Energy Building", + }, + { + location: "http://www.wikidata.org/entity/Q3011775", + cordinates: "Point(-80.195167 25.77465)", + locationLabel: "Miami-Dade County Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q806676", + cordinates: "Point(-80.191206 25.77205)", + locationLabel: "Miami Tower", + height: "191", + numberOfElevators: "19", + }, + { + location: "http://www.wikidata.org/entity/Q6827282", + cordinates: "Point(-80.186748 25.77222)", + locationLabel: "Miami Center", + }, + { + location: "http://www.wikidata.org/entity/Q234368", + cordinates: "Point(-73.995 40.7593)", + locationLabel: "MiMA", + }, + { + location: "http://www.wikidata.org/entity/Q1925883", + cordinates: "Point(-73.9793 40.764854)", + locationLabel: "Metropolitan Tower", + height: "218", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q6825278", + cordinates: "Point(-87.6246 41.8776)", + locationLabel: "Metropolitan Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1925855", + cordinates: "Point(-73.9866 40.7416)", + locationLabel: "Metropolitan Life North Building", + height: "137.5", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q652452", + cordinates: "Point(-73.9874 40.74124)", + locationLabel: "Metropolitan Life Insurance Company Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14686219", + cordinates: "Point(-80.314 25.6866)", + locationLabel: "Metropolis at Dadeland", + }, + { + location: "http://www.wikidata.org/entity/Q99539274", + cordinates: "Point(103.763138888 1.477527777)", + locationLabel: "Metropolis Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3756290", + cordinates: "Point(114.252 22.3043)", + locationLabel: "Metro Town", + }, + { + location: "http://www.wikidata.org/entity/Q6824742", + cordinates: "Point(-101.849 33.5848)", + locationLabel: "Metro Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1777464", + cordinates: "Point(-79.3883 43.6461)", + locationLabel: "Metro Hall", + }, + { + location: "http://www.wikidata.org/entity/Q464482", + cordinates: "Point(-73.976666666 40.753333333)", + locationLabel: "MetLife Building", + height: "246", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q6822226", + cordinates: "Point(-80.188608 25.771364)", + locationLabel: "Met 3", + }, + { + location: "http://www.wikidata.org/entity/Q6822221", + cordinates: "Point(-80.188608 25.771364)", + locationLabel: "Met 2 Marriott Marquis", + }, + { + location: "http://www.wikidata.org/entity/Q6822219", + cordinates: "Point(-80.188608 25.771364)", + locationLabel: "Met 1", + }, + { + location: "http://www.wikidata.org/entity/Q156198", + cordinates: "Point(8.652777777 50.112222222)", + locationLabel: "MesseTurm", + }, + { + location: "http://www.wikidata.org/entity/Q471340", + cordinates: "Point(8.642777777 50.111388888)", + locationLabel: "Messe Torhaus", + }, + { + location: "http://www.wikidata.org/entity/Q11777538", + cordinates: "Point(55.1503 25.084)", + locationLabel: "Mesk Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6820699", + cordinates: "Point(34.61666667 36.8)", + locationLabel: "Mertim", + }, + { + location: "http://www.wikidata.org/entity/Q99539380", + cordinates: "Point(103.765027777 1.460638888)", + locationLabel: "Merlin Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3306513", + cordinates: "Point(24.6339 60.151)", + locationLabel: "Meritorni", + }, + { + location: "http://www.wikidata.org/entity/Q6819302", + cordinates: "Point(-117.165277777 32.713333333)", + locationLabel: "Meridian Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q7969454", + cordinates: "Point(101.70073 3.14162)", + locationLabel: "Merdeka 118", + height: "644", + numberOfElevators: "87", + }, + { + location: "http://www.wikidata.org/entity/Q59483", + cordinates: "Point(37.539444444 55.750555555)", + locationLabel: "Mercury City Tower", + height: "338.8", + numberOfElevators: "31", + }, + { + location: "http://www.wikidata.org/entity/Q1921426", + cordinates: "Point(-87.6355 41.8886)", + locationLabel: "Merchandise Mart", + }, + { + location: "http://www.wikidata.org/entity/Q6818031", + cordinates: "Point(-96.7968 32.7808)", + locationLabel: "Mercantile National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q6818005", + cordinates: "Point(-66.899666666 10.505361111)", + locationLabel: "Mercantil Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6591671", + cordinates: "Point(34.804722222 32.083508333)", + locationLabel: "Menora Mivtakhim Tower", + }, + { + location: "http://www.wikidata.org/entity/Q60854801", + cordinates: "Point(20.992719444 52.232872222)", + locationLabel: "Mennica Legacy Tower", + }, + { + location: "http://www.wikidata.org/entity/Q118214", + cordinates: "Point(101.666111 3.115833)", + locationLabel: "Menara Telekom", + }, + { + location: "http://www.wikidata.org/entity/Q6816459", + cordinates: "Point(101.59251 3.08257)", + locationLabel: "Menara Mesiniaga", + }, + { + location: "http://www.wikidata.org/entity/Q6816465", + cordinates: "Point(101.645 3.099166666)", + locationLabel: "Menara MBPJ", + }, + { + location: "http://www.wikidata.org/entity/Q6816458", + cordinates: "Point(101.736727777 3.160186111)", + locationLabel: "Menara Great Eastern", + }, + { + location: "http://www.wikidata.org/entity/Q6816461", + cordinates: "Point(101.7157 3.1541)", + locationLabel: "Menara ExxonMobil", + }, + { + location: "http://www.wikidata.org/entity/Q6816457", + cordinates: "Point(101.7172 3.16)", + locationLabel: "Menara Citibank", + }, + { + location: "http://www.wikidata.org/entity/Q1584276", + cordinates: "Point(100.367261 6.12445)", + locationLabel: "Menara Alor Setar", + }, + { + location: "http://www.wikidata.org/entity/Q6815555", + cordinates: "Point(-95.392 29.7638)", + locationLabel: "Memorial by Windsor", + }, + { + location: "http://www.wikidata.org/entity/Q18706050", + cordinates: "Point(-80.19007 25.78849)", + locationLabel: "Melody", + }, + { + location: "http://www.wikidata.org/entity/Q10917805", + cordinates: "Point(136.88416667 35.16852778)", + locationLabel: "Meitetsu Bus Center", + }, + { + location: "http://www.wikidata.org/entity/Q3571969", + cordinates: "Point(135.492 34.6986)", + locationLabel: "Meiji Yasuda Life Osaka Umeda Building", + }, + { + location: "http://www.wikidata.org/entity/Q16894990", + cordinates: "Point(-117.161 32.7183)", + locationLabel: "Medico-Dental Building", + }, + { + location: "http://www.wikidata.org/entity/Q252160", + cordinates: "Point(-122.403 37.7887)", + locationLabel: "McKesson Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q14716699", + cordinates: "Point(-81.6887 41.5018)", + locationLabel: "McDonald Investment Center", + }, + { + location: "http://www.wikidata.org/entity/Q6800548", + cordinates: "Point(-71.0623 42.3595)", + locationLabel: "McCormack Building", + }, + { + location: "http://www.wikidata.org/entity/Q6799926", + cordinates: "Point(-122.414 37.781)", + locationLabel: "McAllister Tower Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q2745033", + cordinates: "Point(101.6997 3.1472)", + locationLabel: "Maybank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6796900", + cordinates: "Point(103.852 1.2859)", + locationLabel: "Maybank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5260261", + cordinates: "Point(101.713 3.158)", + locationLabel: "Maxis Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3306015", + cordinates: "Point(121.400101 31.20672)", + locationLabel: "Maxdo Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2219285", + cordinates: "Point(8.90663 44.411372)", + locationLabel: "Matitone", + }, + { + location: "http://www.wikidata.org/entity/Q3117510", + cordinates: "Point(-87.6254 41.8877)", + locationLabel: "Mather Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6786888", + cordinates: "Point(-2.23335 53.467)", + locationLabel: "Mathematics Tower, Manchester", + }, + { + location: "http://www.wikidata.org/entity/Q4284293", + cordinates: "Point(-73.97105 40.8004)", + locationLabel: "Master Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q20006849", + cordinates: "Point(-79.37921 43.6535)", + locationLabel: "Massey Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11367939", + cordinates: "Point(139.769725 35.683261)", + locationLabel: "Marunouchi Trust City", + }, + { + location: "http://www.wikidata.org/entity/Q11367941", + cordinates: "Point(139.763 35.6791)", + locationLabel: "Marunouchi Park Building", + }, + { + location: "http://www.wikidata.org/entity/Q11367941", + cordinates: "Point(139.763058 35.678981)", + locationLabel: "Marunouchi Park Building", + }, + { + location: "http://www.wikidata.org/entity/Q3341456", + cordinates: "Point(139.765833333 35.683333333)", + locationLabel: "Marunouchi OAZO", + }, + { + location: "http://www.wikidata.org/entity/Q30930632", + cordinates: "Point(139.768972222 35.681583333)", + locationLabel: "Marunouchi Central Building", + }, + { + location: "http://www.wikidata.org/entity/Q1049122", + cordinates: "Point(139.763777777 35.681027777)", + locationLabel: "Marunouchi Building", + }, + { + location: "http://www.wikidata.org/entity/Q6777115", + cordinates: "Point(-46.6352 -23.5456)", + locationLabel: "Martinelli Building", + }, + { + location: "http://www.wikidata.org/entity/Q6776755", + cordinates: "Point(-75.394444444 40.631666666)", + locationLabel: "Martin Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6772974", + cordinates: "Point(-81.509444 28.360833)", + locationLabel: "Marriott's Orlando World Center", + }, + { + location: "http://www.wikidata.org/entity/Q6772971", + cordinates: "Point(-115.1695 36.1074)", + locationLabel: "Marriott's Grand Chateau", + }, + { + location: "http://www.wikidata.org/entity/Q6772999", + cordinates: "Point(-81.6948 41.5013)", + locationLabel: "Marriott at Key Center", + }, + { + location: "http://www.wikidata.org/entity/Q3294853", + cordinates: "Point(-98.4839 29.4233)", + locationLabel: "Marriott Rivercenter", + }, + { + location: "http://www.wikidata.org/entity/Q6772982", + cordinates: "Point(-93.2733 44.9778)", + locationLabel: "Marriott Hotel City Center", + }, + { + location: "http://www.wikidata.org/entity/Q6772981", + cordinates: "Point(-79.0823 43.0781)", + locationLabel: "Marriott Gateway on the Falls Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1854423", + cordinates: "Point(-80.19 25.78516667)", + locationLabel: "Marquis Residences", + }, + { + location: "http://www.wikidata.org/entity/Q28087475", + cordinates: "Point(-6.870667 33.958312)", + locationLabel: "Maroc Telecom HQ", + }, + { + location: "http://www.wikidata.org/entity/Q6770774", + cordinates: "Point(-86.159444444 39.768888888)", + locationLabel: "Market Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1816401", + cordinates: "Point(-74.01 40.7086)", + locationLabel: "Marine Midland Building", + height: "209.7", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q1326540", + cordinates: "Point(-123.116944444 49.2875)", + locationLabel: "Marine Building", + }, + { + location: "http://www.wikidata.org/entity/Q1972878", + cordinates: "Point(-80.189757 25.782157)", + locationLabel: "Marinablue", + height: "187.5", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q15247650", + cordinates: "Point(103.852 1.2803)", + locationLabel: "Marina Bay Suites", + }, + { + location: "http://www.wikidata.org/entity/Q6763782", + cordinates: "Point(55.1363 25.0798)", + locationLabel: "Marina Arcade", + }, + { + location: "http://www.wikidata.org/entity/Q1165269", + cordinates: "Point(55.148917 25.0895)", + locationLabel: "Marina 101", + height: "425", + numberOfElevators: "29", + }, + { + location: "http://www.wikidata.org/entity/Q6763774", + cordinates: "Point(55.149 25.085)", + locationLabel: "Marina 1", + }, + { + location: "http://www.wikidata.org/entity/Q2897303", + cordinates: "Point(34.788333333 32.075277777)", + locationLabel: "Marganit Tower", + }, + { + location: "http://www.wikidata.org/entity/Q26710809", + cordinates: "Point(121.06341667 14.58747222)", + locationLabel: "Marco Polo Ortigas Manila", + }, + { + location: "http://www.wikidata.org/entity/Q6755134", + cordinates: "Point(-74.0368 40.7228)", + locationLabel: "Marbella Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q2489225", + cordinates: "Point(-95.47185 29.749414)", + locationLabel: "Marathon Oil Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1892072", + cordinates: "Point(-79.380623 43.642841)", + locationLabel: "Maple Leaf Square", + }, + { + location: "http://www.wikidata.org/entity/Q1325540", + cordinates: "Point(-113.494722222 53.5425)", + locationLabel: "Manulife Place", + }, + { + location: "http://www.wikidata.org/entity/Q1682432", + cordinates: "Point(-79.388333333 43.669444444)", + locationLabel: "Manulife Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3285980", + cordinates: "Point(-97.1464 49.8924)", + locationLabel: "Manitoba Hydro Place", + height: "112.5", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q1156778", + cordinates: "Point(-74.00388611 40.71296389)", + locationLabel: "Manhattan Municipal Building", + }, + { + location: "http://www.wikidata.org/entity/Q1422777", + cordinates: "Point(-74.011666666 40.707777777)", + locationLabel: "Manhattan Life Insurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q12770976", + cordinates: "Point(17.1267556 48.1676556)", + locationLabel: "Manhattan House, Bratislava", + }, + { + location: "http://www.wikidata.org/entity/Q6749263", + cordinates: "Point(114.143 22.335)", + locationLabel: "Manhattan Hill", + }, + { + location: "http://www.wikidata.org/entity/Q6749261", + cordinates: "Point(114.127 22.2836)", + locationLabel: "Manhattan Heights", + }, + { + location: "http://www.wikidata.org/entity/Q105423954", + cordinates: "Point(-73.956984 40.754198)", + locationLabel: "Mandragora", + }, + { + location: "http://www.wikidata.org/entity/Q6747858", + cordinates: "Point(-73.983 40.7691)", + locationLabel: "Mandarin Oriental, New York", + }, + { + location: "http://www.wikidata.org/entity/Q6747849", + cordinates: "Point(-87.62416667 41.88611111)", + locationLabel: "Mandarin Oriental, Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q490244", + cordinates: "Point(103.858056 1.290833)", + locationLabel: "Mandarin Oriental", + }, + { + location: "http://www.wikidata.org/entity/Q10270241", + cordinates: "Point(-46.694916666 -23.604055555)", + locationLabel: "Mandarim Building", + }, + { + location: "http://www.wikidata.org/entity/Q1368043", + cordinates: "Point(-115.174722222 36.091666666)", + locationLabel: "Mandalay Bay", + }, + { + location: "http://www.wikidata.org/entity/Q935272", + cordinates: "Point(-117.168 32.7097)", + locationLabel: "Manchester Grand Hyatt Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q6746295", + cordinates: "Point(114.15611111 22.28361111)", + locationLabel: "Man Yee Building", + }, + { + location: "http://www.wikidata.org/entity/Q10635766", + cordinates: "Point(12.97638889 55.56277778)", + locationLabel: "Malmö Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6743807", + cordinates: "Point(141.13347222 39.70111111)", + locationLabel: "Malios", + }, + { + location: "http://www.wikidata.org/entity/Q6743391", + cordinates: "Point(-79.4006 43.6368)", + locationLabel: "Malibu", + }, + { + location: "http://www.wikidata.org/entity/Q6742956", + cordinates: "Point(-69.9105 18.459)", + locationLabel: "Malecon Center", + }, + { + location: "http://www.wikidata.org/entity/Q9334678", + cordinates: "Point(140.045 35.6436)", + locationLabel: "Makuhari Baytown Central Park West Sea Tower", + }, + { + location: "http://www.wikidata.org/entity/Q10323215", + cordinates: "Point(174.774 -41.2884)", + locationLabel: "Majestic Centre", + }, + { + location: "http://www.wikidata.org/entity/Q1885896", + cordinates: "Point(-73.551 45.518)", + locationLabel: "Maison Radio-Canada", + }, + { + location: "http://www.wikidata.org/entity/Q321291", + cordinates: "Point(8.672222222 50.1125)", + locationLabel: "Main Tower", + height: "200", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q321291", + cordinates: "Point(8.672222222 50.1125)", + locationLabel: "Main Tower", + height: "240", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q3278286", + cordinates: "Point(-115.1454 36.1739)", + locationLabel: "Main Street Station Hotel and Casino and Brewery", + }, + { + location: "http://www.wikidata.org/entity/Q6736032", + cordinates: "Point(-78.8755 42.8844)", + locationLabel: "Main Place Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6735947", + cordinates: "Point(-97.739321 30.2861)", + locationLabel: "Main Building", + }, + { + location: "http://www.wikidata.org/entity/Q6731922", + cordinates: "Point(-95.3614 29.7589)", + locationLabel: "Magnolia Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q12061439", + cordinates: "Point(-95.361599 29.758988)", + locationLabel: "Magnolia Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q2636175", + cordinates: "Point(4.37 50.84944)", + locationLabel: "Madou Plaza Tower", + height: "120", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q6728096", + cordinates: "Point(-73.993 40.752)", + locationLabel: "Madison Square Garden Towers", + }, + { + location: "http://www.wikidata.org/entity/Q104712946", + cordinates: "Point(-84.514166666 39.103333333)", + locationLabel: "Macy's Building", + }, + { + location: "http://www.wikidata.org/entity/Q6722530", + cordinates: "Point(113.560696 22.141143)", + locationLabel: "Macao Studio City", + }, + { + location: "http://www.wikidata.org/entity/Q2143957", + cordinates: "Point(4.493333 51.908611)", + locationLabel: "Maastoren", + }, + { + location: "http://www.wikidata.org/entity/Q6718404", + cordinates: "Point(-118.233 34.0564)", + locationLabel: "MTA Building", + }, + { + location: "http://www.wikidata.org/entity/Q59382121", + cordinates: "Point(11.54533 48.18698)", + locationLabel: "MO82", + }, + { + location: "http://www.wikidata.org/entity/Q1881651", + cordinates: "Point(-123.117942 49.287515)", + locationLabel: "MNP Tower", + height: "143", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q14246365", + cordinates: "Point(-113.493 53.545)", + locationLabel: "MNP Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6716576", + cordinates: "Point(114.1735 22.2745)", + locationLabel: "MLC Tower", + }, + { + location: "http://www.wikidata.org/entity/Q599363", + cordinates: "Point(151.209 -33.8689)", + locationLabel: "MLC Centre", + }, + { + location: "http://www.wikidata.org/entity/Q713960", + cordinates: "Point(-115.16917 36.1025)", + locationLabel: "MGM Grand Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q2416198", + cordinates: "Point(-83.0603 42.3336)", + locationLabel: "MGM Grand Detroit", + }, + { + location: "http://www.wikidata.org/entity/Q6714910", + cordinates: "Point(-118.259 34.0485)", + locationLabel: "MCI Center", + }, + { + location: "http://www.wikidata.org/entity/Q6714558", + cordinates: "Point(101.666751 3.177174)", + locationLabel: "MATRADE Exhibition and Convention Centre", + }, + { + location: "http://www.wikidata.org/entity/Q6712079", + cordinates: "Point(14.49175 35.90072222)", + locationLabel: "M-Towers", + }, + { + location: "http://www.wikidata.org/entity/Q12034791", + cordinates: "Point(16.604423333 49.177335555)", + locationLabel: "M-Palace", + }, + { + location: "http://www.wikidata.org/entity/Q264858", + cordinates: "Point(-115.168 35.9648)", + locationLabel: "M Resort", + }, + { + location: "http://www.wikidata.org/entity/Q637389", + cordinates: "Point(-115.17569 36.09553)", + locationLabel: "Luxor Resort & Casino", + }, + { + location: "http://www.wikidata.org/entity/Q1877222", + cordinates: "Point(-93.271672 44.979933)", + locationLabel: "Lumber Exchange Building", + }, + { + location: "http://www.wikidata.org/entity/Q6689347", + cordinates: "Point(-93.7492 32.5144)", + locationLabel: "Louisiana Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1783159", + cordinates: "Point(-91.187405555 30.457072222)", + locationLabel: "Louisiana State Capitol", + }, + { + location: "http://www.wikidata.org/entity/Q494895", + cordinates: "Point(127.1025 37.5125)", + locationLabel: "Lotte World Tower", + height: "554.5", + numberOfElevators: "58", + }, + { + location: "http://www.wikidata.org/entity/Q494895", + cordinates: "Point(127.1025 37.5125)", + locationLabel: "Lotte World Tower", + height: "555.7", + numberOfElevators: "58", + }, + { + location: "http://www.wikidata.org/entity/Q6684904", + cordinates: "Point(105.8126 21.03235)", + locationLabel: "Lotte Center Hanoi", + }, + { + location: "http://www.wikidata.org/entity/Q20713730", + cordinates: "Point(-0.1802 51.4775)", + locationLabel: "Lots Road South Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6682058", + cordinates: "Point(-118.209 34.0594)", + locationLabel: "Los Angeles County+USC Medical Center", + }, + { + location: "http://www.wikidata.org/entity/Q368489", + cordinates: "Point(-118.243 34.0536)", + locationLabel: "Los Angeles City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q6681987", + cordinates: "Point(-118.251389 34.044167)", + locationLabel: "Los Angeles Board of Trade Building", + }, + { + location: "http://www.wikidata.org/entity/Q10569242", + cordinates: "Point(36.82277778 -1.28472222)", + locationLabel: "Lonrho House", + }, + { + location: "http://www.wikidata.org/entity/Q20723479", + cordinates: "Point(120.668888888 24.152222222)", + locationLabel: "Long-Bang Trade Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q20723479", + cordinates: "Point(120.669 24.1521)", + locationLabel: "Long-Bang Trade Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q6747856", + cordinates: "Point(-122.4 37.7925)", + locationLabel: "Loews Regency San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q1548457", + cordinates: "Point(-75.160555555 39.951666666)", + locationLabel: "Loews Philadelphia Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q27975185", + cordinates: "Point(-87.6194258 41.8898851)", + locationLabel: "Loews Hotel Tower", + }, + { + location: "http://www.wikidata.org/entity/Q547270", + cordinates: "Point(72.8286213 18.9873173)", + locationLabel: "Lodha Bellissimo", + }, + { + location: "http://www.wikidata.org/entity/Q6659738", + cordinates: "Point(-4.24346 55.8612)", + locationLabel: "Livingstone Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1785026", + cordinates: "Point(-123.123611111 49.285833333)", + locationLabel: "Living Shangri-La", + height: "201", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q1827608", + cordinates: "Point(-73.968888888 40.757777777)", + locationLabel: "Lipstick Building", + }, + { + location: "http://www.wikidata.org/entity/Q6556969", + cordinates: "Point(121.470992 31.226294)", + locationLabel: "Lippo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q14874453", + cordinates: "Point(103.845 1.27306)", + locationLabel: "Lippo Centre", + }, + { + location: "http://www.wikidata.org/entity/Q6551018", + cordinates: "Point(-122.201 47.617)", + locationLabel: "Lincoln Square", + }, + { + location: "http://www.wikidata.org/entity/Q6550518", + cordinates: "Point(-104.985833333 39.743055555)", + locationLabel: "Lincoln Center", + }, + { + location: "http://www.wikidata.org/entity/Q6547865", + cordinates: "Point(21.00333333 52.22722222)", + locationLabel: "Lilium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q12033524", + cordinates: "Point(14.456653333 50.102803611)", + locationLabel: "Lighthouse Vltava Waterfront Towers", + }, + { + location: "http://www.wikidata.org/entity/Q6546347", + cordinates: "Point(-81.703611111 41.500833333)", + locationLabel: "Lighthouse Landing", + }, + { + location: "http://www.wikidata.org/entity/Q6546023", + cordinates: "Point(10.23135556 56.16562778)", + locationLabel: "Lighthouse", + }, + { + location: "http://www.wikidata.org/entity/Q19817555", + cordinates: "Point(144.96083333 -37.80836111)", + locationLabel: "Light House Melbourne", + height: "218", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q19817555", + cordinates: "Point(144.96083333 -37.80836111)", + locationLabel: "Light House Melbourne", + height: "715", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q3995204", + cordinates: "Point(9.15687 45.47882)", + locationLabel: "Libeskind Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6542168", + cordinates: "Point(-74.0357 40.7132)", + locationLabel: "Liberty View Towers", + }, + { + location: "http://www.wikidata.org/entity/Q538076", + cordinates: "Point(-74.009444 40.708889)", + locationLabel: "Liberty Tower", + height: "117.4", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q1823025", + cordinates: "Point(-6.255277777 53.348333333)", + locationLabel: "Liberty Hall", + }, + { + location: "http://www.wikidata.org/entity/Q6541632", + cordinates: "Point(-78.875 42.8856)", + locationLabel: "Liberty Building", + }, + { + location: "http://www.wikidata.org/entity/Q6537810", + cordinates: "Point(-84.4989 38.0475)", + locationLabel: "Lexington Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q20713245", + cordinates: "Point(-0.097 51.53)", + locationLabel: "Lexicon Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6535676", + cordinates: "Point(34.779722222 32.063888888)", + locationLabel: "Levinstein Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1821821", + cordinates: "Point(-73.9725 40.75959)", + locationLabel: "Lever House", + }, + { + location: "http://www.wikidata.org/entity/Q3535524", + cordinates: "Point(2.415277777 48.867222222)", + locationLabel: "Les Mercuriales", + }, + { + location: "http://www.wikidata.org/entity/Q1812350", + cordinates: "Point(-87.6257 41.8814)", + locationLabel: "Legacy Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3637030", + cordinates: "Point(-77.6058 43.1548)", + locationLabel: "Legacy Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6516628", + cordinates: "Point(-73.9794 40.7517)", + locationLabel: "Lefcourt Colonial Building", + }, + { + location: "http://www.wikidata.org/entity/Q3228939", + cordinates: "Point(114.183 22.2782)", + locationLabel: "Lee Theatre Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2166585", + cordinates: "Point(114.184244 22.278975)", + locationLabel: "Lee Garden One", + }, + { + location: "http://www.wikidata.org/entity/Q14875248", + cordinates: "Point(-79.3407 43.7075)", + locationLabel: "Leaside Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1155898", + cordinates: "Point(-73.5637 45.50512)", + locationLabel: "Le V", + }, + { + location: "http://www.wikidata.org/entity/Q3398307", + cordinates: "Point(-73.5679 45.5012)", + locationLabel: "Le Port-Royal Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q1134247", + cordinates: "Point(-58.42144444 -34.57516667)", + locationLabel: "Le Parc tower", + }, + { + location: "http://www.wikidata.org/entity/Q6507398", + cordinates: "Point(-58.405 -34.57572222)", + locationLabel: "Le Parc Figueroa Alcorta", + }, + { + location: "http://www.wikidata.org/entity/Q14683065", + cordinates: "Point(-122.401 37.7946)", + locationLabel: "Le Méridien San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q5579712", + cordinates: "Point(120.68305556 24.13666667)", + locationLabel: "Le Meridien Taichung", + }, + { + location: "http://www.wikidata.org/entity/Q2944883", + cordinates: "Point(-73.57138889 45.49777778)", + locationLabel: "Le Centre Sheraton Montreal Hotel", + height: "118", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q3230646", + cordinates: "Point(-73.5769 45.5018)", + locationLabel: "Le Cartier Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q56259974", + cordinates: "Point(151.211541 -33.869055)", + locationLabel: "Law Courts Building", + }, + { + location: "http://www.wikidata.org/entity/Q1807832", + cordinates: "Point(-81.6589 30.3276)", + locationLabel: "Laura Street Trio", + }, + { + location: "http://www.wikidata.org/entity/Q3218516", + cordinates: "Point(-80.1971 25.7682)", + locationLabel: "Latitude on the River", + }, + { + location: "http://www.wikidata.org/entity/Q2461831", + cordinates: "Point(-115.168333 36.129444)", + locationLabel: "Las Vegas Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3218236", + cordinates: "Point(-80.1417 26.1181)", + locationLabel: "Las Olas River House", + }, + { + location: "http://www.wikidata.org/entity/Q6487221", + cordinates: "Point(106.56241667 29.53238889)", + locationLabel: "Lanko·Grand Hyatt Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q11092342", + cordinates: "Point(114.168 22.3181)", + locationLabel: "Langham Place Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q19361336", + cordinates: "Point(-97.33131 32.75237)", + locationLabel: "Landmark Tower", + }, + { + location: "http://www.wikidata.org/entity/Q98978913", + cordinates: "Point(103.76 1.465138888)", + locationLabel: "Landmark Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6484799", + cordinates: "Point(-79.8655 43.254)", + locationLabel: "Landmark Place", + }, + { + location: "http://www.wikidata.org/entity/Q16258428", + cordinates: "Point(-0.0249 51.5008)", + locationLabel: "Landmark Pinnacle", + }, + { + location: "http://www.wikidata.org/entity/Q21016024", + cordinates: "Point(-81.692509 41.497336)", + locationLabel: "Landmark Office Towers", + }, + { + location: "http://www.wikidata.org/entity/Q18640924", + cordinates: "Point(106.721944444 10.795)", + locationLabel: "Landmark 81", + }, + { + location: "http://www.wikidata.org/entity/Q6483981", + cordinates: "Point(-75.164444 39.950556)", + locationLabel: "Land Title Building", + }, + { + location: "http://www.wikidata.org/entity/Q22120854", + cordinates: "Point(139.646694444 35.844222222)", + locationLabel: "Lamza Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4255374", + cordinates: "Point(30.17814 59.98703)", + locationLabel: "Lakhta Center", + height: "462", + numberOfElevators: "40", + }, + { + location: "http://www.wikidata.org/entity/Q1801054", + cordinates: "Point(-87.612222222 41.891666666)", + locationLabel: "Lake Point Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6468748", + cordinates: "Point(-90.1922 38.6282)", + locationLabel: "Laclede Gas Building", + }, + { + location: "http://www.wikidata.org/entity/Q6460878", + cordinates: "Point(-93.2751 44.9764)", + locationLabel: "LaSalle Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1284550", + cordinates: "Point(-3.699372 40.418246)", + locationLabel: "La Unión y el Fénix Español building", + }, + { + location: "http://www.wikidata.org/entity/Q6464835", + cordinates: "Point(-106.6612 52.1242)", + locationLabel: "La Renaissance Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q16893839", + cordinates: "Point(-73.5703 45.498)", + locationLabel: "La Laurentienne Building", + }, + { + location: "http://www.wikidata.org/entity/Q85885449", + cordinates: "Point(120.644444444 24.161666666)", + locationLabel: "La Bella Vita", + }, + { + location: "http://www.wikidata.org/entity/Q6458430", + cordinates: "Point(127.037589 37.502423)", + locationLabel: "LG Gangnam Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11228978", + cordinates: "Point(139.060806 37.910083)", + locationLabel: "LEXN Niigata", + }, + { + location: "http://www.wikidata.org/entity/Q8015602", + cordinates: "Point(114.158 22.2812)", + locationLabel: "LANDMARK", + }, + { + location: "http://www.wikidata.org/entity/Q106880600", + cordinates: "Point(2.226865 48.896945833)", + locationLabel: "L'archipel", + }, + { + location: "http://www.wikidata.org/entity/Q6455644", + cordinates: "Point(-73.5682 45.5025)", + locationLabel: "L'Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q780392", + cordinates: "Point(-79.376388888 43.646388888)", + locationLabel: "L Tower", + height: "205", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q1795892", + cordinates: "Point(6.97167 50.9404)", + locationLabel: "KölnTriangle", + }, + { + location: "http://www.wikidata.org/entity/Q24874287", + cordinates: "Point(139.7695 35.677416666)", + locationLabel: "Kyobashi Edogrand", + }, + { + location: "http://www.wikidata.org/entity/Q11265381", + cordinates: "Point(135.679889 34.860389)", + locationLabel: "Kuzuha Tower City", + }, + { + location: "http://www.wikidata.org/entity/Q745016", + cordinates: "Point(101.70376 3.15286)", + locationLabel: "Kuala Lumpur Tower", + height: "421", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q6439146", + cordinates: "Point(79.845555555 6.933333333)", + locationLabel: "Krrish Square", + }, + { + location: "http://www.wikidata.org/entity/Q11670309", + cordinates: "Point(134.052547 34.338992)", + locationLabel: "Kotoden Kawaramachi Building", + }, + { + location: "http://www.wikidata.org/entity/Q17221062", + cordinates: "Point(139.78672222 35.88919444)", + locationLabel: "Koshigaya Twincity", + }, + { + location: "http://www.wikidata.org/entity/Q702322", + cordinates: "Point(125.736088888 39.008741666)", + locationLabel: "Koryo Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q6431177", + cordinates: "Point(-79.995555555 40.441944444)", + locationLabel: "Koppers Tower", + }, + { + location: "http://www.wikidata.org/entity/Q18660143", + cordinates: "Point(24.82888889 60.17222222)", + locationLabel: "Kone Building", + }, + { + location: "http://www.wikidata.org/entity/Q55532313", + cordinates: "Point(139.73666667 35.67194444)", + locationLabel: "Kokusai-Shin Akasaka Building", + }, + { + location: "http://www.wikidata.org/entity/Q6426898", + cordinates: "Point(130.87444444 33.88694444)", + locationLabel: "Kokura D.C. Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15238865", + cordinates: "Point(72.84154 19.02514)", + locationLabel: "Kohinoor Square", + }, + { + location: "http://www.wikidata.org/entity/Q6425146", + cordinates: "Point(-77.619722222 43.160833333)", + locationLabel: "Kodak Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6425146", + cordinates: "Point(-77.6197 43.1608)", + locationLabel: "Kodak Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11590236", + cordinates: "Point(135.19638889 34.68638889)", + locationLabel: "Kobe Kanden Building", + }, + { + location: "http://www.wikidata.org/entity/Q11589836", + cordinates: "Point(135.19583333 34.69222222)", + locationLabel: "Kobe International House", + }, + { + location: "http://www.wikidata.org/entity/Q11589737", + cordinates: "Point(135.18 34.68055556)", + locationLabel: "Kobe Crystal Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11589826", + cordinates: "Point(135.19972229 34.68819427)", + locationLabel: "Kobe Commerce, Industry and Trade Center Building", + }, + { + location: "http://www.wikidata.org/entity/Q3198121", + cordinates: "Point(135.196 34.6894)", + locationLabel: "Kobe City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q11590156", + cordinates: "Point(135.19222222 34.68944444)", + locationLabel: "Kobe Asahi Building", + }, + { + location: "http://www.wikidata.org/entity/Q11590206", + cordinates: "Point(135.198361 34.70425)", + locationLabel: "Kobe Art Center", + }, + { + location: "http://www.wikidata.org/entity/Q6422443", + cordinates: "Point(-72.9274 41.3026)", + locationLabel: "Knights of Columbus Building", + }, + { + location: "http://www.wikidata.org/entity/Q2058889", + cordinates: "Point(-87.6299 41.8784)", + locationLabel: "Kluczynski Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q12104593", + cordinates: "Point(30.539166666 50.4385)", + locationLabel: "Klovski Descent 7A", + height: "168", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q6421000", + cordinates: "Point(-72.9224 41.3172)", + locationLabel: "Kline Biology Tower", + }, + { + location: "http://www.wikidata.org/entity/Q10889351", + cordinates: "Point(114.1992 22.2912)", + locationLabel: "Kiu Kwan Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q20043916", + cordinates: "Point(139.65983333 35.82830556)", + locationLabel: "Kita-Toda First Gate Tower", + }, + { + location: "http://www.wikidata.org/entity/Q124304", + cordinates: "Point(17.947 59.402)", + locationLabel: "Kista Science Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2778012", + cordinates: "Point(34.78921111 32.07294722)", + locationLabel: "Kirya Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6414903", + cordinates: "Point(-96.799394 32.780861)", + locationLabel: "Kirby Building", + }, + { + location: "http://www.wikidata.org/entity/Q104902480", + cordinates: "Point(120.300740168 22.657828848)", + locationLabel: "Kingtown King Park", + }, + { + location: "http://www.wikidata.org/entity/Q1470046", + cordinates: "Point(114.10156 22.54583)", + locationLabel: "Kingkey 100", + height: "442", + numberOfElevators: "45", + }, + { + location: "http://www.wikidata.org/entity/Q656743", + cordinates: "Point(46.674444 24.711389)", + locationLabel: "Kingdom Centre", + height: "302", + numberOfElevators: "45", + }, + { + location: "http://www.wikidata.org/entity/Q6412112", + cordinates: "Point(121.5875 31.2475)", + locationLabel: "King Tower", + }, + { + location: "http://www.wikidata.org/entity/Q626425", + cordinates: "Point(39.1249 21.5591)", + locationLabel: "King Road Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6411872", + cordinates: "Point(135.484 34.6897)", + locationLabel: "King Mansion Dōjimagawa", + }, + { + location: "http://www.wikidata.org/entity/Q6411602", + cordinates: "Point(153.024829 -27.467878)", + locationLabel: "King George Central", + }, + { + location: "http://www.wikidata.org/entity/Q6410440", + cordinates: "Point(-84.5004 38.0475)", + locationLabel: "Kincaid Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5382437", + cordinates: "Point(-80.189583 25.770504)", + locationLabel: "Kimpton EPIC Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q6406570", + cordinates: "Point(-87.8996 43.0426)", + locationLabel: "Kilbourn Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1436004", + cordinates: "Point(55.278461111 25.217594444)", + locationLabel: "Khalid Al Attar Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q1740348", + cordinates: "Point(-71.05443 42.35415)", + locationLabel: "Keystone Building", + }, + { + location: "http://www.wikidata.org/entity/Q6397996", + cordinates: "Point(-84.1926 39.7606)", + locationLabel: "KeyBank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q684027", + cordinates: "Point(-81.693611111 41.501111111)", + locationLabel: "Key Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6395479", + cordinates: "Point(-84.1914 39.761)", + locationLabel: "Kettering Tower", + }, + { + location: "http://www.wikidata.org/entity/Q12261444", + cordinates: "Point(117.216225 39.12664722)", + locationLabel: "Kerry Center", + }, + { + location: "http://www.wikidata.org/entity/Q3272625", + cordinates: "Point(36.823055555 -1.288611111)", + locationLabel: "Kenyatta International Convention Centre", + height: "105", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q2793789", + cordinates: "Point(-87.6275 41.8864)", + locationLabel: "Kemper Building", + }, + { + location: "http://www.wikidata.org/entity/Q6384136", + cordinates: "Point(-81.6803 41.5013)", + locationLabel: "Keith Building", + }, + { + location: "http://www.wikidata.org/entity/Q6383787", + cordinates: "Point(139.694444444 35.689888888)", + locationLabel: "Keio Plaza Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q21018987", + cordinates: "Point(139.763253 35.688619)", + locationLabel: "Keidanren Kaikan", + }, + { + location: "http://www.wikidata.org/entity/Q85877988", + cordinates: "Point(121.51359 25.04669)", + locationLabel: "Kee Tai Zhongxiao", + }, + { + location: "http://www.wikidata.org/entity/Q609140", + cordinates: "Point(105.78405278 21.01732222)", + locationLabel: "Keangnam Hanoi Landmark Tower", + height: "346", + numberOfElevators: "70", + }, + { + location: "http://www.wikidata.org/entity/Q375910", + cordinates: "Point(-58.37466667 -34.59541667)", + locationLabel: "Kavanagh building", + height: "120", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q844780", + cordinates: "Point(139.7472123 35.6712821)", + locationLabel: "Kasumigaseki Building", + }, + { + location: "http://www.wikidata.org/entity/Q17154027", + cordinates: "Point(11.938888888 57.709722222)", + locationLabel: "Karlatornet", + }, + { + location: "http://www.wikidata.org/entity/Q4352432", + cordinates: "Point(-94.5847 39.0975)", + locationLabel: "Kansas City Power and Light Building", + }, + { + location: "http://www.wikidata.org/entity/Q3192583", + cordinates: "Point(136.9 35.1427)", + locationLabel: "Kanayama Minami Building", + }, + { + location: "http://www.wikidata.org/entity/Q6359128", + cordinates: "Point(32.5825 0.335)", + locationLabel: "Kampala Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3192058", + cordinates: "Point(140.88 38.2656)", + locationLabel: "Kakyoin Square", + }, + { + location: "http://www.wikidata.org/entity/Q14682900", + cordinates: "Point(-122.264 37.8088)", + locationLabel: "Kaiser Center", + }, + { + location: "http://www.wikidata.org/entity/Q6346660", + cordinates: "Point(130.55819444 31.56041667)", + locationLabel: "Kagoshima Prefectural Government Building", + }, + { + location: "http://www.wikidata.org/entity/Q11399664", + cordinates: "Point(136.91444444 37.09)", + locationLabel: "Kagaya", + }, + { + location: "http://www.wikidata.org/entity/Q4448812", + cordinates: "Point(134.043444 34.34015)", + locationLabel: "Kagawa Prefectural Government Office", + }, + { + location: "http://www.wikidata.org/entity/Q11400126", + cordinates: "Point(139.776625 35.659786)", + locationLabel: "Kachidoki View Tower", + }, + { + location: "http://www.wikidata.org/entity/Q22118338", + cordinates: "Point(139.768056 35.669722)", + locationLabel: "Kabukiza Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6335692", + cordinates: "Point(-122.4 37.7887)", + locationLabel: "KPMG Building", + }, + { + location: "http://www.wikidata.org/entity/Q98322066", + cordinates: "Point(103.762777777 1.46375)", + locationLabel: "KOMTAR JBCC Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3305737", + cordinates: "Point(100.3292 5.4145)", + locationLabel: "KOMTAR", + }, + { + location: "http://www.wikidata.org/entity/Q14708996", + cordinates: "Point(-122.678 45.5132)", + locationLabel: "KOIN Center", + }, + { + location: "http://www.wikidata.org/entity/Q3192722", + cordinates: "Point(135.493 34.6927)", + locationLabel: "KEPCO Building", + }, + { + location: "http://www.wikidata.org/entity/Q11227689", + cordinates: "Point(139.693139 35.693222)", + locationLabel: "KDDI Building", + }, + { + location: "http://www.wikidata.org/entity/Q3490142", + cordinates: "Point(-95.3723 29.7533)", + locationLabel: "KBR Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1626937", + cordinates: "Point(121.468497222 31.225511111)", + locationLabel: "K11", + }, + { + location: "http://www.wikidata.org/entity/Q6322399", + cordinates: "Point(-80.0 40.442)", + locationLabel: "K&L Gates Center", + }, + { + location: "http://www.wikidata.org/entity/Q14716560", + cordinates: "Point(-81.6969 41.5015)", + locationLabel: "Justice Center Complex", + }, + { + location: "http://www.wikidata.org/entity/Q1049027", + cordinates: "Point(55.281944444 25.2175)", + locationLabel: "Jumeirah Emirates Towers Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q12488171", + cordinates: "Point(55.14398056 25.07138889)", + locationLabel: "Jumeirah Business Center Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1466585", + cordinates: "Point(55.134869444 25.077222222)", + locationLabel: "Jumeirah Beach Residence", + }, + { + location: "http://www.wikidata.org/entity/Q6310940", + cordinates: "Point(55.153269444 25.080038888)", + locationLabel: "Jumeirah Bay", + }, + { + location: "http://www.wikidata.org/entity/Q6310938", + cordinates: "Point(55.324819444 25.232427777)", + locationLabel: "Jumeirah Al Khor", + }, + { + location: "http://www.wikidata.org/entity/Q6275510", + cordinates: "Point(126.98356 37.57079)", + locationLabel: "Jongno Tower", + }, + { + location: "http://www.wikidata.org/entity/Q21619124", + cordinates: "Point(103.760416666 1.465555555)", + locationLabel: "Johor Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1702484", + cordinates: "Point(-87.783333 42.716667)", + locationLabel: "Johnson Wax Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q14684660", + cordinates: "Point(-104.991 39.7469)", + locationLabel: "Johns Manville Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q798416", + cordinates: "Point(-71.074777777 42.349277777)", + locationLabel: "John Hancock Tower", + }, + { + location: "http://www.wikidata.org/entity/Q931979", + cordinates: "Point(-87.6276 41.8846)", + locationLabel: "Joffrey Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14084282", + cordinates: "Point(-46.64069444 -23.54958333)", + locationLabel: "Joelma Building", + }, + { + location: "http://www.wikidata.org/entity/Q6202610", + cordinates: "Point(118.77694444 32.04416667)", + locationLabel: "Jinling Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1068235", + cordinates: "Point(121.457 31.2215)", + locationLabel: "Jinjiang Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q21659128", + cordinates: "Point(121.445529161 31.226438038)", + locationLabel: "Jing An Kerry Centre", + height: "133", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q80813", + cordinates: "Point(121.501388888 31.237222222)", + locationLabel: "Jin Mao Tower", + height: "420.5", + numberOfElevators: "61", + }, + { + location: "http://www.wikidata.org/entity/Q80813", + cordinates: "Point(121.501388888 31.237222222)", + locationLabel: "Jin Mao Tower", + height: "421", + numberOfElevators: "61", + }, + { + location: "http://www.wikidata.org/entity/Q6201851", + cordinates: "Point(121.458299 31.222307)", + locationLabel: "Jin Jiang Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6191734", + cordinates: "Point(114.055606 22.546088)", + locationLabel: "Jiangsu Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2251949", + cordinates: "Point(114.28591667 30.58113889)", + locationLabel: "Jiali Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q14707991", + cordinates: "Point(-79.792194444 36.072805555)", + locationLabel: "Jefferson Standard Building", + }, + { + location: "http://www.wikidata.org/entity/Q737945", + cordinates: "Point(39.08284 21.734)", + locationLabel: "Jeddah Tower", + height: "1.001", + numberOfElevators: "59", + }, + { + location: "http://www.wikidata.org/entity/Q14681519", + cordinates: "Point(-122.394 37.7859)", + locationLabel: "Jasper", + }, + { + location: "http://www.wikidata.org/entity/Q6130456", + cordinates: "Point(114.158888888 22.283055555)", + locationLabel: "Jardine House", + height: "178.54", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q11415226", + cordinates: "Point(136.862778 35.171389)", + locationLabel: "Japanese Red Cross Nagoya Daiichi Hospital", + }, + { + location: "http://www.wikidata.org/entity/Q266965", + cordinates: "Point(8.6725 50.111111111)", + locationLabel: "Japan Center", + }, + { + location: "http://www.wikidata.org/entity/Q6150825", + cordinates: "Point(90.4171 23.7289)", + locationLabel: "Janata Bank Bhaban", + }, + { + location: "http://www.wikidata.org/entity/Q691444", + cordinates: "Point(-114.068333333 51.049722222)", + locationLabel: "Jamieson Place", + }, + { + location: "http://www.wikidata.org/entity/Q1531538", + cordinates: "Point(-123.115709 49.286117)", + locationLabel: "Jameson House", + }, + { + location: "http://www.wikidata.org/entity/Q14682503", + cordinates: "Point(-118.25388889 34.0475)", + locationLabel: "James Oviatt Building", + }, + { + location: "http://www.wikidata.org/entity/Q6137074", + cordinates: "Point(-86.7817 36.1649)", + locationLabel: "James K. Polk State Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q2743548", + cordinates: "Point(-80.189306 25.760267)", + locationLabel: "Jade at Brickell Bay", + }, + { + location: "http://www.wikidata.org/entity/Q6121266", + cordinates: "Point(-80.1211 25.934)", + locationLabel: "Jade Beach and Jade Ocean", + }, + { + location: "http://www.wikidata.org/entity/Q6118823", + cordinates: "Point(-74.0036 40.715)", + locationLabel: "Jacob K. Javits Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q6109260", + cordinates: "Point(-122.41 37.7883)", + locationLabel: "JW Marriott San Francisco Union Square", + }, + { + location: "http://www.wikidata.org/entity/Q3541144", + cordinates: "Point(-79.507174 8.975556)", + locationLabel: "JW Marriott Panama", + }, + { + location: "http://www.wikidata.org/entity/Q6109253", + cordinates: "Point(-86.1682 39.7667)", + locationLabel: "JW Marriott Indianapolis", + }, + { + location: "http://www.wikidata.org/entity/Q3156981", + cordinates: "Point(-90.0687 29.9527)", + locationLabel: "JW Marriott Hotel New Orleans", + }, + { + location: "http://www.wikidata.org/entity/Q3156982", + cordinates: "Point(114.165 22.2778)", + locationLabel: "JW Marriott Hotel Hong Kong", + }, + { + location: "http://www.wikidata.org/entity/Q6109252", + cordinates: "Point(-73.9785 40.7663)", + locationLabel: "JW Marriott Essex House", + }, + { + location: "http://www.wikidata.org/entity/Q24191576", + cordinates: "Point(-113.496083333 53.54575)", + locationLabel: "JW Marriott Edmonton Ice District & Residences", + }, + { + location: "http://www.wikidata.org/entity/Q3041894", + cordinates: "Point(141.351111111 43.068333333)", + locationLabel: "JR Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11415297", + cordinates: "Point(136.882778 35.172083)", + locationLabel: "JR GATE TOWER", + }, + { + location: "http://www.wikidata.org/entity/Q3156958", + cordinates: "Point(139.7 35.6873)", + locationLabel: "JR East Headquarters Building", + }, + { + location: "http://www.wikidata.org/entity/Q6108856", + cordinates: "Point(136.88277778 35.17138889)", + locationLabel: "JR Central Towers", + }, + { + location: "http://www.wikidata.org/entity/Q935919", + cordinates: "Point(-95.363889 29.760556)", + locationLabel: "JPMorgan Chase Tower", + height: "305.4", + numberOfElevators: "50", + }, + { + location: "http://www.wikidata.org/entity/Q3156945", + cordinates: "Point(-95.3636 29.7589)", + locationLabel: "JPMorgan Chase Building", + }, + { + location: "http://www.wikidata.org/entity/Q6108711", + cordinates: "Point(-122.399 37.7888)", + locationLabel: "JPMorgan Chase Building", + }, + { + location: "http://www.wikidata.org/entity/Q17228699", + cordinates: "Point(136.88225 35.172472)", + locationLabel: "JP Tower Nagoya", + }, + { + location: "http://www.wikidata.org/entity/Q11226072", + cordinates: "Point(139.764583 35.67975)", + locationLabel: "JP Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11715065", + cordinates: "Point(20.9897 52.2342)", + locationLabel: "JM Tower in Warsaw", + }, + { + location: "http://www.wikidata.org/entity/Q99538888", + cordinates: "Point(103.762388888 1.464583333)", + locationLabel: "JLand Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11225264", + cordinates: "Point(139.62163889 35.90811111)", + locationLabel: "JACK Omiya", + }, + { + location: "http://www.wikidata.org/entity/Q17210812", + cordinates: "Point(139.762722 35.688722)", + locationLabel: "JA Building", + }, + { + location: "http://www.wikidata.org/entity/Q76833992", + cordinates: "Point(-111.891635 40.762532)", + locationLabel: "J. C. Penny Building", + }, + { + location: "http://www.wikidata.org/entity/Q3275660", + cordinates: "Point(139.73938 35.66467)", + locationLabel: "Izumi Garden Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2269636", + cordinates: "Point(4.872778 52.336944)", + locationLabel: "Ito-toren", + }, + { + location: "http://www.wikidata.org/entity/Q166882", + cordinates: "Point(29.005833333 41.085)", + locationLabel: "Istanbul Sapphire", + height: "261", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q2897264", + cordinates: "Point(34.76742778 32.07675)", + locationLabel: "Isrotel Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6083422", + cordinates: "Point(130.42055556 33.66194444)", + locationLabel: "Island Tower Sky Club", + }, + { + location: "http://www.wikidata.org/entity/Q841959", + cordinates: "Point(114.164166666 22.277222222)", + locationLabel: "Island Shangri-La, Hong Kong", + }, + { + location: "http://www.wikidata.org/entity/Q3756182", + cordinates: "Point(114.249944444 22.266666666)", + locationLabel: "Island Resort", + }, + { + location: "http://www.wikidata.org/entity/Q5921775", + cordinates: "Point(-67.964805555 10.208972222)", + locationLabel: "Isla Multiespacio", + }, + { + location: "http://www.wikidata.org/entity/Q11585955", + cordinates: "Point(136.625528 36.594722)", + locationLabel: "Ishikawa Prefectural Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q4080245", + cordinates: "Point(60.591388888 56.843333333)", + locationLabel: "Iset Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4080245", + cordinates: "Point(60.59055556 56.84333333)", + locationLabel: "Iset Tower", + }, + { + location: "http://www.wikidata.org/entity/Q12486774", + cordinates: "Point(55.26021111 25.18726667)", + locationLabel: "Iris Bay", + }, + { + location: "http://www.wikidata.org/entity/Q739446", + cordinates: "Point(20.996666666 52.254444444)", + locationLabel: "Intraco I", + height: "138", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q14934843", + cordinates: "Point(151.20165833 -33.86293333)", + locationLabel: "International Towers Sydney", + }, + { + location: "http://www.wikidata.org/entity/Q6052468", + cordinates: "Point(103.846 1.27597)", + locationLabel: "International Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5817929", + cordinates: "Point(121.52 31.242)", + locationLabel: "International Ocean Shipping Building", + }, + { + location: "http://www.wikidata.org/entity/Q317034", + cordinates: "Point(114.160169444 22.303391666)", + locationLabel: "International Commerce Centre", + height: "484", + numberOfElevators: "83", + }, + { + location: "http://www.wikidata.org/entity/Q1666430", + cordinates: "Point(106.513724 29.553151)", + locationLabel: "International Commerce Center 1", + }, + { + location: "http://www.wikidata.org/entity/Q1666430", + cordinates: "Point(106.513725 29.55315)", + locationLabel: "International Commerce Center 1", + }, + { + location: "http://www.wikidata.org/entity/Q1665800", + cordinates: "Point(21.002544 52.232307)", + locationLabel: "InterContinental Warsaw", + height: "164", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q3153055", + cordinates: "Point(-122.405 37.7818)", + locationLabel: "InterContinental San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q15228740", + cordinates: "Point(-80.185373 25.772419)", + locationLabel: "InterContinental Miami", + }, + { + location: "http://www.wikidata.org/entity/Q14713699", + cordinates: "Point(-122.343 47.6169)", + locationLabel: "Insignia Towers", + }, + { + location: "http://www.wikidata.org/entity/Q20639521", + cordinates: "Point(-75.1631 39.9608)", + locationLabel: "Inquirer Building", + }, + { + location: "http://www.wikidata.org/entity/Q13732862", + cordinates: "Point(6.12528 51.40306)", + locationLabel: "Innovatoren", + }, + { + location: "http://www.wikidata.org/entity/Q14690693", + cordinates: "Point(-84.5125 39.1003)", + locationLabel: "Ingalls Building", + }, + { + location: "http://www.wikidata.org/entity/Q1662415", + cordinates: "Point(-80.19436111 25.76102778)", + locationLabel: "Infinity at Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q6030049", + cordinates: "Point(153.02 -27.4678)", + locationLabel: "Infinity Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11282361", + cordinates: "Point(133.362833 34.487417)", + locationLabel: "Ines Fukuyama", + }, + { + location: "http://www.wikidata.org/entity/Q1093786", + cordinates: "Point(-86.1558 39.7679)", + locationLabel: "Indianapolis City–County Building", + }, + { + location: "http://www.wikidata.org/entity/Q649218", + cordinates: "Point(72.821348 18.950159)", + locationLabel: "India Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1017614", + cordinates: "Point(114.118 22.3662)", + locationLabel: "Indi Home", + }, + { + location: "http://www.wikidata.org/entity/Q6016159", + cordinates: "Point(-102.078 31.9995)", + locationLabel: "Independence Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q14875205", + cordinates: "Point(-79.3995 43.6864)", + locationLabel: "Imperial Oil Building", + }, + { + location: "http://www.wikidata.org/entity/Q6006383", + cordinates: "Point(-117.157777777 32.7175)", + locationLabel: "Imperial Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2493262", + cordinates: "Point(37.540833333 55.7475)", + locationLabel: "Imperia Tower", + height: "239", + numberOfElevators: "33", + }, + { + location: "http://www.wikidata.org/entity/Q3052104", + cordinates: "Point(114.173055555 22.279722222)", + locationLabel: "Immigration Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17051376", + cordinates: "Point(101.71886 3.15888)", + locationLabel: "Ilham Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14875522", + cordinates: "Point(-73.5726 45.4971)", + locationLabel: "Icône", + }, + { + location: "http://www.wikidata.org/entity/Q948172", + cordinates: "Point(-113.499444444 53.541944444)", + locationLabel: "Icon Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5986618", + cordinates: "Point(-80.189292 25.769395)", + locationLabel: "Icon Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q3121267", + cordinates: "Point(-2.938611111 43.2675)", + locationLabel: "Iberdrola Tower", + height: "165", + numberOfElevators: "21", + }, + { + location: "http://www.wikidata.org/entity/Q5983721", + cordinates: "Point(140.44666667 36.34166667)", + locationLabel: "Ibaraki Prefectural Government Building", + }, + { + location: "http://www.wikidata.org/entity/Q4462136", + cordinates: "Point(37.534569 55.747446)", + locationLabel: "IQ-quarter", + }, + { + location: "http://www.wikidata.org/entity/Q1628633", + cordinates: "Point(34.96555556 32.78777778)", + locationLabel: "IEC Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2745898", + cordinates: "Point(-93.2724 44.976)", + locationLabel: "IDS Center", + }, + { + location: "http://www.wikidata.org/entity/Q15227629", + cordinates: "Point(-80.141074 25.773944)", + locationLabel: "ICON at South Beach", + }, + { + location: "http://www.wikidata.org/entity/Q4026867", + cordinates: "Point(139.799277777 35.650588888)", + locationLabel: "IBM Toyosu Facility", + }, + { + location: "http://www.wikidata.org/entity/Q5968849", + cordinates: "Point(139.787 35.6786)", + locationLabel: "IBM Hakozaki Facility", + }, + { + location: "http://www.wikidata.org/entity/Q194871", + cordinates: "Point(8.6425 50.1144)", + locationLabel: "IBC Tower", + height: "112", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q3145613", + cordinates: "Point(2.28361 48.8497)", + locationLabel: "Hôtel Novotel Paris Tour Eiffel", + }, + { + location: "http://www.wikidata.org/entity/Q105996005", + cordinates: "Point(2.250699722 48.889003888)", + locationLabel: "Hôtel Meliá Paris La Défense", + }, + { + location: "http://www.wikidata.org/entity/Q3221699", + cordinates: "Point(-71.21711 46.805107)", + locationLabel: "Hôtel Loews Le Concorde", + }, + { + location: "http://www.wikidata.org/entity/Q19162295", + cordinates: "Point(127.06289 37.51187)", + locationLabel: "Hyundai Global Business Center", + }, + { + location: "http://www.wikidata.org/entity/Q5962277", + cordinates: "Point(114.184 22.2798)", + locationLabel: "Hysan Place", + }, + { + location: "http://www.wikidata.org/entity/Q896364", + cordinates: "Point(11.6172 48.1497)", + locationLabel: "Hypo-Haus", + height: "113.7", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q273780", + cordinates: "Point(-73.5625 45.5083)", + locationLabel: "Hydro-Québec Building", + }, + { + location: "http://www.wikidata.org/entity/Q28737666", + cordinates: "Point(12.2412904 45.4814657)", + locationLabel: "Hybrid Tower Mestre", + }, + { + location: "http://www.wikidata.org/entity/Q14874629", + cordinates: "Point(-123.121 49.285)", + locationLabel: "Hyatt Regency Vancouver", + }, + { + location: "http://www.wikidata.org/entity/Q4644481", + cordinates: "Point(-122.335 47.615)", + locationLabel: "Hyatt Regency Seattle", + }, + { + location: "http://www.wikidata.org/entity/Q5952911", + cordinates: "Point(-122.396 37.7943)", + locationLabel: "Hyatt Regency San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q5952908", + cordinates: "Point(-77.6085 43.1565)", + locationLabel: "Hyatt Regency Rochester", + }, + { + location: "http://www.wikidata.org/entity/Q16892547", + cordinates: "Point(-112.072 33.4499)", + locationLabel: "Hyatt Regency Phoenix", + }, + { + location: "http://www.wikidata.org/entity/Q3142395", + cordinates: "Point(2.2843 48.8802)", + locationLabel: "Hyatt Regency Paris Etoile", + height: "137", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q3142395", + cordinates: "Point(2.2843 48.8802)", + locationLabel: "Hyatt Regency Paris Etoile", + height: "190", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q5952903", + cordinates: "Point(-90.0764 29.9495)", + locationLabel: "Hyatt Regency New Orleans", + }, + { + location: "http://www.wikidata.org/entity/Q5952894", + cordinates: "Point(-95.3693 29.7569)", + locationLabel: "Hyatt Regency Houston", + }, + { + location: "http://www.wikidata.org/entity/Q5952883", + cordinates: "Point(-104.993611111 39.743611111)", + locationLabel: "Hyatt Regency Denver at Colorado Convention Center", + }, + { + location: "http://www.wikidata.org/entity/Q5952881", + cordinates: "Point(-96.8094 32.7758)", + locationLabel: "Hyatt Regency Dallas", + }, + { + location: "http://www.wikidata.org/entity/Q5952876", + cordinates: "Point(-87.6219 41.8872)", + locationLabel: "Hyatt Regency Chicago", + }, + { + location: "http://www.wikidata.org/entity/Q5952858", + cordinates: "Point(-106.651 35.0862)", + locationLabel: "Hyatt Regency Albuquerque", + }, + { + location: "http://www.wikidata.org/entity/Q1639792", + cordinates: "Point(-87.636486 41.880836)", + locationLabel: "Hyatt Center", + height: "207", + numberOfElevators: "34", + }, + { + location: "http://www.wikidata.org/entity/Q2370872", + cordinates: "Point(-87.6266 41.8952)", + locationLabel: "Huron Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5945254", + cordinates: "Point(-81.6866 41.5005)", + locationLabel: "Huntington Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q5944176", + cordinates: "Point(-122.402 37.7898)", + locationLabel: "Hunter-Dulin Building", + }, + { + location: "http://www.wikidata.org/entity/Q650028", + cordinates: "Point(-85.7587 38.2565)", + locationLabel: "Humana Building", + }, + { + location: "http://www.wikidata.org/entity/Q5929657", + cordinates: "Point(46.674444444 24.711388888)", + locationLabel: "Hugayat Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1633806", + cordinates: "Point(-79.3866 43.6707)", + locationLabel: "Hudson's Bay Centre", + height: "135", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q5928678", + cordinates: "Point(-74.0353 40.7145)", + locationLabel: "Hudson Greene", + }, + { + location: "http://www.wikidata.org/entity/Q10905762", + cordinates: "Point(120.20299 30.24394)", + locationLabel: "Huacheng International Development Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q24836806", + cordinates: "Point(121.5692 25.0343)", + locationLabel: "Hua Nan Bank World Trade Building", + }, + { + location: "http://www.wikidata.org/entity/Q10887962", + cordinates: "Point(121.55889444 25.03295278)", + locationLabel: "Hsin Ji Building", + }, + { + location: "http://www.wikidata.org/entity/Q1055987", + cordinates: "Point(-95.3667 29.7536)", + locationLabel: "Houston Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14710513", + cordinates: "Point(-95.401 29.7055)", + locationLabel: "Houston Main Building", + }, + { + location: "http://www.wikidata.org/entity/Q5916597", + cordinates: "Point(-95.3677 29.7515)", + locationLabel: "Houston House Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q15219553", + cordinates: "Point(24.08611111 56.94805556)", + locationLabel: "House of Press", + }, + { + location: "http://www.wikidata.org/entity/Q531394", + cordinates: "Point(13.00138889 55.59638889)", + locationLabel: "Hotell Triangeln", + }, + { + location: "http://www.wikidata.org/entity/Q930702", + cordinates: "Point(-123.120959 49.283839)", + locationLabel: "Hotel Vancouver", + }, + { + location: "http://www.wikidata.org/entity/Q12060135", + cordinates: "Point(-97.329167 32.7525)", + locationLabel: "Hotel Texas", + }, + { + location: "http://www.wikidata.org/entity/Q1189944", + cordinates: "Point(2.12554 41.35489)", + locationLabel: "Hotel Porta Fira", + }, + { + location: "http://www.wikidata.org/entity/Q26700322", + cordinates: "Point(-73.5764 45.5019)", + locationLabel: "Hotel Omni Mont-Royal", + }, + { + location: "http://www.wikidata.org/entity/Q707379", + cordinates: "Point(76.9575 43.245)", + locationLabel: "Hotel Kazakhstan", + }, + { + location: "http://www.wikidata.org/entity/Q5911578", + cordinates: "Point(-43.25711389 -22.99796611)", + locationLabel: "Hotel Horsa Nacional", + }, + { + location: "http://www.wikidata.org/entity/Q28362967", + cordinates: "Point(-75.551375 10.409752)", + locationLabel: "Hotel Estelar Bocagrande", + }, + { + location: "http://www.wikidata.org/entity/Q1189222", + cordinates: "Point(2.125 41.3555)", + locationLabel: "Hotel Catalonia Plaza Europa", + }, + { + location: "http://www.wikidata.org/entity/Q5911239", + cordinates: "Point(2.21833333 41.41055556)", + locationLabel: "Hotel Barcelona Princess", + }, + { + location: "http://www.wikidata.org/entity/Q1425790", + cordinates: "Point(2.196111111 41.386666666)", + locationLabel: "Hotel Arts", + }, + { + location: "http://www.wikidata.org/entity/Q2327654", + cordinates: "Point(55.137967 25.072064)", + locationLabel: "Horizon Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3234973", + cordinates: "Point(114.172 22.2745)", + locationLabel: "Hopewell Centre", + }, + { + location: "http://www.wikidata.org/entity/Q616726", + cordinates: "Point(-115.1675 36.1)", + locationLabel: "Hooters Casino Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q14874439", + cordinates: "Point(103.851 1.28131)", + locationLabel: "Hong Leong Building", + }, + { + location: "http://www.wikidata.org/entity/Q3756202", + cordinates: "Point(114.168 22.2787)", + locationLabel: "Hong Kong Police Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q1626452", + cordinates: "Point(114.080345 22.539494)", + locationLabel: "Hon Kwok City Center", + }, + { + location: "http://www.wikidata.org/entity/Q5888695", + cordinates: "Point(-73.752151 42.64994)", + locationLabel: "Home Savings Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q5888604", + cordinates: "Point(-114.069444444 51.045833333)", + locationLabel: "Home Oil Tower, Calgary", + }, + { + location: "http://www.wikidata.org/entity/Q98596418", + cordinates: "Point(-74.0075 40.713333333)", + locationLabel: "Home Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q3756922", + cordinates: "Point(-74.007777777 40.708611111)", + locationLabel: "Home Insurance Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5880972", + cordinates: "Point(-3.1672 51.4836)", + locationLabel: "Holland House, Cardiff", + }, + { + location: "http://www.wikidata.org/entity/Q99539390", + cordinates: "Point(103.760388888 1.488472222)", + locationLabel: "Holiday Plaza Tower", + }, + { + location: "http://www.wikidata.org/entity/Q19878811", + cordinates: "Point(-73.573 45.4953)", + locationLabel: "Holiday Inn Downtown Montreal", + }, + { + location: "http://www.wikidata.org/entity/Q1623326", + cordinates: "Point(4.321667 52.080556)", + locationLabel: "Hoftoren", + height: "142", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q1621865", + cordinates: "Point(8.5338 47.3666)", + locationLabel: "Hochhaus zur Palme", + }, + { + location: "http://www.wikidata.org/entity/Q328507", + cordinates: "Point(11.531666666 48.176944444)", + locationLabel: "Hochhaus Uptown München", + }, + { + location: "http://www.wikidata.org/entity/Q1621858", + cordinates: "Point(16.4158 48.2311)", + locationLabel: "Hochhaus Neue Donau", + }, + { + location: "http://www.wikidata.org/entity/Q5874664", + cordinates: "Point(-122.402 37.7894)", + locationLabel: "Hobart Building", + }, + { + location: "http://www.wikidata.org/entity/Q11484423", + cordinates: "Point(132.457889 34.389956)", + locationLabel: "Hiroshima Crystal Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3062297", + cordinates: "Point(-0.40111111 39.49444444)", + locationLabel: "Hilton Valencia", + }, + { + location: "http://www.wikidata.org/entity/Q3498798", + cordinates: "Point(-122.411 37.7853)", + locationLabel: "Hilton San Francisco Union Square", + }, + { + location: "http://www.wikidata.org/entity/Q11682501", + cordinates: "Point(-117.159 32.7033)", + locationLabel: "Hilton San Diego Bayfront", + }, + { + location: "http://www.wikidata.org/entity/Q14875185", + cordinates: "Point(-79.0829 43.0826)", + locationLabel: "Hilton Niagara Falls Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q2632341", + cordinates: "Point(-73.978738888 40.76225)", + locationLabel: "Hilton New York", + }, + { + location: "http://www.wikidata.org/entity/Q14691658", + cordinates: "Point(-90.0637 29.9479)", + locationLabel: "Hilton New Orleans Riverside", + }, + { + location: "http://www.wikidata.org/entity/Q4822225", + cordinates: "Point(27.137138888 38.425583333)", + locationLabel: "Hilton Izmir", + height: "142", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q16843767", + cordinates: "Point(-93.7513 32.517)", + locationLabel: "Hilton Hotel Convention Center", + }, + { + location: "http://www.wikidata.org/entity/Q16641845", + cordinates: "Point(-84.514 39.1009)", + locationLabel: "Hilton Cincinnati Netherland Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2872115", + cordinates: "Point(-97.73804 30.265369)", + locationLabel: "Hilton Austin Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q2872115", + cordinates: "Point(-97.7382 30.2652)", + locationLabel: "Hilton Austin Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q14710497", + cordinates: "Point(-96.8286 32.8002)", + locationLabel: "Hilton Anatole", + }, + { + location: "http://www.wikidata.org/entity/Q105962646", + cordinates: "Point(120.29497861 22.660011403)", + locationLabel: "Highwealth - City of Leadership", + }, + { + location: "http://www.wikidata.org/entity/Q2669877", + cordinates: "Point(114.184166666 22.265)", + locationLabel: "Highcliff", + }, + { + location: "http://www.wikidata.org/entity/Q91102323", + cordinates: "Point(6.142848888 49.621426111)", + locationLabel: + "High-rise towers of the Court of Justice of the European Union", + }, + { + location: "http://www.wikidata.org/entity/Q5754149", + cordinates: "Point(136.979 35.1568)", + locationLabel: "Higashiyama Sky Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5754149", + cordinates: "Point(136.978814 35.156686)", + locationLabel: "Higashiyama Sky Tower", + }, + { + location: "http://www.wikidata.org/entity/Q38255011", + cordinates: "Point(139.75361111 35.67083333)", + locationLabel: "Hibiya Park Front", + }, + { + location: "http://www.wikidata.org/entity/Q5750709", + cordinates: "Point(-90.0714 29.9517)", + locationLabel: "Hibernia Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q2198522", + cordinates: "Point(4.324167 52.071389)", + locationLabel: "Het Strijkijzer", + }, + { + location: "http://www.wikidata.org/entity/Q3500512", + cordinates: "Point(-95.3602 29.7544)", + locationLabel: "Hess Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3044181", + cordinates: "Point(2.10833333 41.34611111)", + locationLabel: "Hesperia Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1613853", + cordinates: "Point(-0.0808333 51.5161)", + locationLabel: "Heron Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2976302", + cordinates: "Point(2.253638888 48.888947222)", + locationLabel: "Hermitage Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1510199", + cordinates: "Point(-95.37055 29.75861)", + locationLabel: "Heritage Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q11284342", + cordinates: "Point(135.492667 34.698528)", + locationLabel: "Herbis Osaka", + }, + { + location: "http://www.wikidata.org/entity/Q3132927", + cordinates: "Point(-122.335 47.6044)", + locationLabel: "Henry M. Jackson Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q5714825", + cordinates: "Point(-93.2667 44.9758)", + locationLabel: "Hennepin County Government Center", + }, + { + location: "http://www.wikidata.org/entity/Q1603308", + cordinates: "Point(-73.9758 40.7544)", + locationLabel: "Helmsley Building", + height: "172", + numberOfElevators: "25", + }, + { + location: "http://www.wikidata.org/entity/Q5709475", + cordinates: "Point(-3.171 51.481)", + locationLabel: "Helmont House", + }, + { + location: "http://www.wikidata.org/entity/Q3775869", + cordinates: "Point(-74.012 40.702)", + locationLabel: "Helicoidal Skyscraper", + }, + { + location: "http://www.wikidata.org/entity/Q5701352", + cordinates: "Point(28.043466 -26.199508)", + locationLabel: "Hekro Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5694759", + cordinates: "Point(-48.54361111 -22.28444444)", + locationLabel: "Heaven Tower Residence", + }, + { + location: "http://www.wikidata.org/entity/Q673794", + cordinates: "Point(-80.840803 35.227572)", + locationLabel: "Hearst Tower", + height: "201", + numberOfElevators: "29", + }, + { + location: "http://www.wikidata.org/entity/Q859452", + cordinates: "Point(-73.983611111 40.766555555)", + locationLabel: "Hearst Tower", + height: "182", + numberOfElevators: "21", + }, + { + location: "http://www.wikidata.org/entity/Q12059672", + cordinates: "Point(79.866666666 6.882222222)", + locationLabel: "Havelock City", + }, + { + location: "http://www.wikidata.org/entity/Q5677890", + cordinates: "Point(-96.797 32.785)", + locationLabel: "Harwood Center", + }, + { + location: "http://www.wikidata.org/entity/Q2913603", + cordinates: "Point(139.78377 35.65751)", + locationLabel: "Harumi Island Triton Square", + }, + { + location: "http://www.wikidata.org/entity/Q5674423", + cordinates: "Point(-96.797737 32.784222)", + locationLabel: "Hartford Building", + }, + { + location: "http://www.wikidata.org/entity/Q21016003", + cordinates: "Point(-72.676615 41.766895)", + locationLabel: "Hartford 21", + }, + { + location: "http://www.wikidata.org/entity/Q14708868", + cordinates: "Point(-122.679 45.5098)", + locationLabel: "Harrison West Condominium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3756449", + cordinates: "Point(-87.6319 41.8804)", + locationLabel: "Harris Bank Addition II", + }, + { + location: "http://www.wikidata.org/entity/Q12059576", + cordinates: "Point(-90.0653 29.9497)", + locationLabel: "Harrah's New Orleans", + }, + { + location: "http://www.wikidata.org/entity/Q11327366", + cordinates: "Point(139.683392 35.696236)", + locationLabel: "Harmony Square", + }, + { + location: "http://www.wikidata.org/entity/Q1585008", + cordinates: "Point(-115.154 36.1086)", + locationLabel: "Hard Rock Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q867340", + cordinates: "Point(-123.112 49.2846)", + locationLabel: "Harbour Centre", + height: "169", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q14705523", + cordinates: "Point(-74.0333 40.7178)", + locationLabel: "Harborside Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q5654550", + cordinates: "Point(-76.6044 39.2772)", + locationLabel: "HarborView Condominium", + }, + { + location: "http://www.wikidata.org/entity/Q5654683", + cordinates: "Point(-71.05 42.358)", + locationLabel: "Harbor Towers", + }, + { + location: "http://www.wikidata.org/entity/Q2415903", + cordinates: "Point(-87.6148 41.885)", + locationLabel: "Harbor Point", + }, + { + location: "http://www.wikidata.org/entity/Q955149", + cordinates: "Point(-117.163 32.7089)", + locationLabel: "Harbor Club Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q9286270", + cordinates: "Point(19.0184 50.2642)", + locationLabel: "Haperowiec Skyscraper", + }, + { + location: "http://www.wikidata.org/entity/Q16841056", + cordinates: "Point(14.5536 53.4378)", + locationLabel: "Hanza Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1526559", + cordinates: "Point(7.47051528 51.52100083)", + locationLabel: "Hannibal", + }, + { + location: "http://www.wikidata.org/entity/Q14551925", + cordinates: "Point(9.1932 48.726)", + locationLabel: "Hannibal", + }, + { + location: "http://www.wikidata.org/entity/Q12656394", + cordinates: "Point(25.26194444 54.69944444)", + locationLabel: "Hanner Business Centre", + }, + { + location: "http://www.wikidata.org/entity/Q18348250", + cordinates: "Point(113.93164 22.54348)", + locationLabel: "Hanking Center", + }, + { + location: "http://www.wikidata.org/entity/Q11102605", + cordinates: "Point(120.2 30.24)", + locationLabel: "Hangzhou No.2 Telecom Hub", + }, + { + location: "http://www.wikidata.org/entity/Q5647842", + cordinates: "Point(121.502671 31.242265)", + locationLabel: "Hang Seng Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6353197", + cordinates: "Point(120.2961 22.6194)", + locationLabel: "Han-Lai New World Center", + }, + { + location: "http://www.wikidata.org/entity/Q11528236", + cordinates: "Point(139.757667 35.6515)", + locationLabel: "Hamamatsucho Building", + }, + { + location: "http://www.wikidata.org/entity/Q5643030", + cordinates: "Point(-106.656 52.1312)", + locationLabel: "Hallmark Place", + }, + { + location: "http://www.wikidata.org/entity/Q5641713", + cordinates: "Point(-73.9951 40.5755)", + locationLabel: "Half Moon Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q5961370", + cordinates: "Point(129.15645556 35.15988611)", + locationLabel: "Haeundae LCT The Sharp", + }, + { + location: "http://www.wikidata.org/entity/Q5638300", + cordinates: "Point(129.141815 35.156258)", + locationLabel: "Haeundae I Park", + }, + { + location: "http://www.wikidata.org/entity/Q5637110", + cordinates: "Point(-115.1775 36.088611111)", + locationLabel: "Hacienda", + }, + { + location: "http://www.wikidata.org/entity/Q3749929", + cordinates: "Point(2.20079444 41.40617778)", + locationLabel: "Habitat Sky", + }, + { + location: "http://www.wikidata.org/entity/Q2221125", + cordinates: "Point(4.334444 52.077778)", + locationLabel: "Haagsche Zwaan", + }, + { + location: "http://www.wikidata.org/entity/Q20645725", + cordinates: "Point(34.8 32.080278)", + locationLabel: "HaShachar Tower", + height: "195", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q50275502", + cordinates: "Point(34.786667 32.069722)", + locationLabel: "HaArba'a Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5636166", + cordinates: "Point(-93.6244 41.5859)", + locationLabel: "HUB Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3995199", + cordinates: "Point(-99.1686 19.4278)", + locationLabel: "HSBC Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24192513", + cordinates: "Point(-73.9835692 40.7523325)", + locationLabel: "HSBC Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5635875", + cordinates: "Point(-123.119 49.284)", + locationLabel: "HSBC Canada Building", + }, + { + location: "http://www.wikidata.org/entity/Q1372014", + cordinates: "Point(114.159444444 22.28)", + locationLabel: "HSBC Building", + height: "178.7", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q951553", + cordinates: "Point(15.963889 45.801944)", + locationLabel: "HOTO Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15477116", + cordinates: "Point(110.34 20.0203)", + locationLabel: "HNA Building", + }, + { + location: "http://www.wikidata.org/entity/Q1470076", + cordinates: "Point(55.280833333 25.221111111)", + locationLabel: "HHHR Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5622019", + cordinates: "Point(-0.086666666 51.504444444)", + locationLabel: "Guy's Tower", + }, + { + location: "http://www.wikidata.org/entity/Q777039", + cordinates: "Point(-0.086944444 51.503333333)", + locationLabel: "Guy's Hospital", + }, + { + location: "http://www.wikidata.org/entity/Q28873239", + cordinates: "Point(103.8461 1.2771)", + locationLabel: "Guoco Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24837572", + cordinates: "Point(120.294118 22.619348)", + locationLabel: "Guo-Yan Building BC", + }, + { + location: "http://www.wikidata.org/entity/Q11040441", + cordinates: "Point(139.06097222 36.39125)", + locationLabel: "Gunma Prefectural Government Building", + }, + { + location: "http://www.wikidata.org/entity/Q2333736", + cordinates: "Point(30.523055555 50.438611111)", + locationLabel: "Gulliver", + }, + { + location: "http://www.wikidata.org/entity/Q52297891", + cordinates: "Point(-123.118283333 49.287766666)", + locationLabel: "Guinness Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1923811", + cordinates: "Point(60.575575 56.835438888)", + locationLabel: "Guardians of the Urals", + }, + { + location: "http://www.wikidata.org/entity/Q3079894", + cordinates: "Point(-83.045833 42.329722)", + locationLabel: "Guardian Building", + }, + { + location: "http://www.wikidata.org/entity/Q5614047", + cordinates: "Point(-81.688889 41.500278)", + locationLabel: "Guardian Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q1043438", + cordinates: "Point(113.318075 23.120347222)", + locationLabel: "Guangzhou International Finance Center", + height: "440", + numberOfElevators: "71", + }, + { + location: "http://www.wikidata.org/entity/Q5613632", + cordinates: "Point(113.2775 23.141111111)", + locationLabel: "Guangdong International Building", + }, + { + location: "http://www.wikidata.org/entity/Q18151158", + cordinates: "Point(-74.0417 40.7196)", + locationLabel: "Grove Pointe", + }, + { + location: "http://www.wikidata.org/entity/Q5610653", + cordinates: "Point(151.207 -33.8629)", + locationLabel: "Grosvenor Place", + }, + { + location: "http://www.wikidata.org/entity/Q5604788", + cordinates: "Point(-95.4318 29.7327)", + locationLabel: "Greenway Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q18165634", + cordinates: "Point(151.208871 -33.873916)", + locationLabel: "Greenland Centre Sydney", + }, + { + location: "http://www.wikidata.org/entity/Q60743391", + cordinates: "Point(144.963361 -37.822597)", + locationLabel: "Green Spine", + }, + { + location: "http://www.wikidata.org/entity/Q5602124", + cordinates: "Point(-83.0412 42.3345)", + locationLabel: "Greektown Casino Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q14943579", + cordinates: "Point(-2.248 53.4776)", + locationLabel: "Great Northern Tower", + }, + { + location: "http://www.wikidata.org/entity/Q971317", + cordinates: "Point(-84.507185 39.09983)", + locationLabel: "Great American Tower at Queen City Square", + height: "202.69", + numberOfElevators: "26", + }, + { + location: "http://www.wikidata.org/entity/Q1543292", + cordinates: "Point(-123.113 49.2869)", + locationLabel: "Granville Square", + height: "142", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q5596127", + cordinates: "Point(-79.9975 40.4375)", + locationLabel: "Grant Building", + }, + { + location: "http://www.wikidata.org/entity/Q9275924", + cordinates: "Point(139.745604 35.643671)", + locationLabel: "Granpark Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5595938", + cordinates: "Point(-104.992 39.7499)", + locationLabel: "Granite Tower", + }, + { + location: "http://www.wikidata.org/entity/Q32361114", + cordinates: "Point(37.540914 55.75098)", + locationLabel: "Grand Tower", + }, + { + location: "http://www.wikidata.org/entity/Q28129022", + cordinates: "Point(120.9775 14.5767)", + locationLabel: "Grand Riviera Suites", + }, + { + location: "http://www.wikidata.org/entity/Q839983", + cordinates: "Point(114.225 22.2852)", + locationLabel: "Grand Promenade", + }, + { + location: "http://www.wikidata.org/entity/Q555225", + cordinates: "Point(139.7372472 35.6798825)", + locationLabel: "Grand Prince Hotel Akasaka", + }, + { + location: "http://www.wikidata.org/entity/Q2300049", + cordinates: "Point(-87.6286 41.8919)", + locationLabel: "Grand Plaza I", + }, + { + location: "http://www.wikidata.org/entity/Q5594835", + cordinates: "Point(31.2276 30.0348)", + locationLabel: "Grand Nile Tower Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q5594806", + cordinates: "Point(114.15355 22.28528)", + locationLabel: "Grand Millennium Plaza II", + }, + { + location: "http://www.wikidata.org/entity/Q1033099", + cordinates: "Point(113.543117 22.190644)", + locationLabel: "Grand Lisboa", + }, + { + location: "http://www.wikidata.org/entity/Q139815", + cordinates: "Point(113.318 23.1278)", + locationLabel: "Grand International Mansion", + }, + { + location: "http://www.wikidata.org/entity/Q5594662", + cordinates: "Point(-122.40723 37.78911)", + locationLabel: "Grand Hyatt San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q5594661", + cordinates: "Point(-98.4839 29.4219)", + locationLabel: "Grand Hyatt San Antonio", + }, + { + location: "http://www.wikidata.org/entity/Q5440278", + cordinates: "Point(121.0497 14.5566)", + locationLabel: "Grand Hyatt Manila", + }, + { + location: "http://www.wikidata.org/entity/Q5594654", + cordinates: "Point(101.7121 3.15364)", + locationLabel: "Grand Hyatt Kuala Lumpur", + }, + { + location: "http://www.wikidata.org/entity/Q18019549", + cordinates: "Point(79.847777777 6.915833333)", + locationLabel: "Grand Hyatt Colombo", + }, + { + location: "http://www.wikidata.org/entity/Q5594600", + cordinates: "Point(-79.4852 43.6187)", + locationLabel: "Grand Harbour", + }, + { + location: "http://www.wikidata.org/entity/Q11300380", + cordinates: "Point(135.494 34.707306)", + locationLabel: "Grand Front Osaka Owner's Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2913602", + cordinates: "Point(139.76897222 35.68169444)", + locationLabel: "GranTokyo", + }, + { + location: "http://www.wikidata.org/entity/Q1542408", + cordinates: "Point(-70.60666667 -33.41694444)", + locationLabel: "Gran Torre Santiago", + height: "300", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q1810566", + cordinates: "Point(-0.163888888 38.531666666)", + locationLabel: "Gran Hotel Bali", + }, + { + location: "http://www.wikidata.org/entity/Q11670333", + cordinates: "Point(134.046575 34.342789)", + locationLabel: "Government of Takamatsu, Kagawa", + }, + { + location: "http://www.wikidata.org/entity/Q5580216", + cordinates: "Point(51.3361 35.7218)", + locationLabel: "Goldis Tower", + }, + { + location: "http://www.wikidata.org/entity/Q966225", + cordinates: "Point(117.08083 39.08922)", + locationLabel: "Goldin Finance 117", + }, + { + location: "http://www.wikidata.org/entity/Q966225", + cordinates: "Point(117.080830555 39.089219444)", + locationLabel: "Goldin Finance 117", + }, + { + location: "http://www.wikidata.org/entity/Q1535018", + cordinates: "Point(-115.1448 36.1706)", + locationLabel: "Golden Nugget Las Vegas Hotel & Casino", + }, + { + location: "http://www.wikidata.org/entity/Q19458573", + cordinates: "Point(118.73488 32.02604)", + locationLabel: "Golden Eagle Tiandi Tower A", + }, + { + location: "http://www.wikidata.org/entity/Q31740311", + cordinates: "Point(18.423527777 -33.922861111)", + locationLabel: "Golden Acre", + }, + { + location: "http://www.wikidata.org/entity/Q31740311", + cordinates: "Point(18.423601 -33.922918)", + locationLabel: "Golden Acre", + }, + { + location: "http://www.wikidata.org/entity/Q5579050", + cordinates: "Point(55.141880555 25.066708333)", + locationLabel: "Goldcrest Views 2", + }, + { + location: "http://www.wikidata.org/entity/Q17228544", + cordinates: "Point(138.38049722 34.97585)", + locationLabel: "Gofukucho Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3499372", + cordinates: "Point(17.13861111 48.155)", + locationLabel: "Glória", + }, + { + location: "http://www.wikidata.org/entity/Q11103414", + cordinates: "Point(121.749 25.128)", + locationLabel: "Glory Tower", + }, + { + location: "http://www.wikidata.org/entity/Q16255689", + cordinates: "Point(26.1004 44.4794)", + locationLabel: "Globalworth Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24836571", + cordinates: "Point(120.6397 24.1593)", + locationLabel: "Global Strategy Center", + }, + { + location: "http://www.wikidata.org/entity/Q16259176", + cordinates: "Point(121.412 31.232)", + locationLabel: "Global Harbor", + }, + { + location: "http://www.wikidata.org/entity/Q22118627", + cordinates: "Point(136.88356111 35.16231944)", + locationLabel: "Global Gate", + }, + { + location: "http://www.wikidata.org/entity/Q1807508", + cordinates: "Point(-4.29403 55.8585)", + locationLabel: "Glasgow Science Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5562012", + cordinates: "Point(-74.0105 40.7076)", + locationLabel: "Gillender Building", + }, + { + location: "http://www.wikidata.org/entity/Q5560103", + cordinates: "Point(136.7545 35.41069444)", + locationLabel: "Gifu City Tower 43", + }, + { + location: "http://www.wikidata.org/entity/Q6585397", + cordinates: "Point(34.8167 32.0833)", + locationLabel: "Gibor Sport House", + }, + { + location: "http://www.wikidata.org/entity/Q1521208", + cordinates: "Point(114.25527778 30.60944444)", + locationLabel: "Gezhouba International Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3995195", + cordinates: "Point(9.15521 45.47832)", + locationLabel: "Generali Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1501652", + cordinates: "Point(-73.9725 40.763888888)", + locationLabel: "General Motors Building", + height: "215", + numberOfElevators: "35", + }, + { + location: "http://www.wikidata.org/entity/Q244391", + cordinates: "Point(-73.9725 40.757222222)", + locationLabel: "General Electric Building", + height: "195", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q1184156", + cordinates: "Point(4.471951 51.92397)", + locationLabel: "Gebouw Delftse Poort", + height: "151", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q604001", + cordinates: "Point(37.556902 55.658804)", + locationLabel: "Gazprom Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q5527303", + cordinates: "Point(-80.0068 40.4426)", + locationLabel: "Gateway Towers", + }, + { + location: "http://www.wikidata.org/entity/Q24036172", + cordinates: "Point(151.209812 -33.862037)", + locationLabel: "Gateway Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5527212", + cordinates: "Point(-74.1642 40.7347)", + locationLabel: "Gateway Center", + }, + { + location: "http://www.wikidata.org/entity/Q11301680", + cordinates: "Point(139.731389 35.618972)", + locationLabel: "Gatec City Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1495771", + cordinates: "Point(120.679024 31.316816)", + locationLabel: "Gate to the East", + height: "302", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q1141262", + cordinates: "Point(-3.687777777 40.466388888)", + locationLabel: "Gate of Europe", + height: "114", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q850547", + cordinates: "Point(135.489529 34.698031)", + locationLabel: "Gate Tower Building", + }, + { + location: "http://www.wikidata.org/entity/Q2424258", + cordinates: "Point(-118.253056 34.05)", + locationLabel: "Gas Company Tower", + height: "228.3", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q5523054", + cordinates: "Point(-118.256 34.0448)", + locationLabel: "Garfield Building", + }, + { + location: "http://www.wikidata.org/entity/Q471336", + cordinates: "Point(8.6725 50.1117)", + locationLabel: "Garden Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5519366", + cordinates: "Point(-87.6222 41.8947)", + locationLabel: "Galter Pavilion", + }, + { + location: "http://www.wikidata.org/entity/Q5519195", + cordinates: "Point(-4.21506 55.8559)", + locationLabel: "Gallowgate Twins", + }, + { + location: "http://www.wikidata.org/entity/Q449607", + cordinates: "Point(8.671111111 50.109444444)", + locationLabel: "Gallileo", + height: "136", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q5518963", + cordinates: "Point(-95.462 29.739)", + locationLabel: "Galleria Office Towers", + }, + { + location: "http://www.wikidata.org/entity/Q3995192", + cordinates: "Point(9.19888889 45.48638889)", + locationLabel: "Galfa Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5518143", + cordinates: "Point(-74.0002 40.7905)", + locationLabel: "Galaxy Towers", + }, + { + location: "http://www.wikidata.org/entity/Q33842255", + cordinates: "Point(100.5627 13.74349)", + locationLabel: "GMM Grammy Place", + }, + { + location: "http://www.wikidata.org/entity/Q28410457", + cordinates: "Point(120.637609 24.15918)", + locationLabel: "Fuyu Oriental Crown", + }, + { + location: "http://www.wikidata.org/entity/Q5510688", + cordinates: "Point(106.529 29.57722222)", + locationLabel: "Future International", + }, + { + location: "http://www.wikidata.org/entity/Q11381067", + cordinates: "Point(136.897369 35.164633)", + locationLabel: "Fushimi Life Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5509472", + cordinates: "Point(114.161908 22.281357)", + locationLabel: "Furama Kempinski Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q2729442", + cordinates: "Point(-95.3617 29.7556)", + locationLabel: "Fulbright Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5507359", + cordinates: "Point(103.844 1.27327)", + locationLabel: "Fuji Xerox Towers", + }, + { + location: "http://www.wikidata.org/entity/Q11455867", + cordinates: "Point(139.62750833 35.46339722)", + locationLabel: "Fuji Xerox R&D Square", + }, + { + location: "http://www.wikidata.org/entity/Q47539081", + cordinates: "Point(121.57013 25.039298)", + locationLabel: "Fubon Xinyi A25", + }, + { + location: "http://www.wikidata.org/entity/Q104880932", + cordinates: "Point(120.659444444 24.139444444)", + locationLabel: "Fubon Sky Tree", + }, + { + location: "http://www.wikidata.org/entity/Q3089263", + cordinates: "Point(-97.7427 30.2665)", + locationLabel: "Frost Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5506149", + cordinates: "Point(-98.4941 29.4262)", + locationLabel: "Frost Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q880667", + cordinates: "Point(8.432167 49.495972)", + locationLabel: "Friedrich-Engelhorn-Hochhaus", + }, + { + location: "http://www.wikidata.org/entity/Q175182", + cordinates: "Point(-79.9975 40.439166666)", + locationLabel: "Frick Building", + }, + { + location: "http://www.wikidata.org/entity/Q5503128", + cordinates: "Point(144.962 -37.8215)", + locationLabel: "Freshwater Place", + }, + { + location: "http://www.wikidata.org/entity/Q1136841", + cordinates: "Point(-115.143 36.1708)", + locationLabel: "Fremont Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q5501105", + cordinates: "Point(-112.0732 33.4519)", + locationLabel: "Freeport-McMoRan Center", + }, + { + location: "http://www.wikidata.org/entity/Q1453542", + cordinates: "Point(-80.189722 25.78)", + locationLabel: "Freedom Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2893962", + cordinates: "Point(-73.978888888 40.755361111)", + locationLabel: "Fred F. French Building", + }, + { + location: "http://www.wikidata.org/entity/Q5491490", + cordinates: "Point(-82.4584 27.9496)", + locationLabel: "Franklin Exchange Building", + }, + { + location: "http://www.wikidata.org/entity/Q5491406", + cordinates: "Point(-83.0003 39.9539)", + locationLabel: "Franklin County Government Center", + }, + { + location: "http://www.wikidata.org/entity/Q555113", + cordinates: "Point(8.66444 50.1114)", + locationLabel: "Frankfurter Büro Center", + }, + { + location: "http://www.wikidata.org/entity/Q5477011", + cordinates: "Point(-122.681 45.5183)", + locationLabel: "Fox Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1920322", + cordinates: "Point(-118.412804 34.055282)", + locationLabel: "Fox Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5476861", + cordinates: "Point(-122.417 37.7771)", + locationLabel: "Fox Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5475961", + cordinates: "Point(-84.51077 39.09998)", + locationLabel: "Fourth & Walnut Center", + }, + { + location: "http://www.wikidata.org/entity/Q1351208", + cordinates: "Point(-74.0119 40.7104)", + locationLabel: "Four World Trade Center", + height: "297.7", + numberOfElevators: "35", + }, + { + location: "http://www.wikidata.org/entity/Q3079993", + cordinates: "Point(-97.7417 30.2623)", + locationLabel: "Four Seasons Residences Austin", + }, + { + location: "http://www.wikidata.org/entity/Q5475490", + cordinates: "Point(-122.404 37.7864)", + locationLabel: "Four Seasons Hotel, San Francisco", + }, + { + location: "http://www.wikidata.org/entity/Q593320", + cordinates: "Point(-79.388888888 43.671944444)", + locationLabel: "Four Seasons Hotel and Residences", + }, + { + location: "http://www.wikidata.org/entity/Q992616", + cordinates: "Point(-73.97127 40.76229)", + locationLabel: "Four Seasons Hotel New York", + }, + { + location: "http://www.wikidata.org/entity/Q1440000", + cordinates: "Point(-80.191388888 25.758611111)", + locationLabel: "Four Seasons Hotel Miami", + }, + { + location: "http://www.wikidata.org/entity/Q5475509", + cordinates: "Point(-95.3627 29.7543)", + locationLabel: "Four Seasons Hotel Houston", + }, + { + location: "http://www.wikidata.org/entity/Q2365550", + cordinates: "Point(114.156111111 22.286944444)", + locationLabel: "Four Seasons Hotel Hong Kong", + }, + { + location: "http://www.wikidata.org/entity/Q5475508", + cordinates: "Point(-104.998 39.7464)", + locationLabel: "Four Seasons Hotel Denver", + }, + { + location: "http://www.wikidata.org/entity/Q19878281", + cordinates: "Point(-71.083959 42.34572)", + locationLabel: "Four Seasons Hotel & Private Residences, One Dalton Street", + }, + { + location: "http://www.wikidata.org/entity/Q5475411", + cordinates: "Point(-95.461 29.754)", + locationLabel: "Four Oaks Place", + }, + { + location: "http://www.wikidata.org/entity/Q3079982", + cordinates: "Point(-95.464 29.751)", + locationLabel: "Four Leaf Towers", + }, + { + location: "http://www.wikidata.org/entity/Q3056626", + cordinates: "Point(-122.396197 37.7953)", + locationLabel: "Four Embarcadero Center", + }, + { + location: "http://www.wikidata.org/entity/Q2462521", + cordinates: "Point(-96.802597 32.784694)", + locationLabel: "Fountain Place", + }, + { + location: "http://www.wikidata.org/entity/Q4635645", + cordinates: "Point(-97.571666666 35.531111111)", + locationLabel: "Founders Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3748980", + cordinates: "Point(-93.271904 44.974603)", + locationLabel: "Foshay Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1135738", + cordinates: "Point(123.4275 41.79944444)", + locationLabel: "Forum 66", + }, + { + location: "http://www.wikidata.org/entity/Q5472880", + cordinates: "Point(116.452 39.91644444)", + locationLabel: "Fortune Plaza Office Building 1", + }, + { + location: "http://www.wikidata.org/entity/Q1552767", + cordinates: "Point(113.326225 23.123981)", + locationLabel: "Fortune Center", + }, + { + location: "http://www.wikidata.org/entity/Q24036182", + cordinates: "Point(-123.123146 49.286171)", + locationLabel: "FortisBC Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5472026", + cordinates: "Point(-83.0531 42.3293)", + locationLabel: "Fort Shelby Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q5464605", + cordinates: "Point(18.079722222 59.306111111)", + locationLabel: "Folksamhuset", + }, + { + location: "http://www.wikidata.org/entity/Q5461775", + cordinates: "Point(-82.448333 27.951667)", + locationLabel: "Floridan Palace Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1426968", + cordinates: "Point(-115.170556 36.116111)", + locationLabel: "Flamingo Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q80499", + cordinates: "Point(49.826111111 40.359722222)", + locationLabel: "Flame Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5456103", + cordinates: "Point(-95.4516 29.7478)", + locationLabel: "Five Post Oak Park", + }, + { + location: "http://www.wikidata.org/entity/Q5456060", + cordinates: "Point(-75.1674 39.9531)", + locationLabel: "Five Penn Center", + }, + { + location: "http://www.wikidata.org/entity/Q933431", + cordinates: "Point(-83.076978 42.369658)", + locationLabel: "Fisher Building", + height: "135.47", + numberOfElevators: "46", + }, + { + location: "http://www.wikidata.org/entity/Q5453520", + cordinates: "Point(-95.989587 36.152101)", + locationLabel: "First Place Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5453420", + cordinates: "Point(-97.516111111 35.468333333)", + locationLabel: "First National Center", + }, + { + location: "http://www.wikidata.org/entity/Q5453418", + cordinates: "Point(-83.045889 42.331028)", + locationLabel: "First National Building", + }, + { + location: "http://www.wikidata.org/entity/Q5453390", + cordinates: "Point(-117.166944444 32.718333333)", + locationLabel: "First National Bank Center", + }, + { + location: "http://www.wikidata.org/entity/Q5453387", + cordinates: "Point(-93.091064 44.946711)", + locationLabel: "First National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q38252132", + cordinates: "Point(-97.33055556 32.75444444)", + locationLabel: "First National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q3007171", + cordinates: "Point(-122.399161 37.790514)", + locationLabel: "First Market Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2899925", + cordinates: "Point(34.774166666 32.063611111)", + locationLabel: "First International Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1281206", + cordinates: "Point(-157.862 21.3079)", + locationLabel: "First Hawaiian Center", + }, + { + location: "http://www.wikidata.org/entity/Q603350", + cordinates: "Point(-95.3638 29.7558)", + locationLabel: "First City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1052475", + cordinates: "Point(-79.3817 43.6486)", + locationLabel: "First Canadian Place", + height: "298", + numberOfElevators: "29", + }, + { + location: "http://www.wikidata.org/entity/Q1419300", + cordinates: "Point(-114.07 51.046944444)", + locationLabel: "First Canadian Centre", + }, + { + location: "http://www.wikidata.org/entity/Q3072927", + cordinates: "Point(-90.073888888 29.950555555)", + locationLabel: "First Bank and Trust Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5449580", + cordinates: "Point(-93.6252 41.5855)", + locationLabel: "Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q3533638", + cordinates: "Point(4.364444444 50.852777777)", + locationLabel: "Finance Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2438968", + cordinates: "Point(-118.259 34.0507)", + locationLabel: "Figueroa at Wilshire", + }, + { + location: "http://www.wikidata.org/entity/Q1411817", + cordinates: "Point(-86.7801 36.1637)", + locationLabel: "Fifth Third Center", + }, + { + location: "http://www.wikidata.org/entity/Q3071594", + cordinates: "Point(-81.6896 41.5012)", + locationLabel: "Fifth Third Center", + }, + { + location: "http://www.wikidata.org/entity/Q5447567", + cordinates: "Point(-82.4583 27.9473)", + locationLabel: "Fifth Third Center", + }, + { + location: "http://www.wikidata.org/entity/Q5447564", + cordinates: "Point(-80.8419 35.2285)", + locationLabel: "Fifth Third Center", + }, + { + location: "http://www.wikidata.org/entity/Q5447565", + cordinates: "Point(-84.1922 39.7593)", + locationLabel: "Fifth Third Center", + }, + { + location: "http://www.wikidata.org/entity/Q18150053", + cordinates: "Point(-84.5118 39.1019)", + locationLabel: "Fifth Third Center", + }, + { + location: "http://www.wikidata.org/entity/Q5447558", + cordinates: "Point(-93.2683 44.9781)", + locationLabel: "Fifth Street Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5447478", + cordinates: "Point(-114.066111111 51.048888888)", + locationLabel: "Fifth Avenue Place", + }, + { + location: "http://www.wikidata.org/entity/Q5447429", + cordinates: "Point(-122.34 47.6093)", + locationLabel: "Fifteen Twenty-One Second Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q5445742", + cordinates: "Point(153.027 -27.4715)", + locationLabel: "Festival Towers", + }, + { + location: "http://www.wikidata.org/entity/Q14716415", + cordinates: "Point(-81.6722 41.5022)", + locationLabel: "Fenn Tower", + }, + { + location: "http://www.wikidata.org/entity/Q12697614", + cordinates: "Point(101.71873 3.15546)", + locationLabel: "Felda Tower", + height: "215", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q5440710", + cordinates: "Point(-79.994166666 40.444444444)", + locationLabel: "Federated Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1400070", + cordinates: "Point(-71.054116666 42.352375)", + locationLabel: "Federal Reserve Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q5440314", + cordinates: "Point(-95.936667 41.255278)", + locationLabel: "Federal Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q17182762", + cordinates: "Point(-84.49805556 38.04722222)", + locationLabel: "Fayette National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q5436816", + cordinates: "Point(-102.08 31.9987)", + locationLabel: "Fasken Center", + }, + { + location: "http://www.wikidata.org/entity/Q105077323", + cordinates: "Point(52.44 29.757777777)", + locationLabel: "Fars Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1849384", + cordinates: "Point(-79.508487 8.983962)", + locationLabel: "Faros del Panamá", + }, + { + location: "http://www.wikidata.org/entity/Q48928809", + cordinates: "Point(121.452093 25.060054)", + locationLabel: "Farglory 95rich", + }, + { + location: "http://www.wikidata.org/entity/Q24036143", + cordinates: "Point(121.467 25.0132)", + locationLabel: "Far Eastern Mega Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11642127", + cordinates: "Point(114.164141666 22.280177777)", + locationLabel: "Far East Finance Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5430604", + cordinates: "Point(103.854 1.29417)", + locationLabel: "Fairmont Singapore", + }, + { + location: "http://www.wikidata.org/entity/Q1393350", + cordinates: "Point(-79.3816 43.6461)", + locationLabel: "Fairmont Royal York", + }, + { + location: "http://www.wikidata.org/entity/Q14681964", + cordinates: "Point(-121.8892 37.3336)", + locationLabel: "Fairmont Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2411231", + cordinates: "Point(-123.116389 49.288056)", + locationLabel: "Fairmont Pacific Rim", + }, + { + location: "http://www.wikidata.org/entity/Q48726927", + cordinates: "Point(101.71468 3.15738)", + locationLabel: "Fairmont Kuala Lumpur Towers", + }, + { + location: "http://www.wikidata.org/entity/Q20725898", + cordinates: "Point(101.71422 3.15739)", + locationLabel: "Fairmont Kuala Lumpur Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q27970771", + cordinates: "Point(-87.621002 41.886026)", + locationLabel: "Fairmont Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q17509961", + cordinates: "Point(-97.7382 30.2621)", + locationLabel: "Fairmont Austin", + }, + { + location: "http://www.wikidata.org/entity/Q5427617", + cordinates: "Point(101.684797222 3.102591666)", + locationLabel: "Faber Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5426832", + cordinates: "Point(-82.38408333 23.14288889)", + locationLabel: "FOCSA Building", + }, + { + location: "http://www.wikidata.org/entity/Q16099606", + cordinates: "Point(126.919475 37.52210833)", + locationLabel: "FKI Tower", + height: "245.5", + numberOfElevators: "33", + }, + { + location: "http://www.wikidata.org/entity/Q22005648", + cordinates: "Point(4.46870833 51.92220278)", + locationLabel: "FIRST, Rotterdam", + }, + { + location: "http://www.wikidata.org/entity/Q5853834", + cordinates: "Point(-79.5185 8.98297)", + locationLabel: "F&F Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2116336", + cordinates: "Point(-73.989722222 40.747777777)", + locationLabel: "EŌS", + }, + { + location: "http://www.wikidata.org/entity/Q3488682", + cordinates: "Point(-95.3694 29.7535)", + locationLabel: "ExxonMobil Building", + }, + { + location: "http://www.wikidata.org/entity/Q173498", + cordinates: "Point(-73.9814 40.76)", + locationLabel: "Exxon Building", + height: "229", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q3756775", + cordinates: "Point(55.265794444 25.190816666)", + locationLabel: "Executive Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5419807", + cordinates: "Point(-117.163 32.716)", + locationLabel: "Executive Complex", + }, + { + location: "http://www.wikidata.org/entity/Q1383518", + cordinates: "Point(-79.3833 43.6483)", + locationLabel: "Exchange Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5419582", + cordinates: "Point(115.859 -31.9562)", + locationLabel: "Exchange Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5419563", + cordinates: "Point(-98.4917 29.4284)", + locationLabel: "Exchange Building", + }, + { + location: "http://www.wikidata.org/entity/Q5419564", + cordinates: "Point(-122.335 47.6043)", + locationLabel: "Exchange Building", + }, + { + location: "http://www.wikidata.org/entity/Q5418930", + cordinates: "Point(-79.9978 40.4433)", + locationLabel: "Ewart Building", + }, + { + location: "http://www.wikidata.org/entity/Q5418666", + cordinates: "Point(130.844228 -12.460013)", + locationLabel: "Evolution on Gardiner", + }, + { + location: "http://www.wikidata.org/entity/Q1985903", + cordinates: "Point(37.541827 55.74847)", + locationLabel: "Evolution Tower", + height: "255", + numberOfElevators: "17", + }, + { + location: "http://www.wikidata.org/entity/Q39082053", + cordinates: "Point(-79.524869 8.979788)", + locationLabel: "Evolution Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5416804", + cordinates: "Point(-81.6617 30.3269)", + locationLabel: "EverBank Center", + }, + { + location: "http://www.wikidata.org/entity/Q5416740", + cordinates: "Point(-73.9903 40.7472)", + locationLabel: "Eventi", + }, + { + location: "http://www.wikidata.org/entity/Q2389056", + cordinates: "Point(-0.139277777 51.525583333)", + locationLabel: "Euston Tower", + }, + { + location: "http://www.wikidata.org/entity/Q198046", + cordinates: "Point(8.674166666 50.109722222)", + locationLabel: "Eurotower", + height: "148", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q879987", + cordinates: "Point(8.671944444 50.112777777)", + locationLabel: "Eurotheum", + height: "110", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q1345944", + cordinates: "Point(25.278 54.696)", + locationLabel: "Europa Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11985113", + cordinates: "Point(34.7988889 32.0802778)", + locationLabel: "Eurocom Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11733520", + cordinates: "Point(26.106777777 44.457083333)", + locationLabel: "Euro Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1374287", + cordinates: "Point(37.535304 55.748823)", + locationLabel: "Eurasia", + }, + { + location: "http://www.wikidata.org/entity/Q1371593", + cordinates: "Point(55.29125 25.231111111)", + locationLabel: "Etisalat Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q4262397", + cordinates: "Point(55.314 25.263)", + locationLabel: "Etisalat Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q3533073", + cordinates: "Point(2.24417 48.8908)", + locationLabel: "Esso Tower", + }, + { + location: "http://www.wikidata.org/entity/Q135672", + cordinates: "Point(7.016111111 51.458055555)", + locationLabel: "Essen City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q5399265", + cordinates: "Point(-121.490833333 38.578888888)", + locationLabel: "Esquire Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3058435", + cordinates: "Point(-80.191721 25.760726)", + locationLabel: "Espirito Santo Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q49477261", + cordinates: "Point(51.356388888 35.792777777)", + locationLabel: "Espinas Palace Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q7215732", + cordinates: "Point(35.01809478 32.76271981)", + locationLabel: "Eshkol Tower", + }, + { + location: "http://www.wikidata.org/entity/Q25474437", + cordinates: "Point(-2.003875 43.30109167)", + locationLabel: "Errotaburuko dorreak", + }, + { + location: "http://www.wikidata.org/entity/Q19817569", + cordinates: "Point(-79.3824 43.6497)", + locationLabel: "Ernst & Young Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5388371", + cordinates: "Point(-81.6883 41.5053)", + locationLabel: "Erieview Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5385008", + cordinates: "Point(-73.7596 42.6491)", + locationLabel: "Erastus Corning Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5384630", + cordinates: "Point(-75.165 39.948611)", + locationLabel: "Equitable Trust Building", + }, + { + location: "http://www.wikidata.org/entity/Q5384625", + cordinates: "Point(-118.2984 34.0621)", + locationLabel: "Equitable Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q1347892", + cordinates: "Point(-74.011111 40.708333)", + locationLabel: "Equitable Building", + }, + { + location: "http://www.wikidata.org/entity/Q5384613", + cordinates: "Point(-84.3886 33.7568)", + locationLabel: "Equitable Building", + }, + { + location: "http://www.wikidata.org/entity/Q5384617", + cordinates: "Point(-93.625087 41.586826)", + locationLabel: "Equitable Building", + }, + { + location: "http://www.wikidata.org/entity/Q19461600", + cordinates: "Point(144.959675 -37.809809)", + locationLabel: "Eq. Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1346703", + cordinates: "Point(-113.492777777 53.5475)", + locationLabel: "Epcor Tower", + height: "149.35", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q17627890", + cordinates: "Point(55.282611111 25.224055555)", + locationLabel: "Entisar Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5380441", + cordinates: "Point(114.157 22.2815)", + locationLabel: "Entertainment Building", + }, + { + location: "http://www.wikidata.org/entity/Q1344723", + cordinates: "Point(-95.36906 29.75768)", + locationLabel: "Enterprise Plaza", + height: "230", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q5380197", + cordinates: "Point(-90.0765 29.9489)", + locationLabel: "Entergy Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14710456", + cordinates: "Point(-102.076 31.9981)", + locationLabel: "Energy Tower (Midland, Texas)", + }, + { + location: "http://www.wikidata.org/entity/Q3054119", + cordinates: "Point(-96.7991 32.7831)", + locationLabel: "Energy Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5376907", + cordinates: "Point(-90.075555555 29.950277777)", + locationLabel: "Energy Centre", + }, + { + location: "http://www.wikidata.org/entity/Q18796742", + cordinates: "Point(-95.0624 29.5652)", + locationLabel: "Endeavour", + }, + { + location: "http://www.wikidata.org/entity/Q1340132", + cordinates: "Point(-115.163889 36.128611)", + locationLabel: "Encore", + }, + { + location: "http://www.wikidata.org/entity/Q25818749", + cordinates: "Point(-113.493055555 53.5425)", + locationLabel: "Enbridge Centre", + height: "98.8", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q25818749", + cordinates: "Point(-113.493055555 53.5425)", + locationLabel: "Enbridge Centre", + height: "110.6", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q5374595", + cordinates: "Point(-0.19975 51.487472222)", + locationLabel: "Empress State Building", + }, + { + location: "http://www.wikidata.org/entity/Q120546", + cordinates: "Point(100.530277777 13.720277777)", + locationLabel: "Empire Tower", + height: "227", + numberOfElevators: "52", + }, + { + location: "http://www.wikidata.org/entity/Q5374167", + cordinates: "Point(-79.3838 43.7657)", + locationLabel: "Empire Tower", + }, + { + location: "http://www.wikidata.org/entity/Q9188", + cordinates: "Point(-73.985277777 40.748333333)", + locationLabel: "Empire State Building", + height: "1457", + numberOfElevators: "73", + }, + { + location: "http://www.wikidata.org/entity/Q9188", + cordinates: "Point(-73.985277777 40.748333333)", + locationLabel: "Empire State Building", + height: "1500", + numberOfElevators: "73", + }, + { + location: "http://www.wikidata.org/entity/Q1339307", + cordinates: "Point(-123.131 49.2881)", + locationLabel: "Empire Landmark Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q1339295", + cordinates: "Point(-74.013056 40.707222)", + locationLabel: "Empire Building", + }, + { + location: "http://www.wikidata.org/entity/Q845182", + cordinates: "Point(55.283333333 25.2175)", + locationLabel: "Emirates Office Tower", + height: "355", + numberOfElevators: "17", + }, + { + location: "http://www.wikidata.org/entity/Q575128", + cordinates: "Point(55.146388888 25.088055555)", + locationLabel: "Emirates Crown", + }, + { + location: "http://www.wikidata.org/entity/Q1335726", + cordinates: "Point(-74.005278 40.713889)", + locationLabel: "Emigrant Industrial Savings Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q3052154", + cordinates: "Point(-117.166944444 32.716388888)", + locationLabel: "Emerald Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q10954333", + cordinates: "Point(-122.4 37.7939)", + locationLabel: "Embarcadero West", + }, + { + location: "http://www.wikidata.org/entity/Q3493067", + cordinates: "Point(-122.398 37.7947)", + locationLabel: "Embarcadero Center", + }, + { + location: "http://www.wikidata.org/entity/Q2195755", + cordinates: "Point(-87.6252 41.898)", + locationLabel: "Elysées Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q11291034", + cordinates: "Point(139.730361 35.795556)", + locationLabel: "Elsa Tower32", + }, + { + location: "http://www.wikidata.org/entity/Q3051740", + cordinates: "Point(139.73166667 35.79680556)", + locationLabel: "Elsa Tower 55", + }, + { + location: "http://www.wikidata.org/entity/Q5367291", + cordinates: "Point(-4.261 55.862)", + locationLabel: "Elphinstone Place", + }, + { + location: "http://www.wikidata.org/entity/Q5366428", + cordinates: "Point(-4.26993 55.8649)", + locationLabel: "Elmbank Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q11878340", + cordinates: "Point(-96.8008 32.7815)", + locationLabel: "Elm Place", + height: "191.4", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q1330847", + cordinates: "Point(55.147889 25.089556)", + locationLabel: "Elite Residence", + height: "381", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q5359750", + cordinates: "Point(-74.17 40.7372)", + locationLabel: "Eleven 80", + }, + { + location: "http://www.wikidata.org/entity/Q5358814", + cordinates: "Point(-82.4596 27.9509)", + locationLabel: "Element", + }, + { + location: "http://www.wikidata.org/entity/Q5357520", + cordinates: "Point(-78.8719 42.8886)", + locationLabel: "Electric Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3050546", + cordinates: "Point(-117.17 32.715)", + locationLabel: "Electra", + }, + { + location: "http://www.wikidata.org/entity/Q751824", + cordinates: "Point(-46.697666666 -23.573388888)", + locationLabel: "Eldorado Business Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5910765", + cordinates: "Point(46.368077 38.020589)", + locationLabel: "El-Goli Pars Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q9358597", + cordinates: "Point(-115.15888889 36.1375)", + locationLabel: "El Rancho Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q2613902", + cordinates: "Point(-95.3674 29.7579)", + locationLabel: "El Paso Energy Building", + }, + { + location: "http://www.wikidata.org/entity/Q5351073", + cordinates: "Point(-115.139 36.1689)", + locationLabel: "El Cortez", + }, + { + location: "http://www.wikidata.org/entity/Q4057816", + cordinates: "Point(37.628888888 55.751388888)", + locationLabel: "Eighth Sister", + }, + { + location: "http://www.wikidata.org/entity/Q4688747", + cordinates: "Point(-81.663712 30.316376)", + locationLabel: "Eight Forty One", + }, + { + location: "http://www.wikidata.org/entity/Q14706254", + cordinates: "Point(-78.8767 42.884)", + locationLabel: "Edward A. Rath County Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q24191580", + cordinates: "Point(-113.494666666 53.545666666)", + locationLabel: "Edmonton Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1104353", + cordinates: "Point(-113.495 53.538333333)", + locationLabel: "Edmonton House", + }, + { + location: "http://www.wikidata.org/entity/Q10303489", + cordinates: "Point(-46.645583333 -23.546277777)", + locationLabel: "Edifício do Tribunal de Justiça de São Paulo", + }, + { + location: "http://www.wikidata.org/entity/Q10270259", + cordinates: "Point(-43.1734 -22.9106)", + locationLabel: "Edifício Santos Dumont", + }, + { + location: "http://www.wikidata.org/entity/Q170610", + cordinates: "Point(-46.643611 -23.545417)", + locationLabel: "Edifício Itália", + height: "165", + numberOfElevators: "19", + }, + { + location: "http://www.wikidata.org/entity/Q632566", + cordinates: "Point(-46.644361 -23.546611)", + locationLabel: "Edifício Copan", + }, + { + location: "http://www.wikidata.org/entity/Q169420", + cordinates: "Point(-46.633888888 -23.545833333)", + locationLabel: "Edifício Altino Arantes", + }, + { + location: "http://www.wikidata.org/entity/Q5338058", + cordinates: "Point(-43.181 -22.8973)", + locationLabel: "Edificio do Jornal A Noite", + }, + { + location: "http://www.wikidata.org/entity/Q5818252", + cordinates: "Point(-77.0249 -12.0979)", + locationLabel: "Edificio Petroperú", + }, + { + location: "http://www.wikidata.org/entity/Q5338054", + cordinates: "Point(-99.1756 19.4242)", + locationLabel: "Edificio Miguel E. Abed", + }, + { + location: "http://www.wikidata.org/entity/Q54534434", + cordinates: "Point(-3.674686 40.474011)", + locationLabel: "Edificio Mapfre Vida, Madrid", + }, + { + location: "http://www.wikidata.org/entity/Q3753845", + cordinates: "Point(-0.121389 38.546389)", + locationLabel: "Edificio Kronos", + }, + { + location: "http://www.wikidata.org/entity/Q54534958", + cordinates: "Point(-3.674849 40.473537)", + locationLabel: "Edificio Génesis, Madrid", + }, + { + location: "http://www.wikidata.org/entity/Q649426", + cordinates: "Point(-3.710944444 40.424191666)", + locationLabel: "Edificio España", + height: "117", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q5338045", + cordinates: "Point(2.17524 41.3765)", + locationLabel: "Edificio Colón", + }, + { + location: "http://www.wikidata.org/entity/Q12163956", + cordinates: "Point(-16.5479 28.4148)", + locationLabel: "Edificio Bel Air", + }, + { + location: "http://www.wikidata.org/entity/Q25511393", + cordinates: "Point(-8.403815 43.367824)", + locationLabel: "Edificio Banco Pastor, A Coruña", + }, + { + location: "http://www.wikidata.org/entity/Q5338043", + cordinates: "Point(-43.1774 -22.907)", + locationLabel: "Edificio Avenida Central", + }, + { + location: "http://www.wikidata.org/entity/Q12253090", + cordinates: "Point(-2.9275 43.26472222)", + locationLabel: "Edificio Albia", + }, + { + location: "http://www.wikidata.org/entity/Q1284184", + cordinates: "Point(-74.013834 40.706856)", + locationLabel: "Edgar Towers Skyvoid", + }, + { + location: "http://www.wikidata.org/entity/Q5331344", + cordinates: "Point(-81.6868 41.5036)", + locationLabel: "Eaton Center", + }, + { + location: "http://www.wikidata.org/entity/Q5330926", + cordinates: "Point(-115.056 36.1078)", + locationLabel: "Eastside Cannery", + }, + { + location: "http://www.wikidata.org/entity/Q16890885", + cordinates: "Point(-77.6008 43.1592)", + locationLabel: "Eastman School of Music Student Living Center", + }, + { + location: "http://www.wikidata.org/entity/Q5330141", + cordinates: "Point(90.417231 23.732972)", + locationLabel: "Eastern Federal Credit Union Insurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q5323988", + cordinates: "Point(-80.001111111 40.4425)", + locationLabel: "EQT Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5323378", + cordinates: "Point(-93.625833333 41.585)", + locationLabel: "EMC Insurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q14681888", + cordinates: "Point(-118.3427 34.0625)", + locationLabel: "E. Clem Wilson Building", + }, + { + location: "http://www.wikidata.org/entity/Q900353", + cordinates: "Point(-46.690396 -23.59375)", + locationLabel: "E-Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2974806", + cordinates: "Point(-73.5722 45.4959)", + locationLabel: "E-Commerce Place", + }, + { + location: "http://www.wikidata.org/entity/Q5319203", + cordinates: "Point(-81.3771 28.5438)", + locationLabel: "Dynetech Centre", + }, + { + location: "http://www.wikidata.org/entity/Q15109962", + cordinates: "Point(-79.377881 43.650225)", + locationLabel: "Dynamic Funds Tower", + height: "129.24", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q1347033", + cordinates: "Point(-115.17472222 36.1125)", + locationLabel: "Dunes", + }, + { + location: "http://www.wikidata.org/entity/Q1262936", + cordinates: "Point(55.362967 25.193694)", + locationLabel: "Dubai Towers Dubai", + }, + { + location: "http://www.wikidata.org/entity/Q1207442", + cordinates: "Point(51.522222222 25.314444444)", + locationLabel: "Dubai Towers Doha", + }, + { + location: "http://www.wikidata.org/entity/Q1262915", + cordinates: "Point(55.160028 25.098739)", + locationLabel: "Dubai Pearl", + }, + { + location: "http://www.wikidata.org/entity/Q910485", + cordinates: "Point(55.33333333 25.26666667)", + locationLabel: "Dubai City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5309993", + cordinates: "Point(-73.9739 40.7599)", + locationLabel: "DuMont Building", + }, + { + location: "http://www.wikidata.org/entity/Q64034555", + cordinates: "Point(-73.575322222 45.498738888)", + locationLabel: "Drummond Medical Building", + }, + { + location: "http://www.wikidata.org/entity/Q3376258", + cordinates: "Point(126.959722222 37.529166666)", + locationLabel: "Dream Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5305869", + cordinates: "Point(-0.087 51.5158)", + locationLabel: "Drapers' Gardens", + }, + { + location: "http://www.wikidata.org/entity/Q5303357", + cordinates: "Point(-74.015555555 40.706111111)", + locationLabel: "Downtown Athletic Club", + }, + { + location: "http://www.wikidata.org/entity/Q12258202", + cordinates: "Point(-2.94944444 43.26083333)", + locationLabel: "Dorre Barriak", + }, + { + location: "http://www.wikidata.org/entity/Q760541", + cordinates: "Point(10.885833333 48.359444444)", + locationLabel: "Dorint Hotel Tower", + height: "115", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q5297686", + cordinates: "Point(90.4138 23.7944)", + locationLabel: "Doreen Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5291083", + cordinates: "Point(-76.2878 36.8432)", + locationLabel: "Dominion Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5291065", + cordinates: "Point(-104.991111111 39.745)", + locationLabel: "Dominion Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q650749", + cordinates: "Point(-123.11 49.2825)", + locationLabel: "Dominion Building", + }, + { + location: "http://www.wikidata.org/entity/Q5290014", + cordinates: "Point(-114.069444444 51.046388888)", + locationLabel: "Dome Tower", + }, + { + location: "http://www.wikidata.org/entity/Q44750696", + cordinates: "Point(-0.010144 51.500641)", + locationLabel: "Dollar Bay", + }, + { + location: "http://www.wikidata.org/entity/Q5288975", + cordinates: "Point(-60.658333333 -32.926944444)", + locationLabel: "Dolfines Guaraní", + }, + { + location: "http://www.wikidata.org/entity/Q11427873", + cordinates: "Point(135.496444 34.696972)", + locationLabel: "Dojima Avanza", + }, + { + location: "http://www.wikidata.org/entity/Q10413351", + cordinates: "Point(51.52836944 25.31745)", + locationLabel: "Doha Tower", + height: "238", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q1128296", + cordinates: "Point(51.53157 25.32296)", + locationLabel: "Doha Convention Center Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11322674", + cordinates: "Point(140.874 38.269972)", + locationLabel: "Docomo Tohoku Building", + }, + { + location: "http://www.wikidata.org/entity/Q5286585", + cordinates: "Point(-97.7411 30.2833)", + locationLabel: "Dobie Center", + }, + { + location: "http://www.wikidata.org/entity/Q1231655", + cordinates: "Point(108.365555555 22.818055555)", + locationLabel: "Diwang International Commerce Center", + height: "276", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q15214130", + cordinates: "Point(72.93697 19.165004)", + locationLabel: "Discovery Offices", + }, + { + location: "http://www.wikidata.org/entity/Q105628590", + cordinates: "Point(120.637666841 24.163852732)", + locationLabel: "Ding Sheng BHW Taiwan Central Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q882505", + cordinates: "Point(13.518611111 52.534722222)", + locationLabel: "Die Pyramide", + }, + { + location: "http://www.wikidata.org/entity/Q1208733", + cordinates: "Point(29.023888888 41.109444444)", + locationLabel: "Diamond of Istanbul", + }, + { + location: "http://www.wikidata.org/entity/Q5270933", + cordinates: "Point(39.103611111 21.646944444)", + locationLabel: "Diamond Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5805111", + cordinates: "Point(34.80148333 32.08341667)", + locationLabel: "Diamond Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5270361", + cordinates: "Point(2.220321 41.412012)", + locationLabel: "Diagonal Zero Zero", + }, + { + location: "http://www.wikidata.org/entity/Q5268758", + cordinates: "Point(90.41472222 23.79361111)", + locationLabel: "Dhaka Westin", + }, + { + location: "http://www.wikidata.org/entity/Q5268698", + cordinates: "Point(50.200476 26.337611)", + locationLabel: "Dhahran Tower", + }, + { + location: "http://www.wikidata.org/entity/Q14710448", + cordinates: "Point(-95.3708 29.757)", + locationLabel: "Devon Energy Tower", + }, + { + location: "http://www.wikidata.org/entity/Q54492", + cordinates: "Point(151.211638888 -33.866861111)", + locationLabel: "Deutsche Bank Place", + }, + { + location: "http://www.wikidata.org/entity/Q440082", + cordinates: "Point(-74.0133 40.7097)", + locationLabel: "Deutsche Bank Building", + height: "157.6", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q5265867", + cordinates: "Point(-83.052778 42.337222)", + locationLabel: "Detroit Building", + }, + { + location: "http://www.wikidata.org/entity/Q1200583", + cordinates: "Point(-115.16611111 36.12944444)", + locationLabel: "Desert Inn", + }, + { + location: "http://www.wikidata.org/entity/Q5263519", + cordinates: "Point(-93.626666666 41.586944444)", + locationLabel: "Des Moines Marriott Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q5259802", + cordinates: "Point(-104.987777777 39.742222222)", + locationLabel: "Denver World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q5259769", + cordinates: "Point(-104.991944444 39.749166666)", + locationLabel: "Denver Place", + }, + { + location: "http://www.wikidata.org/entity/Q5259724", + cordinates: "Point(-104.985 39.7446)", + locationLabel: "Denver Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q5259646", + cordinates: "Point(139.76237 35.66437)", + locationLabel: "Dentsu Head Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q19817552", + cordinates: "Point(-79.383536 43.642603)", + locationLabel: "Delta Toronto Hotel", + height: "524.93", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q35516695", + cordinates: "Point(-0.159533333 38.532316666)", + locationLabel: "Delfín Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2297323", + cordinates: "Point(-115.175 36.0919)", + locationLabel: "Delano Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q12256124", + cordinates: "Point(118.7858306 32.04505833)", + locationLabel: "Deji Plaza Phase 2", + }, + { + location: "http://www.wikidata.org/entity/Q2741526", + cordinates: "Point(4.488056 51.906667)", + locationLabel: "De Rotterdam", + }, + { + location: "http://www.wikidata.org/entity/Q2044014", + cordinates: "Point(4.321361 52.078978)", + locationLabel: "De Kroon", + }, + { + location: "http://www.wikidata.org/entity/Q5243009", + cordinates: "Point(101.69408 3.1449)", + locationLabel: "Dayabumi Complex", + }, + { + location: "http://www.wikidata.org/entity/Q5241846", + cordinates: "Point(-96.800497 32.780548)", + locationLabel: "Davis Building", + }, + { + location: "http://www.wikidata.org/entity/Q5240120", + cordinates: "Point(-83.0486 42.332)", + locationLabel: "David Stott Building", + }, + { + location: "http://www.wikidata.org/entity/Q5231761", + cordinates: "Point(-83.0497 42.336)", + locationLabel: "David Broderick Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1285521", + cordinates: "Point(9.96816667 53.54961111)", + locationLabel: "Dancing Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5210940", + cordinates: "Point(121.64138889 38.92341667)", + locationLabel: "Dalian World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q28873299", + cordinates: "Point(121.6439 38.9229)", + locationLabel: "Dalian World Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q5210921", + cordinates: "Point(121.666870117 38.926559448)", + locationLabel: "Dalian Greenland Center", + height: "518", + numberOfElevators: "37", + }, + { + location: "http://www.wikidata.org/entity/Q5210919", + cordinates: "Point(121.58525 38.89036111)", + locationLabel: "Dalian Futures Square 1", + }, + { + location: "http://www.wikidata.org/entity/Q1139123", + cordinates: "Point(121.62444444 38.9175)", + locationLabel: "Dalian Eton Center", + height: "383.2", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q5209471", + cordinates: "Point(-93.2708 44.9779)", + locationLabel: "Dain Rauscher Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2070225", + cordinates: "Point(-73.9735 40.7495)", + locationLabel: "Daily News Building", + height: "145", + numberOfElevators: "26", + }, + { + location: "http://www.wikidata.org/entity/Q11433343", + cordinates: "Point(139.75141667 35.67044444)", + locationLabel: "Daido Seimei Kasumigaseki Building", + }, + { + location: "http://www.wikidata.org/entity/Q11316951", + cordinates: "Point(135.4926472 34.69316667)", + locationLabel: "Daibiru Honkan Building", + }, + { + location: "http://www.wikidata.org/entity/Q5647541", + cordinates: "Point(-46.684194444 -23.580583333)", + locationLabel: "Dacon Building", + }, + { + location: "http://www.wikidata.org/entity/Q86728975", + cordinates: "Point(113.937989 22.580354)", + locationLabel: "DJI Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q675964", + cordinates: "Point(16.41356 48.23161)", + locationLabel: "DC Towers", + }, + { + location: "http://www.wikidata.org/entity/Q83736716", + cordinates: "Point(16.414891 48.231608)", + locationLabel: "DC Tower 3", + }, + { + location: "http://www.wikidata.org/entity/Q100741413", + cordinates: "Point(16.41361 48.23147)", + locationLabel: "DC Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q100741950", + cordinates: "Point(16.41275 48.23186)", + locationLabel: "DC Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q134137", + cordinates: "Point(55.145667 25.087222)", + locationLabel: "DAMAC Heights", + }, + { + location: "http://www.wikidata.org/entity/Q2349903", + cordinates: "Point(2.24413889 48.89072222)", + locationLabel: "Cœur Défense", + height: "161", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q5192986", + cordinates: "Point(-95.373 29.753)", + locationLabel: "Cullen Center", + }, + { + location: "http://www.wikidata.org/entity/Q2389823", + cordinates: "Point(135.52875 34.692119)", + locationLabel: "Crystal Tower (Osaka)", + }, + { + location: "http://www.wikidata.org/entity/Q4551555", + cordinates: "Point(4.836944 52.390833)", + locationLabel: "Crystal Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5191303", + cordinates: "Point(14.54131667 46.066925)", + locationLabel: "Crystal Palace, Ljubljana", + }, + { + location: "http://www.wikidata.org/entity/Q5189710", + cordinates: "Point(-0.0936 51.3736)", + locationLabel: "Croydon Vocational Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5189540", + cordinates: "Point(-4.29032 55.8597)", + locationLabel: "Crowne Plaza Glasgow", + }, + { + location: "http://www.wikidata.org/entity/Q5189471", + cordinates: "Point(-72.9326 41.3067)", + locationLabel: "Crown Towers", + }, + { + location: "http://www.wikidata.org/entity/Q1145115", + cordinates: "Point(144.96 -37.8223)", + locationLabel: "Crown Casino and Entertainment Complex", + }, + { + location: "http://www.wikidata.org/entity/Q55150", + cordinates: "Point(-90.015002 35.152021)", + locationLabel: "Crosstown Concourse", + }, + { + location: "http://www.wikidata.org/entity/Q17990688", + cordinates: "Point(139.63256111 35.45081667)", + locationLabel: "Cross Gate", + }, + { + location: "http://www.wikidata.org/entity/Q15709545", + cordinates: "Point(-0.0968 51.5198)", + locationLabel: "Cromwell Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5186562", + cordinates: "Point(-1.5436 53.794)", + locationLabel: "Criterion Place", + }, + { + location: "http://www.wikidata.org/entity/Q2603784", + cordinates: "Point(-73.9798 40.762)", + locationLabel: "Credit Lyonnais Building", + }, + { + location: "http://www.wikidata.org/entity/Q14687469", + cordinates: "Point(-87.6244 41.8706)", + locationLabel: "Crane Company Building", + }, + { + location: "http://www.wikidata.org/entity/Q5178271", + cordinates: "Point(-73.9439 40.7478)", + locationLabel: "Court Square Place", + }, + { + location: "http://www.wikidata.org/entity/Q105334125", + cordinates: "Point(120.644481897 24.159740427)", + locationLabel: "Cosmos", + }, + { + location: "http://www.wikidata.org/entity/Q1136181", + cordinates: "Point(21.000277777 52.235)", + locationLabel: "Cosmopolitan Twarda 2/4", + }, + { + location: "http://www.wikidata.org/entity/Q678110", + cordinates: "Point(12.411666666 41.850555555)", + locationLabel: "Corviale", + }, + { + location: "http://www.wikidata.org/entity/Q85880307", + cordinates: "Point(121.550078978 25.031991898)", + locationLabel: "Continental Engineering Corporation Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15031803", + cordinates: "Point(-74.00519 40.70511)", + locationLabel: "Continental Center (New York City)", + }, + { + location: "http://www.wikidata.org/entity/Q5165258", + cordinates: "Point(-82.9971 39.9644)", + locationLabel: "Continental Center", + }, + { + location: "http://www.wikidata.org/entity/Q5165248", + cordinates: "Point(-74.0115 40.7061)", + locationLabel: "Continental Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q5164089", + cordinates: "Point(-77.021944444 38.883611111)", + locationLabel: "Constitution Center", + }, + { + location: "http://www.wikidata.org/entity/Q5163927", + cordinates: "Point(-118.417 34.0571)", + locationLabel: "Constellation Place", + height: "149.5", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q26710806", + cordinates: "Point(-73.9879 40.7341)", + locationLabel: "Consolidated Edison Building", + }, + { + location: "http://www.wikidata.org/entity/Q5161526", + cordinates: "Point(-72.9239 41.3072)", + locationLabel: "Connecticut Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q5159775", + cordinates: "Point(-97.1388 49.8985)", + locationLabel: "Confederation Building", + }, + { + location: "http://www.wikidata.org/entity/Q687413", + cordinates: "Point(-73.985833333 40.755833333)", + locationLabel: "Condé Nast Building", + }, + { + location: "http://www.wikidata.org/entity/Q84571315", + cordinates: "Point(-43.946027777 -19.983638888)", + locationLabel: "Concordia Corporate Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5158841", + cordinates: "Point(-79.372 43.767)", + locationLabel: "Concord Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q5158835", + cordinates: "Point(-123.1057 49.2762)", + locationLabel: "Concord Pacific Place", + }, + { + location: "http://www.wikidata.org/entity/Q5158797", + cordinates: "Point(90.415071 23.739651)", + locationLabel: "Concord Grand", + }, + { + location: "http://www.wikidata.org/entity/Q5157890", + cordinates: "Point(-73.9703 40.7472)", + locationLabel: "Con-Ed Redevelopment", + }, + { + location: "http://www.wikidata.org/entity/Q2990457", + cordinates: "Point(-73.5638 45.5019)", + locationLabel: "Complexe Maisonneuve", + }, + { + location: "http://www.wikidata.org/entity/Q2990456", + cordinates: "Point(-73.5644 45.5075)", + locationLabel: "Complexe Desjardins", + }, + { + location: "http://www.wikidata.org/entity/Q918489", + cordinates: "Point(-46.72222222 -23.64027778)", + locationLabel: "Company Business Towers", + }, + { + location: "http://www.wikidata.org/entity/Q151765", + cordinates: "Point(8.67437 50.11116)", + locationLabel: "Commerzbank Tower", + height: "259", + numberOfElevators: "25", + }, + { + location: "http://www.wikidata.org/entity/Q151765", + cordinates: "Point(8.67437 50.11116)", + locationLabel: "Commerzbank Tower", + height: "300.1", + numberOfElevators: "25", + }, + { + location: "http://www.wikidata.org/entity/Q5152590", + cordinates: "Point(51.518283 25.313479)", + locationLabel: "Commercialbank Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5152537", + cordinates: "Point(-122.403 37.7921)", + locationLabel: "Commercial Union Assurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q1115315", + cordinates: "Point(-113.494722222 53.541388888)", + locationLabel: "Commerce Place", + }, + { + location: "http://www.wikidata.org/entity/Q5152434", + cordinates: "Point(-76.6104 39.2893)", + locationLabel: "Commerce Place", + }, + { + location: "http://www.wikidata.org/entity/Q23527286", + cordinates: "Point(-79.3788 43.6481)", + locationLabel: "Commerce Court West", + }, + { + location: "http://www.wikidata.org/entity/Q23527286", + cordinates: "Point(-79.379722 43.648333)", + locationLabel: "Commerce Court West", + }, + { + location: "http://www.wikidata.org/entity/Q2743574", + cordinates: "Point(-96.7966 32.7816)", + locationLabel: "Comerica Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5818062", + cordinates: "Point(-58.37061111 -34.60325)", + locationLabel: "Comega Building", + height: "88", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q5151021", + cordinates: "Point(103.838 1.29916)", + locationLabel: "Comcentre", + }, + { + location: "http://www.wikidata.org/entity/Q16958963", + cordinates: "Point(-75.17 39.955)", + locationLabel: "Comcast Technology Center", + height: "341.7", + numberOfElevators: "40", + }, + { + location: "http://www.wikidata.org/entity/Q1113808", + cordinates: "Point(-75.1683 39.9547)", + locationLabel: "Comcast Center", + height: "297", + numberOfElevators: "35", + }, + { + location: "http://www.wikidata.org/entity/Q908703", + cordinates: "Point(-122.330539 47.604525)", + locationLabel: "Columbia Center", + height: "294.8", + numberOfElevators: "46", + }, + { + location: "http://www.wikidata.org/entity/Q328512", + cordinates: "Point(6.9825 50.960555555)", + locationLabel: "Colonia-Haus", + height: "147", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q555142", + cordinates: "Point(6.9431 50.9481)", + locationLabel: "Cologne Tower", + height: "148.5", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q1109699", + cordinates: "Point(8.47784 49.4907)", + locationLabel: "Collini-Center", + height: "95", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q5139094", + cordinates: "Point(-84.3965 33.7709)", + locationLabel: "Coca-Cola headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q5138215", + cordinates: "Point(-87.6186 41.8873)", + locationLabel: "Coast at Lakeshore East", + }, + { + location: "http://www.wikidata.org/entity/Q4120778", + cordinates: "Point(-90.52335 14.5712)", + locationLabel: "Club Premier", + height: "102", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q5135670", + cordinates: "Point(121.412 31.221)", + locationLabel: "Cloud Nine", + }, + { + location: "http://www.wikidata.org/entity/Q5135151", + cordinates: "Point(-122.272 37.8034)", + locationLabel: "Clorox Building", + }, + { + location: "http://www.wikidata.org/entity/Q5127401", + cordinates: "Point(-89.8917 35.1121)", + locationLabel: "Clark Tower", + }, + { + location: "http://www.wikidata.org/entity/Q18347828", + cordinates: "Point(-87.6313 41.879)", + locationLabel: "Clark Adams Building", + }, + { + location: "http://www.wikidata.org/entity/Q66069496", + cordinates: "Point(-75.7075 45.398055555)", + locationLabel: "Claridge Icon", + }, + { + location: "http://www.wikidata.org/entity/Q5126044", + cordinates: "Point(-118.243 34.055)", + locationLabel: "Clara Shortridge Foltz Criminal Justice Center", + }, + { + location: "http://www.wikidata.org/entity/Q5124455", + cordinates: "Point(-90.1972 38.6276)", + locationLabel: "Civil Courts Building", + }, + { + location: "http://www.wikidata.org/entity/Q16890366", + cordinates: "Point(-87.6375 41.8825)", + locationLabel: "Civic Opera Building", + }, + { + location: "http://www.wikidata.org/entity/Q910101", + cordinates: "Point(-73.979722222 40.764444444)", + locationLabel: "CitySpire Center", + }, + { + location: "http://www.wikidata.org/entity/Q2920650", + cordinates: "Point(-0.089444444 51.519444444)", + locationLabel: "CityPoint", + }, + { + location: "http://www.wikidata.org/entity/Q5122973", + cordinates: "Point(-79.3952 43.64)", + locationLabel: "CityPlace, Toronto", + }, + { + location: "http://www.wikidata.org/entity/Q5122944", + cordinates: "Point(-77.024959 38.900343)", + locationLabel: "CityCenterDC", + }, + { + location: "http://www.wikidata.org/entity/Q471329", + cordinates: "Point(12.379444444 51.3375)", + locationLabel: "City-Hochhaus Leipzig", + }, + { + location: "http://www.wikidata.org/entity/Q195138", + cordinates: "Point(8.66 50.110277777)", + locationLabel: "City-Haus", + height: "142.1", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q5123466", + cordinates: "Point(-2.238333333 53.480277777)", + locationLabel: "City Tower, Manchester", + }, + { + location: "http://www.wikidata.org/entity/Q11307299", + cordinates: "Point(141.359722 43.0625)", + locationLabel: "City Tower Sapporo Odori", + }, + { + location: "http://www.wikidata.org/entity/Q2974587", + cordinates: "Point(135.485646 34.700042)", + locationLabel: "City Tower Nishi-Umeda", + }, + { + location: "http://www.wikidata.org/entity/Q11307300", + cordinates: "Point(135.198056 34.696639)", + locationLabel: "City Tower Kobe-Sannomiya", + }, + { + location: "http://www.wikidata.org/entity/Q3489939", + cordinates: "Point(14.436111111 50.050277777)", + locationLabel: "City Tower", + height: "109", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q99539388", + cordinates: "Point(103.762527777 1.47575)", + locationLabel: "City Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5123363", + cordinates: "Point(-97.515833333 35.468888888)", + locationLabel: "City Place Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5123364", + cordinates: "Point(-72.6766 41.7669)", + locationLabel: "City Place I", + }, + { + location: "http://www.wikidata.org/entity/Q2816307", + cordinates: "Point(-79.391944444 43.639722222)", + locationLabel: "City Place", + }, + { + location: "http://www.wikidata.org/entity/Q20823052", + cordinates: "Point(-97.33425 32.755111111)", + locationLabel: "City Place", + }, + { + location: "http://www.wikidata.org/entity/Q5123320", + cordinates: "Point(-95.936861 41.256333)", + locationLabel: "City National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q1093955", + cordinates: "Point(-74.0111 40.7099)", + locationLabel: "City Investing Building", + }, + { + location: "http://www.wikidata.org/entity/Q5123238", + cordinates: "Point(-118.26066 34.04265)", + locationLabel: "City House and the Olympic", + }, + { + location: "http://www.wikidata.org/entity/Q3490018", + cordinates: "Point(14.43944444 50.05)", + locationLabel: "City Empiria", + }, + { + location: "http://www.wikidata.org/entity/Q5123077", + cordinates: "Point(90.4175 23.72944444)", + locationLabel: "City Centre Bangladesh", + }, + { + location: "http://www.wikidata.org/entity/Q16691073", + cordinates: "Point(120.6397 24.1593)", + locationLabel: "City Center Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q21512263", + cordinates: "Point(51.530553 25.324574)", + locationLabel: "City Center Mall Doha", + }, + { + location: "http://www.wikidata.org/entity/Q20712240", + cordinates: "Point(-122.19583333 47.61527778)", + locationLabel: "City Center Bellevue", + }, + { + location: "http://www.wikidata.org/entity/Q4180036", + cordinates: "Point(17.125014 48.148078)", + locationLabel: "City Business Center", + }, + { + location: "http://www.wikidata.org/entity/Q5122507", + cordinates: "Point(121.495667 31.236025)", + locationLabel: "Citigroup Tower", + }, + { + location: "http://www.wikidata.org/entity/Q391243", + cordinates: "Point(-73.9706 40.758)", + locationLabel: "Citigroup Center", + height: "279", + numberOfElevators: "38", + }, + { + location: "http://www.wikidata.org/entity/Q3498921", + cordinates: "Point(-118.255 34.0516)", + locationLabel: "Citigroup Center", + }, + { + location: "http://www.wikidata.org/entity/Q2456156", + cordinates: "Point(-87.628611111 41.879722222)", + locationLabel: "Citadel Center", + }, + { + location: "http://www.wikidata.org/entity/Q21015941", + cordinates: "Point(-122.3374 47.616516)", + locationLabel: "Cirrus", + }, + { + location: "http://www.wikidata.org/entity/Q5121333", + cordinates: "Point(-75.182 39.957)", + locationLabel: "Cira Centre South", + }, + { + location: "http://www.wikidata.org/entity/Q5121334", + cordinates: "Point(-75.182222222 39.957222222)", + locationLabel: "Cira Centre", + }, + { + location: "http://www.wikidata.org/entity/Q24036206", + cordinates: "Point(106.823361111 -6.224027777)", + locationLabel: "Ciputra World Residential Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3294848", + cordinates: "Point(-73.5672 45.4975)", + locationLabel: "Château Champlain", + }, + { + location: "http://www.wikidata.org/entity/Q5116657", + cordinates: "Point(-111.889444444 40.771111111)", + locationLabel: "Church Office Building", + height: "420.01", + numberOfElevators: "21", + }, + { + location: "http://www.wikidata.org/entity/Q11274", + cordinates: "Point(-73.975719444 40.751430555)", + locationLabel: "Chrysler Building", + height: "2", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q11274", + cordinates: "Point(-73.975719444 40.751430555)", + locationLabel: "Chrysler Building", + height: "282", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q11274", + cordinates: "Point(-73.975719444 40.751430555)", + locationLabel: "Chrysler Building", + height: "318.9", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q1076164", + cordinates: "Point(106.570939 29.561453)", + locationLabel: "Chongqing World Trade Center", + height: "283", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q1076144", + cordinates: "Point(106.57416667 29.56194444)", + locationLabel: "Chongqing World Financial Center", + height: "338.9", + numberOfElevators: "43", + }, + { + location: "http://www.wikidata.org/entity/Q1076144", + cordinates: "Point(106.5708889 29.56083333)", + locationLabel: "Chongqing World Financial Center", + height: "338.9", + numberOfElevators: "43", + }, + { + location: "http://www.wikidata.org/entity/Q1076139", + cordinates: "Point(106.570706 29.557498)", + locationLabel: "Chongqing Tall Tower", + height: "431", + numberOfElevators: "56", + }, + { + location: "http://www.wikidata.org/entity/Q1076137", + cordinates: "Point(106.570976 29.557121)", + locationLabel: "Chongqing Poly Tower", + height: "287", + numberOfElevators: "37", + }, + { + location: "http://www.wikidata.org/entity/Q5103499", + cordinates: "Point(-77.020573 -12.097607)", + locationLabel: "Chocavento Tower", + }, + { + location: "http://www.wikidata.org/entity/Q844621", + cordinates: "Point(114.164166666 22.281666666)", + locationLabel: "Chinese People's Liberation Army Forces Hong Kong Building", + }, + { + location: "http://www.wikidata.org/entity/Q197833", + cordinates: "Point(116.46023 39.91151)", + locationLabel: "China Zun", + }, + { + location: "http://www.wikidata.org/entity/Q2006129", + cordinates: "Point(116.4522 39.91093)", + locationLabel: "China World Trade Center Tower III", + }, + { + location: "http://www.wikidata.org/entity/Q3756298", + cordinates: "Point(114.178 22.2792)", + locationLabel: "China Online Centre", + }, + { + location: "http://www.wikidata.org/entity/Q5099624", + cordinates: "Point(116.311956 39.907761)", + locationLabel: "China Media Group Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q754321", + cordinates: "Point(116.4575 39.915)", + locationLabel: "China Media Group Guanghua Road Office Area", + height: "234", + numberOfElevators: "75", + }, + { + location: "http://www.wikidata.org/entity/Q1073288", + cordinates: "Point(113.2767 23.12788)", + locationLabel: "China International Center", + }, + { + location: "http://www.wikidata.org/entity/Q15983962", + cordinates: "Point(121.505725 31.239211111)", + locationLabel: "China Development Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q18653910", + cordinates: "Point(114.20836 22.32415)", + locationLabel: "China Construction Bank Centre", + }, + { + location: "http://www.wikidata.org/entity/Q11405802", + cordinates: "Point(136.926167 35.162306)", + locationLabel: "Chikusa Tower Hills", + }, + { + location: "http://www.wikidata.org/entity/Q24836810", + cordinates: "Point(121.4727 25.0565)", + locationLabel: "Chicony Electronics Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q1071998", + cordinates: "Point(-87.6306 41.883)", + locationLabel: "Chicago Temple Building", + }, + { + location: "http://www.wikidata.org/entity/Q2187086", + cordinates: "Point(-87.6375 41.8812)", + locationLabel: "Chicago Mercantile Exchange Center", + }, + { + location: "http://www.wikidata.org/entity/Q9189645", + cordinates: "Point(140.123 35.6095)", + locationLabel: "Chiba Central Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3499097", + cordinates: "Point(-122.4 37.7896)", + locationLabel: "Chevron Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2934405", + cordinates: "Point(103.852 1.2843)", + locationLabel: "Chevron House", + }, + { + location: "http://www.wikidata.org/entity/Q700058", + cordinates: "Point(114.160277777 22.279444444)", + locationLabel: "Cheung Kong Center", + height: "283", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q5093974", + cordinates: "Point(-79.3851 43.6544)", + locationLabel: "Chestnut Residence", + }, + { + location: "http://www.wikidata.org/entity/Q18648965", + cordinates: "Point(80.2710856 13.0688266)", + locationLabel: "Chennai Tech Park", + }, + { + location: "http://www.wikidata.org/entity/Q21512230", + cordinates: "Point(104.06149 30.55293)", + locationLabel: "Chengdu World Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q18589922", + cordinates: "Point(104.1543 30.60678)", + locationLabel: "Chengdu Greenland Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1069161", + cordinates: "Point(55.275258 25.211378)", + locationLabel: "Chelsea Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1990560", + cordinates: "Point(-73.992539 40.743883)", + locationLabel: "Chelsea Stratus", + }, + { + location: "http://www.wikidata.org/entity/Q5087588", + cordinates: "Point(114.1584 22.282225)", + locationLabel: "Chater House", + }, + { + location: "http://www.wikidata.org/entity/Q544726", + cordinates: "Point(-58.360277777 -34.613055555)", + locationLabel: "Chateau Tower of Puerto Madero", + }, + { + location: "http://www.wikidata.org/entity/Q11318114", + cordinates: "Point(135.500156 34.707397)", + locationLabel: "Chaska Chayamachi", + }, + { + location: "http://www.wikidata.org/entity/Q579403", + cordinates: "Point(-96.7966 32.7878)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2943678", + cordinates: "Point(-112.073 33.4509)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3666819", + cordinates: "Point(-77.606666666 43.156111111)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5087202", + cordinates: "Point(-106.4883 31.7608)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5087204", + cordinates: "Point(-101.839 35.2074)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5087205", + cordinates: "Point(-87.909433 43.0382908)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5150017", + cordinates: "Point(-82.99761 39.96307)", + locationLabel: "Chase Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5086097", + cordinates: "Point(-80.7852 35.2389)", + locationLabel: "Charlotte Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q7030865", + cordinates: "Point(-0.077 51.5175)", + locationLabel: "Chapter Spitalfields", + }, + { + location: "http://www.wikidata.org/entity/Q56260245", + cordinates: "Point(116.471542 39.931599)", + locationLabel: "Chaoyang Park Plaza Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q2956104", + cordinates: "Point(-73.975556 40.751111)", + locationLabel: "Chanin Building", + }, + { + location: "http://www.wikidata.org/entity/Q5410187", + cordinates: "Point(112.97342 28.19542)", + locationLabel: "Changsha IFS", + }, + { + location: "http://www.wikidata.org/entity/Q697076", + cordinates: "Point(120.31491389 22.643125)", + locationLabel: "Chang-Gu World Trade Center", + height: "222", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q2278111", + cordinates: "Point(114.0508 22.5092)", + locationLabel: "Chang Fu Jin Mao Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2671422", + cordinates: "Point(52.496111111 29.651388888)", + locationLabel: "Chamran Grand Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q20666670", + cordinates: "Point(34.82805556 32.09833333)", + locationLabel: "Champion Motors Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17492272", + cordinates: "Point(-82.4 34.8481)", + locationLabel: "Chamber of Commerce Building", + }, + { + location: "http://www.wikidata.org/entity/Q5065744", + cordinates: "Point(21.46611111 41.97972222)", + locationLabel: "Cevahir Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5065298", + cordinates: "Point(139.69947 35.65647)", + locationLabel: "Cerulean Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5063093", + cordinates: "Point(-93.266666666 44.9775)", + locationLabel: "CenturyLink Building", + }, + { + location: "http://www.wikidata.org/entity/Q11314760", + cordinates: "Point(136.886622 35.169083)", + locationLabel: "Century Toyota Building", + }, + { + location: "http://www.wikidata.org/entity/Q5063213", + cordinates: "Point(151.208 -33.8756)", + locationLabel: "Century Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11314752", + cordinates: "Point(139.75972222 35.70230556)", + locationLabel: "Century Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2795889", + cordinates: "Point(-118.415833 34.057222)", + locationLabel: "Century Plaza Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q16964458", + cordinates: "Point(139.786 35.6687)", + locationLabel: "Century Park Tower", + }, + { + location: "http://www.wikidata.org/entity/Q769503", + cordinates: "Point(21.00461483 52.22732626)", + locationLabel: "Centrum LIM", + }, + { + location: "http://www.wikidata.org/entity/Q3664769", + cordinates: "Point(9.196683 45.472523)", + locationLabel: "Centro Svizzero Milano", + }, + { + location: "http://www.wikidata.org/entity/Q1054303", + cordinates: "Point(-66.89888889 10.50527778)", + locationLabel: "Centro Financiero Confinanzas", + }, + { + location: "http://www.wikidata.org/entity/Q5062831", + cordinates: "Point(-46.697111111 -23.610555555)", + locationLabel: "Centro Empresarial Nações Unidas", + }, + { + location: "http://www.wikidata.org/entity/Q88114766", + cordinates: "Point(9.189999 45.461816)", + locationLabel: "Centro Diaz", + }, + { + location: "http://www.wikidata.org/entity/Q5761214", + cordinates: "Point(-77.0371 -12.0563)", + locationLabel: "Centro Cívico de Lima", + }, + { + location: "http://www.wikidata.org/entity/Q16537105", + cordinates: "Point(-99.1643 19.4295)", + locationLabel: "Centro Bursatil", + }, + { + location: "http://www.wikidata.org/entity/Q5062309", + cordinates: "Point(-75.166111111 39.951944444)", + locationLabel: "Centre Square", + }, + { + location: "http://www.wikidata.org/entity/Q2545996", + cordinates: "Point(4.359286 50.856417)", + locationLabel: "Centre Rogier", + }, + { + location: "http://www.wikidata.org/entity/Q2339039", + cordinates: "Point(-0.129694444 51.515861111)", + locationLabel: "Centre Point", + height: "117", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q7800218", + cordinates: "Point(117.212 39.1161)", + locationLabel: "Centre Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5062247", + cordinates: "Point(-79.996666666 40.4425)", + locationLabel: "Centre City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5061922", + cordinates: "Point(-122.404 37.7872)", + locationLabel: "Central Tower", + }, + { + location: "http://www.wikidata.org/entity/Q112640", + cordinates: "Point(114.173611111 22.28)", + locationLabel: "Central Plaza", + height: "374", + numberOfElevators: "39", + }, + { + location: "http://www.wikidata.org/entity/Q5061669", + cordinates: "Point(-122.399 37.7905)", + locationLabel: "Central Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2944433", + cordinates: "Point(-73.983 40.767083333)", + locationLabel: "Central Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q615950", + cordinates: "Point(54.356388888 24.488055555)", + locationLabel: "Central Market Project", + height: "381", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q11363647", + cordinates: "Point(139.751278 35.675528)", + locationLabel: "Central Government Building No.2", + }, + { + location: "http://www.wikidata.org/entity/Q11363653", + cordinates: "Point(139.74805556 35.67191667)", + locationLabel: "Central Government Building No. 7", + }, + { + location: "http://www.wikidata.org/entity/Q11363650", + cordinates: "Point(139.753 35.673)", + locationLabel: "Central Government Building No. 5", + }, + { + location: "http://www.wikidata.org/entity/Q531752", + cordinates: "Point(-95.367962 29.757214)", + locationLabel: "CenterPoint Energy Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2944349", + cordinates: "Point(103.86 1.29326)", + locationLabel: "Centennial Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5059222", + cordinates: "Point(-84.3919 33.7568)", + locationLabel: "Centennial Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5059223", + cordinates: "Point(-102.076 31.9986)", + locationLabel: "Centennial Tower", + }, + { + location: "http://www.wikidata.org/entity/Q391648", + cordinates: "Point(55.145222 25.086889)", + locationLabel: "Cayan Tower", + height: "306.4", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q797017", + cordinates: "Point(-79.953056 40.444167)", + locationLabel: "Cathedral of Learning", + }, + { + location: "http://www.wikidata.org/entity/Q1050882", + cordinates: "Point(26.09182 44.44201)", + locationLabel: "Cathedral Plaza Bucharest", + }, + { + location: "http://www.wikidata.org/entity/Q21449366", + cordinates: "Point(121.56697222 25.04047222)", + locationLabel: "Cathay Landmark", + }, + { + location: "http://www.wikidata.org/entity/Q5051364", + cordinates: "Point(-80.8492 35.2262)", + locationLabel: "Catalyst", + }, + { + location: "http://www.wikidata.org/entity/Q2916305", + cordinates: "Point(-3.691944444 40.447777777)", + locationLabel: "Castellana 81", + height: "107", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q5049621", + cordinates: "Point(-115.112 36.153)", + locationLabel: "Castaways Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q5049203", + cordinates: "Point(-73.98176 40.756368)", + locationLabel: "Cassa Hotel & Residences", + }, + { + location: "http://www.wikidata.org/entity/Q60851364", + cordinates: "Point(-7.661 33.56355)", + locationLabel: "Casablanca Finance City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5047801", + cordinates: "Point(-79.3846 43.6688)", + locationLabel: "Casa Condominio Residenza", + }, + { + location: "http://www.wikidata.org/entity/Q5046710", + cordinates: "Point(139.66908 35.64376)", + locationLabel: "Carrot Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1043966", + cordinates: "Point(-73.979717 40.764808)", + locationLabel: "Carnegie Hall Tower", + }, + { + location: "http://www.wikidata.org/entity/Q976172", + cordinates: "Point(28.046666666 -26.205555555)", + locationLabel: "Carlton Centre", + height: "222.5", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q5039856", + cordinates: "Point(-81.6975 41.4964)", + locationLabel: "Carl B. Stokes Federal Court House Building", + }, + { + location: "http://www.wikidata.org/entity/Q5039570", + cordinates: "Point(-80.8451 35.2286)", + locationLabel: "Carillon Tower", + }, + { + location: "http://www.wikidata.org/entity/Q152129", + cordinates: "Point(-84.5132 39.10083)", + locationLabel: "Carew Tower", + height: "175", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q48989184", + cordinates: "Point(-38.513630555 -12.971775)", + locationLabel: "Caramuru Building", + }, + { + location: "http://www.wikidata.org/entity/Q5035927", + cordinates: "Point(-82.99844 39.95996)", + locationLabel: "Capitol Square", + }, + { + location: "http://www.wikidata.org/entity/Q5035915", + cordinates: "Point(-77.0107 38.897)", + locationLabel: "Capitol Place", + }, + { + location: "http://www.wikidata.org/entity/Q5035858", + cordinates: "Point(-81.034722222 34.001111111)", + locationLabel: "Capitol Center", + height: "106.4", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q240218", + cordinates: "Point(-80.194439 25.760111)", + locationLabel: "Capital at Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q28053434", + cordinates: "Point(37.548586 55.751489)", + locationLabel: "Capital Towers", + }, + { + location: "http://www.wikidata.org/entity/Q5035679", + cordinates: "Point(-3.1775 51.4831)", + locationLabel: "Capital Tower, Cardiff", + }, + { + location: "http://www.wikidata.org/entity/Q2614510", + cordinates: "Point(103.8475 1.277361111)", + locationLabel: "Capital Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5035668", + cordinates: "Point(101.70063 3.1549)", + locationLabel: "Capital Square", + }, + { + location: "http://www.wikidata.org/entity/Q13892708", + cordinates: "Point(46.64027778 24.76277778)", + locationLabel: "Capital Market Authority Headquarters", + height: "385", + numberOfElevators: "40", + }, + { + location: "http://www.wikidata.org/entity/Q1034660", + cordinates: "Point(54.434691666 24.418636111)", + locationLabel: "Capital Gate", + }, + { + location: "http://www.wikidata.org/entity/Q5035571", + cordinates: "Point(23.3958 42.6464)", + locationLabel: "Capital Fort", + }, + { + location: "http://www.wikidata.org/entity/Q28873262", + cordinates: "Point(103.8503 1.2819)", + locationLabel: "CapitaGreen", + }, + { + location: "http://www.wikidata.org/entity/Q47693", + cordinates: "Point(-93.2686 44.9763)", + locationLabel: "Capella Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1033771", + cordinates: "Point(-114.071 51.0511)", + locationLabel: "Canterra Tower", + height: "177", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q14692545", + cordinates: "Point(-93.2686 44.9772)", + locationLabel: "Canadian Pacific Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q5029412", + cordinates: "Point(-79.3811 43.6496)", + locationLabel: "Canada Permanent Trust Building", + }, + { + location: "http://www.wikidata.org/entity/Q5029399", + cordinates: "Point(-73.559540555 45.502928611)", + locationLabel: "Canada Life Building", + }, + { + location: "http://www.wikidata.org/entity/Q5029317", + cordinates: "Point(-83.0383 42.3168)", + locationLabel: "Canada Building", + }, + { + location: "http://www.wikidata.org/entity/Q932489", + cordinates: "Point(-93.27 44.9736)", + locationLabel: "Campbell Mithun Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5025737", + cordinates: "Point(-75.12 39.944722222)", + locationLabel: "Camden City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q2818229", + cordinates: "Point(-95.3643 29.7616)", + locationLabel: "Calpine Center", + }, + { + location: "http://www.wikidata.org/entity/Q5020250", + cordinates: "Point(-122.419 37.7767)", + locationLabel: "California Automobile Association Building", + }, + { + location: "http://www.wikidata.org/entity/Q1025472", + cordinates: "Point(-83.0338 42.3204)", + locationLabel: "Caesars Windsor", + }, + { + location: "http://www.wikidata.org/entity/Q105100303", + cordinates: "Point(121.462977777 25.011958333)", + locationLabel: "Caesar Park Hotel Banqiao", + }, + { + location: "http://www.wikidata.org/entity/Q5016487", + cordinates: "Point(-83.044893 42.331976)", + locationLabel: "Cadillac Tower", + }, + { + location: "http://www.wikidata.org/entity/Q525790", + cordinates: "Point(-83.0756 42.3686)", + locationLabel: "Cadillac Place", + height: "67.1", + numberOfElevators: "31", + }, + { + location: "http://www.wikidata.org/entity/Q168575", + cordinates: "Point(113.32055556 23.12027778)", + locationLabel: "CTF Finance Centre", + height: "530", + numberOfElevators: "86", + }, + { + location: "http://www.wikidata.org/entity/Q2813490", + cordinates: "Point(103.8479 1.2768)", + locationLabel: "CPF Building", + }, + { + location: "http://www.wikidata.org/entity/Q432494", + cordinates: "Point(114.153088888 22.285430555)", + locationLabel: "COSCO Tower", + }, + { + location: "http://www.wikidata.org/entity/Q16890460", + cordinates: "Point(-81.3792 28.5372)", + locationLabel: "CNL Center City Commons", + }, + { + location: "http://www.wikidata.org/entity/Q961346", + cordinates: "Point(-87.625638888 41.877416666)", + locationLabel: "CNA Center", + }, + { + location: "http://www.wikidata.org/entity/Q5013234", + cordinates: "Point(-113.491388888 53.546944444)", + locationLabel: "CN Tower", + height: "110.92", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q3533034", + cordinates: "Point(5.365805555 43.315038888)", + locationLabel: "CMA CGM Tower", + height: "147", + numberOfElevators: "20", + }, + { + location: "http://www.wikidata.org/entity/Q245246", + cordinates: "Point(113.319444444 23.144444444)", + locationLabel: "CITIC Plaza", + height: "390.2", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q856319", + cordinates: "Point(-2.238333333 53.486388888)", + locationLabel: "CIS Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2640560", + cordinates: "Point(-73.978789 40.761175)", + locationLabel: "CBS Building", + }, + { + location: "http://www.wikidata.org/entity/Q2930980", + cordinates: "Point(114.077997 22.544002)", + locationLabel: "CATIC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q50691808", + cordinates: "Point(91.8098106 22.324521)", + locationLabel: "C & F Tower", + }, + { + location: "http://www.wikidata.org/entity/Q885917", + cordinates: "Point(21.00250556 52.24440833)", + locationLabel: "Błękitny Wieżowiec", + }, + { + location: "http://www.wikidata.org/entity/Q176723", + cordinates: "Point(8.691775 50.128725)", + locationLabel: "Büro Center Nibelungenplatz", + }, + { + location: "http://www.wikidata.org/entity/Q3647546", + cordinates: "Point(-73.9853 40.7553)", + locationLabel: "Bush Tower", + }, + { + location: "http://www.wikidata.org/entity/Q496218", + cordinates: "Point(129.037213 35.097457)", + locationLabel: "Busan Lotte World Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15464762", + cordinates: "Point(129.06485 35.14641389)", + locationLabel: "Busan International Finance Center", + }, + { + location: "http://www.wikidata.org/entity/Q18589155", + cordinates: "Point(-87.6314 41.8828)", + locationLabel: "Burnham Center", + }, + { + location: "http://www.wikidata.org/entity/Q4999689", + cordinates: "Point(-97.3345 32.7505)", + locationLabel: "Burnett Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q15790479", + cordinates: "Point(46.63222222 24.79222222)", + locationLabel: "Burj Rafal", + height: "308", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q12495", + cordinates: "Point(55.274167 25.197222)", + locationLabel: "Burj Khalifa", + height: "828", + numberOfElevators: "58", + }, + { + location: "http://www.wikidata.org/entity/Q738685", + cordinates: "Point(55.273 25.1815)", + locationLabel: "Burj Al Alam", + }, + { + location: "http://www.wikidata.org/entity/Q4998116", + cordinates: "Point(-79.386388888 43.661666666)", + locationLabel: "Burano", + }, + { + location: "http://www.wikidata.org/entity/Q2928236", + cordinates: "Point(139.752424 35.707872)", + locationLabel: "Bunkyo Civic Center", + }, + { + location: "http://www.wikidata.org/entity/Q17154858", + cordinates: "Point(-118.251388888 34.056388888)", + locationLabel: "Bunker Hill Towers", + }, + { + location: "http://www.wikidata.org/entity/Q24036178", + cordinates: "Point(121.482643 31.234491)", + locationLabel: "Bund Center", + }, + { + location: "http://www.wikidata.org/entity/Q15205667", + cordinates: "Point(-87.63916667 41.93583333)", + locationLabel: "Building at 320 West Oakdale Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4986306", + cordinates: "Point(-83.0469 42.3294)", + locationLabel: "Buhl Building", + }, + { + location: "http://www.wikidata.org/entity/Q4985697", + cordinates: "Point(-78.87888 42.888374)", + locationLabel: "Buffalo City Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1001988", + cordinates: "Point(-78.879303 42.886592)", + locationLabel: "Buffalo City Hall", + }, + { + location: "http://www.wikidata.org/entity/Q1318379", + cordinates: "Point(-78.8305 42.8896)", + locationLabel: "Buffalo Central Terminal", + }, + { + location: "http://www.wikidata.org/entity/Q16985591", + cordinates: "Point(-87.625 41.87666667)", + locationLabel: "Buckingham Building", + }, + { + location: "http://www.wikidata.org/entity/Q739474", + cordinates: "Point(26.08124 44.45448)", + locationLabel: "Bucharest Tower Center", + }, + { + location: "http://www.wikidata.org/entity/Q15205456", + cordinates: "Point(26.081841 44.447823)", + locationLabel: "Bucharest Corporate Center", + }, + { + location: "http://www.wikidata.org/entity/Q4980431", + cordinates: "Point(-96.796375 32.785256)", + locationLabel: "Bryan Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4980371", + cordinates: "Point(-81.66 30.3291)", + locationLabel: "Bryan Simpson United States Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q4975131", + cordinates: "Point(-75.9175 45.3478)", + locationLabel: "Brookstreet Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q4975059", + cordinates: "Point(-104.996 39.7466)", + locationLabel: "Brooks Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4974936", + cordinates: "Point(-73.985956 40.692747)", + locationLabel: "Brooklyner", + }, + { + location: "http://www.wikidata.org/entity/Q15789968", + cordinates: "Point(-114.066 51.047)", + locationLabel: "Brookfield Place", + }, + { + location: "http://www.wikidata.org/entity/Q4972370", + cordinates: "Point(-74.006388888 40.714444444)", + locationLabel: "Broadway-Chambers Building", + }, + { + location: "http://www.wikidata.org/entity/Q4972498", + cordinates: "Point(-92.4625 44.0228)", + locationLabel: "Broadway Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4972498", + cordinates: "Point(-92.4626 44.0228)", + locationLabel: "Broadway Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q922589", + cordinates: "Point(-0.079533 51.5211)", + locationLabel: "Broadgate Tower", + }, + { + location: "http://www.wikidata.org/entity/Q28223286", + cordinates: "Point(36.813017 -1.300087)", + locationLabel: "Britam Tower", + height: "200.1", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q4631224", + cordinates: "Point(153.029 -27.4717)", + locationLabel: "Brisbane Skytower", + }, + { + location: "http://www.wikidata.org/entity/Q500732", + cordinates: "Point(-1.5479 53.792)", + locationLabel: "Bridgewater Place", + }, + { + location: "http://www.wikidata.org/entity/Q2925127", + cordinates: "Point(-80.19177 25.76942)", + locationLabel: "Brickell on the River", + }, + { + location: "http://www.wikidata.org/entity/Q4965981", + cordinates: "Point(-80.1906 25.7676)", + locationLabel: "Brickell World Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4965975", + cordinates: "Point(-80.19019723 25.76037235)", + locationLabel: "Brickell House", + }, + { + location: "http://www.wikidata.org/entity/Q4965974", + cordinates: "Point(-80.192961 25.763854)", + locationLabel: "Brickell Flatiron", + }, + { + location: "http://www.wikidata.org/entity/Q11334798", + cordinates: "Point(135.493889 34.698667)", + locationLabel: "Breeze Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3995141", + cordinates: "Point(9.19947 45.48036)", + locationLabel: "Breda Tower", + }, + { + location: "http://www.wikidata.org/entity/Q18706042", + cordinates: "Point(-87.63 41.8911)", + locationLabel: "Boyce Building", + }, + { + location: "http://www.wikidata.org/entity/Q4950665", + cordinates: "Point(-114.066388888 51.048055555)", + locationLabel: "Bow Valley Square, Calgary", + }, + { + location: "http://www.wikidata.org/entity/Q4950454", + cordinates: "Point(127.024655 37.497299)", + locationLabel: "Boutique Monaco", + }, + { + location: "http://www.wikidata.org/entity/Q4949600", + cordinates: "Point(-115.0849 36.1333)", + locationLabel: "Boulder Station", + }, + { + location: "http://www.wikidata.org/entity/Q2921346", + cordinates: "Point(-58.368889 -34.600833)", + locationLabel: "Bouchard Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4944478", + cordinates: "Point(-82.9958 39.9632)", + locationLabel: "Borden Building", + }, + { + location: "http://www.wikidata.org/entity/Q14854701", + cordinates: "Point(90.4016 23.7448)", + locationLabel: "Borak Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4942959", + cordinates: "Point(-83.0517 42.3334)", + locationLabel: "Book Tower", + }, + { + location: "http://www.wikidata.org/entity/Q59654775", + cordinates: "Point(-2.909516388 43.246294166)", + locationLabel: "Bolueta Tower", + }, + { + location: "http://www.wikidata.org/entity/Q21619033", + cordinates: "Point(117.215195 39.128746)", + locationLabel: "Bohai Bank Tower", + }, + { + location: "http://www.wikidata.org/entity/Q961568", + cordinates: "Point(-87.63875 41.884111111)", + locationLabel: "Boeing International Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q368017", + cordinates: "Point(121.499 31.241)", + locationLabel: "Bocom Financial Towers", + }, + { + location: "http://www.wikidata.org/entity/Q4933112", + cordinates: "Point(-95.3671 29.7598)", + locationLabel: "Bob Lanier Public Works Building", + }, + { + location: "http://www.wikidata.org/entity/Q167870", + cordinates: "Point(-115.174166666 36.106666666)", + locationLabel: "Boardwalk Hotel and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q2907265", + cordinates: "Point(-80.18657 25.81106)", + locationLabel: "Blue on the Bay", + }, + { + location: "http://www.wikidata.org/entity/Q4929835", + cordinates: "Point(-122.396 37.7912)", + locationLabel: "Blue Shield of California Building", + }, + { + location: "http://www.wikidata.org/entity/Q4929013", + cordinates: "Point(-71.4132 41.8283)", + locationLabel: "Blue Cross & Blue Shield of Rhode Island Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q875078", + cordinates: "Point(-73.968 40.761805555)", + locationLabel: "Bloomberg Tower", + }, + { + location: "http://www.wikidata.org/entity/Q10550988", + cordinates: "Point(18.005555555 59.339166666)", + locationLabel: "Block Lusten", + }, + { + location: "http://www.wikidata.org/entity/Q4925547", + cordinates: "Point(-76.6149 39.2901)", + locationLabel: "Blaustein Building", + }, + { + location: "http://www.wikidata.org/entity/Q58827420", + cordinates: "Point(-74.0111 40.7065)", + locationLabel: "Blair Building", + }, + { + location: "http://www.wikidata.org/entity/Q4923408", + cordinates: "Point(-97.33 32.753611)", + locationLabel: "Blackstone Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q18398224", + cordinates: "Point(-80.1855 25.8049)", + locationLabel: "Biscayne Beach", + }, + { + location: "http://www.wikidata.org/entity/Q654906", + cordinates: "Point(-115.144 36.1714)", + locationLabel: "Binion's Horseshoe", + }, + { + location: "http://www.wikidata.org/entity/Q4913634", + cordinates: "Point(-73.9869 40.7606)", + locationLabel: "Biltmore Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4907607", + cordinates: "Point(-2.98972222 43.28944444)", + locationLabel: "Bilbao Exhibition Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2902096", + cordinates: "Point(140.38805556 37.39972222)", + locationLabel: "Big-i", + }, + { + location: "http://www.wikidata.org/entity/Q4899771", + cordinates: "Point(-98.493611 29.423611)", + locationLabel: "Bexar County Courthouse", + }, + { + location: "http://www.wikidata.org/entity/Q827638", + cordinates: "Point(-73.9849 40.7581)", + locationLabel: "Bertelsmann Building", + height: "188", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q827638", + cordinates: "Point(-73.9849 40.7581)", + locationLabel: "Bertelsmann Building", + height: "223", + numberOfElevators: "15", + }, + { + location: "http://www.wikidata.org/entity/Q820738", + cordinates: "Point(101.710605 3.142182)", + locationLabel: "Berjaya Times Square", + }, + { + location: "http://www.wikidata.org/entity/Q11331095", + cordinates: "Point(131.48727778 33.28319444)", + locationLabel: "Beppu B-con Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q818589", + cordinates: "Point(20.463382697 44.807360173)", + locationLabel: "Beograđanka", + }, + { + location: "http://www.wikidata.org/entity/Q818217", + cordinates: "Point(-123.12 49.2865)", + locationLabel: "Bentall Centre", + }, + { + location: "http://www.wikidata.org/entity/Q2896735", + cordinates: "Point(-123.118 49.2858)", + locationLabel: "Bentall 5", + }, + { + location: "http://www.wikidata.org/entity/Q2896708", + cordinates: "Point(-90.078 29.9513)", + locationLabel: "Benson Tower", + }, + { + location: "http://www.wikidata.org/entity/Q20949067", + cordinates: "Point(31.22934722 30.03421667)", + locationLabel: "Belmont Building", + }, + { + location: "http://www.wikidata.org/entity/Q4883966", + cordinates: "Point(-122.198 47.614)", + locationLabel: "Bellevue Towers", + }, + { + location: "http://www.wikidata.org/entity/Q85746478", + cordinates: "Point(-122.195 47.615833333)", + locationLabel: "Bellevue 600", + }, + { + location: "http://www.wikidata.org/entity/Q4883623", + cordinates: "Point(140.11891667 39.71791667)", + locationLabel: "Belle Demeure Landmark AKITA", + }, + { + location: "http://www.wikidata.org/entity/Q25007", + cordinates: "Point(-115.176389 36.113056)", + locationLabel: "Bellagio Hotel & Casino", + }, + { + location: "http://www.wikidata.org/entity/Q4883419", + cordinates: "Point(114.061 22.367)", + locationLabel: "Bellagio", + }, + { + location: "http://www.wikidata.org/entity/Q815729", + cordinates: "Point(-113.494722222 53.545)", + locationLabel: "Bell Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4883273", + cordinates: "Point(-75.1708 39.9575)", + locationLabel: "Bell Telephone Company Building", + }, + { + location: "http://www.wikidata.org/entity/Q3579105", + cordinates: "Point(-73.5645 45.5023)", + locationLabel: "Bell Telephone Building", + }, + { + location: "http://www.wikidata.org/entity/Q4883271", + cordinates: "Point(-79.996388888 40.442222222)", + locationLabel: "Bell Telephone Building", + }, + { + location: "http://www.wikidata.org/entity/Q3278595", + cordinates: "Point(-73.572776 45.502215)", + locationLabel: "Bell Media Tower", + }, + { + location: "http://www.wikidata.org/entity/Q815239", + cordinates: "Point(-73.952222222 40.765833333)", + locationLabel: "Belaire Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q20501898", + cordinates: "Point(34.799527777 32.081611111)", + locationLabel: "Bein Arim Tower", + height: "400", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q1820001", + cordinates: "Point(116.45777778 39.91555556)", + locationLabel: "Beijing Television Cultural Center", + }, + { + location: "http://www.wikidata.org/entity/Q4881194", + cordinates: "Point(116.46202778 39.90541667)", + locationLabel: "Beijing Television Center", + }, + { + location: "http://www.wikidata.org/entity/Q106771458", + cordinates: "Point(116.482222222 39.998611111)", + locationLabel: "Beijing Greenland Center", + }, + { + location: "http://www.wikidata.org/entity/Q814128", + cordinates: "Point(-2.250278 53.475278)", + locationLabel: "Beetham Tower", + height: "169", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q4877381", + cordinates: "Point(-88.891915 30.392413)", + locationLabel: "Beau Rivage", + }, + { + location: "http://www.wikidata.org/entity/Q4876641", + cordinates: "Point(-79.3716 43.6504)", + locationLabel: "Beard Building", + }, + { + location: "http://www.wikidata.org/entity/Q4874855", + cordinates: "Point(55.26701667 25.18486667)", + locationLabel: "Bayswater (Towerblock)", + }, + { + location: "http://www.wikidata.org/entity/Q2892337", + cordinates: "Point(-117.170555555 32.719166666)", + locationLabel: "Bayside at the Embarcadero", + }, + { + location: "http://www.wikidata.org/entity/Q4874789", + cordinates: "Point(-3.1838 51.4495)", + locationLabel: "Bayscape", + }, + { + location: "http://www.wikidata.org/entity/Q328491", + cordinates: "Point(6.9816 51.0136)", + locationLabel: "Bayer-Hochhaus", + }, + { + location: "http://www.wikidata.org/entity/Q3637062", + cordinates: "Point(-73.995 40.726389)", + locationLabel: "Bayard-Condict Building", + }, + { + location: "http://www.wikidata.org/entity/Q4873946", + cordinates: "Point(55.137777777 25.078611111)", + locationLabel: "Bay Central", + }, + { + location: "http://www.wikidata.org/entity/Q65066396", + cordinates: "Point(-85.184166666 42.321388888)", + locationLabel: "Battle Creek Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4866262", + cordinates: "Point(26.06036 44.45208)", + locationLabel: "Basarab Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4861640", + cordinates: "Point(-81.6592 30.3279)", + locationLabel: "Barnett National Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q807955", + cordinates: "Point(-74.009003 40.712114)", + locationLabel: "Barclay Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2319878", + cordinates: "Point(-0.093888888 51.519166666)", + locationLabel: "Barbican Estate", + }, + { + location: "http://www.wikidata.org/entity/Q2319878", + cordinates: "Point(-0.09446 51.51988)", + locationLabel: "Barbican Estate", + }, + { + location: "http://www.wikidata.org/entity/Q17332292", + cordinates: "Point(123.434861111 41.779055555)", + locationLabel: "Baoneng Shenyang Global Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q27887692", + cordinates: "Point(120.30978 22.605)", + locationLabel: "Bao-Cheng Enterprise Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4856213", + cordinates: "Point(-121.501 38.578)", + locationLabel: "Bank of the West Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11543276", + cordinates: "Point(139.629472 35.45425)", + locationLabel: "Bank of Yokohama Head Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q28470581", + cordinates: "Point(139.762416666 35.686722222)", + locationLabel: "Bank of Tokyo‐Mitsubishi UFJ Otemachi Building", + }, + { + location: "http://www.wikidata.org/entity/Q782435", + cordinates: "Point(121.49965556 31.24151944)", + locationLabel: "Bank of Shanghai Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q68618992", + cordinates: "Point(-79.379988 43.64908)", + locationLabel: "Bank of Nova Scotia Building", + }, + { + location: "http://www.wikidata.org/entity/Q2882647", + cordinates: "Point(57.503752 -20.1618405)", + locationLabel: "Bank of Mauritius Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4856094", + cordinates: "Point(-83.0399 42.3194)", + locationLabel: "Bank of Commerce Building, Windsor", + }, + { + location: "http://www.wikidata.org/entity/Q2405705", + cordinates: "Point(121.4985 31.2405)", + locationLabel: "Bank of China Tower, Shanghai", + }, + { + location: "http://www.wikidata.org/entity/Q214855", + cordinates: "Point(114.161388888 22.279166666)", + locationLabel: "Bank of China Tower", + height: "367", + numberOfElevators: "49", + }, + { + location: "http://www.wikidata.org/entity/Q4856086", + cordinates: "Point(113.542974 22.189861)", + locationLabel: "Bank of China Building, Macau", + }, + { + location: "http://www.wikidata.org/entity/Q4856087", + cordinates: "Point(103.852 1.28562)", + locationLabel: "Bank of China Building", + }, + { + location: "http://www.wikidata.org/entity/Q4856068", + cordinates: "Point(-122.402 37.7932)", + locationLabel: "Bank of California Building", + }, + { + location: "http://www.wikidata.org/entity/Q9293741", + cordinates: "Point(-46.63483333 -23.54513889)", + locationLabel: "Bank of Brasil building", + }, + { + location: "http://www.wikidata.org/entity/Q328505", + cordinates: "Point(-73.984167 40.755278)", + locationLabel: "Bank of America Tower", + height: "365.8", + numberOfElevators: "52", + }, + { + location: "http://www.wikidata.org/entity/Q806670", + cordinates: "Point(-81.659722222 30.326666666)", + locationLabel: "Bank of America Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2882635", + cordinates: "Point(-112.0704 33.4479)", + locationLabel: "Bank of America Tower", + }, + { + location: "http://www.wikidata.org/entity/Q5203781", + cordinates: "Point(-97.3306 32.7561)", + locationLabel: "Bank of America Tower", + }, + { + location: "http://www.wikidata.org/entity/Q499486", + cordinates: "Point(-84.386111111 33.770833333)", + locationLabel: "Bank of America Plaza", + height: "311.8", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q4856038", + cordinates: "Point(-87.6416 41.8826)", + locationLabel: "Bank of America Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4856042", + cordinates: "Point(-98.49 29.4295)", + locationLabel: "Bank of America Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4856040", + cordinates: "Point(-80.13898 26.119782)", + locationLabel: "Bank of America Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4856045", + cordinates: "Point(-82.4593 27.9466)", + locationLabel: "Bank of America Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q806669", + cordinates: "Point(-95.3666 29.7605)", + locationLabel: "Bank of America Center", + height: "238", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q806671", + cordinates: "Point(-118.253 34.0536)", + locationLabel: "Bank of America Center", + }, + { + location: "http://www.wikidata.org/entity/Q4856031", + cordinates: "Point(-95.990555555 36.150277777)", + locationLabel: "Bank of America Center", + }, + { + location: "http://www.wikidata.org/entity/Q2882640", + cordinates: "Point(-76.6141 39.2892)", + locationLabel: "Bank of America Building", + }, + { + location: "http://www.wikidata.org/entity/Q4856024", + cordinates: "Point(-102.077 31.9974)", + locationLabel: "Bank of America Building", + }, + { + location: "http://www.wikidata.org/entity/Q4855941", + cordinates: "Point(51.435 35.758055555)", + locationLabel: "Bank Markazi Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2882599", + cordinates: "Point(34.770478 32.06175)", + locationLabel: "Bank Discount Tower", + height: "118", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q4855377", + cordinates: "Point(90.4147 23.7281)", + locationLabel: "Bangladesh Shilpa Bank Bhaban", + }, + { + location: "http://www.wikidata.org/entity/Q4855276", + cordinates: "Point(90.42323 23.7266)", + locationLabel: "Bangladesh Bank Building", + }, + { + location: "http://www.wikidata.org/entity/Q18963386", + cordinates: "Point(-77.0005 -12.0872)", + locationLabel: "Banco de la Nacion Tower", + }, + { + location: "http://www.wikidata.org/entity/Q10270263", + cordinates: "Point(-46.6588134 -23.5590832)", + locationLabel: "Banco Sul Americano Building", + }, + { + location: "http://www.wikidata.org/entity/Q19288416", + cordinates: "Point(-90.5163 14.61863)", + locationLabel: "Banco Industrial Guatemala", + }, + { + location: "http://www.wikidata.org/entity/Q4852943", + cordinates: "Point(-76.609658333 39.286016666)", + locationLabel: "Baltimore World Trade Center", + }, + { + location: "http://www.wikidata.org/entity/Q16837452", + cordinates: "Point(-0.015 51.4974)", + locationLabel: "Baltimore Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4852889", + cordinates: "Point(-76.603 39.2835)", + locationLabel: "Baltimore Marriott Waterfront Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q6150028", + cordinates: "Point(-79.5277 8.9761)", + locationLabel: "Balboa Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24036210", + cordinates: "Point(120.850111111 30.034277777)", + locationLabel: "Baiguan Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q511612", + cordinates: "Point(50.581388888 26.239166666)", + locationLabel: "Bahrain World Trade Center", + height: "240", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q643536", + cordinates: "Point(13.375 52.509722)", + locationLabel: "BahnTower", + }, + { + location: "http://www.wikidata.org/entity/Q4842551", + cordinates: "Point(-0.6248 35.7112)", + locationLabel: "Bahia Center", + }, + { + location: "http://www.wikidata.org/entity/Q2617194", + cordinates: "Point(20.984166666 52.253888888)", + locationLabel: "Babka Tower", + }, + { + location: "http://www.wikidata.org/entity/Q16836601", + cordinates: "Point(41.629461111 41.650252777)", + locationLabel: "Babillon Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4836768", + cordinates: "Point(-1.90443 52.4834)", + locationLabel: "BT Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4836773", + cordinates: "Point(-3.94028 51.6206)", + locationLabel: "BT Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4836622", + cordinates: "Point(34.82208056 32.09601111)", + locationLabel: "BSR Towers", + }, + { + location: "http://www.wikidata.org/entity/Q3500463", + cordinates: "Point(-95.9903 36.155)", + locationLabel: "BOK Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2740919", + cordinates: "Point(-79.9961 40.4397)", + locationLabel: "BNY Mellon Center", + }, + { + location: "http://www.wikidata.org/entity/Q526963", + cordinates: "Point(11.56 48.176944444)", + locationLabel: "BMW Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q526963", + cordinates: "Point(11.559122 48.1765)", + locationLabel: "BMW Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q6711818", + cordinates: "Point(-86.1557 39.7695)", + locationLabel: "BMO Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q3498491", + cordinates: "Point(-95.3636 29.7578)", + locationLabel: "BG Group Place", + }, + { + location: "http://www.wikidata.org/entity/Q26710805", + cordinates: "Point(121.0589897 14.5863509)", + locationLabel: "BDO Corporate Center", + }, + { + location: "http://www.wikidata.org/entity/Q39087", + cordinates: "Point(-7.998379 12.632476)", + locationLabel: "BCEAO Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3113621", + cordinates: "Point(106.823 -6.19682)", + locationLabel: "BCA Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4833091", + cordinates: "Point(-96.8089 32.7963)", + locationLabel: "Azure", + }, + { + location: "http://www.wikidata.org/entity/Q16923840", + cordinates: "Point(114.1497 22.282)", + locationLabel: "Azura", + }, + { + location: "http://www.wikidata.org/entity/Q24885196", + cordinates: "Point(34.78888889 32.07222222)", + locationLabel: "Azrieli Sarona Tower", + }, + { + location: "http://www.wikidata.org/entity/Q63434805", + cordinates: "Point(91.8149382 22.3283989)", + locationLabel: "Aziz Court Imperial", + }, + { + location: "http://www.wikidata.org/entity/Q6544178", + cordinates: "Point(34.803888888 32.084722222)", + locationLabel: "Ayalon Bituach House", + }, + { + location: "http://www.wikidata.org/entity/Q4830611", + cordinates: "Point(-80.194258 25.763331)", + locationLabel: "Axis at Brickell Village", + }, + { + location: "http://www.wikidata.org/entity/Q63886756", + cordinates: "Point(44.756305 41.71172)", + locationLabel: "Axis Towers", + }, + { + location: "http://www.wikidata.org/entity/Q2873542", + cordinates: "Point(-80.191832 25.763083)", + locationLabel: "Avenue on Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q4828174", + cordinates: "Point(-80.8423 35.229)", + locationLabel: "Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q18355573", + cordinates: "Point(-73.984611111 40.691888888)", + locationLabel: "Avalon Willoughby West", + }, + { + location: "http://www.wikidata.org/entity/Q10747862", + cordinates: "Point(153.03 -27.4651)", + locationLabel: "Aurora Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2109257", + cordinates: "Point(121.4952 31.236192)", + locationLabel: "Aurora Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q19460317", + cordinates: "Point(144.962441 -37.809656)", + locationLabel: "Aurora Melbourne Central", + }, + { + location: "http://www.wikidata.org/entity/Q774178", + cordinates: "Point(-79.3828 43.6594)", + locationLabel: "Aura", + height: "272", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q1181509", + cordinates: "Point(13.3728 52.5058)", + locationLabel: "Atrium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6150017", + cordinates: "Point(-90.50354 14.59146)", + locationLabel: "Atrium Building", + }, + { + location: "http://www.wikidata.org/entity/Q12254431", + cordinates: "Point(-1.97527778 43.31805556)", + locationLabel: "Atotxa tower", + }, + { + location: "http://www.wikidata.org/entity/Q587331", + cordinates: "Point(20.99127778 52.22489167)", + locationLabel: "Atlas Tower", + height: "116", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q3286640", + cordinates: "Point(-80.198642 25.752972)", + locationLabel: "Atlantis Condominium", + }, + { + location: "http://www.wikidata.org/entity/Q106622723", + cordinates: "Point(-90.51297 14.59895)", + locationLabel: "Atlantis Building, Guatemala City", + }, + { + location: "http://www.wikidata.org/entity/Q4816120", + cordinates: "Point(-84.3571 33.8466)", + locationLabel: "Atlanta Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1770577", + cordinates: "Point(139.748899 35.662147)", + locationLabel: "Atago Green Hills", + }, + { + location: "http://www.wikidata.org/entity/Q1965818", + cordinates: "Point(4.369722222 50.851111111)", + locationLabel: "Astro Tower", + height: "107", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q3314565", + cordinates: "Point(-87.9117 43.0417)", + locationLabel: "Associated Bank River Center", + }, + { + location: "http://www.wikidata.org/entity/Q2357198", + cordinates: "Point(55.2725 25.208944)", + locationLabel: "Aspin Tower", + }, + { + location: "http://www.wikidata.org/entity/Q28873211", + cordinates: "Point(103.850833333 1.278083333)", + locationLabel: "Asia Square Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q28873212", + cordinates: "Point(103.851333333 1.279)", + locationLabel: "Asia Square Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q11104435", + cordinates: "Point(121.515833333 25.046111111)", + locationLabel: "Asia Plaza Building", + }, + { + location: "http://www.wikidata.org/entity/Q38250798", + cordinates: "Point(135.27005556 34.69061111)", + locationLabel: "Asia One Center", + }, + { + location: "http://www.wikidata.org/entity/Q4806382", + cordinates: "Point(103.851388888 1.281944444)", + locationLabel: "Asia Insurance Building", + }, + { + location: "http://www.wikidata.org/entity/Q2866604", + cordinates: "Point(-80.185630555 25.769347222)", + locationLabel: "Asia", + }, + { + location: "http://www.wikidata.org/entity/Q11517562", + cordinates: "Point(139.769117 35.684394)", + locationLabel: "Asahi-seimei Ōtemachi building", + }, + { + location: "http://www.wikidata.org/entity/Q1845802", + cordinates: "Point(3.686777777 51.0215)", + locationLabel: "Arteveldetoren", + }, + { + location: "http://www.wikidata.org/entity/Q97183596", + cordinates: "Point(139.727222222 35.622222222)", + locationLabel: "Art Village Osaki Central Tower", + }, + { + location: "http://www.wikidata.org/entity/Q24192489", + cordinates: "Point(-122.34173333 47.61441944)", + locationLabel: "Arrivé", + }, + { + location: "http://www.wikidata.org/entity/Q3995719", + cordinates: "Point(-114.056 51.0419)", + locationLabel: "Arriva Towers", + }, + { + location: "http://www.wikidata.org/entity/Q699317", + cordinates: "Point(47.990406 29.376248)", + locationLabel: "Arraya Tower", + height: "300", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q10856167", + cordinates: "Point(14.49618721 50.05705643)", + locationLabel: "Arnika", + }, + { + location: "http://www.wikidata.org/entity/Q24036205", + cordinates: "Point(139.741791486 35.663524569)", + locationLabel: "Ark Hills Sengokuyama Mori Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11516423", + cordinates: "Point(139.789444 35.632056)", + locationLabel: "Ariake Prime Building", + }, + { + location: "http://www.wikidata.org/entity/Q654279", + cordinates: "Point(-115.1771 36.10766)", + locationLabel: "Aria Resort and Casino", + }, + { + location: "http://www.wikidata.org/entity/Q4789813", + cordinates: "Point(-4.26767 55.8596)", + locationLabel: "Argyle Building, Glasgow", + }, + { + location: "http://www.wikidata.org/entity/Q4788903", + cordinates: "Point(-95.5175 29.7019)", + locationLabel: "Arena Place", + }, + { + location: "http://www.wikidata.org/entity/Q16641519", + cordinates: "Point(-99.250683 19.387483)", + locationLabel: "Arcos Bosques Torre 1", + }, + { + location: "http://www.wikidata.org/entity/Q16641519", + cordinates: "Point(-99.253841666 19.386097222)", + locationLabel: "Arcos Bosques Torre 1", + }, + { + location: "http://www.wikidata.org/entity/Q4786997", + cordinates: "Point(-73.5659904 45.503352)", + locationLabel: "Architects' Building", + }, + { + location: "http://www.wikidata.org/entity/Q4783977", + cordinates: "Point(-75.1585 39.9521)", + locationLabel: "Aramark Tower", + }, + { + location: "http://www.wikidata.org/entity/Q296392", + cordinates: "Point(6.800556 51.25)", + locationLabel: "Arag-Tower", + height: "124.9", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q11282825", + cordinates: "Point(136.890981 35.1685)", + locationLabel: "Aqua Town Nayabashi", + }, + { + location: "http://www.wikidata.org/entity/Q622895", + cordinates: "Point(-87.619711 41.886497)", + locationLabel: "Aqua", + height: "262", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q99539358", + cordinates: "Point(103.902444444 1.467083333)", + locationLabel: "Aqabah Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11504291", + cordinates: "Point(139.725556 35.672778)", + locationLabel: "Aoyama Twin", + }, + { + location: "http://www.wikidata.org/entity/Q11661176", + cordinates: "Point(139.718166666 35.668083333)", + locationLabel: "Aoyama The Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11661177", + cordinates: "Point(139.716856 35.668986)", + locationLabel: "Aoyama M's Tower", + }, + { + location: "http://www.wikidata.org/entity/Q607743", + cordinates: "Point(-118.256944 34.049167)", + locationLabel: "Aon Center", + height: "262", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q271695", + cordinates: "Point(-87.621388888 41.885277777)", + locationLabel: "Aon Center", + height: "69.8", + numberOfElevators: "50", + }, + { + location: "http://www.wikidata.org/entity/Q4778673", + cordinates: "Point(140.74111111 40.82972222)", + locationLabel: "Aomori Prefecture Tourist Center", + }, + { + location: "http://www.wikidata.org/entity/Q11621188", + cordinates: "Point(138.3865 34.97258333)", + locationLabel: "Aoi Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2317800", + cordinates: "Point(4.41639 51.21819)", + locationLabel: "Antwerp Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4772804", + cordinates: "Point(-81.6921 41.5049)", + locationLabel: "Anthony J. Celebrezze Federal Building", + }, + { + location: "http://www.wikidata.org/entity/Q4770731", + cordinates: "Point(-106.489 31.7591)", + locationLabel: "Anson Mills Building", + }, + { + location: "http://www.wikidata.org/entity/Q98034021", + cordinates: "Point(103.762861111 1.460277777)", + locationLabel: "Ansar Tower", + }, + { + location: "http://www.wikidata.org/entity/Q22812464", + cordinates: "Point(-1.97523056 43.30259722)", + locationLabel: "Anoeta tower (Donostia-San Sebastián)", + }, + { + location: "http://www.wikidata.org/entity/Q4769474", + cordinates: "Point(-4.32511 55.891)", + locationLabel: "Anniesland Court", + }, + { + location: "http://www.wikidata.org/entity/Q512867", + cordinates: "Point(16.4142 48.233)", + locationLabel: "Andromeda Tower", + }, + { + location: "http://www.wikidata.org/entity/Q492112", + cordinates: "Point(-46.64236111 -23.54150833)", + locationLabel: "Andraus Building", + }, + { + location: "http://www.wikidata.org/entity/Q4754272", + cordinates: "Point(-4.26667 55.86)", + locationLabel: "Anderston Centre", + }, + { + location: "http://www.wikidata.org/entity/Q26710808", + cordinates: "Point(120.9777767 14.6020115)", + locationLabel: "Anchor Skysuites", + }, + { + location: "http://www.wikidata.org/entity/Q6150008", + cordinates: "Point(55.274111111 25.197138888)", + locationLabel: "Anara Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4750740", + cordinates: "Point(-95.452777777 30.160277777)", + locationLabel: "Anadarko Tower", + }, + { + location: "http://www.wikidata.org/entity/Q56682937", + cordinates: "Point(4.918985 52.345696)", + locationLabel: "Amstel Tower", + }, + { + location: "http://www.wikidata.org/entity/Q6559721", + cordinates: "Point(34.80138889 32.0825)", + locationLabel: "Amot Atrium Tower", + }, + { + location: "http://www.wikidata.org/entity/Q470245", + cordinates: "Point(-71.05786 42.3589)", + locationLabel: "Ames Building", + }, + { + location: "http://www.wikidata.org/entity/Q4745812", + cordinates: "Point(-81.6857 41.4999)", + locationLabel: "Ameritrust Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4745805", + cordinates: "Point(-81.6905 41.5052)", + locationLabel: "Ameritech Center", + }, + { + location: "http://www.wikidata.org/entity/Q2843131", + cordinates: "Point(-93.269027777 44.975277777)", + locationLabel: "Ameriprise Financial Center", + }, + { + location: "http://www.wikidata.org/entity/Q467467", + cordinates: "Point(-73.9827 40.7572)", + locationLabel: "Americas Tower", + height: "211", + numberOfElevators: "45", + }, + { + location: "http://www.wikidata.org/entity/Q467043", + cordinates: "Point(-74.0112 40.7081)", + locationLabel: "American Surety Building", + height: "103.02", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q466979", + cordinates: "Point(-73.984 40.753)", + locationLabel: "American Radiator Building", + height: "103", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q4744161", + cordinates: "Point(-74.1707 40.7446)", + locationLabel: "American Insurance Company Building", + }, + { + location: "http://www.wikidata.org/entity/Q463759", + cordinates: "Point(-75.170277777 39.955)", + locationLabel: "American Commerce Center", + }, + { + location: "http://www.wikidata.org/entity/Q463677", + cordinates: "Point(-83.298888888 42.49)", + locationLabel: "American Center", + }, + { + location: "http://www.wikidata.org/entity/Q21015906", + cordinates: "Point(-122.33985 47.615868)", + locationLabel: "Amazon Tower II", + }, + { + location: "http://www.wikidata.org/entity/Q21015905", + cordinates: "Point(-122.338578 47.615144)", + locationLabel: "Amazon Tower I", + }, + { + location: "http://www.wikidata.org/entity/Q4063260", + cordinates: "Point(37.449444444 55.806388888)", + locationLabel: "Alye Parusa", + }, + { + location: "http://www.wikidata.org/entity/Q10862504", + cordinates: "Point(-58.360277777 -34.612222222)", + locationLabel: "Alvear Tower", + }, + { + location: "http://www.wikidata.org/entity/Q446265", + cordinates: "Point(19.02444444 50.26155)", + locationLabel: "Altus Skyscraper", + height: "125", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q66809937", + cordinates: "Point(-1.541641 53.802445)", + locationLabel: "Altus House", + }, + { + location: "http://www.wikidata.org/entity/Q16148159", + cordinates: "Point(-73.5632 45.5022)", + locationLabel: "Altoria", + }, + { + location: "http://www.wikidata.org/entity/Q105575992", + cordinates: "Point(59.593888888 36.294166666)", + locationLabel: "Alton Tower (Mashhad)", + }, + { + location: "http://www.wikidata.org/entity/Q2840461", + cordinates: "Point(-73.5681 45.5025)", + locationLabel: "Altitude Montréal", + }, + { + location: "http://www.wikidata.org/entity/Q4736088", + cordinates: "Point(79.854444444 6.918888888)", + locationLabel: "Altair", + }, + { + location: "http://www.wikidata.org/entity/Q7215650", + cordinates: "Point(34.7747 32.0639)", + locationLabel: "Alrov Tower", + }, + { + location: "http://www.wikidata.org/entity/Q2194432", + cordinates: "Point(6.900867 52.216208)", + locationLabel: "Alpha Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4735137", + cordinates: "Point(-1.90639 52.4786)", + locationLabel: "Alpha Tower", + }, + { + location: "http://www.wikidata.org/entity/Q17192335", + cordinates: "Point(137.503219 35.299661)", + locationLabel: "Alpen Marunouchi Tower", + }, + { + location: "http://www.wikidata.org/entity/Q25491641", + cordinates: "Point(34.79394 32.06861)", + locationLabel: "Alon Towers", + }, + { + location: "http://www.wikidata.org/entity/Q4733861", + cordinates: "Point(50.541944444 26.235833333)", + locationLabel: "Almoayyed Tower", + }, + { + location: "http://www.wikidata.org/entity/Q838780", + cordinates: "Point(55.14113 25.06883)", + locationLabel: "Almas Tower", + height: "363", + numberOfElevators: "35", + }, + { + location: "http://www.wikidata.org/entity/Q4733354", + cordinates: "Point(-115.15917 36.14417)", + locationLabel: "Allure Las Vegas", + }, + { + location: "http://www.wikidata.org/entity/Q3995200", + cordinates: "Point(9.157288888 45.477608333)", + locationLabel: "Allianz Tower", + height: "207", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q4732289", + cordinates: "Point(-84.352 33.825)", + locationLabel: "Alliance Center", + }, + { + location: "http://www.wikidata.org/entity/Q2837946", + cordinates: "Point(-87.6238 41.8952)", + locationLabel: "Allerton Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q4732002", + cordinates: "Point(115.858 -31.9555)", + locationLabel: "Allendale Square", + }, + { + location: "http://www.wikidata.org/entity/Q55138058", + cordinates: "Point(-113.484545 53.542105)", + locationLabel: "Alldritt Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4725573", + cordinates: "Point(-115.180608 36.292155)", + locationLabel: "Aliante Casino and Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q4725573", + cordinates: "Point(-115.182 36.2911)", + locationLabel: "Aliante Casino and Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q4722907", + cordinates: "Point(-80.190833 25.773889)", + locationLabel: "Alfred I. DuPont Building", + }, + { + location: "http://www.wikidata.org/entity/Q4722590", + cordinates: "Point(-73.7599 42.654)", + locationLabel: "Alfred E. Smith Building", + }, + { + location: "http://www.wikidata.org/entity/Q3389690", + cordinates: "Point(-73.585833333 45.488888888)", + locationLabel: "Alexis Nihon Complex", + }, + { + location: "http://www.wikidata.org/entity/Q657544", + cordinates: "Point(114.158479 22.281676)", + locationLabel: "Alexandra House", + }, + { + location: "http://www.wikidata.org/entity/Q3579104", + cordinates: "Point(-73.556666666 45.505)", + locationLabel: "Aldred Building", + }, + { + location: "http://www.wikidata.org/entity/Q934906", + cordinates: "Point(-106.65 35.0857)", + locationLabel: "Albuquerque Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2047813", + cordinates: "Point(4.4408 50.4082)", + locationLabel: "Albertcentrum", + }, + { + location: "http://www.wikidata.org/entity/Q946458", + cordinates: "Point(-58.37058333 -34.59916667)", + locationLabel: "Alas Building", + }, + { + location: "http://www.wikidata.org/entity/Q4705101", + cordinates: "Point(-157.839 21.2903)", + locationLabel: "Ala Moana Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q4705011", + cordinates: "Point(50.58083333 26.23666667)", + locationLabel: "Al Zamil Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1808295", + cordinates: "Point(55.279806 25.216333)", + locationLabel: "Al Yaqoub Tower", + height: "330.1", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q4704745", + cordinates: "Point(55.13569167 25.07596944)", + locationLabel: "Al Sahab Tower 2", + }, + { + location: "http://www.wikidata.org/entity/Q4704749", + cordinates: "Point(55.135691666 25.075969444)", + locationLabel: "Al Sahab Tower 1", + }, + { + location: "http://www.wikidata.org/entity/Q2829405", + cordinates: "Point(46.6639 24.7319)", + locationLabel: "Al Rajhi Tower", + }, + { + location: "http://www.wikidata.org/entity/Q1751069", + cordinates: "Point(51.530102 25.33006)", + locationLabel: "Al Quds Endowment Tower", + }, + { + location: "http://www.wikidata.org/entity/Q557933", + cordinates: "Point(47.992777777 29.378611111)", + locationLabel: "Al Hamra Tower", + height: "412", + numberOfElevators: "43", + }, + { + location: "http://www.wikidata.org/entity/Q2884587", + cordinates: "Point(51.530814 25.328444)", + locationLabel: "Al Fardan Residences", + height: "253.3", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q2303314", + cordinates: "Point(46.685277777 24.690277777)", + locationLabel: "Al Faisaliyah Center", + height: "267", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q3756818", + cordinates: "Point(55.127675 25.072366666)", + locationLabel: "Al Bateen Tower", + }, + { + location: "http://www.wikidata.org/entity/Q15707433", + cordinates: "Point(54.400861111 24.456611111)", + locationLabel: "Al Bahr Towers", + }, + { + location: "http://www.wikidata.org/entity/Q4701566", + cordinates: "Point(-80.119781 25.845826)", + locationLabel: "Akoya Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q9393080", + cordinates: "Point(139.7725 35.7005)", + locationLabel: "Akihabara UDX", + }, + { + location: "http://www.wikidata.org/entity/Q16250343", + cordinates: "Point(45.6952 43.3137)", + locationLabel: "Akhmat Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11635390", + cordinates: "Point(139.740639 35.66975)", + locationLabel: "Akasaka Twin Tower", + }, + { + location: "http://www.wikidata.org/entity/Q550342", + cordinates: "Point(139.7392 35.671159)", + locationLabel: "Akasaka Tower Residence", + }, + { + location: "http://www.wikidata.org/entity/Q5364168", + cordinates: "Point(139.73638916 35.67322159)", + locationLabel: "Akasaka Biz Tower", + }, + { + location: "http://www.wikidata.org/entity/Q11256577", + cordinates: "Point(135.50125 34.697753)", + locationLabel: "Aioi Nissay Dowa Insurance Phoenix Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4696827", + cordinates: "Point(114.153 22.2735)", + locationLabel: "Aigburth", + }, + { + location: "http://www.wikidata.org/entity/Q2817159", + cordinates: "Point(114.15597 22.28507)", + locationLabel: "Agricultural Bank of China Tower", + }, + { + location: "http://www.wikidata.org/entity/Q381996", + cordinates: "Point(8.650833333 50.116111111)", + locationLabel: "AfE-Turm", + height: "116.4", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q6358682", + cordinates: "Point(140.8815 38.262565)", + locationLabel: "Aer", + }, + { + location: "http://www.wikidata.org/entity/Q4686195", + cordinates: "Point(-117.169 32.7153)", + locationLabel: "Advanced Equities Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q366005", + cordinates: "Point(-96.799658 32.779981)", + locationLabel: "Adolphus Hotel", + }, + { + location: "http://www.wikidata.org/entity/Q31197410", + cordinates: "Point(34.788611111 32.061666666)", + locationLabel: "Adgar 360", + }, + { + location: "http://www.wikidata.org/entity/Q351892", + cordinates: "Point(-74.0127 40.707)", + locationLabel: "Adams Express Building", + }, + { + location: "http://www.wikidata.org/entity/Q4678869", + cordinates: "Point(-73.9475 40.8092)", + locationLabel: "Adam Clayton Powell Jr. State Office Building", + }, + { + location: "http://www.wikidata.org/entity/Q2823796", + cordinates: "Point(139.7588503 35.658168)", + locationLabel: "Acty Shiodome", + }, + { + location: "http://www.wikidata.org/entity/Q1096141", + cordinates: "Point(137.735694 34.705056)", + locationLabel: "Act Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4672984", + cordinates: "Point(-118.257 34.0416)", + locationLabel: "Ace Hotel Los Angeles", + }, + { + location: "http://www.wikidata.org/entity/Q2822672", + cordinates: "Point(-93.2675 44.9743)", + locationLabel: "Accenture Tower", + }, + { + location: "http://www.wikidata.org/entity/Q332518", + cordinates: "Point(-79.634 43.595)", + locationLabel: "Absolute World", + }, + { + location: "http://www.wikidata.org/entity/Q4669323", + cordinates: "Point(50.558888888 26.23)", + locationLabel: "Abraj Al Lulu", + }, + { + location: "http://www.wikidata.org/entity/Q189476", + cordinates: "Point(39.826388888 21.418888888)", + locationLabel: "Abraj Al Bait", + height: "601", + numberOfElevators: "96", + }, + { + location: "http://www.wikidata.org/entity/Q16318627", + cordinates: "Point(135.514266666 34.645947222)", + locationLabel: "Abeno Harukas", + height: "300", + numberOfElevators: "56", + }, + { + location: "http://www.wikidata.org/entity/Q97170008", + cordinates: "Point(55.377806 25.303211)", + locationLabel: "Abbco Tower", + }, + { + location: "http://www.wikidata.org/entity/Q3495648", + cordinates: "Point(16.60555556 49.17583333)", + locationLabel: "AZ Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4655169", + cordinates: "Point(-76.15 43.0449)", + locationLabel: "AXA Towers", + }, + { + location: "http://www.wikidata.org/entity/Q300254", + cordinates: "Point(-73.9818 40.7617)", + locationLabel: "AXA Equitable Center", + }, + { + location: "http://www.wikidata.org/entity/Q19865145", + cordinates: "Point(114.0829583 22.5428167)", + locationLabel: "AVIC Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4654555", + cordinates: "Point(-93.2724 44.9739)", + locationLabel: "AT&T Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4654550", + cordinates: "Point(-118.253 34.0508)", + locationLabel: "AT&T Switching Center", + }, + { + location: "http://www.wikidata.org/entity/Q40600", + cordinates: "Point(-84.3869 33.7727)", + locationLabel: "AT&T Midtown Center", + }, + { + location: "http://www.wikidata.org/entity/Q4654541", + cordinates: "Point(-83.0536 42.3325)", + locationLabel: "AT&T Michigan Headquarters", + }, + { + location: "http://www.wikidata.org/entity/Q4654532", + cordinates: "Point(-81.6864 41.4981)", + locationLabel: "AT&T Huron Road Building", + }, + { + location: "http://www.wikidata.org/entity/Q4654519", + cordinates: "Point(-86.811331 33.518517)", + locationLabel: "AT&T City Center", + }, + { + location: "http://www.wikidata.org/entity/Q4654517", + cordinates: "Point(-118.262 34.0395)", + locationLabel: "AT&T Center", + }, + { + location: "http://www.wikidata.org/entity/Q9137449", + cordinates: "Point(-90.1946 38.6277)", + locationLabel: "AT&T Center", + }, + { + location: "http://www.wikidata.org/entity/Q16252065", + cordinates: "Point(-87.90753 43.03934)", + locationLabel: "AT&T Center", + }, + { + location: "http://www.wikidata.org/entity/Q4654512", + cordinates: "Point(-117.164 32.715)", + locationLabel: "AT&T Building", + }, + { + location: "http://www.wikidata.org/entity/Q4653613", + cordinates: "Point(-118.263 34.0507)", + locationLabel: "ARCO Tower", + }, + { + location: "http://www.wikidata.org/entity/Q16251456", + cordinates: "Point(144.964 -37.8172)", + locationLabel: "APA Building", + }, + { + location: "http://www.wikidata.org/entity/Q4653107", + cordinates: "Point(174.765 -36.8456)", + locationLabel: "ANZ Centre", + }, + { + location: "http://www.wikidata.org/entity/Q14934749", + cordinates: "Point(151.21163889 -33.86594444)", + locationLabel: "ANZ Bank Centre", + }, + { + location: "http://www.wikidata.org/entity/Q4652700", + cordinates: "Point(153.03 -27.4693)", + locationLabel: "AMP Place, Brisbane", + }, + { + location: "http://www.wikidata.org/entity/Q30752535", + cordinates: "Point(139.74244444 35.66963889)", + locationLabel: "AKASAKA INTERCITY AIR", + }, + { + location: "http://www.wikidata.org/entity/Q11635385", + cordinates: "Point(139.742361 35.668472)", + locationLabel: "AKASAKA INTERCITY", + }, + { + location: "http://www.wikidata.org/entity/Q4651805", + cordinates: "Point(114.192 22.2888)", + locationLabel: "AIA Tower", + }, + { + location: "http://www.wikidata.org/entity/Q841968", + cordinates: "Point(114.161806 22.28125)", + locationLabel: "AIA Central", + }, + { + location: "http://www.wikidata.org/entity/Q4651333", + cordinates: "Point(-83.0058 39.965)", + locationLabel: "AEP Building", + }, + { + location: "http://www.wikidata.org/entity/Q3190230", + cordinates: "Point(140.038 35.6518)", + locationLabel: "AEON Tower", + }, + { + location: "http://www.wikidata.org/entity/Q10857889", + cordinates: "Point(51.399444444 35.744444444)", + locationLabel: "A.S.P. Towers", + }, + { + location: "http://www.wikidata.org/entity/Q4647173", + cordinates: "Point(-118.252 34.0446)", + locationLabel: "A.G. Bartlett Building", + }, + { + location: "http://www.wikidata.org/entity/Q290724", + cordinates: "Point(-73.9625 40.777778)", + locationLabel: "995 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q5123144", + cordinates: "Point(-111.888 40.7694)", + locationLabel: "99 West on South Temple", + }, + { + location: "http://www.wikidata.org/entity/Q3756310", + cordinates: "Point(-0.082444444 51.516222222)", + locationLabel: "99 Bishopsgate", + }, + { + location: "http://www.wikidata.org/entity/Q24192500", + cordinates: "Point(-122.33760556 47.619125)", + locationLabel: "970 Denny Way", + }, + { + location: "http://www.wikidata.org/entity/Q4645798", + cordinates: "Point(-94.5806 39.1026)", + locationLabel: "925 Grand", + }, + { + location: "http://www.wikidata.org/entity/Q2818693", + cordinates: "Point(-73.968 40.759)", + locationLabel: "919 Third Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4645731", + cordinates: "Point(-95.3661 29.7582)", + locationLabel: "919 Milam", + }, + { + location: "http://www.wikidata.org/entity/Q4645620", + cordinates: "Point(-94.5818 39.1033)", + locationLabel: "909 Walnut", + }, + { + location: "http://www.wikidata.org/entity/Q28833", + cordinates: "Point(-80.19005 25.783485)", + locationLabel: "900 Biscayne Bay", + height: "217", + numberOfElevators: "13", + }, + { + location: "http://www.wikidata.org/entity/Q2564383", + cordinates: "Point(-74.014722 40.71)", + locationLabel: "90 West Street", + }, + { + location: "http://www.wikidata.org/entity/Q4646427", + cordinates: "Point(114.15849 22.280301)", + locationLabel: "9 Queen's Road Central", + }, + { + location: "http://www.wikidata.org/entity/Q22329554", + cordinates: "Point(-73.982222222 40.690555555)", + locationLabel: "9 DeKalb Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q942504", + cordinates: "Point(-73.9808 40.7652)", + locationLabel: "888 7th Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q16057771", + cordinates: "Point(31.0221 -29.858)", + locationLabel: "88 on Field", + height: "147", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q4645063", + cordinates: "Point(-0.095 51.5153)", + locationLabel: "88 Wood Street", + }, + { + location: "http://www.wikidata.org/entity/Q17507890", + cordinates: "Point(-79.3764 43.6487)", + locationLabel: "88 Scott", + }, + { + location: "http://www.wikidata.org/entity/Q16868858", + cordinates: "Point(-122.403 37.7887)", + locationLabel: "88 Kearny Street", + }, + { + location: "http://www.wikidata.org/entity/Q217727", + cordinates: "Point(-87.623056 41.898889)", + locationLabel: "875 North Michigan Avenue", + height: "344", + numberOfElevators: "50", + }, + { + location: "http://www.wikidata.org/entity/Q4644474", + cordinates: "Point(-73.9826 40.7627)", + locationLabel: "810 Seventh Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2818460", + cordinates: "Point(-93.6285 41.5872)", + locationLabel: "801 Grand", + }, + { + location: "http://www.wikidata.org/entity/Q672984", + cordinates: "Point(-74.0044 40.7058)", + locationLabel: "80 South Street", + }, + { + location: "http://www.wikidata.org/entity/Q274916", + cordinates: "Point(-74.005686 40.710922)", + locationLabel: "8 Spruce Street", + }, + { + location: "http://www.wikidata.org/entity/Q887869", + cordinates: "Point(103.847 1.2758)", + locationLabel: "8 Shenton Way", + }, + { + location: "http://www.wikidata.org/entity/Q572887", + cordinates: "Point(-0.017388888 51.505277777)", + locationLabel: "8 Canada Square", + height: "199.51", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q30753916", + cordinates: "Point(106.821336 -6.208379)", + locationLabel: "7Point8", + }, + { + location: "http://www.wikidata.org/entity/Q1937376", + cordinates: "Point(-118.261381 34.04845)", + locationLabel: "777 Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4643567", + cordinates: "Point(-97.3297 32.7532)", + locationLabel: "777 Main Street", + }, + { + location: "http://www.wikidata.org/entity/Q30612487", + cordinates: "Point(-72.67361111 41.76638889)", + locationLabel: "777 Main Street", + }, + { + location: "http://www.wikidata.org/entity/Q268559", + cordinates: "Point(-87.6305 41.8865)", + locationLabel: "77 West Wacker Drive", + height: "204", + numberOfElevators: "25", + }, + { + location: "http://www.wikidata.org/entity/Q2451328", + cordinates: "Point(-73.9839 40.7611)", + locationLabel: "750 Seventh Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2818277", + cordinates: "Point(-71.0551 42.3585)", + locationLabel: "75 State Street", + }, + { + location: "http://www.wikidata.org/entity/Q3528910", + cordinates: "Point(-73.9778 40.7599)", + locationLabel: "75 Rockefeller Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4643424", + cordinates: "Point(-81.6951 41.5002)", + locationLabel: "75 Public Square", + }, + { + location: "http://www.wikidata.org/entity/Q6335690", + cordinates: "Point(-96.7982 32.7858)", + locationLabel: "717 Harwood", + }, + { + location: "http://www.wikidata.org/entity/Q2606176", + cordinates: "Point(-73.975 40.7622)", + locationLabel: "712 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4642962", + cordinates: "Point(-80.19062 25.76682)", + locationLabel: "701 Brickell Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4642947", + cordinates: "Point(-77.0273 38.8985)", + locationLabel: "700 Eleventh Street", + }, + { + location: "http://www.wikidata.org/entity/Q262041", + cordinates: "Point(-74.0075 40.706388888)", + locationLabel: "70 Pine Street", + height: "290.2", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q270066", + cordinates: "Point(-74.012 40.7133)", + locationLabel: "7 World Trade Center", + height: "225", + numberOfElevators: "29", + }, + { + location: "http://www.wikidata.org/entity/Q4642314", + cordinates: "Point(-87.6168 41.8946)", + locationLabel: "680 N Lake Shore Drive", + }, + { + location: "http://www.wikidata.org/entity/Q2818016", + cordinates: "Point(-73.9762 40.7602)", + locationLabel: "666 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4642078", + cordinates: "Point(-73.9769 40.7599)", + locationLabel: "650 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4642077", + cordinates: "Point(-122.405 37.7928)", + locationLabel: "650 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q4641918", + cordinates: "Point(-104.989919 39.746599)", + locationLabel: "633 17th Street", + }, + { + location: "http://www.wikidata.org/entity/Q22968", + cordinates: "Point(126.93913889 37.51952778)", + locationLabel: "63 Building", + height: "249", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q4641833", + cordinates: "Point(-104.99007 39.745867)", + locationLabel: "621 17th Street", + }, + { + location: "http://www.wikidata.org/entity/Q3499247", + cordinates: "Point(-118.256 34.049)", + locationLabel: "611 Place", + }, + { + location: "http://www.wikidata.org/entity/Q1710367", + cordinates: "Point(-73.971388888 40.758333333)", + locationLabel: "610 Lexington Avenue", + height: "217", + numberOfElevators: "9", + }, + { + location: "http://www.wikidata.org/entity/Q4641615", + cordinates: "Point(-122.405 37.7924)", + locationLabel: "601 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q247887", + cordinates: "Point(-74.0078 40.7064)", + locationLabel: "60 Wall Street", + }, + { + location: "http://www.wikidata.org/entity/Q4641667", + cordinates: "Point(-74.008361111 40.717666666)", + locationLabel: "60 Hudson Street", + }, + { + location: "http://www.wikidata.org/entity/Q4642493", + cordinates: "Point(103.852 1.2854)", + locationLabel: "6 Battery Road", + }, + { + location: "http://www.wikidata.org/entity/Q245308", + cordinates: "Point(-73.97073 40.75784)", + locationLabel: "599 Lexington Avenue", + height: "199", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q4640961", + cordinates: "Point(-122.401 37.7892)", + locationLabel: "595 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q4640949", + cordinates: "Point(-118.359 34.0637)", + locationLabel: "5900 Wilshire", + }, + { + location: "http://www.wikidata.org/entity/Q1642787", + cordinates: "Point(-73.97237 40.76225)", + locationLabel: "590 Madison Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2817725", + cordinates: "Point(-122.404 37.7929)", + locationLabel: "580 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q17249799", + cordinates: "Point(-73.972353 40.761811)", + locationLabel: "575 Madison Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q19460063", + cordinates: "Point(144.955 -37.8184)", + locationLabel: "568 Collins Street", + }, + { + location: "http://www.wikidata.org/entity/Q244358", + cordinates: "Point(-74.0064 40.7177)", + locationLabel: "56 Leonard Street", + height: "250.2", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q4640575", + cordinates: "Point(-122.399 37.7885)", + locationLabel: "555 Mission Street", + }, + { + location: "http://www.wikidata.org/entity/Q243921", + cordinates: "Point(-122.403764 37.792081)", + locationLabel: "555 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q4640570", + cordinates: "Point(-104.99 39.7452)", + locationLabel: "555 17th Street", + }, + { + location: "http://www.wikidata.org/entity/Q1477826", + cordinates: "Point(-73.973333333 40.761388888)", + locationLabel: "550 Madison Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2817499", + cordinates: "Point(-81.3803 28.5408)", + locationLabel: "55 West on the Esplanade", + }, + { + location: "http://www.wikidata.org/entity/Q244114", + cordinates: "Point(-74.0091 40.7032)", + locationLabel: "55 Water Street", + }, + { + location: "http://www.wikidata.org/entity/Q85882694", + cordinates: "Point(121.596247222 25.033361111)", + locationLabel: "55 Timeless", + }, + { + location: "http://www.wikidata.org/entity/Q4640612", + cordinates: "Point(-81.696 41.5003)", + locationLabel: "55 Public Square", + }, + { + location: "http://www.wikidata.org/entity/Q2593778", + cordinates: "Point(-74.002777777 40.755555555)", + locationLabel: "55 Hudson Yards", + }, + { + location: "http://www.wikidata.org/entity/Q2446907", + cordinates: "Point(-73.978358 40.761691)", + locationLabel: "53W53", + }, + { + location: "http://www.wikidata.org/entity/Q14681523", + cordinates: "Point(-122.398 37.7889)", + locationLabel: "535 Mission Street", + }, + { + location: "http://www.wikidata.org/entity/Q4640165", + cordinates: "Point(-80.838055555 35.231111111)", + locationLabel: "525 North Tryon", + }, + { + location: "http://www.wikidata.org/entity/Q4639810", + cordinates: "Point(-96.799293 32.783791)", + locationLabel: "505 North Ervay", + }, + { + location: "http://www.wikidata.org/entity/Q4639808", + cordinates: "Point(-122.403416666 37.793972222)", + locationLabel: "505 Montgomery Street", + }, + { + location: "http://www.wikidata.org/entity/Q4639807", + cordinates: "Point(-86.7803 36.1628)", + locationLabel: "505 CST", + }, + { + location: "http://www.wikidata.org/entity/Q2817126", + cordinates: "Point(-73.5575 45.5043)", + locationLabel: "500 Place D'Armes", + }, + { + location: "http://www.wikidata.org/entity/Q133599", + cordinates: "Point(-73.9813 40.7538)", + locationLabel: "500 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4639731", + cordinates: "Point(-80.1902 25.7684)", + locationLabel: "500 Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q2817125", + cordinates: "Point(-71.0744 42.3507)", + locationLabel: "500 Boylston Street", + }, + { + location: "http://www.wikidata.org/entity/Q1710345", + cordinates: "Point(-74.0151 40.708)", + locationLabel: "50 West Street", + height: "239", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q47321192", + cordinates: "Point(-73.9803 40.773)", + locationLabel: "50 West 66th Street", + }, + { + location: "http://www.wikidata.org/entity/Q4639884", + cordinates: "Point(-93.2718 44.9783)", + locationLabel: "50 South Sixth", + }, + { + location: "http://www.wikidata.org/entity/Q4639870", + cordinates: "Point(-71.4105 41.8248)", + locationLabel: "50 Kennedy Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4639867", + cordinates: "Point(-74.0338 40.7137)", + locationLabel: "50 Hudson Street", + }, + { + location: "http://www.wikidata.org/entity/Q2047295", + cordinates: "Point(-122.397244 37.790478)", + locationLabel: "50 Fremont Center", + }, + { + location: "http://www.wikidata.org/entity/Q3493608", + cordinates: "Point(-122.397 37.794)", + locationLabel: "50 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q4639854", + cordinates: "Point(-80.188 25.7749)", + locationLabel: "50 Biscayne", + }, + { + location: "http://www.wikidata.org/entity/Q28057934", + cordinates: "Point(117.215912 39.118447)", + locationLabel: "5 Taian Dao", + }, + { + location: "http://www.wikidata.org/entity/Q952714", + cordinates: "Point(-73.9815 40.7523)", + locationLabel: "461 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q16868860", + cordinates: "Point(-122.403 37.7936)", + locationLabel: "456 Montgomery Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q19817574", + cordinates: "Point(-87.61562 41.891573)", + locationLabel: "451 E. Grand", + height: "257", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q4638113", + cordinates: "Point(-122.408 37.7895)", + locationLabel: "450 Sutter Street", + }, + { + location: "http://www.wikidata.org/entity/Q17423040", + cordinates: "Point(-73.971291666 40.761463888)", + locationLabel: "450 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q23907606", + cordinates: "Point(-73.975443 40.753268)", + locationLabel: "450 Lexington Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4638186", + cordinates: "Point(-122.397 37.7912)", + locationLabel: "45 Fremont Center", + }, + { + location: "http://www.wikidata.org/entity/Q21609046", + cordinates: "Point(153.031491 -27.46497)", + locationLabel: "443 Queen Street, Brisbane", + }, + { + location: "http://www.wikidata.org/entity/Q2613795", + cordinates: "Point(-122.401894 37.789833)", + locationLabel: "44 Montgomery", + }, + { + location: "http://www.wikidata.org/entity/Q2816837", + cordinates: "Point(-112.0747 33.4507)", + locationLabel: "44 Monroe", + }, + { + location: "http://www.wikidata.org/entity/Q233940", + cordinates: "Point(-73.971944444 40.761666666)", + locationLabel: "432 Park Avenue", + height: "425.5", + numberOfElevators: "6", + }, + { + location: "http://www.wikidata.org/entity/Q2545137", + cordinates: "Point(-122.398161 37.791164)", + locationLabel: "425 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q43871125", + cordinates: "Point(-73.974947 40.752255)", + locationLabel: "425 Lexington Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2781067", + cordinates: "Point(-73.982061 40.751086)", + locationLabel: "425 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4637722", + cordinates: "Point(-122.401 37.7928)", + locationLabel: "425 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q58267991", + cordinates: "Point(-76.61392 39.28375)", + locationLabel: "414 Light Street", + }, + { + location: "http://www.wikidata.org/entity/Q4637523", + cordinates: "Point(-87.9058 43.0382)", + locationLabel: "411 East Wisconsin Center", + }, + { + location: "http://www.wikidata.org/entity/Q4637286", + cordinates: "Point(-80.846993 35.224931)", + locationLabel: "400 South Tryon", + }, + { + location: "http://www.wikidata.org/entity/Q2816682", + cordinates: "Point(-73.5713 45.5077)", + locationLabel: "400 Sherbrooke West", + }, + { + location: "http://www.wikidata.org/entity/Q2816682", + cordinates: "Point(-73.57163 45.5077)", + locationLabel: "400 Sherbrooke West", + }, + { + location: "http://www.wikidata.org/entity/Q14935332", + cordinates: "Point(153.021 -27.4687)", + locationLabel: "400 George Street", + }, + { + location: "http://www.wikidata.org/entity/Q7111974", + cordinates: "Point(-87.6165 41.8848)", + locationLabel: "400 East Randolph", + height: "115.2", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q4637414", + cordinates: "Point(-84.1927 39.7576)", + locationLabel: "40 West 4th Centre", + }, + { + location: "http://www.wikidata.org/entity/Q218305", + cordinates: "Point(-74.009722 40.706944)", + locationLabel: "40 Wall Street", + height: "284", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q138755", + cordinates: "Point(-0.019611111 51.502638888)", + locationLabel: "40 Bank Street", + }, + { + location: "http://www.wikidata.org/entity/Q21015895", + cordinates: "Point(-122.3314913 47.6040184)", + locationLabel: "4/C", + }, + { + location: "http://www.wikidata.org/entity/Q18589944", + cordinates: "Point(-73.9838 40.6928)", + locationLabel: "4 Metrotech Center", + }, + { + location: "http://www.wikidata.org/entity/Q4636099", + cordinates: "Point(-73.9718 40.7592)", + locationLabel: "399 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q56422859", + cordinates: "Point(144.9595578 -37.81198)", + locationLabel: "399 Little Lonsdale Street", + }, + { + location: "http://www.wikidata.org/entity/Q14681516", + cordinates: "Point(-122.392 37.7872)", + locationLabel: "399 Fremont Street", + }, + { + location: "http://www.wikidata.org/entity/Q14681514", + cordinates: "Point(-122.398 37.7922)", + locationLabel: "388 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q3538182", + cordinates: "Point(-74.011 40.7207)", + locationLabel: "388 Greenwich Street", + height: "151", + numberOfElevators: "24", + }, + { + location: "http://www.wikidata.org/entity/Q228242", + cordinates: "Point(-73.977089 40.755585)", + locationLabel: "383 Madison Avenue", + height: "230", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q19599928", + cordinates: "Point(144.961 -37.8124)", + locationLabel: "380 Lonsdale Street", + }, + { + location: "http://www.wikidata.org/entity/Q227873", + cordinates: "Point(-74.0012 40.7108)", + locationLabel: "375 Pearl Street", + }, + { + location: "http://www.wikidata.org/entity/Q10905686", + cordinates: "Point(-74.0103 40.7066)", + locationLabel: "37 Wall Street", + }, + { + location: "http://www.wikidata.org/entity/Q4635644", + cordinates: "Point(-74.0004 40.7523)", + locationLabel: "360 Tenth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4635643", + cordinates: "Point(-72.923 41.3047)", + locationLabel: "360 State Street", + }, + { + location: "http://www.wikidata.org/entity/Q4635641", + cordinates: "Point(-97.1385 49.894)", + locationLabel: "360 Main", + height: "117", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q2816343", + cordinates: "Point(-97.7496 30.2675)", + locationLabel: "360 Condominiums", + }, + { + location: "http://www.wikidata.org/entity/Q4635475", + cordinates: "Point(144.97 -37.8311)", + locationLabel: "350 St Kilda Road", + }, + { + location: "http://www.wikidata.org/entity/Q4635473", + cordinates: "Point(-122.397 37.7908)", + locationLabel: "350 Mission Street", + }, + { + location: "http://www.wikidata.org/entity/Q15264622", + cordinates: "Point(-74.0038 40.7547)", + locationLabel: "35 Hudson Yards", + }, + { + location: "http://www.wikidata.org/entity/Q3489200", + cordinates: "Point(-73.9725 40.7578)", + locationLabel: "345 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q680905", + cordinates: "Point(-122.400431 37.792536)", + locationLabel: "345 California Center", + }, + { + location: "http://www.wikidata.org/entity/Q225835", + cordinates: "Point(-87.6358 41.8861)", + locationLabel: "333 Wacker Drive", + }, + { + location: "http://www.wikidata.org/entity/Q4635154", + cordinates: "Point(-122.397 37.7919)", + locationLabel: "333 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q2816211", + cordinates: "Point(-122.403 37.7906)", + locationLabel: "333 Bush Street", + }, + { + location: "http://www.wikidata.org/entity/Q4635124", + cordinates: "Point(-112.0744 33.4871)", + locationLabel: "3300 North Central Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q3303658", + cordinates: "Point(-73.991111 40.757222)", + locationLabel: "330 West 42nd Street", + }, + { + location: "http://www.wikidata.org/entity/Q4635219", + cordinates: "Point(-74.0061 40.71678)", + locationLabel: "33 Thomas Street", + }, + { + location: "http://www.wikidata.org/entity/Q3493397", + cordinates: "Point(-93.2728 44.9781)", + locationLabel: "33 South Sixth", + }, + { + location: "http://www.wikidata.org/entity/Q4635196", + cordinates: "Point(-71.0579 42.356)", + locationLabel: "33 Arch Street", + }, + { + location: "http://www.wikidata.org/entity/Q2308936", + cordinates: "Point(-87.630556 41.888056)", + locationLabel: "321 North Clark", + }, + { + location: "http://www.wikidata.org/entity/Q4634916", + cordinates: "Point(-95.9898 36.153)", + locationLabel: "320 South Boston Building", + }, + { + location: "http://www.wikidata.org/entity/Q4635012", + cordinates: "Point(-74.004638888 40.720027777)", + locationLabel: "32 Avenue of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q224563", + cordinates: "Point(-87.635555555 41.877777777)", + locationLabel: "311 South Wacker Drive", + height: "292.9128", + numberOfElevators: "34", + }, + { + location: "http://www.wikidata.org/entity/Q4634775", + cordinates: "Point(126.9872 37.5686)", + locationLabel: "31 Building", + }, + { + location: "http://www.wikidata.org/entity/Q4634379", + cordinates: "Point(-73.9676 40.7555)", + locationLabel: "303 East 51st Street", + }, + { + location: "http://www.wikidata.org/entity/Q4634315", + cordinates: "Point(-86.1583 39.7714)", + locationLabel: "300 North Meridian", + }, + { + location: "http://www.wikidata.org/entity/Q223788", + cordinates: "Point(-87.6331 41.8882)", + locationLabel: "300 North LaSalle", + height: "239", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q43864717", + cordinates: "Point(-73.979981 40.752698)", + locationLabel: "300 Madison Avenue", + height: "175.3", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q43864717", + cordinates: "Point(-73.979981 40.752698)", + locationLabel: "300 Madison Avenue", + height: "575", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q14685819", + cordinates: "Point(-80.2167 25.7431)", + locationLabel: "300 Grove Bay Residences", + }, + { + location: "http://www.wikidata.org/entity/Q16823864", + cordinates: "Point(153.022 -27.4701)", + locationLabel: "300 George Street, Brisbane", + }, + { + location: "http://www.wikidata.org/entity/Q191161", + cordinates: "Point(-0.080277777 51.514444444)", + locationLabel: "30 St Mary Axe", + height: "179.8", + numberOfElevators: "23", + }, + { + location: "http://www.wikidata.org/entity/Q680614", + cordinates: "Point(-73.97938889 40.75897222)", + locationLabel: "30 Rockefeller Plaza", + height: "259", + numberOfElevators: "60", + }, + { + location: "http://www.wikidata.org/entity/Q224126", + cordinates: "Point(-74.0093 40.7132)", + locationLabel: "30 Park Place", + height: "286", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q15264266", + cordinates: "Point(-74.00075 40.753967)", + locationLabel: "30 Hudson Yards", + height: "395", + numberOfElevators: "59", + }, + { + location: "http://www.wikidata.org/entity/Q2275601", + cordinates: "Point(-74.0338 40.713)", + locationLabel: "30 Hudson Street", + height: "238", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q4636552", + cordinates: "Point(-73.9868 40.7564)", + locationLabel: "3 Times Square", + }, + { + location: "http://www.wikidata.org/entity/Q2816516", + cordinates: "Point(-73.9811 40.7464)", + locationLabel: "3 Park Avenue", + height: "556", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q64106522", + cordinates: "Point(-73.9979 40.7519)", + locationLabel: "3 Manhattan West", + }, + { + location: "http://www.wikidata.org/entity/Q229605", + cordinates: "Point(-74.001638 40.755646)", + locationLabel: "3 Hudson Boulevard", + height: "301", + numberOfElevators: "36", + }, + { + location: "http://www.wikidata.org/entity/Q4632875", + cordinates: "Point(-73.9745 40.7562)", + locationLabel: "299 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4632683", + cordinates: "Point(-84.3853 33.8331)", + locationLabel: "2828 Peachtree", + }, + { + location: "http://www.wikidata.org/entity/Q1050074", + cordinates: "Point(-74.008888888 40.707777777)", + locationLabel: "28 Liberty Street", + height: "247.8", + numberOfElevators: "37", + }, + { + location: "http://www.wikidata.org/entity/Q219984", + cordinates: "Point(-73.974769 40.755292)", + locationLabel: "277 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q30752990", + cordinates: "Point(-73.986285 40.745587)", + locationLabel: "277 Fifth Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2815527", + cordinates: "Point(-95.4181 29.741)", + locationLabel: "2727 Kirby", + }, + { + location: "http://www.wikidata.org/entity/Q1676687", + cordinates: "Point(-73.9754 40.7558)", + locationLabel: "270 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q762816", + cordinates: "Point(-74.013056 40.705556)", + locationLabel: "26 Broadway", + height: "158.5", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q20164560", + cordinates: "Point(144.962 -37.82327778)", + locationLabel: "25–35 Power Street", + }, + { + location: "http://www.wikidata.org/entity/Q4632056", + cordinates: "Point(-76.6188 39.2867)", + locationLabel: "250 West Pratt Street", + }, + { + location: "http://www.wikidata.org/entity/Q1192749", + cordinates: "Point(-74.016111111 40.714166666)", + locationLabel: "250 Vesey Street", + }, + { + location: "http://www.wikidata.org/entity/Q217827", + cordinates: "Point(-73.9664 40.7593)", + locationLabel: "250 East 57th Street", + }, + { + location: "http://www.wikidata.org/entity/Q16959098", + cordinates: "Point(-78.87698 42.891045)", + locationLabel: "250 Delaware Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4632183", + cordinates: "Point(-79.375 43.6461)", + locationLabel: "25 The Esplanade", + }, + { + location: "http://www.wikidata.org/entity/Q4632172", + cordinates: "Point(-84.3881 33.7547)", + locationLabel: "25 Park Place", + }, + { + location: "http://www.wikidata.org/entity/Q4632156", + cordinates: "Point(-0.0147222 51.5036)", + locationLabel: "25 Churchill Place", + }, + { + location: "http://www.wikidata.org/entity/Q138752", + cordinates: "Point(-0.021027777 51.502972222)", + locationLabel: "25 Bank Street", + height: "153", + numberOfElevators: "29", + }, + { + location: "http://www.wikidata.org/entity/Q2289692", + cordinates: "Point(-73.974739 40.754394)", + locationLabel: "245 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4631505", + cordinates: "Point(-87.6348 41.8765)", + locationLabel: "235 Van Buren", + }, + { + location: "http://www.wikidata.org/entity/Q4631499", + cordinates: "Point(-94.581216 39.085015)", + locationLabel: "2345 Grand", + }, + { + location: "http://www.wikidata.org/entity/Q216264", + cordinates: "Point(55.150611 25.089806)", + locationLabel: "23 Marina", + height: "392.4", + numberOfElevators: "62", + }, + { + location: "http://www.wikidata.org/entity/Q264439", + cordinates: "Point(-74.015277777 40.7125)", + locationLabel: "225 Liberty Street", + }, + { + location: "http://www.wikidata.org/entity/Q4631257", + cordinates: "Point(-122.401 37.7909)", + locationLabel: "225 Bush Street", + }, + { + location: "http://www.wikidata.org/entity/Q4631254", + cordinates: "Point(-90.072405 29.952684)", + locationLabel: "225 Baronne Street", + }, + { + location: "http://www.wikidata.org/entity/Q16154785", + cordinates: "Point(-122.398 37.7864)", + locationLabel: "222 Second Street", + height: "110", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q16154785", + cordinates: "Point(-122.398 37.7864)", + locationLabel: "222 Second Street", + height: "370", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q15781036", + cordinates: "Point(-73.9802 40.7671)", + locationLabel: "220 Central Park South", + }, + { + location: "http://www.wikidata.org/entity/Q18602", + cordinates: "Point(-0.0829 51.5145)", + locationLabel: "22 Bishopsgate", + height: "278.2", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q4630873", + cordinates: "Point(-83.048888888 42.329722222)", + locationLabel: "211 West Fort Street", + }, + { + location: "http://www.wikidata.org/entity/Q4630850", + cordinates: "Point(-96.7976 32.7875)", + locationLabel: "2100 Ross Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2936910", + cordinates: "Point(-97.1393 49.8957)", + locationLabel: "201 Portage", + height: "128", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q4630370", + cordinates: "Point(-76.615 39.2919)", + locationLabel: "201 North Charles Street Building", + }, + { + location: "http://www.wikidata.org/entity/Q4630369", + cordinates: "Point(-122.392 37.7887)", + locationLabel: "201 Folsom Street", + }, + { + location: "http://www.wikidata.org/entity/Q4597598", + cordinates: "Point(-75.1736 39.9533)", + locationLabel: "2000 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q116002", + cordinates: "Point(-74.0144 40.7147)", + locationLabel: "200 West Street", + height: "228", + numberOfElevators: "53", + }, + { + location: "http://www.wikidata.org/entity/Q116002", + cordinates: "Point(-74.0144 40.7147)", + locationLabel: "200 West Street", + height: "749", + numberOfElevators: "53", + }, + { + location: "http://www.wikidata.org/entity/Q2074091", + cordinates: "Point(-74.014722222 40.713611111)", + locationLabel: "200 Vesey Street", + }, + { + location: "http://www.wikidata.org/entity/Q4873691", + cordinates: "Point(-73.987669 40.779261)", + locationLabel: "200 Riverside Boulevard At Trump Place", + }, + { + location: "http://www.wikidata.org/entity/Q4616396", + cordinates: "Point(144.96 -37.8135)", + locationLabel: "200 Queen Street", + }, + { + location: "http://www.wikidata.org/entity/Q2814434", + cordinates: "Point(-81.6915 41.5001)", + locationLabel: "200 Public Square", + }, + { + location: "http://www.wikidata.org/entity/Q2536635", + cordinates: "Point(-74.015555555 40.710555555)", + locationLabel: "200 Liberty Street", + }, + { + location: "http://www.wikidata.org/entity/Q212834", + cordinates: "Point(-0.083611 51.511389)", + locationLabel: "20 Fenchurch Street", + height: "160", + numberOfElevators: "16", + }, + { + location: "http://www.wikidata.org/entity/Q212831", + cordinates: "Point(-74.009722222 40.705555555)", + locationLabel: "20 Exchange Place", + }, + { + location: "http://www.wikidata.org/entity/Q1127212", + cordinates: "Point(-74.011002 40.712095)", + locationLabel: "2 World Trade Center", + height: "403.3", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q16822613", + cordinates: "Point(-74.0126 40.7026)", + locationLabel: "2 New York Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q17098710", + cordinates: "Point(-90.0634 29.949)", + locationLabel: "2 Canal Street", + }, + { + location: "http://www.wikidata.org/entity/Q4594548", + cordinates: "Point(-104.988 39.7478)", + locationLabel: "1999 Broadway", + }, + { + location: "http://www.wikidata.org/entity/Q4595673", + cordinates: "Point(-122.395 37.7899)", + locationLabel: "199 Fremont Street", + }, + { + location: "http://www.wikidata.org/entity/Q2812791", + cordinates: "Point(-73.5713 45.5025)", + locationLabel: "1981 McGill College", + }, + { + location: "http://www.wikidata.org/entity/Q2731989", + cordinates: "Point(-87.6365 41.8854)", + locationLabel: "191 North Wacker", + }, + { + location: "http://www.wikidata.org/entity/Q4557734", + cordinates: "Point(-77.0438 38.902)", + locationLabel: "1900 K Street", + }, + { + location: "http://www.wikidata.org/entity/Q1886439", + cordinates: "Point(-87.6327 41.8798)", + locationLabel: "190 South LaSalle Street", + }, + { + location: "http://www.wikidata.org/entity/Q30642135", + cordinates: "Point(-74.0096 40.7098)", + locationLabel: "19 Dutch", + }, + { + location: "http://www.wikidata.org/entity/Q4554425", + cordinates: "Point(-75.1711 39.9536)", + locationLabel: "1835 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q570717", + cordinates: "Point(-75.171 39.953)", + locationLabel: "1818 Market Street", + }, + { + location: "http://www.wikidata.org/entity/Q200780", + cordinates: "Point(-87.633636 41.881528)", + locationLabel: "181 West Madison Street", + }, + { + location: "http://www.wikidata.org/entity/Q4554120", + cordinates: "Point(-122.395 37.7897)", + locationLabel: "181 Fremont Street", + }, + { + location: "http://www.wikidata.org/entity/Q4553725", + cordinates: "Point(-80.1869 25.7941)", + locationLabel: "1800 Club", + }, + { + location: "http://www.wikidata.org/entity/Q4553910", + cordinates: "Point(-122.402 37.7908)", + locationLabel: "180 Montgomery Street", + }, + { + location: "http://www.wikidata.org/entity/Q4553686", + cordinates: "Point(-104.995 39.7503)", + locationLabel: "17th Street Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q61066521", + cordinates: "Point(-77.222786 38.923927)", + locationLabel: "1750 Tysons Boulevard", + }, + { + location: "http://www.wikidata.org/entity/Q4552732", + cordinates: "Point(-73.9817 40.7651)", + locationLabel: "1740 Broadway", + }, + { + location: "http://www.wikidata.org/entity/Q4552487", + cordinates: "Point(-81.6879 41.5022)", + locationLabel: "1717 East Ninth Building", + }, + { + location: "http://www.wikidata.org/entity/Q198238", + cordinates: "Point(-73.9826 40.7644)", + locationLabel: "1717 Broadway", + height: "229.7", + numberOfElevators: "11", + }, + { + location: "http://www.wikidata.org/entity/Q3497929", + cordinates: "Point(-96.7966 32.7823)", + locationLabel: "1700 Pacific", + }, + { + location: "http://www.wikidata.org/entity/Q4552294", + cordinates: "Point(-75.1691 39.9527)", + locationLabel: "1700 Market", + height: "430", + numberOfElevators: "18", + }, + { + location: "http://www.wikidata.org/entity/Q2808938", + cordinates: "Point(-87.5831 41.7936)", + locationLabel: "1700 East 56th Street", + }, + { + location: "http://www.wikidata.org/entity/Q3499774", + cordinates: "Point(-74.0141 40.7028)", + locationLabel: "17 State Street", + }, + { + location: "http://www.wikidata.org/entity/Q4553547", + cordinates: "Point(-2.24177 53.4734)", + locationLabel: "17 New Wakefield Street", + }, + { + location: "http://www.wikidata.org/entity/Q4551716", + cordinates: "Point(-104.987 39.7429)", + locationLabel: "1670 Broadway", + }, + { + location: "http://www.wikidata.org/entity/Q61066458", + cordinates: "Point(-77.2233867 38.9251044)", + locationLabel: "1650 Tysons Boulevard", + }, + { + location: "http://www.wikidata.org/entity/Q1128788", + cordinates: "Point(-95.3727 29.75445)", + locationLabel: "1600 Smith Street", + }, + { + location: "http://www.wikidata.org/entity/Q7273149", + cordinates: "Point(-122.3344 47.6132)", + locationLabel: "1600 Seventh Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4551090", + cordinates: "Point(-96.799091 32.78186)", + locationLabel: "1600 Pacific Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4551087", + cordinates: "Point(-104.989722222 39.743888888)", + locationLabel: "1600 Glenarm Place", + }, + { + location: "http://www.wikidata.org/entity/Q4551089", + cordinates: "Point(-104.987 39.7422)", + locationLabel: "1600 Broadway", + }, + { + location: "http://www.wikidata.org/entity/Q2690134", + cordinates: "Point(103.852 1.28419)", + locationLabel: "16 Collyer Quay", + }, + { + location: "http://www.wikidata.org/entity/Q4550543", + cordinates: "Point(-87.6364 41.8848)", + locationLabel: "155 North Wacker", + }, + { + location: "http://www.wikidata.org/entity/Q4550229", + cordinates: "Point(-90.078634 29.952106)", + locationLabel: "1515 Poydras", + }, + { + location: "http://www.wikidata.org/entity/Q60763905", + cordinates: "Point(-87.635 41.8848)", + locationLabel: "151 North Franklin", + }, + { + location: "http://www.wikidata.org/entity/Q626929", + cordinates: "Point(126.705 37.4563)", + locationLabel: "151 Incheon Tower", + }, + { + location: "http://www.wikidata.org/entity/Q919637", + cordinates: "Point(-73.5717 45.5022)", + locationLabel: "1501 McGill College", + }, + { + location: "http://www.wikidata.org/entity/Q3363532", + cordinates: "Point(-73.9865 40.7573)", + locationLabel: "1501 Broadway", + height: "131.5", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q2807962", + cordinates: "Point(-95.37115 29.7547)", + locationLabel: "1500 Louisiana Street", + }, + { + location: "http://www.wikidata.org/entity/Q4550139", + cordinates: "Point(-73.9856 40.7567)", + locationLabel: "1500 Broadway", + }, + { + location: "http://www.wikidata.org/entity/Q4550188", + cordinates: "Point(-83.0446 42.3286)", + locationLabel: "150 West Jefferson", + }, + { + location: "http://www.wikidata.org/entity/Q21011003", + cordinates: "Point(-87.638672 41.885105)", + locationLabel: "150 North Riverside Chicago", + height: "226", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q17985068", + cordinates: "Point(-0.0065 51.5348)", + locationLabel: "150 High Street, Stratford", + }, + { + location: "http://www.wikidata.org/entity/Q4550186", + cordinates: "Point(-122.398 37.7936)", + locationLabel: "150 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q15031905", + cordinates: "Point(-74.01 40.7054)", + locationLabel: "15 William New York", + }, + { + location: "http://www.wikidata.org/entity/Q194347", + cordinates: "Point(-73.9906 40.7497)", + locationLabel: "15 Penn Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q15264301", + cordinates: "Point(-74.0038 40.7547)", + locationLabel: "15 Hudson Yards", + height: "278", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q4550860", + cordinates: "Point(-73.9811 40.7694)", + locationLabel: "15 Central Park West", + }, + { + location: "http://www.wikidata.org/entity/Q3365418", + cordinates: "Point(-80.1926 25.7591)", + locationLabel: "1450 Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q3490136", + cordinates: "Point(-95.3718 29.7555)", + locationLabel: "1400 Smith Street", + }, + { + location: "http://www.wikidata.org/entity/Q4549610", + cordinates: "Point(115.856 -31.9542)", + locationLabel: "140 St Georges Terrace", + }, + { + location: "http://www.wikidata.org/entity/Q14681501", + cordinates: "Point(-122.399905555 37.786819444)", + locationLabel: "140 New Montgomery", + height: "460.01", + numberOfElevators: "10", + }, + { + location: "http://www.wikidata.org/entity/Q806742", + cordinates: "Point(-74.010833333 40.7075)", + locationLabel: "14 Wall Street", + height: "164", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q28003830", + cordinates: "Point(-74.012777777 40.715555555)", + locationLabel: "138 East 50th Street", + height: "245", + numberOfElevators: "5", + }, + { + location: "http://www.wikidata.org/entity/Q3750408", + cordinates: "Point(-73.9788 40.7631)", + locationLabel: "1345 Avenue of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q1584356", + cordinates: "Point(120.98 14.576111111)", + locationLabel: "1322 Golden Empire Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4549014", + cordinates: "Point(-77.0304 38.898)", + locationLabel: "1310 G Street", + }, + { + location: "http://www.wikidata.org/entity/Q1586672", + cordinates: "Point(-74.012777777 40.710277777)", + locationLabel: "130 Liberty Street", + }, + { + location: "http://www.wikidata.org/entity/Q4548565", + cordinates: "Point(-84.388 33.789)", + locationLabel: "1280 West", + }, + { + location: "http://www.wikidata.org/entity/Q101084958", + cordinates: "Point(-73.979834 40.760257)", + locationLabel: "1270 Avenue of the Americas", + height: "409", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q173454", + cordinates: "Point(-73.5704 45.4973)", + locationLabel: "1250 René-Lévesque", + height: "199", + numberOfElevators: "28", + }, + { + location: "http://www.wikidata.org/entity/Q4548391", + cordinates: "Point(-90.0774 29.9507)", + locationLabel: "1250 Poydras Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1383020", + cordinates: "Point(-71.053027472 42.355529988)", + locationLabel: "125 High Street", + }, + { + location: "http://www.wikidata.org/entity/Q4548311", + cordinates: "Point(-122.395 37.7919)", + locationLabel: "123 Mission Street", + }, + { + location: "http://www.wikidata.org/entity/Q4548304", + cordinates: "Point(153.027 -27.4708)", + locationLabel: "123 Albert Street", + }, + { + location: "http://www.wikidata.org/entity/Q172811", + cordinates: "Point(-73.981666666 40.759166666)", + locationLabel: "1221 Avenue of the Americas", + height: "205", + numberOfElevators: "32", + }, + { + location: "http://www.wikidata.org/entity/Q2742547", + cordinates: "Point(-0.0821 51.5138)", + locationLabel: "122 Leadenhall Street", + }, + { + location: "http://www.wikidata.org/entity/Q2943880", + cordinates: "Point(-73.9818 40.7585)", + locationLabel: "1211 Avenue of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q2807230", + cordinates: "Point(-80.8439 35.2275)", + locationLabel: "121 West Trade", + }, + { + location: "http://www.wikidata.org/entity/Q4548175", + cordinates: "Point(-81.3956 30.3246)", + locationLabel: "121 Atlantic Place", + }, + { + location: "http://www.wikidata.org/entity/Q2301069", + cordinates: "Point(-122.336 47.6072)", + locationLabel: "1201 Third Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4548066", + cordinates: "Point(-95.3676 29.7553)", + locationLabel: "1200 Travis", + }, + { + location: "http://www.wikidata.org/entity/Q172408", + cordinates: "Point(-74.006 40.705)", + locationLabel: "120 Wall Street", + }, + { + location: "http://www.wikidata.org/entity/Q43870534", + cordinates: "Point(-73.978298 40.751886)", + locationLabel: "120 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q2259283", + cordinates: "Point(-87.6328 41.8837)", + locationLabel: "120 North LaSalle", + }, + { + location: "http://www.wikidata.org/entity/Q4548102", + cordinates: "Point(28.053 -26.1977)", + locationLabel: "120 End Street", + }, + { + location: "http://www.wikidata.org/entity/Q172402", + cordinates: "Point(144.9695 -37.813833333)", + locationLabel: "120 Collins Street", + }, + { + location: "http://www.wikidata.org/entity/Q1960906", + cordinates: "Point(-84.384016666 33.786877777)", + locationLabel: "1180 Peachtree", + }, + { + location: "http://www.wikidata.org/entity/Q2119193", + cordinates: "Point(-73.982308 40.756944)", + locationLabel: "1166", + }, + { + location: "http://www.wikidata.org/entity/Q4547364", + cordinates: "Point(-104.9944 39.7497)", + locationLabel: "1125 17th Street", + }, + { + location: "http://www.wikidata.org/entity/Q4547301", + cordinates: "Point(-122.335 47.6067)", + locationLabel: "1111 Third Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q790054", + cordinates: "Point(-71.410696 41.824553)", + locationLabel: "111 Westminster Street", + }, + { + location: "http://www.wikidata.org/entity/Q2631268", + cordinates: "Point(-73.9776 40.7646)", + locationLabel: "111 West 57th Street", + height: "435.3", + numberOfElevators: "2", + }, + { + location: "http://www.wikidata.org/entity/Q170442", + cordinates: "Point(-87.6375 41.8803)", + locationLabel: "111 South Wacker Drive", + height: "207.6", + numberOfElevators: "8", + }, + { + location: "http://www.wikidata.org/entity/Q170441", + cordinates: "Point(-71.0814 42.3468)", + locationLabel: "111 Huntington Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4547314", + cordinates: "Point(153.025456 -27.472541)", + locationLabel: "111 George Street", + }, + { + location: "http://www.wikidata.org/entity/Q4547311", + cordinates: "Point(-74.0375 40.7208)", + locationLabel: "111 First Street", + }, + { + location: "http://www.wikidata.org/entity/Q4547248", + cordinates: "Point(-77.0275 38.9003)", + locationLabel: "1101 New York Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4547246", + cordinates: "Point(-80.1913 25.7633)", + locationLabel: "1101 Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q4547239", + cordinates: "Point(-118.2638 34.0522)", + locationLabel: "1100 Wilshire", + }, + { + location: "http://www.wikidata.org/entity/Q4547238", + cordinates: "Point(-81.6864 41.5028)", + locationLabel: "1100 Superior", + }, + { + location: "http://www.wikidata.org/entity/Q2806928", + cordinates: "Point(-84.3834 33.7848)", + locationLabel: "1100 Peachtree", + }, + { + location: "http://www.wikidata.org/entity/Q4547237", + cordinates: "Point(-80.1934 25.7632)", + locationLabel: "1100 Millecento", + }, + { + location: "http://www.wikidata.org/entity/Q4547265", + cordinates: "Point(-95.9908 36.1485)", + locationLabel: "110 West 7th Building", + }, + { + location: "http://www.wikidata.org/entity/Q4547263", + cordinates: "Point(-80.1416 26.1143)", + locationLabel: "110 Tower", + }, + { + location: "http://www.wikidata.org/entity/Q4547261", + cordinates: "Point(-84.1919 39.7614)", + locationLabel: "110 N. Main Street", + }, + { + location: "http://www.wikidata.org/entity/Q4547256", + cordinates: "Point(-93.2803 44.9706)", + locationLabel: "110 Grant Apartments", + }, + { + location: "http://www.wikidata.org/entity/Q4547779", + cordinates: "Point(-73.989671944 40.756596111)", + locationLabel: "11 Times Square", + }, + { + location: "http://www.wikidata.org/entity/Q4547778", + cordinates: "Point(-80.0064 40.4392)", + locationLabel: "11 Stanwix Street", + }, + { + location: "http://www.wikidata.org/entity/Q4547761", + cordinates: "Point(-81.6575 30.326944)", + locationLabel: "11 East Forsyth", + }, + { + location: "http://www.wikidata.org/entity/Q3286566", + cordinates: "Point(-73.9847 40.7546)", + locationLabel: "1095 Avenue of the Americas", + }, + { + location: "http://www.wikidata.org/entity/Q4546797", + cordinates: "Point(-77.0336 38.9033)", + locationLabel: "1090 Vermont Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4546747", + cordinates: "Point(-80.1923 25.7629)", + locationLabel: "1080 Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q4546579", + cordinates: "Point(-43.1783 -22.9097)", + locationLabel: "105 Lélio Gama St.", + }, + { + location: "http://www.wikidata.org/entity/Q4546268", + cordinates: "Point(-77.0269 38.9036)", + locationLabel: "1010 Mass", + }, + { + location: "http://www.wikidata.org/entity/Q12052424", + cordinates: "Point(-90.073611111 29.953611111)", + locationLabel: "1010 Common", + }, + { + location: "http://www.wikidata.org/entity/Q18377723", + cordinates: "Point(-80.1922 25.7641)", + locationLabel: "1010 Brickell", + }, + { + location: "http://www.wikidata.org/entity/Q4546330", + cordinates: "Point(-74.0125 40.715972222)", + locationLabel: "101 Warren Street", + }, + { + location: "http://www.wikidata.org/entity/Q2806733", + cordinates: "Point(-122.399 37.7881)", + locationLabel: "101 Second Street", + }, + { + location: "http://www.wikidata.org/entity/Q2782432", + cordinates: "Point(-73.977722 40.751003)", + locationLabel: "101 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4546310", + cordinates: "Point(-122.402 37.7904)", + locationLabel: "101 Montgomery", + }, + { + location: "http://www.wikidata.org/entity/Q4546313", + cordinates: "Point(-74.0351 40.716)", + locationLabel: "101 Hudson Street", + }, + { + location: "http://www.wikidata.org/entity/Q4546306", + cordinates: "Point(-71.0569 42.355)", + locationLabel: "101 Federal Street", + }, + { + location: "http://www.wikidata.org/entity/Q165506", + cordinates: "Point(144.970777777 -37.815)", + locationLabel: "101 Collins Street", + height: "260", + numberOfElevators: "30", + }, + { + location: "http://www.wikidata.org/entity/Q4546299", + cordinates: "Point(-71.074 42.3485)", + locationLabel: "101 Clarendon Street", + }, + { + location: "http://www.wikidata.org/entity/Q2536727", + cordinates: "Point(-122.397953 37.792847)", + locationLabel: "101 California Street", + }, + { + location: "http://www.wikidata.org/entity/Q4546085", + cordinates: "Point(-83.0476 42.3324)", + locationLabel: "1001 Woodward", + }, + { + location: "http://www.wikidata.org/entity/Q164877", + cordinates: "Point(-73.5663 45.4982)", + locationLabel: "1000 de La Gauchetière", + height: "205", + numberOfElevators: "22", + }, + { + location: "http://www.wikidata.org/entity/Q23925568", + cordinates: "Point(-118.2613 34.0504)", + locationLabel: "1000 Wilshire Boulevard", + }, + { + location: "http://www.wikidata.org/entity/Q2806621", + cordinates: "Point(-73.5751 45.5027)", + locationLabel: "1000 Sherbrooke West", + }, + { + location: "http://www.wikidata.org/entity/Q780751", + cordinates: "Point(-122.336 47.6047)", + locationLabel: "1000 Second Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q4546027", + cordinates: "Point(-87.9102 43.0438)", + locationLabel: "1000 North Water Street", + }, + { + location: "http://www.wikidata.org/entity/Q1920923", + cordinates: "Point(-87.624436 41.901019)", + locationLabel: "1000 Lake Shore Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q4546185", + cordinates: "Point(-93.2658 44.9811)", + locationLabel: "100 Washington Square", + }, + { + location: "http://www.wikidata.org/entity/Q4546179", + cordinates: "Point(-71.0574 42.3538)", + locationLabel: "100 Summer Street", + }, + { + location: "http://www.wikidata.org/entity/Q4546178", + cordinates: "Point(115.858 -31.9546)", + locationLabel: "100 St Georges Terrace", + }, + { + location: "http://www.wikidata.org/entity/Q4546170", + cordinates: "Point(-122.3989 37.7926)", + locationLabel: "100 Pine Center", + }, + { + location: "http://www.wikidata.org/entity/Q2806673", + cordinates: "Point(-82.4582 27.9454)", + locationLabel: "100 North Tampa", + }, + { + location: "http://www.wikidata.org/entity/Q4546164", + cordinates: "Point(-80.2442 36.0999)", + locationLabel: "100 North Main Street", + }, + { + location: "http://www.wikidata.org/entity/Q4546167", + cordinates: "Point(-90.0509 35.1478)", + locationLabel: "100 North Main", + }, + { + location: "http://www.wikidata.org/entity/Q4546163", + cordinates: "Point(-96.790795 32.782656)", + locationLabel: "100 North Central Expressway", + }, + { + location: "http://www.wikidata.org/entity/Q16149279", + cordinates: "Point(-122.4019 37.7903)", + locationLabel: "100 Montgomery Street", + }, + { + location: "http://www.wikidata.org/entity/Q7606974", + cordinates: "Point(-79.8705 43.2573)", + locationLabel: "100 King Street West", + }, + { + location: "http://www.wikidata.org/entity/Q4546127", + cordinates: "Point(-122.397 37.7892)", + locationLabel: "100 First Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q1419501", + cordinates: "Point(-71.0562 42.355)", + locationLabel: "100 Federal Street", + }, + { + location: "http://www.wikidata.org/entity/Q3064617", + cordinates: "Point(-87.9094 43.039)", + locationLabel: "100 East Wisconsin", + }, + { + location: "http://www.wikidata.org/entity/Q4546121", + cordinates: "Point(-76.6127 39.2869)", + locationLabel: "100 East Pratt Street", + }, + { + location: "http://www.wikidata.org/entity/Q4272575", + cordinates: "Point(-0.0813889 51.5156)", + locationLabel: "100 Bishopsgate", + }, + { + location: "http://www.wikidata.org/entity/Q138760", + cordinates: "Point(-0.016388888 51.502777777)", + locationLabel: "10 Upper Bank Street", + height: "151", + numberOfElevators: "38", + }, + { + location: "http://www.wikidata.org/entity/Q3596936", + cordinates: "Point(-118.3616 34.13802)", + locationLabel: "10 Universal City Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q2598533", + cordinates: "Point(-87.632715 41.881608)", + locationLabel: "10 South LaSalle", + }, + { + location: "http://www.wikidata.org/entity/Q2806796", + cordinates: "Point(-79.3919 43.6404)", + locationLabel: "10 Navy", + height: "123", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q4546882", + cordinates: "Point(-78.87 42.89)", + locationLabel: "10 Lafayette Square", + }, + { + location: "http://www.wikidata.org/entity/Q15264124", + cordinates: "Point(-74.0038 40.7547)", + locationLabel: "10 Hudson Yards", + height: "273", + numberOfElevators: "27", + }, + { + location: "http://www.wikidata.org/entity/Q138778", + cordinates: "Point(-1.90016 52.4754)", + locationLabel: "10 Holloway Circus", + }, + { + location: "http://www.wikidata.org/entity/Q3756931", + cordinates: "Point(-73.9813 40.7516)", + locationLabel: "10 East 40th Street", + height: "192", + numberOfElevators: "12", + }, + { + location: "http://www.wikidata.org/entity/Q2813525", + cordinates: "Point(-0.021305555 51.506944444)", + locationLabel: "1 West India Quay", + }, + { + location: "http://www.wikidata.org/entity/Q209017", + cordinates: "Point(-74.011666666 40.707222222)", + locationLabel: "1 Wall Street", + height: "199", + numberOfElevators: "43", + }, + { + location: "http://www.wikidata.org/entity/Q2024065", + cordinates: "Point(55.275044444 25.216330555)", + locationLabel: "1 Park Avenue", + }, + { + location: "http://www.wikidata.org/entity/Q23680456", + cordinates: "Point(151.2098 -33.8645)", + locationLabel: "1 O'Connell Street", + }, + { + location: "http://www.wikidata.org/entity/Q2687492", + cordinates: "Point(-74.0117 40.7021)", + locationLabel: "1 New York Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q20711309", + cordinates: "Point(-0.171175 51.519158)", + locationLabel: "1 Merchant Square", + }, + { + location: "http://www.wikidata.org/entity/Q4595990", + cordinates: "Point(-73.9809 40.77152)", + locationLabel: "1 Lincoln Plaza", + }, + { + location: "http://www.wikidata.org/entity/Q30644326", + cordinates: "Point(-0.084 51.5134)", + locationLabel: "1 Leadenhall Street", + }, + { + location: "http://www.wikidata.org/entity/Q98523666", + cordinates: "Point(-38.5307505 -12.9959975)", + locationLabel: "Q98523666", + }, + { + location: "http://www.wikidata.org/entity/Q98521598", + cordinates: "Point(18.285557 49.832079)", + locationLabel: "Q98521598", + }, + { + location: "http://www.wikidata.org/entity/Q9369456", + cordinates: "Point(34.7972 32.0864)", + locationLabel: "Q9369456", + }, + { + location: "http://www.wikidata.org/entity/Q9335331", + cordinates: "Point(19.0219 50.2615)", + locationLabel: "Q9335331", + }, + { + location: "http://www.wikidata.org/entity/Q9184437", + cordinates: "Point(140.042 35.6518)", + locationLabel: "Q9184437", + }, + { + location: "http://www.wikidata.org/entity/Q86674537", + cordinates: "Point(19.021666666 50.2625)", + locationLabel: "Q86674537", + }, + { + location: "http://www.wikidata.org/entity/Q85874581", + cordinates: "Point(139.761527777 35.697555555)", + locationLabel: "Q85874581", + height: "119.47", + numberOfElevators: "14", + }, + { + location: "http://www.wikidata.org/entity/Q84963784", + cordinates: "Point(140.040027777 35.650222222)", + locationLabel: "Q84963784", + }, + { + location: "http://www.wikidata.org/entity/Q78192789", + cordinates: "Point(12.976388888 55.562777777)", + locationLabel: "Q78192789", + }, + { + location: "http://www.wikidata.org/entity/Q65237365", + cordinates: "Point(139.756361111 35.669055555)", + locationLabel: "Q65237365", + }, + { + location: "http://www.wikidata.org/entity/Q6156294", + cordinates: "Point(47.987 29.376)", + locationLabel: "Q6156294", + }, + { + location: "http://www.wikidata.org/entity/Q6150070", + cordinates: "Point(-72.59020556 -38.73923889)", + locationLabel: "Q6150070", + }, + { + location: "http://www.wikidata.org/entity/Q61125175", + cordinates: "Point(34.752222222 32.013333333)", + locationLabel: "Q61125175", + }, + { + location: "http://www.wikidata.org/entity/Q6109202", + cordinates: "Point(-79.533481 8.967085)", + locationLabel: "Q6109202", + }, + { + location: "http://www.wikidata.org/entity/Q60848300", + cordinates: "Point(2.36 48.897777777)", + locationLabel: "Q60848300", + }, + { + location: "http://www.wikidata.org/entity/Q60269767", + cordinates: "Point(4.486403 51.916575)", + locationLabel: "Q60269767", + }, + { + location: "http://www.wikidata.org/entity/Q5935755", + cordinates: "Point(-68.12360833 -16.51221111)", + locationLabel: "Q5935755", + height: "138", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q5818195", + cordinates: "Point(-68.10364722 -16.52985556)", + locationLabel: "Q5818195", + }, + { + location: "http://www.wikidata.org/entity/Q5818162", + cordinates: "Point(-77.0388 -12.0487)", + locationLabel: "Q5818162", + }, + { + location: "http://www.wikidata.org/entity/Q56381090", + cordinates: "Point(28.986731 41.102773)", + locationLabel: "Q56381090", + }, + { + location: "http://www.wikidata.org/entity/Q56381061", + cordinates: "Point(28.985551 41.102248)", + locationLabel: "Q56381061", + }, + { + location: "http://www.wikidata.org/entity/Q50415306", + cordinates: "Point(14.407608 49.998440333)", + locationLabel: "Q50415306", + }, + { + location: "http://www.wikidata.org/entity/Q47458789", + cordinates: "Point(-9.09725 38.767139)", + locationLabel: "Q47458789", + }, + { + location: "http://www.wikidata.org/entity/Q4402193", + cordinates: "Point(60.616944444 56.836388888)", + locationLabel: "Q4402193", + }, + { + location: "http://www.wikidata.org/entity/Q4346073", + cordinates: "Point(27.5325 53.906666666)", + locationLabel: "Q4346073", + }, + { + location: "http://www.wikidata.org/entity/Q43233179", + cordinates: "Point(17.020389 51.089694)", + locationLabel: "Q43233179", + }, + { + location: "http://www.wikidata.org/entity/Q3995725", + cordinates: "Point(7.67158 45.0913)", + locationLabel: "Q3995725", + }, + { + location: "http://www.wikidata.org/entity/Q3995233", + cordinates: "Point(11.9193 45.4158)", + locationLabel: "Q3995233", + }, + { + location: "http://www.wikidata.org/entity/Q3995129", + cordinates: "Point(12.6188 45.4984)", + locationLabel: "Q3995129", + }, + { + location: "http://www.wikidata.org/entity/Q3775872", + cordinates: "Point(13.354939 38.121378)", + locationLabel: "Q3775872", + }, + { + location: "http://www.wikidata.org/entity/Q3648513", + cordinates: "Point(10.2143 45.5246)", + locationLabel: "Q3648513", + }, + { + location: "http://www.wikidata.org/entity/Q3519684", + cordinates: "Point(-79.3805 43.6542)", + locationLabel: "Q3519684", + }, + { + location: "http://www.wikidata.org/entity/Q32272337", + cordinates: "Point(139.70338 35.70773)", + locationLabel: "Q32272337", + }, + { + location: "http://www.wikidata.org/entity/Q3197551", + cordinates: "Point(135.486947 34.702876)", + locationLabel: "Q3197551", + }, + { + location: "http://www.wikidata.org/entity/Q3197212", + cordinates: "Point(139.81606 35.7003)", + locationLabel: "Q3197212", + }, + { + location: "http://www.wikidata.org/entity/Q3151439", + cordinates: "Point(139.758556 35.657083)", + locationLabel: "Q3151439", + }, + { + location: "http://www.wikidata.org/entity/Q30927381", + cordinates: "Point(139.74755556 35.64661111)", + locationLabel: "Q30927381", + }, + { + location: "http://www.wikidata.org/entity/Q30927116", + cordinates: "Point(139.271388888 35.79)", + locationLabel: "Q30927116", + }, + { + location: "http://www.wikidata.org/entity/Q30922244", + cordinates: "Point(139.76391667 35.68577778)", + locationLabel: "Q30922244", + }, + { + location: "http://www.wikidata.org/entity/Q30881055", + cordinates: "Point(9.191855 45.482645)", + locationLabel: "Q30881055", + }, + { + location: "http://www.wikidata.org/entity/Q3079782", + cordinates: "Point(3.562897 51.447)", + locationLabel: "Q3079782", + }, + { + location: "http://www.wikidata.org/entity/Q30754661", + cordinates: "Point(51.53181 25.3901)", + locationLabel: "Q30754661", + }, + { + location: "http://www.wikidata.org/entity/Q30752579", + cordinates: "Point(51.52654 25.32449)", + locationLabel: "Q30752579", + }, + { + location: "http://www.wikidata.org/entity/Q30752509", + cordinates: "Point(127.13205 37.53720556)", + locationLabel: "Q30752509", + }, + { + location: "http://www.wikidata.org/entity/Q30744067", + cordinates: "Point(-79.39759 43.70545)", + locationLabel: "Q30744067", + }, + { + location: "http://www.wikidata.org/entity/Q29837571", + cordinates: "Point(113.37988 23.10626)", + locationLabel: "Q29837571", + }, + { + location: "http://www.wikidata.org/entity/Q28952560", + cordinates: "Point(1.4536722 43.610272)", + locationLabel: "Q28952560", + }, + { + location: "http://www.wikidata.org/entity/Q28873236", + cordinates: "Point(121.4582 31.2305)", + locationLabel: "Q28873236", + }, + { + location: "http://www.wikidata.org/entity/Q2782670", + cordinates: "Point(135.461 34.6684)", + locationLabel: "Q2782670", + }, + { + location: "http://www.wikidata.org/entity/Q27492249", + cordinates: "Point(-95.3808 29.715)", + locationLabel: "Q27492249", + }, + { + location: "http://www.wikidata.org/entity/Q2670504", + cordinates: "Point(2.91556 51.23278)", + locationLabel: "Q2670504", + }, + { + location: "http://www.wikidata.org/entity/Q25475315", + cordinates: "Point(-1.64596111 42.81293333)", + locationLabel: "Q25475315", + }, + { + location: "http://www.wikidata.org/entity/Q25389292", + cordinates: "Point(-79.507 8.9747)", + locationLabel: "Q25389292", + }, + { + location: "http://www.wikidata.org/entity/Q25379802", + cordinates: "Point(-73.984221944 40.763026111)", + locationLabel: "Q25379802", + }, + { + location: "http://www.wikidata.org/entity/Q2405653", + cordinates: "Point(121.028111 14.552317)", + locationLabel: "Q2405653", + }, + { + location: "http://www.wikidata.org/entity/Q23945409", + cordinates: "Point(55.15329167 25.07976944)", + locationLabel: "Q23945409", + }, + { + location: "http://www.wikidata.org/entity/Q2389808", + cordinates: "Point(54.392613 24.492033)", + locationLabel: "Q2389808", + }, + { + location: "http://www.wikidata.org/entity/Q2375479", + cordinates: "Point(2.2955 48.9563)", + locationLabel: "Q2375479", + }, + { + location: "http://www.wikidata.org/entity/Q2363577", + cordinates: "Point(2.28421 48.8488)", + locationLabel: "Q2363577", + }, + { + location: "http://www.wikidata.org/entity/Q23448114", + cordinates: "Point(113.3298 23.1352)", + locationLabel: "Q23448114", + }, + { + location: "http://www.wikidata.org/entity/Q21619311", + cordinates: "Point(55.136394 25.079442)", + locationLabel: "Q21619311", + }, + { + location: "http://www.wikidata.org/entity/Q21619096", + cordinates: "Point(120.205 30.238)", + locationLabel: "Q21619096", + }, + { + location: "http://www.wikidata.org/entity/Q21512242", + cordinates: "Point(114.246 30.601)", + locationLabel: "Q21512242", + }, + { + location: "http://www.wikidata.org/entity/Q2123980", + cordinates: "Point(54.394961 24.487259)", + locationLabel: "Q2123980", + }, + { + location: "http://www.wikidata.org/entity/Q20991737", + cordinates: "Point(106.58443 29.56506)", + locationLabel: "Q20991737", + }, + { + location: "http://www.wikidata.org/entity/Q20991712", + cordinates: "Point(121.5054 31.2361)", + locationLabel: "Q20991712", + }, + { + location: "http://www.wikidata.org/entity/Q20044792", + cordinates: "Point(139.74326111 35.63263889)", + locationLabel: "Q20044792", + }, + { + location: "http://www.wikidata.org/entity/Q20044787", + cordinates: "Point(139.69055556 35.82666667)", + locationLabel: "Q20044787", + }, + { + location: "http://www.wikidata.org/entity/Q20044341", + cordinates: "Point(139.65538889 35.85647222)", + locationLabel: "Q20044341", + }, + { + location: "http://www.wikidata.org/entity/Q20043902", + cordinates: "Point(139.64758333 35.87366667)", + locationLabel: "Q20043902", + }, + { + location: "http://www.wikidata.org/entity/Q20043325", + cordinates: "Point(139.65738889 35.85686111)", + locationLabel: "Q20043325", + }, + { + location: "http://www.wikidata.org/entity/Q20043301", + cordinates: "Point(139.65247222 35.86075)", + locationLabel: "Q20043301", + }, + { + location: "http://www.wikidata.org/entity/Q20043298", + cordinates: "Point(139.65908333 35.85866667)", + locationLabel: "Q20043298", + }, + { + location: "http://www.wikidata.org/entity/Q20043290", + cordinates: "Point(139.65247222 35.86075)", + locationLabel: "Q20043290", + }, + { + location: "http://www.wikidata.org/entity/Q19940648", + cordinates: "Point(129.32258056 35.553125)", + locationLabel: "Q19940648", + }, + { + location: "http://www.wikidata.org/entity/Q19401540", + cordinates: "Point(34.7928 32.0906)", + locationLabel: "Q19401540", + }, + { + location: "http://www.wikidata.org/entity/Q18700775", + cordinates: "Point(139.75761111 35.67175)", + locationLabel: "Q18700775", + }, + { + location: "http://www.wikidata.org/entity/Q18661684", + cordinates: "Point(24.635 60.155)", + locationLabel: "Q18661684", + }, + { + location: "http://www.wikidata.org/entity/Q18460442", + cordinates: "Point(139.752778 35.670972)", + locationLabel: "Q18460442", + }, + { + location: "http://www.wikidata.org/entity/Q18337674", + cordinates: "Point(139.75441667 35.66916667)", + locationLabel: "Q18337674", + }, + { + location: "http://www.wikidata.org/entity/Q18192113", + cordinates: "Point(34.77436944 32.0795)", + locationLabel: "Q18192113", + }, + { + location: "http://www.wikidata.org/entity/Q18191925", + cordinates: "Point(34.78615556 32.08534444)", + locationLabel: "Q18191925", + }, + { + location: "http://www.wikidata.org/entity/Q18087873", + cordinates: "Point(11.988611111 57.697222222)", + locationLabel: "Q18087873", + }, + { + location: "http://www.wikidata.org/entity/Q17989798", + cordinates: "Point(139.766542 35.698653)", + locationLabel: "Q17989798", + }, + { + location: "http://www.wikidata.org/entity/Q17264996", + cordinates: "Point(-73.972072 40.761886)", + locationLabel: "Q17264996", + }, + { + location: "http://www.wikidata.org/entity/Q17230965", + cordinates: "Point(139.753611 35.670833)", + locationLabel: "Q17230965", + }, + { + location: "http://www.wikidata.org/entity/Q17229282", + cordinates: "Point(139.76888889 35.67611111)", + locationLabel: "Q17229282", + }, + { + location: "http://www.wikidata.org/entity/Q17224932", + cordinates: "Point(139.777778 35.628611)", + locationLabel: "Q17224932", + }, + { + location: "http://www.wikidata.org/entity/Q17224328", + cordinates: "Point(135.50125 34.707917)", + locationLabel: "Q17224328", + }, + { + location: "http://www.wikidata.org/entity/Q17222739", + cordinates: "Point(139.765 35.685556)", + locationLabel: "Q17222739", + }, + { + location: "http://www.wikidata.org/entity/Q17221839", + cordinates: "Point(135.481333 34.693028)", + locationLabel: "Q17221839", + }, + { + location: "http://www.wikidata.org/entity/Q17220393", + cordinates: "Point(135.49430556 34.69663889)", + locationLabel: "Q17220393", + }, + { + location: "http://www.wikidata.org/entity/Q17218782", + cordinates: "Point(139.749306 35.6235)", + locationLabel: "Q17218782", + }, + { + location: "http://www.wikidata.org/entity/Q17215583", + cordinates: "Point(139.738056 35.665556)", + locationLabel: "Q17215583", + }, + { + location: "http://www.wikidata.org/entity/Q17213616", + cordinates: "Point(135.485778 34.691806)", + locationLabel: "Q17213616", + }, + { + location: "http://www.wikidata.org/entity/Q17210997", + cordinates: "Point(132.45688889 34.40383333)", + locationLabel: "Q17210997", + }, + { + location: "http://www.wikidata.org/entity/Q17192148", + cordinates: "Point(135.406222 34.502)", + locationLabel: "Q17192148", + }, + { + location: "http://www.wikidata.org/entity/Q1702528", + cordinates: "Point(-79.38907 43.667)", + locationLabel: "Q1702528", + }, + { + location: "http://www.wikidata.org/entity/Q16964854", + cordinates: "Point(-123.126 49.2877)", + locationLabel: "Q16964854", + }, + { + location: "http://www.wikidata.org/entity/Q16641588", + cordinates: "Point(-77.02383056 -12.09068333)", + locationLabel: "Q16641588", + }, + { + location: "http://www.wikidata.org/entity/Q16641321", + cordinates: "Point(-95.3574 29.7607)", + locationLabel: "Q16641321", + }, + { + location: "http://www.wikidata.org/entity/Q16623514", + cordinates: "Point(9.140899 45.489734)", + locationLabel: "Q16623514", + }, + { + location: "http://www.wikidata.org/entity/Q16593926", + cordinates: "Point(9.25291833 45.50515889)", + locationLabel: "Q16593926", + }, + { + location: "http://www.wikidata.org/entity/Q16539146", + cordinates: "Point(-84.5087 39.1022)", + locationLabel: "Q16539146", + }, + { + location: "http://www.wikidata.org/entity/Q15875833", + cordinates: "Point(11.9886 57.6972)", + locationLabel: "Q15875833", + }, + { + location: "http://www.wikidata.org/entity/Q12677599", + cordinates: "Point(25.27888889 54.69666667)", + locationLabel: "Q12677599", + }, + { + location: "http://www.wikidata.org/entity/Q12268081", + cordinates: "Point(-2.18086111 43.05308611)", + locationLabel: "Q12268081", + }, + { + location: "http://www.wikidata.org/entity/Q12268077", + cordinates: "Point(-0.1083 38.53552222)", + locationLabel: "Q12268077", + }, + { + location: "http://www.wikidata.org/entity/Q12266132", + cordinates: "Point(-2.98111111 43.29916667)", + locationLabel: "Q12266132", + }, + { + location: "http://www.wikidata.org/entity/Q12265178", + cordinates: "Point(-1.94654167 43.25911944)", + locationLabel: "Q12265178", + }, + { + location: "http://www.wikidata.org/entity/Q12257381", + cordinates: "Point(-2.94638889 43.26055556)", + locationLabel: "Q12257381", + }, + { + location: "http://www.wikidata.org/entity/Q12257379", + cordinates: "Point(-2.945 43.25666667)", + locationLabel: "Q12257379", + }, + { + location: "http://www.wikidata.org/entity/Q12256565", + cordinates: "Point(-2.50039722 43.06084722)", + locationLabel: "Q12256565", + }, + { + location: "http://www.wikidata.org/entity/Q12256339", + cordinates: "Point(-3.00388889 43.29305556)", + locationLabel: "Q12256339", + }, + { + location: "http://www.wikidata.org/entity/Q12255208", + cordinates: "Point(-2.945 43.26694444)", + locationLabel: "Q12255208", + }, + { + location: "http://www.wikidata.org/entity/Q12254614", + cordinates: "Point(-2.98944444 43.29)", + locationLabel: "Q12254614", + }, + { + location: "http://www.wikidata.org/entity/Q12254613", + cordinates: "Point(-2.95418483 43.266331)", + locationLabel: "Q12254613", + }, + { + location: "http://www.wikidata.org/entity/Q12093186", + cordinates: "Point(37.815 48.01805556)", + locationLabel: "Q12093186", + }, + { + location: "http://www.wikidata.org/entity/Q12043581", + cordinates: "Point(16.6052778 49.1747222)", + locationLabel: "Q12043581", + }, + { + location: "http://www.wikidata.org/entity/Q12018699", + cordinates: "Point(16.6035389 49.1741389)", + locationLabel: "Q12018699", + }, + { + location: "http://www.wikidata.org/entity/Q11877104", + cordinates: "Point(18.265833 49.830833)", + locationLabel: "Q11877104", + }, + { + location: "http://www.wikidata.org/entity/Q11837782", + cordinates: "Point(19.137111 50.270972)", + locationLabel: "Q11837782", + }, + { + location: "http://www.wikidata.org/entity/Q11694709", + cordinates: "Point(19.026 50.2558)", + locationLabel: "Q11694709", + }, + { + location: "http://www.wikidata.org/entity/Q11670269", + cordinates: "Point(134.0455 34.352444)", + locationLabel: "Q11670269", + }, + { + location: "http://www.wikidata.org/entity/Q11669756", + cordinates: "Point(139.00327778 36.32188889)", + locationLabel: "Q11669756", + }, + { + location: "http://www.wikidata.org/entity/Q11669713", + cordinates: "Point(139.015194 36.322556)", + locationLabel: "Q11669713", + }, + { + location: "http://www.wikidata.org/entity/Q11660826", + cordinates: "Point(140.326739 38.249922)", + locationLabel: "Q11660826", + }, + { + location: "http://www.wikidata.org/entity/Q11656738", + cordinates: "Point(135.499056 34.703111)", + locationLabel: "Q11656738", + }, + { + location: "http://www.wikidata.org/entity/Q11650413", + cordinates: "Point(136.900814 35.1729)", + locationLabel: "Q11650413", + }, + { + location: "http://www.wikidata.org/entity/Q11639108", + cordinates: "Point(136.886675 35.171172)", + locationLabel: "Q11639108", + }, + { + location: "http://www.wikidata.org/entity/Q11639103", + cordinates: "Point(135.494932 34.696977)", + locationLabel: "Q11639103", + }, + { + location: "http://www.wikidata.org/entity/Q11592996", + cordinates: "Point(135.478613 34.696183)", + locationLabel: "Q11592996", + }, + { + location: "http://www.wikidata.org/entity/Q11566304", + cordinates: "Point(136.901639 35.170139)", + locationLabel: "Q11566304", + }, + { + location: "http://www.wikidata.org/entity/Q11561662", + cordinates: "Point(139.70525 35.65875)", + locationLabel: "Q11561662", + }, + { + location: "http://www.wikidata.org/entity/Q11559990", + cordinates: "Point(139.804417 35.667167)", + locationLabel: "Q11559990", + }, + { + location: "http://www.wikidata.org/entity/Q11559140", + cordinates: "Point(139.395278 35.449722)", + locationLabel: "Q11559140", + }, + { + location: "http://www.wikidata.org/entity/Q11554715", + cordinates: "Point(135.317417 34.408667)", + locationLabel: "Q11554715", + }, + { + location: "http://www.wikidata.org/entity/Q11543271", + cordinates: "Point(139.645278 35.354167)", + locationLabel: "Q11543271", + }, + { + location: "http://www.wikidata.org/entity/Q11542963", + cordinates: "Point(139.61961111 35.46719444)", + locationLabel: "Q11542963", + }, + { + location: "http://www.wikidata.org/entity/Q11538646", + cordinates: "Point(135.498806 34.702278)", + locationLabel: "Q11538646", + }, + { + location: "http://www.wikidata.org/entity/Q11538479", + cordinates: "Point(135.501056 34.698556)", + locationLabel: "Q11538479", + }, + { + location: "http://www.wikidata.org/entity/Q11535616", + cordinates: "Point(137.517325 35.290747)", + locationLabel: "Q11535616", + }, + { + location: "http://www.wikidata.org/entity/Q11528703", + cordinates: "Point(139.802361 35.646833)", + locationLabel: "Q11528703", + }, + { + location: "http://www.wikidata.org/entity/Q11526906", + cordinates: "Point(136.897108 35.176678)", + locationLabel: "Q11526906", + }, + { + location: "http://www.wikidata.org/entity/Q11524973", + cordinates: "Point(139.7631 35.682581)", + locationLabel: "Q11524973", + }, + { + location: "http://www.wikidata.org/entity/Q11524112", + cordinates: "Point(139.75841667 35.65341667)", + locationLabel: "Q11524112", + }, + { + location: "http://www.wikidata.org/entity/Q11524070", + cordinates: "Point(139.815 35.675083)", + locationLabel: "Q11524070", + }, + { + location: "http://www.wikidata.org/entity/Q11521108", + cordinates: "Point(141.34615 43.066819)", + locationLabel: "Q11521108", + }, + { + location: "http://www.wikidata.org/entity/Q11512343", + cordinates: "Point(139.63255556 35.89347222)", + locationLabel: "Q11512343", + }, + { + location: "http://www.wikidata.org/entity/Q11508613", + cordinates: "Point(136.885014 35.166672)", + locationLabel: "Q11508613", + }, + { + location: "http://www.wikidata.org/entity/Q11508320", + cordinates: "Point(139.7725 35.68111111)", + locationLabel: "Q11508320", + }, + { + location: "http://www.wikidata.org/entity/Q11506984", + cordinates: "Point(137.52015 35.29765)", + locationLabel: "Q11506984", + }, + { + location: "http://www.wikidata.org/entity/Q11505216", + cordinates: "Point(137.505753 35.288239)", + locationLabel: "Q11505216", + }, + { + location: "http://www.wikidata.org/entity/Q11504253", + cordinates: "Point(135.144417 34.656306)", + locationLabel: "Q11504253", + }, + { + location: "http://www.wikidata.org/entity/Q11503006", + cordinates: "Point(139.023167 37.902417)", + locationLabel: "Q11503006", + }, + { + location: "http://www.wikidata.org/entity/Q11502082", + cordinates: "Point(139.67375 35.549880555)", + locationLabel: "Q11502082", + }, + { + location: "http://www.wikidata.org/entity/Q11501804", + cordinates: "Point(139.689389 35.696111)", + locationLabel: "Q11501804", + }, + { + location: "http://www.wikidata.org/entity/Q11501803", + cordinates: "Point(139.693139 35.693222)", + locationLabel: "Q11501803", + }, + { + location: "http://www.wikidata.org/entity/Q11501788", + cordinates: "Point(139.693139 35.693222)", + locationLabel: "Q11501788", + }, + { + location: "http://www.wikidata.org/entity/Q11498480", + cordinates: "Point(136.903639 35.173889)", + locationLabel: "Q11498480", + }, + { + location: "http://www.wikidata.org/entity/Q11494142", + cordinates: "Point(136.886408 35.170681)", + locationLabel: "Q11494142", + }, + { + location: "http://www.wikidata.org/entity/Q11478056", + cordinates: "Point(139.716694 35.801111)", + locationLabel: "Q11478056", + }, + { + location: "http://www.wikidata.org/entity/Q11474688", + cordinates: "Point(141.152531 39.7036)", + locationLabel: "Q11474688", + }, + { + location: "http://www.wikidata.org/entity/Q11455828", + cordinates: "Point(139.755219 35.67065)", + locationLabel: "Q11455828", + }, + { + location: "http://www.wikidata.org/entity/Q11443026", + cordinates: "Point(139.749972 35.622083)", + locationLabel: "Q11443026", + }, + { + location: "http://www.wikidata.org/entity/Q11443021", + cordinates: "Point(139.748833 35.622583)", + locationLabel: "Q11443021", + }, + { + location: "http://www.wikidata.org/entity/Q11441579", + cordinates: "Point(135.496694 34.700556)", + locationLabel: "Q11441579", + }, + { + location: "http://www.wikidata.org/entity/Q11441479", + cordinates: "Point(135.534111 34.693778)", + locationLabel: "Q11441479", + }, + { + location: "http://www.wikidata.org/entity/Q11440017", + cordinates: "Point(135.497389 34.693722)", + locationLabel: "Q11440017", + }, + { + location: "http://www.wikidata.org/entity/Q11440003", + cordinates: "Point(135.493028 34.699861)", + locationLabel: "Q11440003", + }, + { + location: "http://www.wikidata.org/entity/Q11437225", + cordinates: "Point(140.57063889 36.31047222)", + locationLabel: "Q11437225", + }, + { + location: "http://www.wikidata.org/entity/Q11432811", + cordinates: "Point(131.612667 33.238194)", + locationLabel: "Q11432811", + }, + { + location: "http://www.wikidata.org/entity/Q11418357", + cordinates: "Point(139.741972 35.626889)", + locationLabel: "Q11418357", + }, + { + location: "http://www.wikidata.org/entity/Q11414980", + cordinates: "Point(136.853417 35.07825)", + locationLabel: "Q11414980", + }, + { + location: "http://www.wikidata.org/entity/Q11409237", + cordinates: "Point(139.360639 35.423222)", + locationLabel: "Q11409237", + }, + { + location: "http://www.wikidata.org/entity/Q11405342", + cordinates: "Point(139.804333 35.750611)", + locationLabel: "Q11405342", + }, + { + location: "http://www.wikidata.org/entity/Q11405293", + cordinates: "Point(139.753634 35.694003)", + locationLabel: "Q11405293", + }, + { + location: "http://www.wikidata.org/entity/Q11400778", + cordinates: "Point(139.75069444 35.69575)", + locationLabel: "Q11400778", + }, + { + location: "http://www.wikidata.org/entity/Q11381770", + cordinates: "Point(137.484408 35.281781)", + locationLabel: "Q11381770", + }, + { + location: "http://www.wikidata.org/entity/Q11381768", + cordinates: "Point(137.551028 35.286275)", + locationLabel: "Q11381768", + }, + { + location: "http://www.wikidata.org/entity/Q11381745", + cordinates: "Point(139.68355556 35.69722222)", + locationLabel: "Q11381745", + }, + { + location: "http://www.wikidata.org/entity/Q11381740", + cordinates: "Point(139.690472 35.696028)", + locationLabel: "Q11381740", + }, + { + location: "http://www.wikidata.org/entity/Q11381739", + cordinates: "Point(139.70775 35.67394444)", + locationLabel: "Q11381739", + }, + { + location: "http://www.wikidata.org/entity/Q11378242", + cordinates: "Point(139.703194 35.649028)", + locationLabel: "Q11378242", + }, + { + location: "http://www.wikidata.org/entity/Q11367932", + cordinates: "Point(136.898422 35.173514)", + locationLabel: "Q11367932", + }, + { + location: "http://www.wikidata.org/entity/Q11367540", + cordinates: "Point(139.682146 35.69674)", + locationLabel: "Q11367540", + }, + { + location: "http://www.wikidata.org/entity/Q11367346", + cordinates: "Point(136.915294 35.158597)", + locationLabel: "Q11367346", + }, + { + location: "http://www.wikidata.org/entity/Q11366823", + cordinates: "Point(139.699056 35.643583)", + locationLabel: "Q11366823", + }, + { + location: "http://www.wikidata.org/entity/Q11362862", + cordinates: "Point(135.498083 34.693806)", + locationLabel: "Q11362862", + }, + { + location: "http://www.wikidata.org/entity/Q11362860", + cordinates: "Point(135.4842 34.687)", + locationLabel: "Q11362860", + }, + { + location: "http://www.wikidata.org/entity/Q11362057", + cordinates: "Point(139.63291 35.62673)", + locationLabel: "Q11362057", + }, + { + location: "http://www.wikidata.org/entity/Q11357163", + cordinates: "Point(139.76416667 35.67868611)", + locationLabel: "Q11357163", + }, + { + location: "http://www.wikidata.org/entity/Q11354237", + cordinates: "Point(136.893528 35.172306)", + locationLabel: "Q11354237", + }, + { + location: "http://www.wikidata.org/entity/Q11352153", + cordinates: "Point(130.925694 33.94975)", + locationLabel: "Q11352153", + }, + { + location: "http://www.wikidata.org/entity/Q11351722", + cordinates: "Point(139.75163889 35.62772222)", + locationLabel: "Q11351722", + }, + { + location: "http://www.wikidata.org/entity/Q11346688", + cordinates: "Point(135.487738 34.696918)", + locationLabel: "Q11346688", + }, + { + location: "http://www.wikidata.org/entity/Q11346306", + cordinates: "Point(137.544689 35.293572)", + locationLabel: "Q11346306", + }, + { + location: "http://www.wikidata.org/entity/Q11346305", + cordinates: "Point(140.866972 38.278361)", + locationLabel: "Q11346305", + }, + { + location: "http://www.wikidata.org/entity/Q11346304", + cordinates: "Point(140.863722 38.257944)", + locationLabel: "Q11346304", + }, + { + location: "http://www.wikidata.org/entity/Q11342617", + cordinates: "Point(139.694611 35.531361)", + locationLabel: "Q11342617", + }, + { + location: "http://www.wikidata.org/entity/Q11342264", + cordinates: "Point(140.884139 38.254889)", + locationLabel: "Q11342264", + }, + { + location: "http://www.wikidata.org/entity/Q11340123", + cordinates: "Point(136.919889 35.171417)", + locationLabel: "Q11340123", + }, + { + location: "http://www.wikidata.org/entity/Q11335945", + cordinates: "Point(141.301944 43.081944)", + locationLabel: "Q11335945", + }, + { + location: "http://www.wikidata.org/entity/Q11331537", + cordinates: "Point(135.145667 34.656833)", + locationLabel: "Q11331537", + }, + { + location: "http://www.wikidata.org/entity/Q11329791", + cordinates: "Point(135.48925 34.688056)", + locationLabel: "Q11329791", + }, + { + location: "http://www.wikidata.org/entity/Q11328790", + cordinates: "Point(135.490479 34.697337)", + locationLabel: "Q11328790", + }, + { + location: "http://www.wikidata.org/entity/Q11322150", + cordinates: "Point(135.504167 34.690944)", + locationLabel: "Q11322150", + }, + { + location: "http://www.wikidata.org/entity/Q11322149", + cordinates: "Point(139.776389 35.627861)", + locationLabel: "Q11322149", + }, + { + location: "http://www.wikidata.org/entity/Q11322067", + cordinates: "Point(139.787833 35.684833)", + locationLabel: "Q11322067", + }, + { + location: "http://www.wikidata.org/entity/Q11316020", + cordinates: "Point(136.90125 35.17375)", + locationLabel: "Q11316020", + }, + { + location: "http://www.wikidata.org/entity/Q11315367", + cordinates: "Point(140.882139 38.263722)", + locationLabel: "Q11315367", + }, + { + location: "http://www.wikidata.org/entity/Q11315184", + cordinates: "Point(139.7284 35.617275)", + locationLabel: "Q11315184", + }, + { + location: "http://www.wikidata.org/entity/Q11312829", + cordinates: "Point(139.749611 35.622917)", + locationLabel: "Q11312829", + }, + { + location: "http://www.wikidata.org/entity/Q11308867", + cordinates: "Point(139.6185 35.90530556)", + locationLabel: "Q11308867", + }, + { + location: "http://www.wikidata.org/entity/Q11307311", + cordinates: "Point(136.854469 35.073939)", + locationLabel: "Q11307311", + }, + { + location: "http://www.wikidata.org/entity/Q11307297", + cordinates: "Point(135.478136 34.69752)", + locationLabel: "Q11307297", + }, + { + location: "http://www.wikidata.org/entity/Q11307294", + cordinates: "Point(140.879444 38.254944)", + locationLabel: "Q11307294", + }, + { + location: "http://www.wikidata.org/entity/Q11307293", + cordinates: "Point(140.882222 38.264333)", + locationLabel: "Q11307293", + }, + { + location: "http://www.wikidata.org/entity/Q11307291", + cordinates: "Point(135.517444 34.643833)", + locationLabel: "Q11307291", + }, + { + location: "http://www.wikidata.org/entity/Q11306834", + cordinates: "Point(135.493972 34.810556)", + locationLabel: "Q11306834", + }, + { + location: "http://www.wikidata.org/entity/Q11306788", + cordinates: "Point(141.342225 43.059861)", + locationLabel: "Q11306788", + }, + { + location: "http://www.wikidata.org/entity/Q11306787", + cordinates: "Point(136.909878 35.135033)", + locationLabel: "Q11306787", + }, + { + location: "http://www.wikidata.org/entity/Q11306562", + cordinates: "Point(136.936672 35.184008)", + locationLabel: "Q11306562", + }, + { + location: "http://www.wikidata.org/entity/Q11306493", + cordinates: "Point(139.822222 35.688056)", + locationLabel: "Q11306493", + }, + { + location: "http://www.wikidata.org/entity/Q11304293", + cordinates: "Point(138.39083333 34.97102778)", + locationLabel: "Q11304293", + }, + { + location: "http://www.wikidata.org/entity/Q11301967", + cordinates: "Point(138.569806 35.662736)", + locationLabel: "Q11301967", + }, + { + location: "http://www.wikidata.org/entity/Q11301966", + cordinates: "Point(137.383886 34.762153)", + locationLabel: "Q11301966", + }, + { + location: "http://www.wikidata.org/entity/Q11301959", + cordinates: "Point(139.510897 35.873178)", + locationLabel: "Q11301959", + }, + { + location: "http://www.wikidata.org/entity/Q11300351", + cordinates: "Point(136.981528 35.163167)", + locationLabel: "Q11300351", + }, + { + location: "http://www.wikidata.org/entity/Q11299774", + cordinates: "Point(136.87866667 36.65666667)", + locationLabel: "Q11299774", + }, + { + location: "http://www.wikidata.org/entity/Q11294340", + cordinates: "Point(139.75080556 35.64780556)", + locationLabel: "Q11294340", + }, + { + location: "http://www.wikidata.org/entity/Q11293148", + cordinates: "Point(135.459722 34.669722)", + locationLabel: "Q11293148", + }, + { + location: "http://www.wikidata.org/entity/Q11285728", + cordinates: "Point(136.988944 35.161694)", + locationLabel: "Q11285728", + }, + { + location: "http://www.wikidata.org/entity/Q11285706", + cordinates: "Point(136.918306 35.160194)", + locationLabel: "Q11285706", + }, + { + location: "http://www.wikidata.org/entity/Q11283864", + cordinates: "Point(140.88197222 38.25436111)", + locationLabel: "Q11283864", + }, + { + location: "http://www.wikidata.org/entity/Q11282902", + cordinates: "Point(136.92875 35.169056)", + locationLabel: "Q11282902", + }, + { + location: "http://www.wikidata.org/entity/Q11282870", + cordinates: "Point(135.49645 34.695262)", + locationLabel: "Q11282870", + }, + { + location: "http://www.wikidata.org/entity/Q11280876", + cordinates: "Point(139.59619444 35.40736111)", + locationLabel: "Q11280876", + }, + { + location: "http://www.wikidata.org/entity/Q11279144", + cordinates: "Point(139.633222 35.457583)", + locationLabel: "Q11279144", + }, + { + location: "http://www.wikidata.org/entity/Q11267524", + cordinates: "Point(139.65908333 35.85866667)", + locationLabel: "Q11267524", + }, + { + location: "http://www.wikidata.org/entity/Q11260116", + cordinates: "Point(140.92 36.939389)", + locationLabel: "Q11260116", + }, + { + location: "http://www.wikidata.org/entity/Q11251121", + cordinates: "Point(135.03444444 34.63361111)", + locationLabel: "Q11251121", + }, + { + location: "http://www.wikidata.org/entity/Q11236088", + cordinates: "Point(136.909625 35.176119)", + locationLabel: "Q11236088", + }, + { + location: "http://www.wikidata.org/entity/Q11236080", + cordinates: "Point(135.491051 34.695398)", + locationLabel: "Q11236080", + }, + { + location: "http://www.wikidata.org/entity/Q11236060", + cordinates: "Point(135.492089 34.694772)", + locationLabel: "Q11236060", + }, + { + location: "http://www.wikidata.org/entity/Q11234651", + cordinates: "Point(139.66511111 35.57377778)", + locationLabel: "Q11234651", + }, + { + location: "http://www.wikidata.org/entity/Q11226207", + cordinates: "Point(139.69913889 35.68594444)", + locationLabel: "Q11226207", + }, + { + location: "http://www.wikidata.org/entity/Q11225412", + cordinates: "Point(136.904881 35.173172)", + locationLabel: "Q11225412", + }, + { + location: "http://www.wikidata.org/entity/Q11200898", + cordinates: "Point(136.901972 35.149528)", + locationLabel: "Q11200898", + }, + { + location: "http://www.wikidata.org/entity/Q11188619", + cordinates: "Point(132.39628889 34.44631944)", + locationLabel: "Q11188619", + }, + { + location: "http://www.wikidata.org/entity/Q11148803", + cordinates: "Point(120.15857 30.27969)", + locationLabel: "Q11148803", + }, + { + location: "http://www.wikidata.org/entity/Q11092339", + cordinates: "Point(114.168086 22.318153)", + locationLabel: "Q11092339", + }, + { + location: "http://www.wikidata.org/entity/Q11092339", + cordinates: "Point(114.168056 22.318056)", + locationLabel: "Q11092339", + }, + { + location: "http://www.wikidata.org/entity/Q10921985", + cordinates: "Point(126.506426 45.798458)", + locationLabel: "Q10921985", + }, + { + location: "http://www.wikidata.org/entity/Q10875816", + cordinates: "Point(120.6286 31.2677)", + locationLabel: "Q10875816", + }, + { + location: "http://www.wikidata.org/entity/Q10860890", + cordinates: "Point(34.80453056 32.08511111)", + locationLabel: "Q10860890", + }, + { + location: "http://www.wikidata.org/entity/Q106588441", + cordinates: "Point(135.542555555 34.523388888)", + locationLabel: "Q106588441", + }, + { + location: "http://www.wikidata.org/entity/Q106436675", + cordinates: "Point(-157.84916899 21.29198267)", + locationLabel: "Q106436675", + }, + { + location: "http://www.wikidata.org/entity/Q106283589", + cordinates: "Point(21.00957 52.23519)", + locationLabel: "Q106283589", + }, + { + location: "http://www.wikidata.org/entity/Q105455835", + cordinates: "Point(-38.502869 -13.002344)", + locationLabel: "Q105455835", + height: "121", + numberOfElevators: "7", + }, + { + location: "http://www.wikidata.org/entity/Q105452906", + cordinates: "Point(-38.488516666 -13.001716666)", + locationLabel: "Q105452906", + height: "125", + numberOfElevators: "3", + }, + { + location: "http://www.wikidata.org/entity/Q105452746", + cordinates: "Point(-38.523372222 -12.988183333)", + locationLabel: "Q105452746", + }, + { + location: "http://www.wikidata.org/entity/Q10412486", + cordinates: "Point(36.81638889 -1.28166667)", + locationLabel: "Q10412486", + }, + { + location: "http://www.wikidata.org/entity/Q103964953", + cordinates: "Point(139.773055555 35.676388888)", + locationLabel: "Q103964953", + }, + { + location: "http://www.wikidata.org/entity/Q10323861", + cordinates: "Point(-38.525371 -12.992633)", + locationLabel: "Q10323861", + height: "154", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q10323861", + cordinates: "Point(-38.525371 -12.992633)", + locationLabel: "Q10323861", + height: "154.45", + numberOfElevators: "4", + }, + { + location: "http://www.wikidata.org/entity/Q102772751", + cordinates: "Point(-7.864923974 42.345015186)", + locationLabel: "Q102772751", + }, + { + location: "http://www.wikidata.org/entity/Q102045446", + cordinates: "Point(20.97088 52.22982)", + locationLabel: "Q102045446", + }, +]; + +module.exports = skyscrapers;