diff --git a/.flake8 b/.flake8 new file mode 100644 index 000000000..a966ddb9b --- /dev/null +++ b/.flake8 @@ -0,0 +1,9 @@ +[flake8] +ignore = D203 W504 W503 +max-line-length = 120 +exclude = + .git + .tox + build + dist + env \ No newline at end of file diff --git a/amp-app.xpr b/amp-app.xpr index 1b9265e58..3d377edc3 100644 --- a/amp-app.xpr +++ b/amp-app.xpr @@ -5,6 +5,20 @@ + + additional.frameworks.directories + + ${pd}/framework + + + + frameworks.directory.url.with.editor.variables + file:/home/daniel/Documents/ERC-TibSchol/TEI-curation/framework + + + key.editor.document.type.custom.locations.option.pane + true + key.editor.format.xml.option.pane true @@ -34,11 +48,11 @@ - html/css/style.css + data/editions/ - search + editions @@ -54,11 +68,11 @@ - data/editions/ + html/css/style.css - editions + search @@ -526,6 +540,89 @@ + + + + + + cv + + + + + + + + + pdf + + + Apache FOP + + + + + + ${pdu}/xslt/computer-vision.xsl + + + ${currentFileURL} + + + false + + + false + + + XSL + + + true + + + false + + + ${pd}/html/cv.html + + + false + + + + + + false + + + false + + + false + + + false + + + false + + + true + + + + + + + + + Saxon-PE + + + + + @@ -650,7 +747,7 @@ true - true + false ${pd}/html/${cfn}.html diff --git a/build_app/ant/copy-task.xml b/build_app/ant/copy-task.xml index 021ff887c..6eadfd95b 100644 --- a/build_app/ant/copy-task.xml +++ b/build_app/ant/copy-task.xml @@ -7,7 +7,7 @@ --> - + @@ -19,10 +19,10 @@ --> - + diff --git a/build_app/python/convert2jp2.py b/build_app/python/convert2jp2.py index 3186b6946..599bdfa50 100644 --- a/build_app/python/convert2jp2.py +++ b/build_app/python/convert2jp2.py @@ -1,4 +1,5 @@ -import os, glob +import os +import glob from PIL import Image savepath = "./data/images/update/" @@ -10,7 +11,6 @@ outfile = f + ".jpg" outfile = outfile.split("/")[-1] outfile = f"{savepath}{outfile}" - print(outfile) if infile != outfile: try: diff --git a/build_app/python/make_ts_index.py b/build_app/python/make_ts_index.py index 36e21ac59..a0fa10249 100644 --- a/build_app/python/make_ts_index.py +++ b/build_app/python/make_ts_index.py @@ -29,11 +29,11 @@ }, { 'name': 'title', - 'type': 'string' + 'type': 'string', }, { 'name': 'full_text', - 'type': 'string' + 'type': 'string', }, { 'name': 'year', @@ -70,12 +70,13 @@ client.collections.create(current_schema) + def get_entities(ent_type, ent_node, ent_name): entities = [] e_path = f'.//tei:rs[@type="{ent_type}"]/@ref' for p in body: ent = p.xpath(e_path, namespaces={'tei': "http://www.tei-c.org/ns/1.0"}) - ref = [ref.replace("#", "") for e in ent if len(ent) > 0 for ref in e.split()] + ref = [ref.replace("#", "") for e in ent if len(ent) > 0 for ref in e.split()] for r in ref: p_path = f'.//tei:{ent_node}[@xml:id="{r}"]//tei:{ent_name}[1]' en = doc.any_xpath(p_path) @@ -88,14 +89,16 @@ def get_entities(ent_type, ent_node, ent_name): f.write(f"{r} in {record['id']}\n") return [ent for ent in sorted(set(entities))] + records = [] cfts_records = [] for x in tqdm(files, total=len(files)): - doc = TeiReader(xml=x,xsl='./xslt/preprocess_typesense.xsl') + doc = TeiReader(xml=x, xsl='./xslt/preprocess_typesense.xsl') facs = doc.any_xpath('.//tei:body/tei:div/tei:pb/@facs') pages = 0 for v in facs: - p_group = f".//tei:body/tei:div/tei:p[preceding-sibling::tei:pb[1]/@facs='{v}']|.//tei:body/tei:div/tei:lg[preceding-sibling::tei:pb[1]/@facs='{v}']" + p_group = f""".//tei:body/tei:div/tei:p[preceding-sibling::tei:pb[1]/@facs='{v}']| + .//tei:body/tei:div/tei:lg[preceding-sibling::tei:pb[1]/@facs='{v}']""" body = doc.any_xpath(p_group) pages += 1 cfts_record = { @@ -160,4 +163,4 @@ def get_entities(ent_type, ent_node, ent_name): make_index = CFTS_COLLECTION.documents.import_(cfts_records, {'action': 'upsert'}) print(make_index) -print('done with cfts-index amp') \ No newline at end of file +print('done with cfts-index amp') diff --git a/build_app/python/make_ts_index_local.py b/build_app/python/make_ts_index_local.py index c3880a795..daddad871 100644 --- a/build_app/python/make_ts_index_local.py +++ b/build_app/python/make_ts_index_local.py @@ -1,9 +1,9 @@ import glob import os -import lxml.etree as ET -from typesense import Client -from typesense.api_call import ObjectNotFound +# import lxml.etree as ET +# from typesense import Client +# from typesense.api_call import ObjectNotFound from acdh_tei_pyutils.tei import TeiReader from tqdm import tqdm @@ -78,12 +78,13 @@ # client.collections.create(current_schema) + def get_entities(ent_type, ent_node, ent_name): entities = [] e_path = f'.//tei:rs[@type="{ent_type}"]/@ref' for p in body: ent = p.xpath(e_path, namespaces={'tei': "http://www.tei-c.org/ns/1.0"}) - ref = [ref.replace("#", "") for e in ent if len(ent) > 0 for ref in e.split()] + ref = [ref.replace("#", "") for e in ent if len(ent) > 0 for ref in e.split()] for r in ref: p_path = f'.//tei:{ent_node}[@xml:id="{r}"]//tei:{ent_name}[1]' en = doc.any_xpath(p_path) @@ -96,13 +97,15 @@ def get_entities(ent_type, ent_node, ent_name): f.write(f"{r} in {record['id']}\n") return [ent for ent in sorted(set(entities))] + records = [] for x in tqdm(files, total=len(files)): - doc = TeiReader(xml=x,xsl='./xslt/preprocess_typesense.xsl') + doc = TeiReader(xml=x, xsl='./xslt/preprocess_typesense.xsl') facs = doc.any_xpath('.//tei:body/tei:div/tei:pb/@facs') pages = 0 for v in facs: - p_group = f".//tei:body/tei:div/tei:p[preceding-sibling::tei:pb[1]/@facs='{v}']|.//tei:body/tei:div/tei:lg[preceding-sibling::tei:pb[1]/@facs='{v}']" + p_group = f""".//tei:body/tei:div/tei:p[preceding-sibling::tei:pb[1]/@facs='{v}']| + .//tei:body/tei:div/tei:lg[preceding-sibling::tei:pb[1]/@facs='{v}']""" body = doc.any_xpath(p_group) pages += 1 record = {} diff --git a/build_app/shell/fetch_data.sh b/build_app/shell/fetch_data.sh index 5615f2597..a9f318f3d 100755 --- a/build_app/shell/fetch_data.sh +++ b/build_app/shell/fetch_data.sh @@ -8,14 +8,4 @@ mv amp-data-main/data ./data rm -rf amp-data-main rm main.zip -rm -rf ./data/tmp - -# rm dev.zip -# rm -rf ./data -# wget https://github.com/Auden-Musulin-Papers/amp-data/archive/refs/heads/dev.zip -# unzip dev -# mv amp-data-dev/data ./data -# rm -rf amp-data-dev -# rm dev.zip - -# rm -rf ./data/tmp +rm -rf ./data/tmp \ No newline at end of file diff --git a/html/css/micro-editor.css b/html/css/micro-editor.css index 44af03a73..9b57be61f 100644 --- a/html/css/micro-editor.css +++ b/html/css/micro-editor.css @@ -134,6 +134,10 @@ input:checked + .i-slider:before { background-color: #c9ffcf; } +.au-brown { + background-color: #b59890; +} + .i-slider.pink { background-color: #ffa7f7; } @@ -158,7 +162,7 @@ input:checked + .i-slider:before { font-weight: bold; } -.org { +.orgs { font-weight: bold; } @@ -174,6 +178,13 @@ input:checked + .i-slider:before { font-weight: bold; } +.int::after { + content: url("../images/icons/chat-left-dots.svg"); + background-color: #b59890; + border-radius: 0.5rem; + padding: 0.05em; +} + .wrk::before { content: url("../images/icons/book.svg"); background-color: #a4f1fd; @@ -181,7 +192,7 @@ input:checked + .i-slider:before { padding: 0.05em; } -.org::before { +.orgs::before { content: url("../images/icons/building.svg"); background-color: #daa4fd; border-radius: 0.5rem; @@ -218,6 +229,56 @@ input:checked + .i-slider:before { left: 3.5em; } +.editor-btns { + border-radius: .25rem; +} + +.editor-btns li { + display: inline; + max-width: 50px; + color: #fff; +} + +.editor-btns-wrapper { + padding: .1em .5em !important; + margin: 0 !important; +} + + + +.editor-back-link { + padding: .1em .5em !important; + margin: 0 !important; +} + +.btn-back-link { + color: #fff; + text-align: left; +} + +.btn-back-link:hover { + color: #b59890; +} + +.editor-options { + display: flex; + border-radius: .25rem .25rem 0 0; + background-color: #615a60; + justify-content: space-between; +} + +.img-viewer-btn { + cursor: pointer; +} + +.img-viewer-btn.active { + color: #b59890 !important; +} + +.window-screen-btn.active { + color: #b59890 !important; +} + #clear-link { padding: 0.5em 1em; } @@ -252,17 +313,29 @@ input:checked + .i-slider:before { /* font styles and sizes */ -.times-new-roman { +.times-new-roman, .handwritten { font-family: "Times New Roman", serif !important; } -.courier-new { +.courier-new, .typed { font-family: "Courier New", monospace !important; } -.arial-serif { +.arial-serif, .printed { font-family: "Arial", serif !important; } +.handwritten { + font-size: 22px; +} + +.typed { + font-size: 18px; +} + +.printed { + font-size: 18px; +} + .font-size-26 { font-size: 26px !important; } @@ -279,18 +352,75 @@ input:checked + .i-slider:before { font-size: 14px !important; } +.font-dropdown { + border-radius: .25rem; + font-size: 13px; +} + +#aot-navbarNavDropdown { + text-align: center !important; +} + #aot-navbarNavDropdown li { width: 100% !important; border: none !important; - padding: 0.5em 0.5em !important; + padding: .3em !important; +} + +.edition-doc-search { + font-size: 13px; +} + +.edition-doc-search input { + border-radius: .25rem; +} + +annotation-slider { + display: flex; + justify-content: space-between; +} + +annotation-slider label { + margin-left: 2em; +} + +.aot-list { + margin: 0 auto; + display: inline-grid; + width: 25%; + justify-content: space-evenly; } .switch input { visibility: hidden; } -@media (max-width: 768px) { - #aot-menu .dropdown .dropdown-menu li:nth-child(-n + 2) { - display: none !important; - } +/* entities */ +.entity, .ent { + cursor: pointer; +} + +.entity-table { + margin: 4em auto; +} + +.entity-table tbody tr td, +.entity-table tbody tr th { + border: none; +} + +.entity-table tbody tr th { + border-right: 1px solid lightgrey; +} + +/* Medium devices (tablets, 768px and up) */ +@media (max-width: 992px) { + .aot-list { + margin: 0 auto; + display: inline-grid; + width: 100%; + justify-content: space-evenly; + padding: 1em 0; + border-bottom: 2px dashed lightgrey; + } } \ No newline at end of file diff --git a/html/css/style.css b/html/css/style.css index 68509ee05..39fc1aff3 100644 --- a/html/css/style.css +++ b/html/css/style.css @@ -37,57 +37,80 @@ body { }*/ #wrapper-footer-full { - display: flex; - align-items: center; - min-height: 97vh; + display: flex; + align-items: center; + min-height: 97vh; } .container-fluid { - min-height: 93vh; + min-height: 93vh; } .padding-vh-12 { - padding: 12vh 0; + padding: 12vh 0; } .bg-white { - background-color: #fff; + background-color: #fff; } .w100 { - max-width: 100% !important; + max-width: 100% !important; } .mb-0 { - margin-bottom: 0; + margin-bottom: 0; +} + +.corresp-desc tr th, +.corresp-desc tr td { + border: none; +} + +.corresp-desc tr td { + max-width: 400px; +} + +.edition-md tr th, +.edition-md tr td { + border: none; +} + +.edition-md tr td { + max-width: 550px; } nav { - transition: .2s; + transition: 0.2s; } nav.hiddenNav { - transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } .slider { z-index: 999; } +.inline { + display: inline; +} + +.block { + display: block; +} + .intro_column { display: flex; vertical-align: middle; - margin: 0 auto; + margin: 2em auto; align-items: center; -} - -.intro_text { - padding: 0 15%; - margin: 0 auto; + max-width: 1200px; + min-height: 42vh; } .margin-top { - margin-top: -7.5em; + margin-top: -7.5em; } .intro_img { @@ -95,67 +118,62 @@ nav.hiddenNav { padding: 0.5em; vertical-align: middle; align-items: center; + min-height: 45vh; + max-width: 1500px; + /*background-color: rgba(97, 90, 96, .8); border-radius: .45rem;*/ } -.index-card { - position: relative; - overflow: hidden; - text-align: center; - } -.index-card .fadedbox { - -webkit-transition: all 300ms ease-out; - -moz-transition: all 300ms ease-out; - -o-transition: all 300ms ease-out; - -ms-transition: all 300ms ease-out; - transition: all 300ms ease-out; - opacity: 0; - height: 0; - padding: 0; - margin: 0; - align-items: center; - vertical-align: middle; -} -.index-card:hover .fadedbox { - opacity: 0.8; -} -.index-card .text { - -webkit-transition: all 300ms ease-out; - -moz-transition: all 300ms ease-out; - -o-transition: all 300ms ease-out; - -ms-transition: all 300ms ease-out; - transition: all 300ms ease-out; - transform: translateY(-75%); - -webkit-transform: translateY(-75%); - padding: 0 .7rem; - height: 512px; - overflow: visible; - align-items: center; - display: flex; - justify-content: center; - flex-direction: column; -} -.index-card .title { - opacity: 0; - transition-delay: 0.2s; - transition-duration: 0.3s; +.index-tile { + display: flex; + position: relative; + overflow: hidden; + text-align: center; + align-items: center; + flex-direction: column; + vertical-align: middle; + margin-top: 0 !important; + border-radius: 0.35rem; + background-color: rgba(246, 246, 246, 1); + border-radius: 0.35rem; + min-height: 280px; + transition: transform 0.2s; + border: 1px solid #f1f1f1; + box-shadow: 2px 2px 4.5px 0 rgba(0, 0, 0, 0.1); } -.index-card:hover .title, -.index-card:focus .title { - opacity: 1; + +.index-tile:hover { + transform: scale(1.02); } +.index-tile-footer { + padding: 0 1em; +} -.index-card:hover .card-header img { - -webkit-transition: all 300ms ease-out; - -moz-transition: all 300ms ease-out; - -o-transition: all 300ms ease-out; - -ms-transition: all 300ms ease-out; - transition: all 300ms ease-out; - opacity: 0; +.index-tile-header img { + max-width: 80%; + margin: 0 auto; } +.grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + grid-template-rows: 1fr; + grid-gap: 40px; + padding: 0 10%; +} +.item { + display: flex; + justify-content: center; +} +.item:before { + content: ""; + display: block; + height: 0; + width: 0; + padding-bottom: calc(4 / 16 * 100%); +} #notification { background-color: #f6fa29; @@ -229,11 +247,16 @@ nav.hiddenNav { .index-card .card-body { padding: 0; - +} + +.index-card .card-footer { + width: 100%; } .intro_img .row { align-items: center; + display: flex; + justify-content: space-evenly; } /*.footnote_anchor { @@ -303,6 +326,12 @@ div.dataTables_wrapper div.dataTables_filter input { color: #444; } +/*.segment{ + position: absolute; + margin-left: -2em; + margin-top: 3em; +}*/ + .linenumbersTransparent { color: transparent; } @@ -320,6 +349,17 @@ ul { margin: 0; } +.img-divider { + text-align: center; + vertical-align: top; + width: 4em; + background-color: #615a60; +} + +.img-divider div { + padding-top: 0.5em; +} + .numbered > li { display: block; list-style: none !important; @@ -333,13 +373,13 @@ ul { } .bulleted { - margin: .5em; - padding: .3em; + margin: 0.5em; + padding: 0.3em; } .bulleted li { - list-style: circle !important; - list-style-type: circle !important; + list-style: circle !important; + list-style-type: circle !important; } #show-text { @@ -505,10 +545,6 @@ td { padding-right: 2em; } -#title-nav { - border-bottom: 1px dashed #dedede; -} - button.close { color: #fff; } @@ -539,6 +575,19 @@ button.close { height: 60px; } +#commentary { + display: flex; +} + +.interpComment { + margin: 1em 0.5em; + width: 25%; + padding: 0.2em; + background-color: #fff; + border-radius: 0.25rem; + box-shadow: 4px 4px 9px 0 rgba(0, 0, 0, 0.1); +} + #timeline-heading { margin: 0 auto; position: relative; @@ -684,6 +733,10 @@ button.close { transform: scale(1.05); } +input[type="checkbox"] { + accent-color: #b59890; +} + /* leaflet */ .leaflet-maps { @@ -710,6 +763,16 @@ button.close { color: #fff; } +.accordion-button:not(.collapsed) { + background-color: transparent !important; + color: #b59890; +} + +.accordion-button:focus { + border-color: #b59890 !important; + box-shadow: none !important; +} + .btn-round a { color: #615a60; } @@ -727,13 +790,14 @@ a { color: #615a60; } -p { +p, +.p-like { display: block; + margin-bottom: 1em; } -.card-header > p, -.card-body > p { - /*padding: 1em;*/ +.p-like { + margin-top: 1em; } h4 { @@ -1082,21 +1146,6 @@ fieldset.ssFieldset > span > input { #twitter-logo:hover { transform: scale(1.05); } -/* -.grid { - margin-top: 1em; -} -.grid-item, -.grid-sizer { - width: 31.5%; -} -.grid-item { - float: left; - margin: 0.5em; - background: #fff; - height: auto; -} -*/ /* display transcripts text */ @@ -1104,6 +1153,7 @@ fieldset.ssFieldset > span > input { padding: 0 !important; border-top: 3px solid #b59890; border-bottom: 3px solid #b59890; + min-height: 1000px; } div.text-re { @@ -1215,8 +1265,9 @@ div.text-re div.card-body { z-index: 99; } -.pagination-menu li[type~="cv_sheet"], .pagination-menu li[type~="cv_sheet"] a { - text-decoration: underline; +.pagination-menu li[type~="cv_sheet"], +.pagination-menu li[type~="cv_sheet"] a { + text-decoration: underline; } .options-menu2 { @@ -1246,7 +1297,7 @@ label { } .fade-all { - display: none; + display: none !important; } td > label { @@ -1281,8 +1332,6 @@ td > label { opacity: 1; } - - .reading-view-font { font-family: "Times New Roman", serif !important; font-size: 22px !important; @@ -1341,12 +1390,15 @@ td > label { .badge-en.wrks:hover { background-color: #a4f1fd; } -.badge-en.orgs:hover { +.badge-en.orges:hover { background-color: #daa4fd; } .badge-en.eves:hover { background-color: #dbff8d; } +.badge-en.intes:hover { + background-color: #615a60; +} .badge-en > .number { background-color: #615a60; @@ -1441,22 +1493,12 @@ td > label { margin: 0 auto; } -/* entities */ -.entity, .ent { - cursor: pointer; -} - -.entity-table { - margin: 4em auto; -} - -.entity-table tbody tr td, -.entity-table tbody tr th { - border: none; +.comment-header { + text-align: right; } -.entity-table tbody tr th { - border-right: 1px solid lightgrey; +.comment-body { + padding: 1em; } .index-table { @@ -1489,81 +1531,83 @@ td > label { /* cookie consent container */ #cookie-overlay { - background-color: rgba(51, 51, 51, 0.9); - position: fixed; - bottom: 0; - z-index: 99; - width: 100%; - color: #FFFFFF; - padding: 15px 10px; - text-align: center; - display: none; - height: 100%; + background-color: rgba(51, 51, 51, 0.9); + position: fixed; + bottom: 0; + z-index: 99; + width: 100%; + color: #ffffff; + padding: 15px 10px; + text-align: center; + display: none; + height: 100%; } #cookie-overlay .container { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - border: 3px solid white; - padding: 10px; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + border: 3px solid white; + padding: 10px; } .cookie-message { - display: inline-block; + display: inline-block; } .cookie-message a:hover { - color: #88DBDF; + color: #88dbdf; } -.cookie-accept-btn, .cookie-accept-necessary-btn { - display: inline-block; - background-color: #ffd534; - color: #333; - padding: 5px 30px; - border-radius: 10px; - font-weight: 600; - cursor: pointer; - margin: 0 0 0 20px; +.cookie-accept-btn, +.cookie-accept-necessary-btn { + display: inline-block; + background-color: #ffd534; + color: #333; + padding: 5px 30px; + border-radius: 10px; + font-weight: 600; + cursor: pointer; + margin: 0 0 0 20px; } -.cookie-accept-btn, .cookie-accept-necessary-btn { - display: inline-block; - background-color: #ffd534; - color: #333; - padding: 5px 30px; - border-radius: 10px; - font-weight: 600; - cursor: pointer; - margin: 10px 10px 10px 20px; - transition: background-color ease .2s; +.cookie-accept-btn, +.cookie-accept-necessary-btn { + display: inline-block; + background-color: #ffd534; + color: #333; + padding: 5px 30px; + border-radius: 10px; + font-weight: 600; + cursor: pointer; + margin: 10px 10px 10px 20px; + transition: background-color ease 0.2s; } .cookie-accept-btn:hover, -.cookie-accept-necessary-btn:hover{ - background-color: #d2b33d; +.cookie-accept-necessary-btn:hover { + background-color: #d2b33d; } .minus-mb-35 { - margin-bottom: -35%; + margin-bottom: -35%; } .navbar-search-item { - vertical-align: middle; - display: contents; + vertical-align: middle; + display: contents; } .navbar-search-icon { - position: relative!Important; - left: 0.25rem !Important; - top: -.2rem !Important; + position: relative !important; + left: 0.25rem !important; + top: -0.2rem !important; } .cv-link { - text-decoration: underline; - color: #615a60; + text-decoration: underline; + color: #615a60; } /*media queries for responsive design on smartphones*/ @@ -1633,12 +1677,12 @@ td > label { .text-re { max-width: 100% !important; } - .navbar-search-icon { - opacity: 0; - } - .form-inline { - justify-content: center; - } + .navbar-search-icon { + opacity: 0; + } + .form-inline { + justify-content: center; + } /* #aot-navbarNavDropdown { display: block; @@ -1647,34 +1691,34 @@ td > label { display: none; } */ - #viewerContainer_div { - width: 300px !Important; - } + #viewerContainer_div { + width: 300px !important; + } } /* Medium devices (tablets, 768px and up) */ @media (max-width: 768px) { - .footer-widget > a img { - max-width: 25% !important; - } - .textwidget > a img { - max-width: 50% !important; - } - .container-fluid { - min-height: auto; - } - .navbar .container { - height: auto; - } - - #wrapper-footer-full { - display: block; - align-items: center; - height: 100%; - } - .margin-top { - margin-top: 0; - } + .footer-widget > a img { + max-width: 25% !important; + } + .textwidget > a img { + max-width: 50% !important; + } + .container-fluid { + min-height: auto; + } + .navbar .container { + height: auto; + } + + #wrapper-footer-full { + display: block; + align-items: center; + height: 100%; + } + .margin-top { + margin-top: 0; + } .row { margin-left: 0 !important; margin-right: 0 !important; @@ -1727,8 +1771,13 @@ td > label { padding: 1em 0; } #viewerContainer_div { - width: 400px !Important; - } + width: 400px !important; + } + .osd-viewer:not(.fade-all) { + display: flex; + width: 100% !important; + max-width: 100% !important; + } } /* Medium devices (tablets, 768px and up) */ @@ -1742,36 +1791,26 @@ td > label { } .minus-mb-35 { margin-bottom: 0; - } - .index-card .text { - -webkit-transition: none !Important;; - -moz-transition: none !Important;; - -o-transition: none !Important;; - -ms-transition: none !Important;; - transition: none !Important;; - transform: none !Important; - -webkit-transform: none !Important; - padding: 0 .7em !Important;; - opacity: 1 !Important;; - font-size: 1.5rem !Important;; - height: auto !Important; - } - .index-card .fadedbox { - opacity: 1 !Important;; - padding: 1em !Important;; - height: auto !important; - } - .index-card:hover .fadedbox { - - } - .index-card:hover .card-header img { - -webkit-transition: none !Important;; - -moz-transition: none !Important;; - -o-transition: none !Important;; - -ms-transition: none !Important;; - transition: none !Important;; - opacity: 1 !Important;; - } + } + .index-card .card-header { + width: 100%; + } + #commentary { + display: block; + } + .interpComment { + width: 100%; + } + .edition-md tr th, + .edition-md tr td { + display: block; + padding: 0.3em; + } + .corresp-desc tr th, + .corresp-desc tr td { + display: block; + padding: 0.3em; + } } @media (max-width: 1200px) { @@ -1781,32 +1820,33 @@ td > label { } .margin-top { margin-top: 0; - - } - .index-card .text { - font-size: .5rem; - } - .index-card .text { - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - height: 256px; - } + } } /* Large devices (desktops, 992px and up) */ /*@media (min-width: 992px) { }*/ /* Extra large devices (large desktops, 1680px and up) */ -@media (max-width: 1680px) { - .margin-top { - margin-top: 0; - } - .index-card .text { - font-size: .75rem; - } - .index-card .text { - transform: translateY(-70%); - -webkit-transform: translateY(-70%); - height: 256px; - } +@media (min-width: 1680px) { + .margin-top { + margin-top: 0; + } + .grid { + padding: 0 5%; + } +} + +@media (min-width: 1920px) { + .grid { + padding: 0 10%; + } +} + +@media (min-width: 2500px) { + .grid { + padding: 0 20%; + } + .intro_img { + max-width: 100%; + } } diff --git a/html/geo/listevent.geojson b/html/geo/listevent.geojson index 80db60324..616643e75 100644 --- a/html/geo/listevent.geojson +++ b/html/geo/listevent.geojson @@ -1 +1 @@ -{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Death of Yannis Boras in a car accident, 1968", "id": "amp_event_id_2", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "W. H. Auden reading \"Gedichte/Poems\", 1973", "id": "amp_event_id_3", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-98.5, 39.76]}, "properties": {"title": "Northeast blackout of 1965", "id": "amp_event_id_4", "title_plc": "United States of America", "id_plc": "amp_place_id_15", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "New York City transit strike, 1966", "id": "amp_event_id_5", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "W. H. Auden's T. S. Eliot Memorial Lectures, 1967", "id": "amp_event_id_6", "title_plc": "Canterbury", "id_plc": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "State visit of Queen Elizabeth II in Austria, 1969", "id": "amp_event_id_7", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "W. H. Auden's lecture \"The Martyr as Dramatic Hero\", 1967", "id": "amp_event_id_9", "title_plc": "Canterbury", "id_plc": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Auden's interview of Strobls, 1968", "id": "amp_event_id_10", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.75, 48.33333]}, "properties": {"title": "Wedding near Krems, 1970", "id": "amp_event_id_14", "title_plc": "Lower Austria", "id_plc": "amp_place_id_6", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Visit of Christiane Zimmer at Hinterholz 6, 1962", "id": "amp_event_id_16", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "W. H. Auden's dinner with Father Lustkandl, 1962", "id": "amp_event_id_17", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37118, 48.20379]}, "properties": {"title": "Death of W. H. Auden, 1973", "id": "amp_event_id_18", "title_plc": "Hotel \"Altenburger Hof\"", "id_plc": "amp_place_id_225", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Funeral of W. H. Auden, 1973", "id": "amp_event_id_19", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Symposium \"W. H. Auden 1907-1973\", 1984", "id": "amp_event_id_21", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Visit by Stella Musulin and Friedrich Heer at Hinterholz 6, 1969", "id": "amp_event_id_22", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "Stella Musulin's talk \"W. H. Auden und die \u00d6sterreicher\", 1977", "id": "amp_event_id_23", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "W. H. Auden's reading \"Hier und Jetzt\"", "id": "amp_event_id_25", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [19.04045, 47.49835]}, "properties": {"title": "PEN International Executive Committee and Round Table Discussion \"Tradition and Innovation in Contemporary Literature\", 1964", "id": "amp_event_id_26", "title_plc": "Budapest", "id_plc": "amp_place_id_86", "country_code": "HU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "W. H. Auden's Ford Foundation Residency at Berlin, 1964-1965", "id": "amp_event_id_27", "title_plc": "Berlin", "id_plc": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "W. H. Auden's talk \"T. S. Eliot\", 1965", "id": "amp_event_id_29", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12846, 51.49937]}, "properties": {"title": "W. H. Auden's sermon at Westminster Abbey, 1966", "id": "amp_event_id_30", "title_plc": "Westminster Abbey", "id_plc": "amp_place_id_87", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "Round table \"Literatur als Tradition und Revolution\", 1967", "id": "amp_event_id_31", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "W. H. Auden's speech \"Worte und Noten: Rede zur Er\u00f6ffnung der Salzburger Festspiele\", 1968", "id": "amp_event_id_32", "title_plc": "Salzburg", "id_plc": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "W. H. Auden's car accident in Kirchstetten", "id": "amp_event_id_34", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Arrest and court trial of Hugo K., 1962", "id": "amp_event_id_36", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90219, 48.19745]}, "properties": {"title": "Lyrik 70 poetry convention, 1970", "id": "amp_event_id_37", "title_plc": "Neulengbach", "id_plc": "amp_place_id_47", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39375, 48.19499]}, "properties": {"title": "Party at Chester Kallman's apartment in Eslarngasse", "id": "amp_event_id_38", "title_plc": "Eslarngasse", "id_plc": "amp_place_id_71", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Preparation of W. H. Auden's funeral, 1973", "id": "amp_event_id_40", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.46672, 50.08292]}, "properties": {"title": "Prague Spring, 1968", "id": "amp_event_id_42", "title_plc": "Czechoslovakia", "id_plc": "amp_place_id_100", "country_code": "CS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "W. H. Auden's legal dispute with Austrian tax authorities, 1972", "id": "amp_event_id_45", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Awarding of Austrian State Prize for European Literature to W. H. Auden, 1966", "id": "amp_event_id_46", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [107.83333, 16.16667]}, "properties": {"title": "Vietnam war, 1955-1975", "id": "amp_event_id_47", "title_plc": "Vietnam", "id_plc": "amp_place_id_236", "country_code": "VN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Commemorative event Josef Weinheber\u2019s death, 1965", "id": "amp_event_id_49", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Death of Josef Weinheber, 1945", "id": "amp_event_id_50", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.46672, 50.08292]}, "properties": {"title": "Expulsion of Germans from Czechoslovakia, 1945-1948", "id": "amp_event_id_52", "title_plc": "Czechoslovakia", "id_plc": "amp_place_id_100", "country_code": "CS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Anschluss (annexation of Austria into Nazi Germany), 1938", "id": "amp_event_id_55", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "Salzburg Festival", "id": "amp_event_id_56", "title_plc": "Salzburg", "id_plc": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Visit of Christiane Zimmer at Hinterholz 6, 1959", "id": "amp_event_id_57", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Austrian TV broadcast of \"Inzwischen\", 1967", "id": "amp_event_id_58", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [72.88261, 19.07283]}, "properties": {"title": "First Asian Conference on Cultural Freedom, 1951", "id": "amp_event_id_59", "title_plc": "Mumbai", "id_plc": "amp_place_id_274", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-83.74088, 42.27756]}, "properties": {"title": "W. H. Auden's position as Associate Professor of English in the University of Michigan at Ann Arbor, 1941-1942", "id": "amp_event_id_60", "title_plc": "Ann Arbor", "id_plc": "amp_place_id_298", "country_code": "US"}}]} \ No newline at end of file +{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Death of Yannis Boras in a car accident, 1968", "id": "amp_event_id_2", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "W. H. Auden reading \"Gedichte/Poems\", 1973", "id": "amp_event_id_3", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-98.5, 39.76]}, "properties": {"title": "Northeast blackout of 1965", "id": "amp_event_id_4", "title_plc": "United States of America", "id_plc": "amp_place_id_15", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "New York City transit strike, 1966", "id": "amp_event_id_5", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "W. H. Auden's T. S. Eliot Memorial Lectures, 1967", "id": "amp_event_id_6", "title_plc": "Canterbury", "id_plc": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "State visit of Queen Elizabeth II in Austria, 1969", "id": "amp_event_id_7", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "W. H. Auden's lecture \"The Martyr as Dramatic Hero\", 1967", "id": "amp_event_id_9", "title_plc": "Canterbury", "id_plc": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Auden's interview of Strobls, 1968", "id": "amp_event_id_10", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.75, 48.33333]}, "properties": {"title": "Wedding near Krems, 1970", "id": "amp_event_id_14", "title_plc": "Lower Austria", "id_plc": "amp_place_id_6", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Visit of Christiane Zimmer at Hinterholz 6, 1962", "id": "amp_event_id_16", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "W. H. Auden's dinner with Father Lustkandl, 1962", "id": "amp_event_id_17", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37118, 48.20379]}, "properties": {"title": "Death of W. H. Auden, 1973", "id": "amp_event_id_18", "title_plc": "Hotel \"Altenburger Hof\"", "id_plc": "amp_place_id_225", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Funeral of W. H. Auden, 1973", "id": "amp_event_id_19", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Symposium \"W. H. Auden 1907-1973\", 1984", "id": "amp_event_id_21", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Visit by Stella Musulin and Friedrich Heer at Hinterholz 6, 1969", "id": "amp_event_id_22", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "Stella Musulin's talk \"W. H. Auden und die \u00d6sterreicher\", 1977", "id": "amp_event_id_23", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "W. H. Auden's reading \"Hier und Jetzt\"", "id": "amp_event_id_25", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [19.04045, 47.49835]}, "properties": {"title": "PEN International Executive Committee and Round Table Discussion \"Tradition and Innovation in Contemporary Literature\", 1964", "id": "amp_event_id_26", "title_plc": "Budapest", "id_plc": "amp_place_id_86", "country_code": "HU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "W. H. Auden's Ford Foundation Residency at Berlin, 1964-1965", "id": "amp_event_id_27", "title_plc": "Berlin", "id_plc": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "W. H. Auden's talk \"T. S. Eliot\", 1965", "id": "amp_event_id_29", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12846, 51.49937]}, "properties": {"title": "W. H. Auden's sermon at Westminster Abbey, 1966", "id": "amp_event_id_30", "title_plc": "Westminster Abbey", "id_plc": "amp_place_id_87", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "Round table \"Literatur als Tradition und Revolution\", 1967", "id": "amp_event_id_31", "title_plc": "Palais P\u00e1lffy", "id_plc": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "W. H. Auden's speech \"Worte und Noten: Rede zur Er\u00f6ffnung der Salzburger Festspiele\", 1968", "id": "amp_event_id_32", "title_plc": "Salzburg", "id_plc": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "W. H. Auden's car accident in Kirchstetten", "id": "amp_event_id_34", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Arrest and court trial of Hugo K., 1962", "id": "amp_event_id_36", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90219, 48.19745]}, "properties": {"title": "Lyrik 70 poetry convention, 1970", "id": "amp_event_id_37", "title_plc": "Neulengbach", "id_plc": "amp_place_id_47", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39375, 48.19499]}, "properties": {"title": "Party at Chester Kallman's apartment in Eslarngasse", "id": "amp_event_id_38", "title_plc": "Eslarngasse", "id_plc": "amp_place_id_71", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Preparation of W. H. Auden's funeral, 1973", "id": "amp_event_id_40", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.46672, 50.08292]}, "properties": {"title": "Prague Spring, 1968", "id": "amp_event_id_42", "title_plc": "Czechoslovakia", "id_plc": "amp_place_id_100", "country_code": "CS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "W. H. Auden's legal dispute with Austrian tax authorities, 1972", "id": "amp_event_id_45", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Awarding of Austrian State Prize for European Literature to W. H. Auden, 1966", "id": "amp_event_id_46", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [107.83333, 16.16667]}, "properties": {"title": "Vietnam war, 1955-1975", "id": "amp_event_id_47", "title_plc": "Vietnam", "id_plc": "amp_place_id_236", "country_code": "VN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Commemorative event Josef Weinheber\u2019s death, 1965", "id": "amp_event_id_49", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Death of Josef Weinheber, 1945", "id": "amp_event_id_50", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.46672, 50.08292]}, "properties": {"title": "Expulsion of Germans from Czechoslovakia, 1945-1948", "id": "amp_event_id_52", "title_plc": "Czechoslovakia", "id_plc": "amp_place_id_100", "country_code": "CS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Anschluss (annexation of Austria into Nazi Germany), 1938", "id": "amp_event_id_55", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "Salzburg Festival", "id": "amp_event_id_56", "title_plc": "Salzburg", "id_plc": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Visit of Christiane Zimmer at Hinterholz 6, 1959", "id": "amp_event_id_57", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Austrian TV broadcast of \"Inzwischen\", 1967", "id": "amp_event_id_58", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [72.88261, 19.07283]}, "properties": {"title": "First Asian Conference on Cultural Freedom, 1951", "id": "amp_event_id_59", "title_plc": "Mumbai", "id_plc": "amp_place_id_274", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-83.74088, 42.27756]}, "properties": {"title": "W. H. Auden's position as Associate Professor of English in the University of Michigan at Ann Arbor, 1941-1942", "id": "amp_event_id_60", "title_plc": "Ann Arbor", "id_plc": "amp_place_id_298", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Letter Stella Musulin to W. H. Auden 1959-10-05", "id": "amp_event_id_61", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Meeting W. H. Auden, Chester Kallman, and Stella Musulin 1960-07-23", "id": "amp_event_id_63", "title_plc": "Hinterholz 6", "id_plc": "amp_place_id_2", "country_code": "AT"}}]} \ No newline at end of file diff --git a/html/geo/listorg.geojson b/html/geo/listorg.geojson index 369f652d1..f2c52503f 100644 --- a/html/geo/listorg.geojson +++ b/html/geo/listorg.geojson @@ -1 +1 @@ -{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Ford Foundation", "id": "amp_organization_1", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "American Academy of Arts and Letters", "id": "amp_organization_2", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Faber & Faber", "id": "amp_organization_5", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Christ Church", "id": "amp_organization_6", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-71.05977, 42.35843]}, "properties": {"title": "Houghton Mifflin Company", "id": "amp_organization_7", "title_plc": "Boston", "id_plc": "amp_place_id_155", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Simon & Schuster", "id": "amp_organization_8", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "\u00d6sterreichische Gesellschaft f\u00fcr Literatur (Austrian Society for Literature)", "id": "amp_organization_9", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "PEN Austria", "id": "amp_organization_10", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Creditanstalt", "id": "amp_organization_11", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Random House", "id": "amp_organization_12", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Virago Press", "id": "amp_organization_13", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Life", "id": "amp_organization_15", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "British Council", "id": "amp_organization_16", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-72.92816, 41.30815]}, "properties": {"title": "Beinecke Rare Book & Manuscript Library", "id": "amp_organization_17", "title_plc": "New Haven", "id_plc": "amp_place_id_222", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-72.92816, 41.30815]}, "properties": {"title": "Yale University", "id": "amp_organization_18", "title_plc": "New Haven", "id_plc": "amp_place_id_222", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "GPO Film Unit", "id": "amp_organization_19", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "The Sunday Times", "id": "amp_organization_20", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "The New York Times", "id": "amp_organization_21", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-76.66606, 42.54229]}, "properties": {"title": "Crossing Cards", "id": "amp_organization_22", "title_plc": "Trumansburg", "id_plc": "amp_place_id_210", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Financial Times", "id": "amp_organization_23", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "National Review", "id": "amp_organization_24", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Die Furche", "id": "amp_organization_25", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Europa Verlag", "id": "amp_organization_26", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "British Embassy Vienna", "id": "amp_organization_27", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "BBC", "id": "amp_organization_28", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Curtis Brown, Ltd.", "id": "amp_organization_29", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Columbia University", "id": "amp_organization_30", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.24889, 53.33306]}, "properties": {"title": "University of Dublin", "id": "amp_organization_31", "title_plc": "Dublin", "id_plc": "amp_place_id_108", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.24889, 53.33306]}, "properties": {"title": "Trinity College Dublin", "id": "amp_organization_32", "title_plc": "Dublin", "id_plc": "amp_place_id_108", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Group Theatre (London)", "id": "amp_organization_33", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "Senate of Berlin", "id": "amp_organization_34", "title_plc": "Berlin", "id_plc": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "\u00d6sterreichisch-Britische Gesellschaft (Austro-British Society)", "id": "amp_organization_35", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.3488, 48.85341]}, "properties": {"title": "University of Paris", "id": "amp_organization_36", "title_plc": "Paris", "id_plc": "amp_place_id_84", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Gebr\u00fcder Wild", "id": "amp_organization_38", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Die Presse", "id": "amp_organization_39", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "\u00d6sterreichische Post- und Telegraphenverwaltung (Austrian Postal and Telegraph Administration)", "id": "amp_organization_40", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.68417, 50.11552]}, "properties": {"title": "Die neue Rundschau", "id": "amp_organization_41", "title_plc": "Frankfurt am Main", "id_plc": "amp_place_id_33", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.63333, 48.2]}, "properties": {"title": "University Hospital in St. P\u00f6lten", "id": "amp_organization_42", "title_plc": "St. P\u00f6lten", "id_plc": "amp_place_id_9", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Bundesministerium f\u00fcr Unterricht und Kunst (Federal Ministry of Education and the Arts)", "id": "amp_organization_43", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.63333, 48.2]}, "properties": {"title": "Amt der nieder\u00f6sterreichischen Landesregierung (Office of the\u00a0Federal Government of Lower Austria)", "id": "amp_organization_44", "title_plc": "St. P\u00f6lten", "id_plc": "amp_place_id_9", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "English PEN", "id": "amp_organization_47", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "The Times", "id": "amp_organization_49", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "PEN International", "id": "amp_organization_51", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Berufsfeuerwehr Wien (Fire brigade of Vienna)", "id": "amp_organization_52", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "The Sunday Telegraph", "id": "amp_organization_53", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "London Underground", "id": "amp_organization_54", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "University of Oxford", "id": "amp_organization_55", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "TU Wien (Vienna University of Technology)", "id": "amp_organization_56", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "Eliot College", "id": "amp_organization_57", "title_plc": "Canterbury", "id_plc": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-83.74088, 42.27756]}, "properties": {"title": "University of Michigan", "id": "amp_organization_58", "title_plc": "Ann Arbor", "id_plc": "amp_place_id_298", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Burgtheater", "id": "amp_organization_59", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "K\u00fcnstlerhaus Wien", "id": "amp_organization_60", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Naturhistorisches Museum Wien (Natural History Museum Vienna)", "id": "amp_organization_61", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "Gro\u00dfes Festspielhaus (Large Festival House)", "id": "amp_organization_62", "title_plc": "Salzburg", "id_plc": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "The New Yorker", "id": "amp_organization_65", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.99302, 53.55073]}, "properties": {"title": "Die Zeit", "id": "amp_organization_66", "title_plc": "Hamburg", "id_plc": "amp_place_id_126", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Kronenzeitung", "id": "amp_organization_67", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Morgen", "id": "amp_organization_68", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Oxford University Press", "id": "amp_organization_69", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}]} \ No newline at end of file +{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Ford Foundation", "id": "amp_organization_1", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "American Academy of Arts and Letters", "id": "amp_organization_2", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Faber & Faber", "id": "amp_organization_5", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Christ Church", "id": "amp_organization_6", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-71.05977, 42.35843]}, "properties": {"title": "Houghton Mifflin Company", "id": "amp_organization_7", "title_plc": "Boston", "id_plc": "amp_place_id_155", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Simon & Schuster", "id": "amp_organization_8", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "\u00d6sterreichische Gesellschaft f\u00fcr Literatur (Austrian Society for Literature)", "id": "amp_organization_9", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "PEN Austria", "id": "amp_organization_10", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Creditanstalt", "id": "amp_organization_11", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Random House", "id": "amp_organization_12", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Virago Press", "id": "amp_organization_13", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Life", "id": "amp_organization_15", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "British Council", "id": "amp_organization_16", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-72.92816, 41.30815]}, "properties": {"title": "Beinecke Rare Book & Manuscript Library", "id": "amp_organization_17", "title_plc": "New Haven", "id_plc": "amp_place_id_222", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-72.92816, 41.30815]}, "properties": {"title": "Yale University", "id": "amp_organization_18", "title_plc": "New Haven", "id_plc": "amp_place_id_222", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "GPO Film Unit", "id": "amp_organization_19", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "The Sunday Times", "id": "amp_organization_20", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "The New York Times", "id": "amp_organization_21", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-76.66606, 42.54229]}, "properties": {"title": "Crossing Cards", "id": "amp_organization_22", "title_plc": "Trumansburg", "id_plc": "amp_place_id_210", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Financial Times", "id": "amp_organization_23", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "National Review", "id": "amp_organization_24", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Die Furche", "id": "amp_organization_25", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Europa Verlag", "id": "amp_organization_26", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "British Embassy Vienna", "id": "amp_organization_27", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "BBC", "id": "amp_organization_28", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Curtis Brown, Ltd.", "id": "amp_organization_29", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "Columbia University", "id": "amp_organization_30", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.24889, 53.33306]}, "properties": {"title": "University of Dublin", "id": "amp_organization_31", "title_plc": "Dublin", "id_plc": "amp_place_id_108", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.24889, 53.33306]}, "properties": {"title": "Trinity College Dublin", "id": "amp_organization_32", "title_plc": "Dublin", "id_plc": "amp_place_id_108", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "Group Theatre (London)", "id": "amp_organization_33", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "Senate of Berlin", "id": "amp_organization_34", "title_plc": "Berlin", "id_plc": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "\u00d6sterreichisch-Britische Gesellschaft (Austro-British Society)", "id": "amp_organization_35", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.3488, 48.85341]}, "properties": {"title": "University of Paris", "id": "amp_organization_36", "title_plc": "Paris", "id_plc": "amp_place_id_84", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Gebr\u00fcder Wild", "id": "amp_organization_38", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Die Presse", "id": "amp_organization_39", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "\u00d6sterreichische Post- und Telegraphenverwaltung (Austrian Postal and Telegraph Administration)", "id": "amp_organization_40", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "\u00d6sterreichische Post- und Telegraphenverwaltung (Austrian Postal and Telegraph Administration)", "id": "amp_organization_40", "title_plc": "Austria", "id_plc": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.68417, 50.11552]}, "properties": {"title": "Die neue Rundschau", "id": "amp_organization_41", "title_plc": "Frankfurt am Main", "id_plc": "amp_place_id_33", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.63333, 48.2]}, "properties": {"title": "University Hospital in St. P\u00f6lten", "id": "amp_organization_42", "title_plc": "St. P\u00f6lten", "id_plc": "amp_place_id_9", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Bundesministerium f\u00fcr Unterricht und Kunst (Federal Ministry of Education and the Arts)", "id": "amp_organization_43", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.63333, 48.2]}, "properties": {"title": "Amt der nieder\u00f6sterreichischen Landesregierung (Office of the\u00a0Federal Government of Lower Austria)", "id": "amp_organization_44", "title_plc": "St. P\u00f6lten", "id_plc": "amp_place_id_9", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "English PEN", "id": "amp_organization_47", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "The Times", "id": "amp_organization_49", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "PEN International", "id": "amp_organization_51", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Berufsfeuerwehr Wien (Fire brigade of Vienna)", "id": "amp_organization_52", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "The Sunday Telegraph", "id": "amp_organization_53", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "London Underground", "id": "amp_organization_54", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "University of Oxford", "id": "amp_organization_55", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "TU Wien (Vienna University of Technology)", "id": "amp_organization_56", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "Eliot College", "id": "amp_organization_57", "title_plc": "Canterbury", "id_plc": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-83.74088, 42.27756]}, "properties": {"title": "University of Michigan", "id": "amp_organization_58", "title_plc": "Ann Arbor", "id_plc": "amp_place_id_298", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Burgtheater", "id": "amp_organization_59", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "K\u00fcnstlerhaus Wien", "id": "amp_organization_60", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Naturhistorisches Museum Wien (Natural History Museum Vienna)", "id": "amp_organization_61", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "Gro\u00dfes Festspielhaus (Large Festival House)", "id": "amp_organization_62", "title_plc": "Salzburg", "id_plc": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "The New Yorker", "id": "amp_organization_65", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.99302, 53.55073]}, "properties": {"title": "Die Zeit", "id": "amp_organization_66", "title_plc": "Hamburg", "id_plc": "amp_place_id_126", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Kronenzeitung", "id": "amp_organization_67", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Morgen", "id": "amp_organization_68", "title_plc": "Vienna", "id_plc": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Oxford University Press", "id": "amp_organization_69", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Postamt Kirchstetten (post office Kirchstetten)", "id": "amp_organization_70", "title_plc": "Kirchstetten", "id_plc": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.55345, 48.14651]}, "properties": {"title": "Postamt Ober-Grafendorf (post office Ober-Grafendorf)", "id": "amp_organization_71", "title_plc": "Ober-Grafendorf", "id_plc": "amp_place_id_8", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.75, 48.33333]}, "properties": {"title": "Postamt Oberndorf an der Melk (post office Oberndorf an der Melk)", "id": "amp_organization_72", "title_plc": "Lower Austria", "id_plc": "amp_place_id_6", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39482, 48.19811]}, "properties": {"title": "Hauptpostamt 1030 (main post office 1030)", "id": "amp_organization_73", "title_plc": "Landstra\u00dfe", "id_plc": "amp_place_id_156", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.5, 51.5]}, "properties": {"title": "Deutsche Bundespost (German Federal Post Office)", "id": "amp_organization_77", "title_plc": "Federal Republic of Germany", "id_plc": "amp_place_id_20", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "Postamt Berlin 33 (post office Berlin 33)", "id": "amp_organization_78", "title_plc": "Berlin", "id_plc": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.28702, 52.4581]}, "properties": {"title": "Postamt Berlin 33 (post office Berlin 33)", "id": "amp_organization_78", "title_plc": "Dahlem", "id_plc": "amp_place_id_18", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "Postamt Berlin 11 (post office Berlin 11)", "id": "amp_organization_79", "title_plc": "Berlin", "id_plc": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "General Post Office", "id": "amp_organization_80", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.69531, 54.75844]}, "properties": {"title": "General Post Office", "id": "amp_organization_80", "title_plc": "United Kingdom", "id_plc": "amp_place_id_93", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Post office Oxford", "id": "amp_organization_81", "title_plc": "Oxford", "id_plc": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "London Western District Office", "id": "amp_organization_82", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "St John's Wood district office", "id": "amp_organization_83", "title_plc": "London", "id_plc": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17467, 51.52991]}, "properties": {"title": "St John's Wood district office", "id": "amp_organization_83", "title_plc": "St John's Wood", "id_plc": "amp_place_id_272", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-98.5, 39.76]}, "properties": {"title": "United States Post Office Department", "id": "amp_organization_84", "title_plc": "United States of America", "id_plc": "amp_place_id_15", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "United States General Post Office", "id": "amp_organization_85", "title_plc": "New York City", "id_plc": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96625, 40.78343]}, "properties": {"title": "United States General Post Office", "id": "amp_organization_85", "title_plc": "Manhattan", "id_plc": "amp_place_id_168", "country_code": "US"}}]} \ No newline at end of file diff --git a/html/geo/listplace.geojson b/html/geo/listplace.geojson index 300c97bd0..142ceda7c 100644 --- a/html/geo/listplace.geojson +++ b/html/geo/listplace.geojson @@ -1 +1 @@ -{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Vienna", "id": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Hinterholz 6", "id": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.811512574434994, 48.181531884216675]}, "properties": {"title": "Hinterholz 6", "id": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.08271, 53.95763]}, "properties": {"title": "York", "id": "amp_place_id_3", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-5.17685, 51.70121]}, "properties": {"title": "Dale", "id": "amp_place_id_4", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Kirchstetten", "id": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.75, 48.33333]}, "properties": {"title": "Lower Austria", "id": "amp_place_id_6", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.55595, 48.14765]}, "properties": {"title": "Fridau (Schloss Fridau)", "id": "amp_place_id_7", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.55345, 48.14651]}, "properties": {"title": "Ober-Grafendorf", "id": "amp_place_id_8", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.63333, 48.2]}, "properties": {"title": "St. P\u00f6lten", "id": "amp_place_id_9", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Austria", "id": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.38809, 48.19947]}, "properties": {"title": "Neulinggasse 26", "id": "amp_place_id_11", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.388089895227534, 48.19947103998972]}, "properties": {"title": "Neulinggasse 26", "id": "amp_place_id_11", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.94958, 40.6501]}, "properties": {"title": "Brooklyn", "id": "amp_place_id_12", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [23.72784, 37.98376]}, "properties": {"title": "Athens", "id": "amp_place_id_13", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.24626, 43.77925]}, "properties": {"title": "Florence", "id": "amp_place_id_14", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-98.5, 39.76]}, "properties": {"title": "United States of America", "id": "amp_place_id_15", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3, 48.21667]}, "properties": {"title": "Ottakring", "id": "amp_place_id_16", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "Berlin", "id": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.28702, 52.4581]}, "properties": {"title": "Dahlem", "id": "amp_place_id_18", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.27565, 52.47901]}, "properties": {"title": "Hubertusbader Stra\u00dfe 43", "id": "amp_place_id_19", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.275646669877162, 52.4790074683944]}, "properties": {"title": "Hubertusbader Stra\u00dfe 43", "id": "amp_place_id_19", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.5, 51.5]}, "properties": {"title": "Germany", "id": "amp_place_id_20", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.5, 51.5]}, "properties": {"title": "East Berlin", "id": "amp_place_id_21", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.77435, 48.09539]}, "properties": {"title": "Sankt Radegund", "id": "amp_place_id_22", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.55, 52.41667]}, "properties": {"title": "Brandenburg an der Havel", "id": "amp_place_id_23", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.57549, 48.13743]}, "properties": {"title": "Munich", "id": "amp_place_id_26", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35575, 48.21068]}, "properties": {"title": "Amerika-Haus", "id": "amp_place_id_27", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36864072584404, 48.20231120456173]}, "properties": {"title": "Amerika-Haus", "id": "amp_place_id_27", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "New York City", "id": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98359, 40.72839]}, "properties": {"title": "77 St. Mark's Place", "id": "amp_place_id_29", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.983587724666, 40.72838981926847]}, "properties": {"title": "77 St. Mark's Place", "id": "amp_place_id_29", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.14062, 48.69096]}, "properties": {"title": "Europe", "id": "amp_place_id_30", "country_code": null}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.20121, 44.41344]}, "properties": {"title": "Ravenna", "id": "amp_place_id_31", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.70734, 52.19166]}, "properties": {"title": "Stratford-upon-Avon", "id": "amp_place_id_32", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.68417, 50.11552]}, "properties": {"title": "Frankfurt am Main", "id": "amp_place_id_33", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.32903, 50.9803]}, "properties": {"title": "Weimar", "id": "amp_place_id_34", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.36416, 46.42466]}, "properties": {"title": "Pieve di Cadore", "id": "amp_place_id_35", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.33265, 45.43713]}, "properties": {"title": "Venice", "id": "amp_place_id_36", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "Salzburg", "id": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36878, 48.21301]}, "properties": {"title": "Wipplingerstrasse 24-26", "id": "amp_place_id_38", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.368780393887402, 48.213011564968774]}, "properties": {"title": "Wipplingerstrasse 24-26", "id": "amp_place_id_38", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "Canterbury", "id": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.11667, 52.2]}, "properties": {"title": "Cambridge", "id": "amp_place_id_40", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.431, 53.663]}, "properties": {"title": "West Pennine Moors", "id": "amp_place_id_41", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37514, 48.20898]}, "properties": {"title": "Hotel K\u00f6nig von Ungarn", "id": "amp_place_id_42", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.375141084659692, 48.20897989117554]}, "properties": {"title": "Hotel K\u00f6nig von Ungarn", "id": "amp_place_id_42", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-77.61556, 43.15478]}, "properties": {"title": "Rochester", "id": "amp_place_id_43", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12799, 51.52223]}, "properties": {"title": "24 Russel Square", "id": "amp_place_id_44", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.1279883, 51.5222327499795]}, "properties": {"title": "24 Russel Square", "id": "amp_place_id_44", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.16167, 51.51954]}, "properties": {"title": "32 Bryanston Square", "id": "amp_place_id_45", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.16166754363554944, 51.51814975134741]}, "properties": {"title": "32 Bryanston Square", "id": "amp_place_id_45", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Oxford", "id": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90219, 48.19745]}, "properties": {"title": "Neulengbach", "id": "amp_place_id_47", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.908621293769759, 48.19979820714975]}, "properties": {"title": "Neulengbach", "id": "amp_place_id_47", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35831, 48.20182]}, "properties": {"title": "Karl-Schweighofer-Gasse 4", "id": "amp_place_id_48", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.358312342810045, 48.20181915113065]}, "properties": {"title": "Karl-Schweighofer-Gasse 4", "id": "amp_place_id_48", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34295, 48.24868]}, "properties": {"title": "Paradisgasse 55", "id": "amp_place_id_49", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34295339863543, 48.248678311142996]}, "properties": {"title": "Paradisgasse 55", "id": "amp_place_id_49", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.88178, 41.83274]}, "properties": {"title": "Palestrina", "id": "amp_place_id_50", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.51133, 41.89193]}, "properties": {"title": "Rome", "id": "amp_place_id_51", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [29.77253, 59.90612]}, "properties": {"title": "Lomonosov", "id": "amp_place_id_52", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.42034, 36.72016]}, "properties": {"title": "M\u00e1laga", "id": "amp_place_id_53", "country_code": "ES"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.99523, 43.60068]}, "properties": {"title": "Mougins", "id": "amp_place_id_54", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-90.19789, 38.62727]}, "properties": {"title": "St. Louis", "id": "amp_place_id_55", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "London", "id": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.98546, 43.64031]}, "properties": {"title": "Caprese Michelangelo", "id": "amp_place_id_57", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.09549, 50.73438]}, "properties": {"title": "Bonn", "id": "amp_place_id_58", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.3, 53.0]}, "properties": {"title": "Eastwood", "id": "amp_place_id_59", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.11183, 43.72254]}, "properties": {"title": "Vence", "id": "amp_place_id_60", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.82549, 52.68154]}, "properties": {"title": "Lichfield", "id": "amp_place_id_61", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.61415, 48.40921]}, "properties": {"title": "Krems", "id": "amp_place_id_62", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.86667, 47.3]}, "properties": {"title": "Ried", "id": "amp_place_id_63", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.29004, 48.20969]}, "properties": {"title": "Ansfelden", "id": "amp_place_id_64", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.03257, 48.76736]}, "properties": {"title": "Horn\u00ed Plan\u00e1", "id": "amp_place_id_65", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.28611, 48.30639]}, "properties": {"title": "Linz", "id": "amp_place_id_66", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.05651, 47.95852]}, "properties": {"title": "Pottenstein", "id": "amp_place_id_67", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.45, 47.06667]}, "properties": {"title": "Graz", "id": "amp_place_id_68", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17895, 51.53593]}, "properties": {"title": "15 Loudoun Road", "id": "amp_place_id_69", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.1789514558219421, 51.535932430359836]}, "properties": {"title": "15 Loudoun Road", "id": "amp_place_id_69", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [21.82793, 37.64]}, "properties": {"title": "Livadaki", "id": "amp_place_id_70", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [21.82792838327145, 37.640004454026155]}, "properties": {"title": "Livadaki", "id": "amp_place_id_70", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39375, 48.19499]}, "properties": {"title": "Eslarngasse", "id": "amp_place_id_71", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.393747926634855, 48.19498822750462]}, "properties": {"title": "Eslarngasse", "id": "amp_place_id_71", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.46667, 47.58333]}, "properties": {"title": "Lake of Constance", "id": "amp_place_id_72", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.79839, 47.32306]}, "properties": {"title": "Zell am See", "id": "amp_place_id_74", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.33333]}, "properties": {"title": "Prielau (Schloss Prielau)", "id": "amp_place_id_75", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.73757, 47.33165]}, "properties": {"title": "Schmittenh\u00f6he valley", "id": "amp_place_id_76", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.737574982944441, 47.33165026519955]}, "properties": {"title": "Schmittenh\u00f6he valley", "id": "amp_place_id_76", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.76178, 48.19779]}, "properties": {"title": "B\u00f6heimkirchen", "id": "amp_place_id_79", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36543, 48.21058]}, "properties": {"title": "Caf\u00e9 Central", "id": "amp_place_id_80", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.365433890569722, 48.210577455478735]}, "properties": {"title": "Caf\u00e9 Central", "id": "amp_place_id_80", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.366032810986137, 48.20984379239084]}, "properties": {"title": "Caf\u00e9 Herrenhof", "id": "amp_place_id_81", "country_code": null}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.31229, 48.18494]}, "properties": {"title": "Schloss Sch\u00f6nbrunn", "id": "amp_place_id_82", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.0, 46.0]}, "properties": {"title": "France", "id": "amp_place_id_83", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.3488, 48.85341]}, "properties": {"title": "Paris", "id": "amp_place_id_84", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "Palais P\u00e1lffy", "id": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.367798975228684, 48.2064399676074]}, "properties": {"title": "Palais P\u00e1lffy", "id": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [19.04045, 47.49835]}, "properties": {"title": "Budapest", "id": "amp_place_id_86", "country_code": "HU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12846, 51.49937]}, "properties": {"title": "Westminster Abbey", "id": "amp_place_id_87", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36702, 48.20684]}, "properties": {"title": "Josefsplatz", "id": "amp_place_id_88", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.367020498634673, 48.20684423396885]}, "properties": {"title": "Josefsplatz", "id": "amp_place_id_88", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36469, 48.20563]}, "properties": {"title": "Redoutensaal (Hofburg)", "id": "amp_place_id_89", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [98.0, 60.0]}, "properties": {"title": "Russia", "id": "amp_place_id_91", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90862, 48.1998]}, "properties": {"title": "Caf\u00e9 de l'Opera (Operncaf\u00e9/Opern-Caf\u00e9)", "id": "amp_place_id_92", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36923050734781, 48.202139557498505]}, "properties": {"title": "Caf\u00e9 de l'Opera (Operncaf\u00e9/Opern-Caf\u00e9)", "id": "amp_place_id_92", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.69531, 54.75844]}, "properties": {"title": "United Kingdom", "id": "amp_place_id_93", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.34842, 48.24085]}, "properties": {"title": "Pielach (stream)", "id": "amp_place_id_94", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37058, 48.206]}, "properties": {"title": "Neuer Markt", "id": "amp_place_id_95", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.25, 56.0]}, "properties": {"title": "Jutland", "id": "amp_place_id_96", "country_code": "DK"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.01427, 47.00016]}, "properties": {"title": "Switzerland", "id": "amp_place_id_97", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [79.0, 22.0]}, "properties": {"title": "India", "id": "amp_place_id_98", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.46672, 50.08292]}, "properties": {"title": "Czechoslovakia", "id": "amp_place_id_100", "country_code": "CS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [22.25, 37.58333]}, "properties": {"title": "Arcadia", "id": "amp_place_id_103", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25, 51.5]}, "properties": {"title": "Berkshire", "id": "amp_place_id_106", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.37129, 51.33962]}, "properties": {"title": "Leipzig", "id": "amp_place_id_107", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.24889, 53.33306]}, "properties": {"title": "Dublin", "id": "amp_place_id_108", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.24555, 51.83864]}, "properties": {"title": "Dessau", "id": "amp_place_id_109", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [26.214, -29.12107]}, "properties": {"title": "Bloemfontein", "id": "amp_place_id_110", "country_code": "ZA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.25839, 48.13307]}, "properties": {"title": "Rodaun", "id": "amp_place_id_111", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.14461, 51.51081]}, "properties": {"title": "Bruton Street", "id": "amp_place_id_112", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.14461128132633838, 51.51081260555309]}, "properties": {"title": "Bruton Street", "id": "amp_place_id_112", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [5.98154, 50.88365]}, "properties": {"title": "Heerlen", "id": "amp_place_id_113", "country_code": "NL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.79933, 47.91839]}, "properties": {"title": "Gmunden", "id": "amp_place_id_114", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.98333, 44.1]}, "properties": {"title": "Predappio", "id": "amp_place_id_115", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.20514, 45.98168]}, "properties": {"title": "Mezzegra", "id": "amp_place_id_116", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.81605, 48.90469]}, "properties": {"title": "Velk\u00e9 Pavlovice", "id": "amp_place_id_117", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.53559, 46.29192]}, "properties": {"title": "Sierre", "id": "amp_place_id_118", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [18.14499, 49.64094]}, "properties": {"title": "P\u0159\u00edbor", "id": "amp_place_id_119", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [26.86916, 46.49582]}, "properties": {"title": "Sarata", "id": "amp_place_id_120", "country_code": "RO"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [18.02899, 48.24445]}, "properties": {"title": "Cabaj-\u010c\u00e1por", "id": "amp_place_id_121", "country_code": "SK"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.14569, 46.20222]}, "properties": {"title": "Geneva", "id": "amp_place_id_122", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90048, 48.30478]}, "properties": {"title": "Atzenbrugg-Moosbierbaum", "id": "amp_place_id_123", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.80717, 53.07582]}, "properties": {"title": "Bremen", "id": "amp_place_id_124", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.71667, 47.71667]}, "properties": {"title": "Bad Wiessee", "id": "amp_place_id_125", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.99302, 53.55073]}, "properties": {"title": "Hamburg", "id": "amp_place_id_126", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-114.21882, 43.4268]}, "properties": {"title": "Hailey", "id": "amp_place_id_127", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.82112, 51.85782]}, "properties": {"title": "Starosiedle", "id": "amp_place_id_128", "country_code": "PL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-87.65005, 41.85003]}, "properties": {"title": "Chicago", "id": "amp_place_id_129", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [28.04363, -26.20227]}, "properties": {"title": "Johannesburg", "id": "amp_place_id_130", "country_code": "ZA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [18.42322, -33.92584]}, "properties": {"title": "Cape Town", "id": "amp_place_id_131", "country_code": "ZA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-5.92541, 54.59682]}, "properties": {"title": "Belfast", "id": "amp_place_id_132", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.55, 47.36667]}, "properties": {"title": "Z\u00fcrich", "id": "amp_place_id_133", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-122.33207, 47.60621]}, "properties": {"title": "Seattle", "id": "amp_place_id_134", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [30.31413, 59.93863]}, "properties": {"title": "Saint Petersburg (Leningrad)", "id": "amp_place_id_135", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.06566, 52.39886]}, "properties": {"title": "Potsdam", "id": "amp_place_id_136", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [19.0678, 52.64817]}, "properties": {"title": "W\u0142oc\u0142awek", "id": "amp_place_id_137", "country_code": "PL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [37.61556, 55.75222]}, "properties": {"title": "Moscow", "id": "amp_place_id_138", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.37853, 51.90693]}, "properties": {"title": "G\u00fctersloh", "id": "amp_place_id_139", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.73832, 51.05089]}, "properties": {"title": "Dresden", "id": "amp_place_id_140", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.35162, 50.43723]}, "properties": {"title": "Ji\u010d\u00edn", "id": "amp_place_id_141", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.36256, 53.72587]}, "properties": {"title": "Castleford", "id": "amp_place_id_142", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.07188, 51.85407]}, "properties": {"title": "Much Hadham", "id": "amp_place_id_143", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.2, 48.2]}, "properties": {"title": "P\u00f6chlarn", "id": "amp_place_id_144", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.92654, 46.39869]}, "properties": {"title": "Villeneuve", "id": "amp_place_id_145", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.06431, 40.34705]}, "properties": {"title": "Red Bank", "id": "amp_place_id_146", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-75.36517, 43.5334]}, "properties": {"title": "Talcottville", "id": "amp_place_id_147", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-79.87617, 34.29988]}, "properties": {"title": "Darlington", "id": "amp_place_id_148", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-86.11221, 35.18592]}, "properties": {"title": "Winchester", "id": "amp_place_id_149", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [88.36304, 22.56263]}, "properties": {"title": "Kolkata", "id": "amp_place_id_150", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.6384, 51.73455]}, "properties": {"title": "St Briavels", "id": "amp_place_id_151", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [47.53613, -18.91368]}, "properties": {"title": "Antananarivo", "id": "amp_place_id_152", "country_code": "MG"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.42076, 50.08804]}, "properties": {"title": "Prague", "id": "amp_place_id_154", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-71.05977, 42.35843]}, "properties": {"title": "Boston", "id": "amp_place_id_155", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39482, 48.19811]}, "properties": {"title": "Landstra\u00dfe", "id": "amp_place_id_156", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36912, 48.20323]}, "properties": {"title": "Vienna State Opera", "id": "amp_place_id_157", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.41169, 48.20609]}, "properties": {"title": "Prater", "id": "amp_place_id_158", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.83333, 42.83333]}, "properties": {"title": "Italy", "id": "amp_place_id_159", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3814, 48.1975]}, "properties": {"title": "Embassy of the United Kingdom in Austria", "id": "amp_place_id_160", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.381447374432152, 48.19834902425164]}, "properties": {"title": "Embassy of the United Kingdom in Austria", "id": "amp_place_id_160", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-122.41942, 37.77493]}, "properties": {"title": "San Francisco", "id": "amp_place_id_161", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.54835, 51.52754]}, "properties": {"title": "Eisleben Lutherstadt", "id": "amp_place_id_162", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.95111, 36.28639]}, "properties": {"title": "Thagaste", "id": "amp_place_id_164", "country_code": "DZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.73323, 36.86574]}, "properties": {"title": "Hippo Regius", "id": "amp_place_id_165", "country_code": "DZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.66017, 48.03809]}, "properties": {"title": "Trautmannsdorf an der Leitha", "id": "amp_place_id_166", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.15047, 52.9536]}, "properties": {"title": "Nottingham", "id": "amp_place_id_167", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96625, 40.78343]}, "properties": {"title": "Manhattan", "id": "amp_place_id_168", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.89851, 48.37154]}, "properties": {"title": "Augsburg", "id": "amp_place_id_169", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.65953, 50.79141]}, "properties": {"title": "The Vicarage, Crediton", "id": "amp_place_id_170", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.659534580154178, 50.79141203020876]}, "properties": {"title": "The Vicarage, Crediton", "id": "amp_place_id_170", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96418, 40.81013]}, "properties": {"title": "39 Claremont Avenue, apt 32", "id": "amp_place_id_171", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96418150148406, 40.810125765533726]}, "properties": {"title": "39 Claremont Avenue, apt 32", "id": "amp_place_id_171", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35352, 48.21287]}, "properties": {"title": "Schl\u00f6sselgasse 8", "id": "amp_place_id_172", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35351725445949, 48.21286685931523]}, "properties": {"title": "Schl\u00f6sselgasse 8", "id": "amp_place_id_172", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.25622, 53.33991]}, "properties": {"title": "Kildare Street 22", "id": "amp_place_id_173", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.256222616611612, 53.339912120136184]}, "properties": {"title": "Kildare Street 22", "id": "amp_place_id_173", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35696, 48.21874]}, "properties": {"title": "Lackierergasse 5", "id": "amp_place_id_174", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.356955340964838, 48.21874314648821]}, "properties": {"title": "Lackierergasse 5", "id": "amp_place_id_174", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.18333, 48.2]}, "properties": {"title": "Vienna Woods", "id": "amp_place_id_175", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [24.10589, 56.946]}, "properties": {"title": "Riga", "id": "amp_place_id_176", "country_code": "LV"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36624, 48.20882]}, "properties": {"title": "Palais Wilczek", "id": "amp_place_id_177", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36624270048027, 48.20882412668265]}, "properties": {"title": "Palais Wilczek", "id": "amp_place_id_177", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.03527, 54.52337]}, "properties": {"title": "Lisburn", "id": "amp_place_id_178", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.91444, 53.15611]}, "properties": {"title": "Kildare", "id": "amp_place_id_179", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-10.01265, 54.19782]}, "properties": {"title": "Ardmore", "id": "amp_place_id_180", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.83744, 55.58131]}, "properties": {"title": "Belford", "id": "amp_place_id_181", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [115.9761, 29.56902]}, "properties": {"title": "Guling, Jiujiang", "id": "amp_place_id_182", "country_code": "CN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.18112, 51.65855]}, "properties": {"title": "Burcot", "id": "amp_place_id_183", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-118.24368, 34.05223]}, "properties": {"title": "Los Angeles", "id": "amp_place_id_184", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.1553, 48.06776]}, "properties": {"title": "Petzelsdorf", "id": "amp_place_id_185", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-91.64407, 42.00833]}, "properties": {"title": "Cedar Rapids", "id": "amp_place_id_186", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.62916, 52.12773]}, "properties": {"title": "Magdeburg", "id": "amp_place_id_187", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04343, 48.25628]}, "properties": {"title": "Braunau am Inn", "id": "amp_place_id_188", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.47499, 49.1775]}, "properties": {"title": "Villeneuve-sur-F\u00e8re", "id": "amp_place_id_189", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.41667, 51.98333]}, "properties": {"title": "Havixbeck", "id": "amp_place_id_190", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.27113, 47.69419]}, "properties": {"title": "Meersburg", "id": "amp_place_id_191", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.42165, 50.08795]}, "properties": {"title": "The Golz-Kinsky Palace", "id": "amp_place_id_192", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.42167365633837, 50.08803132166223]}, "properties": {"title": "The Golz-Kinsky Palace", "id": "amp_place_id_192", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.75167, 52.47523]}, "properties": {"title": "Lowestoft", "id": "amp_place_id_193", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.60215, 52.15492]}, "properties": {"title": "Aldeburgh", "id": "amp_place_id_194", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.76903, 46.8289]}, "properties": {"title": "Lienz", "id": "amp_place_id_195", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.149, 51.50954]}, "properties": {"title": "Mayfair", "id": "amp_place_id_196", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.23333, 57.03333]}, "properties": {"title": "Balmoral Castle", "id": "amp_place_id_197", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.28496, 51.94924]}, "properties": {"title": "Hitchin", "id": "amp_place_id_198", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.6068, 51.439]}, "properties": {"title": "Royal Lodge", "id": "amp_place_id_199", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.13836, 51.50401]}, "properties": {"title": "Clarence House", "id": "amp_place_id_200", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.61489, 51.1858]}, "properties": {"title": "Godalming", "id": "amp_place_id_201", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.15618, 57.78145]}, "properties": {"title": "J\u00f6nk\u00f6ping", "id": "amp_place_id_202", "country_code": "SE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [28.63659, -12.95867]}, "properties": {"title": "Ndola", "id": "amp_place_id_203", "country_code": "ZM"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.19648, 55.95206]}, "properties": {"title": "Edinburgh", "id": "amp_place_id_204", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-84.51439, 39.12711]}, "properties": {"title": "Cincinnati", "id": "amp_place_id_205", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-71.29256, 42.29649]}, "properties": {"title": "Wellesley", "id": "amp_place_id_206", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-116.78467, 34.68743]}, "properties": {"title": "California", "id": "amp_place_id_209", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-76.66606, 42.54229]}, "properties": {"title": "Trumansburg", "id": "amp_place_id_210", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-76.53062245912945, 42.46259177654697]}, "properties": {"title": "Trumansburg", "id": "amp_place_id_210", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36615, 48.20878]}, "properties": {"title": "Herrengasse 5", "id": "amp_place_id_211", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36615424096451, 48.208783977078866]}, "properties": {"title": "Herrengasse 5", "id": "amp_place_id_211", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.70447, 51.67279]}, "properties": {"title": "Tenby", "id": "amp_place_id_213", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.91667, 51.83333]}, "properties": {"title": "Pembrokeshire", "id": "amp_place_id_214", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.69809, 51.67136]}, "properties": {"title": "2 St Julian's Street", "id": "amp_place_id_215", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.698087203148403, 51.671427500244214]}, "properties": {"title": "2 St Julian's Street", "id": "amp_place_id_215", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.65, 50.78333]}, "properties": {"title": "Crediton", "id": "amp_place_id_216", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34315, 48.21561]}, "properties": {"title": "Alser Stra\u00dfe 48", "id": "amp_place_id_217", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34315160048035, 48.21561434780695]}, "properties": {"title": "Alser Stra\u00dfe 48", "id": "amp_place_id_217", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.97794, 53.41058]}, "properties": {"title": "Liverpool", "id": "amp_place_id_219", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.1763, 51.51558]}, "properties": {"title": "Paddington", "id": "amp_place_id_220", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.97249, 40.76213]}, "properties": {"title": "575 Madison Avenue", "id": "amp_place_id_221", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.97248554818371, 40.762125992842755]}, "properties": {"title": "575 Madison Avenue", "id": "amp_place_id_221", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-72.92816, 41.30815]}, "properties": {"title": "New Haven", "id": "amp_place_id_222", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36848, 48.18724]}, "properties": {"title": "Johann-Strau\u00df-Gasse 28", "id": "amp_place_id_224", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36847668650523, 48.18723668171942]}, "properties": {"title": "Johann-Strau\u00df-Gasse 28", "id": "amp_place_id_224", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37118, 48.20379]}, "properties": {"title": "Hotel \"Altenburger Hof\"", "id": "amp_place_id_225", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37118272746974, 48.20378854425725]}, "properties": {"title": "Hotel \"Altenburger Hof\"", "id": "amp_place_id_225", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [35.45, 31.86667]}, "properties": {"title": "Jericho", "id": "amp_place_id_227", "country_code": "PS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.26965, 48.8846]}, "properties": {"title": "Neuilly-sur-Seine", "id": "amp_place_id_228", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [30.36052, 59.93129]}, "properties": {"title": "Nevsky Prospect", "id": "amp_place_id_230", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.19175, 51.50094]}, "properties": {"title": "Kensington", "id": "amp_place_id_234", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37068, 48.20468]}, "properties": {"title": "K\u00e4rntner Stra\u00dfe", "id": "amp_place_id_235", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.370679715340312, 48.20467964011737]}, "properties": {"title": "K\u00e4rntner Stra\u00dfe", "id": "amp_place_id_235", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [107.83333, 16.16667]}, "properties": {"title": "Vietnam", "id": "amp_place_id_236", "country_code": "VN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.81027, 50.7512]}, "properties": {"title": "Devon", "id": "amp_place_id_237", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.6594549039790696, 50.7914689136201]}, "properties": {"title": "Devon", "id": "amp_place_id_237", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.73756, 50.17866]}, "properties": {"title": "Bad Vilbel", "id": "amp_place_id_238", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.0, 53.0]}, "properties": {"title": "England", "id": "amp_place_id_239", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.7784985940278975, 53.56861844944027]}, "properties": {"title": "England", "id": "amp_place_id_239", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.57883, 50.35357]}, "properties": {"title": "Koblenz", "id": "amp_place_id_240", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.76075, 52.08218]}, "properties": {"title": "Acton", "id": "amp_place_id_241", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.80861, 51.94876]}, "properties": {"title": "Wormingford", "id": "amp_place_id_242", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [22.13968, 50.51987]}, "properties": {"title": "Nisko", "id": "amp_place_id_243", "country_code": "PL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.58066, 48.27343]}, "properties": {"title": "Schwertberg", "id": "amp_place_id_244", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.38158, 47.28873]}, "properties": {"title": "Innsbruck", "id": "amp_place_id_245", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [34.89277, 36.91766]}, "properties": {"title": "Tarsus", "id": "amp_place_id_246", "country_code": "TR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98736, 40.72927]}, "properties": {"title": "East Village", "id": "amp_place_id_247", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96418, 40.81013]}, "properties": {"title": "39 Claremont Ave, apt 31", "id": "amp_place_id_248", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-8.0, 53.0]}, "properties": {"title": "Ireland", "id": "amp_place_id_249", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.45022, 51.16363]}, "properties": {"title": "Rheydt", "id": "amp_place_id_250", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.96667, 48.33333]}, "properties": {"title": "Perschling (stream)", "id": "amp_place_id_251", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37556, 48.24594]}, "properties": {"title": "Leystra\u00dfe 23", "id": "amp_place_id_253", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37560888650667, 48.245897656186635]}, "properties": {"title": "Leystra\u00dfe 23", "id": "amp_place_id_253", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.51942, 47.90767]}, "properties": {"title": "Loretto", "id": "amp_place_id_254", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81357, 48.18054]}, "properties": {"title": "Hinterholz/Audenstra\u00dfe", "id": "amp_place_id_255", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.31667]}, "properties": {"title": "Lake Zell", "id": "amp_place_id_256", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.31667]}, "properties": {"title": "Austria-Hungary", "id": "amp_place_id_257", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.31667]}, "properties": {"title": "Fallegg", "id": "amp_place_id_258", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98648, 40.7281]}, "properties": {"title": "St. Mark's Place", "id": "amp_place_id_259", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98648, 40.7281]}, "properties": {"title": "Eastern Bloc", "id": "amp_place_id_260", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37868, 48.21059]}, "properties": {"title": "Hauptpostamt", "id": "amp_place_id_261", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.73711, 52.37362]}, "properties": {"title": "Hanover", "id": "amp_place_id_262", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.09576, 47.49209]}, "properties": {"title": "Garmisch-Partenkirchen", "id": "amp_place_id_263", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.09576, 47.49209]}, "properties": {"title": "Edom", "id": "amp_place_id_264", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.9663, 52.45902]}, "properties": {"title": "Marquardt", "id": "amp_place_id_265", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-91.63932, 44.04996]}, "properties": {"title": "Winona", "id": "amp_place_id_266", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.77616, 51.22172]}, "properties": {"title": "D\u00fcsseldorf", "id": "amp_place_id_267", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [25.93241, 48.29045]}, "properties": {"title": "Chernivtsi", "id": "amp_place_id_268", "country_code": "UA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.89983, 52.48142]}, "properties": {"title": "Birmingham", "id": "amp_place_id_269", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-97.51643, 35.46756]}, "properties": {"title": "Oklahoma City", "id": "amp_place_id_270", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-84.15574, 31.57851]}, "properties": {"title": "Albany, Georgia", "id": "amp_place_id_271", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17467, 51.52991]}, "properties": {"title": "St John's Wood", "id": "amp_place_id_272", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17467, 51.52991]}, "properties": {"title": "Michelbach", "id": "amp_place_id_273", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [72.88261, 19.07283]}, "properties": {"title": "Mumbai", "id": "amp_place_id_274", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.8795, 50.72048]}, "properties": {"title": "Bournemouth", "id": "amp_place_id_275", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.91143, 46.43301]}, "properties": {"title": "Montreux", "id": "amp_place_id_276", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.56014, 53.10848]}, "properties": {"title": "Cromford", "id": "amp_place_id_277", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.79667, 53.18194]}, "properties": {"title": "Newbridge", "id": "amp_place_id_278", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.64222, 52.82238]}, "properties": {"title": "Horninglow", "id": "amp_place_id_279", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.0564, 51.6885]}, "properties": {"title": "Theobalds Park", "id": "amp_place_id_280", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [23.50433, 37.94183]}, "properties": {"title": "Salamis Island", "id": "amp_place_id_281", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [22.52637, 40.76169]}, "properties": {"title": "Pella", "id": "amp_place_id_282", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.57966, 48.88353]}, "properties": {"title": "Straubing", "id": "amp_place_id_283", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.29748, 45.97248]}, "properties": {"title": "Ceneda", "id": "amp_place_id_284", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [26.0603, 53.7522]}, "properties": {"title": "Liub\u010da", "id": "amp_place_id_285", "country_code": "BY"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.41725, 45.48627]}, "properties": {"title": "Burano", "id": "amp_place_id_286", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.61405, 51.66685]}, "properties": {"title": "Amersham", "id": "amp_place_id_287", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.2, 51.35]}, "properties": {"title": "Sutton", "id": "amp_place_id_288", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-43.18223, -22.90642]}, "properties": {"title": "Rio de Janeiro", "id": "amp_place_id_289", "country_code": "BR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.23975, 48.7606]}, "properties": {"title": "Baden-Baden", "id": "amp_place_id_290", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.66313, 54.30663]}, "properties": {"title": "Rendsburg", "id": "amp_place_id_291", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.24932, 50.08258]}, "properties": {"title": "Wiesbaden", "id": "amp_place_id_292", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.373, 50.436]}, "properties": {"title": "Andernach", "id": "amp_place_id_293", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.465, 53.32525]}, "properties": {"title": "Brake", "id": "amp_place_id_294", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.8405, 47.5561]}, "properties": {"title": "Pichl-Kainisch", "id": "amp_place_id_295", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.02222, 51.05639]}, "properties": {"title": "Leverkusen", "id": "amp_place_id_296", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.85222, 47.9959]}, "properties": {"title": "Freiburg im Breisgau", "id": "amp_place_id_297", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-83.74088, 42.27756]}, "properties": {"title": "Ann Arbor", "id": "amp_place_id_298", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.358543242329002, 48.200017817967385]}, "properties": {"title": "Fillgradergasse 12", "id": "amp_place_id_303", "country_code": ""}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.19083175582250725, 51.49647842887996]}, "properties": {"title": "70 Lexham Gardens", "id": "amp_place_id_305", "country_code": ""}}]} \ No newline at end of file +{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37208, 48.20849]}, "properties": {"title": "Vienna", "id": "amp_place_id_1", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81151, 48.18153]}, "properties": {"title": "Hinterholz 6", "id": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.811512574434994, 48.181531884216675]}, "properties": {"title": "Hinterholz 6", "id": "amp_place_id_2", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.08271, 53.95763]}, "properties": {"title": "York", "id": "amp_place_id_3", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-5.17685, 51.70121]}, "properties": {"title": "Dale", "id": "amp_place_id_4", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.11039, 48.22902]}, "properties": {"title": "Kirchstetten", "id": "amp_place_id_5", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.75, 48.33333]}, "properties": {"title": "Lower Austria", "id": "amp_place_id_6", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.55595, 48.14765]}, "properties": {"title": "Schloss Fridau", "id": "amp_place_id_7", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.55345, 48.14651]}, "properties": {"title": "Ober-Grafendorf", "id": "amp_place_id_8", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.63333, 48.2]}, "properties": {"title": "St. P\u00f6lten", "id": "amp_place_id_9", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.33333, 47.33333]}, "properties": {"title": "Austria", "id": "amp_place_id_10", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.38809, 48.19947]}, "properties": {"title": "Neulinggasse 26", "id": "amp_place_id_11", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.388089895227534, 48.19947103998972]}, "properties": {"title": "Neulinggasse 26", "id": "amp_place_id_11", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.94958, 40.6501]}, "properties": {"title": "Brooklyn", "id": "amp_place_id_12", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [23.72784, 37.98376]}, "properties": {"title": "Athens", "id": "amp_place_id_13", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.24626, 43.77925]}, "properties": {"title": "Florence", "id": "amp_place_id_14", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-98.5, 39.76]}, "properties": {"title": "United States of America", "id": "amp_place_id_15", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3, 48.21667]}, "properties": {"title": "Ottakring", "id": "amp_place_id_16", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.41053, 52.52437]}, "properties": {"title": "Berlin", "id": "amp_place_id_17", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.28702, 52.4581]}, "properties": {"title": "Dahlem", "id": "amp_place_id_18", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.27565, 52.47901]}, "properties": {"title": "Hubertusbader Stra\u00dfe 43", "id": "amp_place_id_19", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.275646669877162, 52.4790074683944]}, "properties": {"title": "Hubertusbader Stra\u00dfe 43", "id": "amp_place_id_19", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.5, 51.5]}, "properties": {"title": "Federal Republic of Germany", "id": "amp_place_id_20", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.5, 51.5]}, "properties": {"title": "East Berlin", "id": "amp_place_id_21", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.77435, 48.09539]}, "properties": {"title": "Sankt Radegund", "id": "amp_place_id_22", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.55, 52.41667]}, "properties": {"title": "Brandenburg an der Havel", "id": "amp_place_id_23", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.57549, 48.13743]}, "properties": {"title": "Munich", "id": "amp_place_id_26", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35575, 48.21068]}, "properties": {"title": "Amerika-Haus", "id": "amp_place_id_27", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36864072584404, 48.20231120456173]}, "properties": {"title": "Amerika-Haus", "id": "amp_place_id_27", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.00597, 40.71427]}, "properties": {"title": "New York City", "id": "amp_place_id_28", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98359, 40.72839]}, "properties": {"title": "77 St. Mark's Place", "id": "amp_place_id_29", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.983587724666, 40.72838981926847]}, "properties": {"title": "77 St. Mark's Place", "id": "amp_place_id_29", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.14062, 48.69096]}, "properties": {"title": "Europe", "id": "amp_place_id_30", "country_code": null}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.20121, 44.41344]}, "properties": {"title": "Ravenna", "id": "amp_place_id_31", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.70734, 52.19166]}, "properties": {"title": "Stratford-upon-Avon", "id": "amp_place_id_32", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.68417, 50.11552]}, "properties": {"title": "Frankfurt am Main", "id": "amp_place_id_33", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.32903, 50.9803]}, "properties": {"title": "Weimar", "id": "amp_place_id_34", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.36416, 46.42466]}, "properties": {"title": "Pieve di Cadore", "id": "amp_place_id_35", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.33265, 45.43713]}, "properties": {"title": "Venice", "id": "amp_place_id_36", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04399, 47.79941]}, "properties": {"title": "Salzburg", "id": "amp_place_id_37", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36878, 48.21301]}, "properties": {"title": "Wipplingerstrasse 24-26", "id": "amp_place_id_38", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.368780393887402, 48.213011564968774]}, "properties": {"title": "Wipplingerstrasse 24-26", "id": "amp_place_id_38", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.07992, 51.27904]}, "properties": {"title": "Canterbury", "id": "amp_place_id_39", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.11667, 52.2]}, "properties": {"title": "Cambridge", "id": "amp_place_id_40", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.431, 53.663]}, "properties": {"title": "West Pennine Moors", "id": "amp_place_id_41", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37514, 48.20898]}, "properties": {"title": "Hotel K\u00f6nig von Ungarn", "id": "amp_place_id_42", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.375141084659692, 48.20897989117554]}, "properties": {"title": "Hotel K\u00f6nig von Ungarn", "id": "amp_place_id_42", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-77.61556, 43.15478]}, "properties": {"title": "Rochester", "id": "amp_place_id_43", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12799, 51.52223]}, "properties": {"title": "24 Russell Square", "id": "amp_place_id_44", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.1279883, 51.5222327499795]}, "properties": {"title": "24 Russell Square", "id": "amp_place_id_44", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.16167, 51.51954]}, "properties": {"title": "32 Bryanston Square", "id": "amp_place_id_45", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.16166754363554944, 51.51814975134741]}, "properties": {"title": "32 Bryanston Square", "id": "amp_place_id_45", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25596, 51.75222]}, "properties": {"title": "Oxford", "id": "amp_place_id_46", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90219, 48.19745]}, "properties": {"title": "Neulengbach", "id": "amp_place_id_47", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.908621293769759, 48.19979820714975]}, "properties": {"title": "Neulengbach", "id": "amp_place_id_47", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35831, 48.20182]}, "properties": {"title": "Karl-Schweighofer-Gasse 4", "id": "amp_place_id_48", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.358312342810045, 48.20181915113065]}, "properties": {"title": "Karl-Schweighofer-Gasse 4", "id": "amp_place_id_48", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34295, 48.24868]}, "properties": {"title": "Paradisgasse 55", "id": "amp_place_id_49", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34295339863543, 48.248678311142996]}, "properties": {"title": "Paradisgasse 55", "id": "amp_place_id_49", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.88178, 41.83274]}, "properties": {"title": "Palestrina", "id": "amp_place_id_50", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.51133, 41.89193]}, "properties": {"title": "Rome", "id": "amp_place_id_51", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [29.77253, 59.90612]}, "properties": {"title": "Lomonosov", "id": "amp_place_id_52", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.42034, 36.72016]}, "properties": {"title": "M\u00e1laga", "id": "amp_place_id_53", "country_code": "ES"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.99523, 43.60068]}, "properties": {"title": "Mougins", "id": "amp_place_id_54", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-90.19789, 38.62727]}, "properties": {"title": "St. Louis", "id": "amp_place_id_55", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12574, 51.50853]}, "properties": {"title": "London", "id": "amp_place_id_56", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.98546, 43.64031]}, "properties": {"title": "Caprese Michelangelo", "id": "amp_place_id_57", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.09549, 50.73438]}, "properties": {"title": "Bonn", "id": "amp_place_id_58", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.3, 53.0]}, "properties": {"title": "Eastwood", "id": "amp_place_id_59", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.11183, 43.72254]}, "properties": {"title": "Vence", "id": "amp_place_id_60", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.82549, 52.68154]}, "properties": {"title": "Lichfield", "id": "amp_place_id_61", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.61415, 48.40921]}, "properties": {"title": "Krems", "id": "amp_place_id_62", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.86667, 47.3]}, "properties": {"title": "Ried", "id": "amp_place_id_63", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.29004, 48.20969]}, "properties": {"title": "Ansfelden", "id": "amp_place_id_64", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.03257, 48.76736]}, "properties": {"title": "Horn\u00ed Plan\u00e1", "id": "amp_place_id_65", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.28611, 48.30639]}, "properties": {"title": "Linz", "id": "amp_place_id_66", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.05651, 47.95852]}, "properties": {"title": "Pottenstein", "id": "amp_place_id_67", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.45, 47.06667]}, "properties": {"title": "Graz", "id": "amp_place_id_68", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17895, 51.53593]}, "properties": {"title": "15 Loudoun Road", "id": "amp_place_id_69", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.1789514558219421, 51.535932430359836]}, "properties": {"title": "15 Loudoun Road", "id": "amp_place_id_69", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [21.82793, 37.64]}, "properties": {"title": "Livadaki", "id": "amp_place_id_70", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [21.82792838327145, 37.640004454026155]}, "properties": {"title": "Livadaki", "id": "amp_place_id_70", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39375, 48.19499]}, "properties": {"title": "Eslarngasse", "id": "amp_place_id_71", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.393747926634855, 48.19498822750462]}, "properties": {"title": "Eslarngasse", "id": "amp_place_id_71", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.46667, 47.58333]}, "properties": {"title": "Lake of Constance", "id": "amp_place_id_72", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.79839, 47.32306]}, "properties": {"title": "Zell am See", "id": "amp_place_id_74", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.33333]}, "properties": {"title": "Prielau (Schloss Prielau)", "id": "amp_place_id_75", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.73757, 47.33165]}, "properties": {"title": "Schmittenh\u00f6he valley", "id": "amp_place_id_76", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.737574982944441, 47.33165026519955]}, "properties": {"title": "Schmittenh\u00f6he valley", "id": "amp_place_id_76", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.76178, 48.19779]}, "properties": {"title": "B\u00f6heimkirchen", "id": "amp_place_id_79", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36543, 48.21058]}, "properties": {"title": "Caf\u00e9 Central", "id": "amp_place_id_80", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.365433890569722, 48.210577455478735]}, "properties": {"title": "Caf\u00e9 Central", "id": "amp_place_id_80", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.366032810986137, 48.20984379239084]}, "properties": {"title": "Caf\u00e9 Herrenhof", "id": "amp_place_id_81", "country_code": null}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.31229, 48.18494]}, "properties": {"title": "Schloss Sch\u00f6nbrunn", "id": "amp_place_id_82", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.0, 46.0]}, "properties": {"title": "France", "id": "amp_place_id_83", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.3488, 48.85341]}, "properties": {"title": "Paris", "id": "amp_place_id_84", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3678, 48.20644]}, "properties": {"title": "Palais P\u00e1lffy", "id": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.367798975228684, 48.2064399676074]}, "properties": {"title": "Palais P\u00e1lffy", "id": "amp_place_id_85", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [19.04045, 47.49835]}, "properties": {"title": "Budapest", "id": "amp_place_id_86", "country_code": "HU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.12846, 51.49937]}, "properties": {"title": "Westminster Abbey", "id": "amp_place_id_87", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36702, 48.20684]}, "properties": {"title": "Josefsplatz", "id": "amp_place_id_88", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.367020498634673, 48.20684423396885]}, "properties": {"title": "Josefsplatz", "id": "amp_place_id_88", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36469, 48.20563]}, "properties": {"title": "Redoutensaal (Hofburg)", "id": "amp_place_id_89", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [98.0, 60.0]}, "properties": {"title": "Russia", "id": "amp_place_id_91", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90862, 48.1998]}, "properties": {"title": "Caf\u00e9 de l'Opera (Operncaf\u00e9/Opern-Caf\u00e9)", "id": "amp_place_id_92", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36923050734781, 48.202139557498505]}, "properties": {"title": "Caf\u00e9 de l'Opera (Operncaf\u00e9/Opern-Caf\u00e9)", "id": "amp_place_id_92", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.69531, 54.75844]}, "properties": {"title": "United Kingdom", "id": "amp_place_id_93", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.34842, 48.24085]}, "properties": {"title": "Pielach (stream)", "id": "amp_place_id_94", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37058, 48.206]}, "properties": {"title": "Neuer Markt", "id": "amp_place_id_95", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.25, 56.0]}, "properties": {"title": "Jutland", "id": "amp_place_id_96", "country_code": "DK"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.01427, 47.00016]}, "properties": {"title": "Switzerland", "id": "amp_place_id_97", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [79.0, 22.0]}, "properties": {"title": "India", "id": "amp_place_id_98", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.46672, 50.08292]}, "properties": {"title": "Czechoslovakia", "id": "amp_place_id_100", "country_code": "CS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [22.25, 37.58333]}, "properties": {"title": "Arcadia", "id": "amp_place_id_103", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.25, 51.5]}, "properties": {"title": "Berkshire", "id": "amp_place_id_106", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.37129, 51.33962]}, "properties": {"title": "Leipzig", "id": "amp_place_id_107", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.24889, 53.33306]}, "properties": {"title": "Dublin", "id": "amp_place_id_108", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.24555, 51.83864]}, "properties": {"title": "Dessau", "id": "amp_place_id_109", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [26.214, -29.12107]}, "properties": {"title": "Bloemfontein", "id": "amp_place_id_110", "country_code": "ZA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.25839, 48.13307]}, "properties": {"title": "Rodaun", "id": "amp_place_id_111", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.14461, 51.51081]}, "properties": {"title": "Bruton Street", "id": "amp_place_id_112", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.14461128132633838, 51.51081260555309]}, "properties": {"title": "Bruton Street", "id": "amp_place_id_112", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [5.98154, 50.88365]}, "properties": {"title": "Heerlen", "id": "amp_place_id_113", "country_code": "NL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.79933, 47.91839]}, "properties": {"title": "Gmunden", "id": "amp_place_id_114", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.98333, 44.1]}, "properties": {"title": "Predappio", "id": "amp_place_id_115", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.20514, 45.98168]}, "properties": {"title": "Mezzegra", "id": "amp_place_id_116", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.81605, 48.90469]}, "properties": {"title": "Velk\u00e9 Pavlovice", "id": "amp_place_id_117", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.53559, 46.29192]}, "properties": {"title": "Sierre", "id": "amp_place_id_118", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [18.14499, 49.64094]}, "properties": {"title": "P\u0159\u00edbor", "id": "amp_place_id_119", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [26.86916, 46.49582]}, "properties": {"title": "Sarata", "id": "amp_place_id_120", "country_code": "RO"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [18.02899, 48.24445]}, "properties": {"title": "Cabaj-\u010c\u00e1por", "id": "amp_place_id_121", "country_code": "SK"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.14569, 46.20222]}, "properties": {"title": "Geneva", "id": "amp_place_id_122", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.90048, 48.30478]}, "properties": {"title": "Atzenbrugg-Moosbierbaum", "id": "amp_place_id_123", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.80717, 53.07582]}, "properties": {"title": "Bremen", "id": "amp_place_id_124", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.71667, 47.71667]}, "properties": {"title": "Bad Wiessee", "id": "amp_place_id_125", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.99302, 53.55073]}, "properties": {"title": "Hamburg", "id": "amp_place_id_126", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-114.21882, 43.4268]}, "properties": {"title": "Hailey", "id": "amp_place_id_127", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.82112, 51.85782]}, "properties": {"title": "Starosiedle", "id": "amp_place_id_128", "country_code": "PL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-87.65005, 41.85003]}, "properties": {"title": "Chicago", "id": "amp_place_id_129", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [28.04363, -26.20227]}, "properties": {"title": "Johannesburg", "id": "amp_place_id_130", "country_code": "ZA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [18.42322, -33.92584]}, "properties": {"title": "Cape Town", "id": "amp_place_id_131", "country_code": "ZA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-5.92541, 54.59682]}, "properties": {"title": "Belfast", "id": "amp_place_id_132", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.55, 47.36667]}, "properties": {"title": "Z\u00fcrich", "id": "amp_place_id_133", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-122.33207, 47.60621]}, "properties": {"title": "Seattle", "id": "amp_place_id_134", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [30.31413, 59.93863]}, "properties": {"title": "Saint Petersburg (Leningrad)", "id": "amp_place_id_135", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.06566, 52.39886]}, "properties": {"title": "Potsdam", "id": "amp_place_id_136", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [19.0678, 52.64817]}, "properties": {"title": "W\u0142oc\u0142awek", "id": "amp_place_id_137", "country_code": "PL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [37.61556, 55.75222]}, "properties": {"title": "Moscow", "id": "amp_place_id_138", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.37853, 51.90693]}, "properties": {"title": "G\u00fctersloh", "id": "amp_place_id_139", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.73832, 51.05089]}, "properties": {"title": "Dresden", "id": "amp_place_id_140", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.35162, 50.43723]}, "properties": {"title": "Ji\u010d\u00edn", "id": "amp_place_id_141", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.36256, 53.72587]}, "properties": {"title": "Castleford", "id": "amp_place_id_142", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.07188, 51.85407]}, "properties": {"title": "Much Hadham", "id": "amp_place_id_143", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.2, 48.2]}, "properties": {"title": "P\u00f6chlarn", "id": "amp_place_id_144", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.92654, 46.39869]}, "properties": {"title": "Villeneuve", "id": "amp_place_id_145", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-74.06431, 40.34705]}, "properties": {"title": "Red Bank", "id": "amp_place_id_146", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-75.36517, 43.5334]}, "properties": {"title": "Talcottville", "id": "amp_place_id_147", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-79.87617, 34.29988]}, "properties": {"title": "Darlington", "id": "amp_place_id_148", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-86.11221, 35.18592]}, "properties": {"title": "Winchester", "id": "amp_place_id_149", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [88.36304, 22.56263]}, "properties": {"title": "Kolkata", "id": "amp_place_id_150", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.6384, 51.73455]}, "properties": {"title": "St Briavels", "id": "amp_place_id_151", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [47.53613, -18.91368]}, "properties": {"title": "Antananarivo", "id": "amp_place_id_152", "country_code": "MG"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.42076, 50.08804]}, "properties": {"title": "Prague", "id": "amp_place_id_154", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-71.05977, 42.35843]}, "properties": {"title": "Boston", "id": "amp_place_id_155", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.39482, 48.19811]}, "properties": {"title": "Landstra\u00dfe", "id": "amp_place_id_156", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36912, 48.20323]}, "properties": {"title": "Vienna State Opera", "id": "amp_place_id_157", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.41169, 48.20609]}, "properties": {"title": "Prater", "id": "amp_place_id_158", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.83333, 42.83333]}, "properties": {"title": "Italy", "id": "amp_place_id_159", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.3814, 48.1975]}, "properties": {"title": "Embassy of the United Kingdom in Austria", "id": "amp_place_id_160", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.381447374432152, 48.19834902425164]}, "properties": {"title": "Embassy of the United Kingdom in Austria", "id": "amp_place_id_160", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-122.41942, 37.77493]}, "properties": {"title": "San Francisco", "id": "amp_place_id_161", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.54835, 51.52754]}, "properties": {"title": "Eisleben Lutherstadt", "id": "amp_place_id_162", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.95111, 36.28639]}, "properties": {"title": "Thagaste", "id": "amp_place_id_164", "country_code": "DZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.73323, 36.86574]}, "properties": {"title": "Hippo Regius", "id": "amp_place_id_165", "country_code": "DZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.66017, 48.03809]}, "properties": {"title": "Trautmannsdorf an der Leitha", "id": "amp_place_id_166", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.15047, 52.9536]}, "properties": {"title": "Nottingham", "id": "amp_place_id_167", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96625, 40.78343]}, "properties": {"title": "Manhattan", "id": "amp_place_id_168", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [10.89851, 48.37154]}, "properties": {"title": "Augsburg", "id": "amp_place_id_169", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.65953, 50.79141]}, "properties": {"title": "The Vicarage, Crediton", "id": "amp_place_id_170", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.659534580154178, 50.79141203020876]}, "properties": {"title": "The Vicarage, Crediton", "id": "amp_place_id_170", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96418, 40.81013]}, "properties": {"title": "39 Claremont Avenue, apt 32", "id": "amp_place_id_171", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96418150148406, 40.810125765533726]}, "properties": {"title": "39 Claremont Avenue, apt 32", "id": "amp_place_id_171", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35352, 48.21287]}, "properties": {"title": "Schl\u00f6sselgasse 8", "id": "amp_place_id_172", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35351725445949, 48.21286685931523]}, "properties": {"title": "Schl\u00f6sselgasse 8", "id": "amp_place_id_172", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.25622, 53.33991]}, "properties": {"title": "22 Kildare Street", "id": "amp_place_id_173", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.256222616611612, 53.339912120136184]}, "properties": {"title": "22 Kildare Street", "id": "amp_place_id_173", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.35696, 48.21874]}, "properties": {"title": "Lackierergasse 5", "id": "amp_place_id_174", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.356955340964838, 48.21874314648821]}, "properties": {"title": "Lackierergasse 5", "id": "amp_place_id_174", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.18333, 48.2]}, "properties": {"title": "Vienna Woods", "id": "amp_place_id_175", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [24.10589, 56.946]}, "properties": {"title": "Riga", "id": "amp_place_id_176", "country_code": "LV"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36624, 48.20882]}, "properties": {"title": "Palais Wilczek", "id": "amp_place_id_177", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36624270048027, 48.20882412668265]}, "properties": {"title": "Palais Wilczek", "id": "amp_place_id_177", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.03527, 54.52337]}, "properties": {"title": "Lisburn", "id": "amp_place_id_178", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.91444, 53.15611]}, "properties": {"title": "Kildare", "id": "amp_place_id_179", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-10.01265, 54.19782]}, "properties": {"title": "Ardmore", "id": "amp_place_id_180", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.83744, 55.58131]}, "properties": {"title": "Belford", "id": "amp_place_id_181", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [115.9761, 29.56902]}, "properties": {"title": "Guling, Jiujiang", "id": "amp_place_id_182", "country_code": "CN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.18112, 51.65855]}, "properties": {"title": "Burcot", "id": "amp_place_id_183", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-118.24368, 34.05223]}, "properties": {"title": "Los Angeles", "id": "amp_place_id_184", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.1553, 48.06776]}, "properties": {"title": "Petzelsdorf", "id": "amp_place_id_185", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-91.64407, 42.00833]}, "properties": {"title": "Cedar Rapids", "id": "amp_place_id_186", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.62916, 52.12773]}, "properties": {"title": "Magdeburg", "id": "amp_place_id_187", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.04343, 48.25628]}, "properties": {"title": "Braunau am Inn", "id": "amp_place_id_188", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.47499, 49.1775]}, "properties": {"title": "Villeneuve-sur-F\u00e8re", "id": "amp_place_id_189", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.41667, 51.98333]}, "properties": {"title": "Havixbeck", "id": "amp_place_id_190", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.27113, 47.69419]}, "properties": {"title": "Meersburg", "id": "amp_place_id_191", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.42165, 50.08795]}, "properties": {"title": "The Golz-Kinsky Palace", "id": "amp_place_id_192", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.42167365633837, 50.08803132166223]}, "properties": {"title": "The Golz-Kinsky Palace", "id": "amp_place_id_192", "country_code": "CZ"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.75167, 52.47523]}, "properties": {"title": "Lowestoft", "id": "amp_place_id_193", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [1.60215, 52.15492]}, "properties": {"title": "Aldeburgh", "id": "amp_place_id_194", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.76903, 46.8289]}, "properties": {"title": "Lienz", "id": "amp_place_id_195", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.149, 51.50954]}, "properties": {"title": "Mayfair", "id": "amp_place_id_196", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.23333, 57.03333]}, "properties": {"title": "Balmoral Castle", "id": "amp_place_id_197", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.28496, 51.94924]}, "properties": {"title": "Hitchin", "id": "amp_place_id_198", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.6068, 51.439]}, "properties": {"title": "Royal Lodge", "id": "amp_place_id_199", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.13836, 51.50401]}, "properties": {"title": "Clarence House", "id": "amp_place_id_200", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.61489, 51.1858]}, "properties": {"title": "Godalming", "id": "amp_place_id_201", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.15618, 57.78145]}, "properties": {"title": "J\u00f6nk\u00f6ping", "id": "amp_place_id_202", "country_code": "SE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [28.63659, -12.95867]}, "properties": {"title": "Ndola", "id": "amp_place_id_203", "country_code": "ZM"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.19648, 55.95206]}, "properties": {"title": "Edinburgh", "id": "amp_place_id_204", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-84.51439, 39.12711]}, "properties": {"title": "Cincinnati", "id": "amp_place_id_205", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-71.29256, 42.29649]}, "properties": {"title": "Wellesley", "id": "amp_place_id_206", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-116.78467, 34.68743]}, "properties": {"title": "California", "id": "amp_place_id_209", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-76.66606, 42.54229]}, "properties": {"title": "Trumansburg", "id": "amp_place_id_210", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-76.53062245912945, 42.46259177654697]}, "properties": {"title": "Trumansburg", "id": "amp_place_id_210", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36615, 48.20878]}, "properties": {"title": "Herrengasse 5", "id": "amp_place_id_211", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36615424096451, 48.208783977078866]}, "properties": {"title": "Herrengasse 5", "id": "amp_place_id_211", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.70447, 51.67279]}, "properties": {"title": "Tenby", "id": "amp_place_id_213", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.91667, 51.83333]}, "properties": {"title": "Pembrokeshire", "id": "amp_place_id_214", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.69809, 51.67136]}, "properties": {"title": "2 St Julian's Street", "id": "amp_place_id_215", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-4.698087203148403, 51.671427500244214]}, "properties": {"title": "2 St Julian's Street", "id": "amp_place_id_215", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.65, 50.78333]}, "properties": {"title": "Crediton", "id": "amp_place_id_216", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34315, 48.21561]}, "properties": {"title": "Alser Stra\u00dfe 48", "id": "amp_place_id_217", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.34315160048035, 48.21561434780695]}, "properties": {"title": "Alser Stra\u00dfe 48", "id": "amp_place_id_217", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.97794, 53.41058]}, "properties": {"title": "Liverpool", "id": "amp_place_id_219", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.1763, 51.51558]}, "properties": {"title": "Paddington", "id": "amp_place_id_220", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.97249, 40.76213]}, "properties": {"title": "575 Madison Avenue", "id": "amp_place_id_221", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.97248554818371, 40.762125992842755]}, "properties": {"title": "575 Madison Avenue", "id": "amp_place_id_221", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-72.92816, 41.30815]}, "properties": {"title": "New Haven", "id": "amp_place_id_222", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36848, 48.18724]}, "properties": {"title": "Johann-Strau\u00df-Gasse 28", "id": "amp_place_id_224", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.36847668650523, 48.18723668171942]}, "properties": {"title": "Johann-Strau\u00df-Gasse 28", "id": "amp_place_id_224", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37118, 48.20379]}, "properties": {"title": "Hotel \"Altenburger Hof\"", "id": "amp_place_id_225", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37118272746974, 48.20378854425725]}, "properties": {"title": "Hotel \"Altenburger Hof\"", "id": "amp_place_id_225", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [35.45, 31.86667]}, "properties": {"title": "Jericho", "id": "amp_place_id_227", "country_code": "PS"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [2.26965, 48.8846]}, "properties": {"title": "Neuilly-sur-Seine", "id": "amp_place_id_228", "country_code": "FR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [30.36052, 59.93129]}, "properties": {"title": "Nevsky Prospect", "id": "amp_place_id_230", "country_code": "RU"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.19175, 51.50094]}, "properties": {"title": "Kensington", "id": "amp_place_id_234", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37068, 48.20468]}, "properties": {"title": "K\u00e4rntner Stra\u00dfe", "id": "amp_place_id_235", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.370679715340312, 48.20467964011737]}, "properties": {"title": "K\u00e4rntner Stra\u00dfe", "id": "amp_place_id_235", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [107.83333, 16.16667]}, "properties": {"title": "Vietnam", "id": "amp_place_id_236", "country_code": "VN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.81027, 50.7512]}, "properties": {"title": "Devon", "id": "amp_place_id_237", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-3.6594549039790696, 50.7914689136201]}, "properties": {"title": "Devon", "id": "amp_place_id_237", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.73756, 50.17866]}, "properties": {"title": "Bad Vilbel", "id": "amp_place_id_238", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-2.0, 53.0]}, "properties": {"title": "England", "id": "amp_place_id_239", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.7784985940278975, 53.56861844944027]}, "properties": {"title": "England", "id": "amp_place_id_239", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.57883, 50.35357]}, "properties": {"title": "Koblenz", "id": "amp_place_id_240", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.76075, 52.08218]}, "properties": {"title": "Acton", "id": "amp_place_id_241", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [0.80861, 51.94876]}, "properties": {"title": "Wormingford", "id": "amp_place_id_242", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [22.13968, 50.51987]}, "properties": {"title": "Nisko", "id": "amp_place_id_243", "country_code": "PL"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [14.58066, 48.27343]}, "properties": {"title": "Schwertberg", "id": "amp_place_id_244", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.38158, 47.28873]}, "properties": {"title": "Innsbruck", "id": "amp_place_id_245", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [34.89277, 36.91766]}, "properties": {"title": "Tarsus", "id": "amp_place_id_246", "country_code": "TR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98736, 40.72927]}, "properties": {"title": "East Village", "id": "amp_place_id_247", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.96418, 40.81013]}, "properties": {"title": "39 Claremont Ave, apt 31", "id": "amp_place_id_248", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-8.0, 53.0]}, "properties": {"title": "Ireland", "id": "amp_place_id_249", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.45022, 51.16363]}, "properties": {"title": "Rheydt", "id": "amp_place_id_250", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.96667, 48.33333]}, "properties": {"title": "Perschling (stream)", "id": "amp_place_id_251", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37556, 48.24594]}, "properties": {"title": "Leystra\u00dfe 23", "id": "amp_place_id_253", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37560888650667, 48.245897656186635]}, "properties": {"title": "Leystra\u00dfe 23", "id": "amp_place_id_253", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.51942, 47.90767]}, "properties": {"title": "Loretto", "id": "amp_place_id_254", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [15.81357, 48.18054]}, "properties": {"title": "Hinterholz/Audenstra\u00dfe", "id": "amp_place_id_255", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.31667]}, "properties": {"title": "Lake Zell", "id": "amp_place_id_256", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.31667]}, "properties": {"title": "Austria-Hungary", "id": "amp_place_id_257", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.8, 47.31667]}, "properties": {"title": "Fallegg", "id": "amp_place_id_258", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98648, 40.7281]}, "properties": {"title": "St. Mark's Place", "id": "amp_place_id_259", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-73.98648, 40.7281]}, "properties": {"title": "Eastern Bloc", "id": "amp_place_id_260", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.37868, 48.21059]}, "properties": {"title": "Hauptpostamt", "id": "amp_place_id_261", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.73711, 52.37362]}, "properties": {"title": "Hanover", "id": "amp_place_id_262", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.09576, 47.49209]}, "properties": {"title": "Garmisch-Partenkirchen", "id": "amp_place_id_263", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [11.09576, 47.49209]}, "properties": {"title": "Edom", "id": "amp_place_id_264", "country_code": ""}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.9663, 52.45902]}, "properties": {"title": "Marquardt", "id": "amp_place_id_265", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-91.63932, 44.04996]}, "properties": {"title": "Winona", "id": "amp_place_id_266", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.77616, 51.22172]}, "properties": {"title": "D\u00fcsseldorf", "id": "amp_place_id_267", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [25.93241, 48.29045]}, "properties": {"title": "Chernivtsi", "id": "amp_place_id_268", "country_code": "UA"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.89983, 52.48142]}, "properties": {"title": "Birmingham", "id": "amp_place_id_269", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-97.51643, 35.46756]}, "properties": {"title": "Oklahoma City", "id": "amp_place_id_270", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-84.15574, 31.57851]}, "properties": {"title": "Albany, Georgia", "id": "amp_place_id_271", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17467, 51.52991]}, "properties": {"title": "St John's Wood", "id": "amp_place_id_272", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.17467, 51.52991]}, "properties": {"title": "Michelbach", "id": "amp_place_id_273", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [72.88261, 19.07283]}, "properties": {"title": "Mumbai", "id": "amp_place_id_274", "country_code": "IN"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.8795, 50.72048]}, "properties": {"title": "Bournemouth", "id": "amp_place_id_275", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [6.91143, 46.43301]}, "properties": {"title": "Montreux", "id": "amp_place_id_276", "country_code": "CH"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.56014, 53.10848]}, "properties": {"title": "Cromford", "id": "amp_place_id_277", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-6.79667, 53.18194]}, "properties": {"title": "Newbridge", "id": "amp_place_id_278", "country_code": "IE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-1.64222, 52.82238]}, "properties": {"title": "Horninglow", "id": "amp_place_id_279", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.0564, 51.6885]}, "properties": {"title": "Theobalds Park", "id": "amp_place_id_280", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [23.50433, 37.94183]}, "properties": {"title": "Salamis Island", "id": "amp_place_id_281", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [22.52637, 40.76169]}, "properties": {"title": "Pella", "id": "amp_place_id_282", "country_code": "GR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.57966, 48.88353]}, "properties": {"title": "Straubing", "id": "amp_place_id_283", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.29748, 45.97248]}, "properties": {"title": "Ceneda", "id": "amp_place_id_284", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [26.0603, 53.7522]}, "properties": {"title": "Liub\u010da", "id": "amp_place_id_285", "country_code": "BY"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [12.41725, 45.48627]}, "properties": {"title": "Burano", "id": "amp_place_id_286", "country_code": "IT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.61405, 51.66685]}, "properties": {"title": "Amersham", "id": "amp_place_id_287", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.2, 51.35]}, "properties": {"title": "Sutton", "id": "amp_place_id_288", "country_code": "GB"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-43.18223, -22.90642]}, "properties": {"title": "Rio de Janeiro", "id": "amp_place_id_289", "country_code": "BR"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.23975, 48.7606]}, "properties": {"title": "Baden-Baden", "id": "amp_place_id_290", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [9.66313, 54.30663]}, "properties": {"title": "Rendsburg", "id": "amp_place_id_291", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.24932, 50.08258]}, "properties": {"title": "Wiesbaden", "id": "amp_place_id_292", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.373, 50.436]}, "properties": {"title": "Andernach", "id": "amp_place_id_293", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [8.465, 53.32525]}, "properties": {"title": "Brake", "id": "amp_place_id_294", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [13.8405, 47.5561]}, "properties": {"title": "Pichl-Kainisch", "id": "amp_place_id_295", "country_code": "AT"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.02222, 51.05639]}, "properties": {"title": "Leverkusen", "id": "amp_place_id_296", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [7.85222, 47.9959]}, "properties": {"title": "Freiburg im Breisgau", "id": "amp_place_id_297", "country_code": "DE"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-83.74088, 42.27756]}, "properties": {"title": "Ann Arbor", "id": "amp_place_id_298", "country_code": "US"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [16.358543242329002, 48.200017817967385]}, "properties": {"title": "Fillgradergasse 12", "id": "amp_place_id_303", "country_code": ""}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [-0.19083175582250725, 51.49647842887996]}, "properties": {"title": "70 Lexham Gardens", "id": "amp_place_id_305", "country_code": ""}}]} \ No newline at end of file diff --git a/html/images/icons/chat-left-dots.svg b/html/images/icons/chat-left-dots.svg new file mode 100644 index 000000000..c73169d7d --- /dev/null +++ b/html/images/icons/chat-left-dots.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/html/js/commentary.js b/html/js/commentary.js new file mode 100644 index 000000000..8ca4da9f5 --- /dev/null +++ b/html/js/commentary.js @@ -0,0 +1,27 @@ +var comments = document.getElementById("commentary"); +var comment = document.getElementsByClassName("interp"); +[...comment].forEach((c) => { + c.addEventListener("click", function () { + let ref = c.getAttribute("ref").split("#")[1]; + comment_description = document.getElementById(ref); + if (comments.classList.contains("fade-all")) { + comments.classList.remove("fade-all"); + } + if (comment_description.classList.contains("fade-all")) { + comment_description.classList.remove("fade-all"); + } + comment_description.scrollIntoView(); + comment_description.style = "border: 2px solid #b59890;"; + setTimeout(() => { + comment_description.style = "border: none;"; + }, 2000); + }); +}); +let buttons = document.getElementsByClassName("btn-commentary"); +[...buttons].forEach((b) => { + b.addEventListener("click", function () { + let id = b.getAttribute("id").split("-")[0]; + comment_description = document.getElementById(id); + comment_description.classList.add("fade-all"); + }); +}); diff --git a/html/js/mark.js b/html/js/mark.js index 536eac240..0974685b4 100644 --- a/html/js/mark.js +++ b/html/js/mark.js @@ -9,7 +9,9 @@ function performMark() { var keyword = keywordInput.value; // Determine selected options - var options = {}; + var options = { + acrossElements: true, + }; [].forEach.call(optionInputs, function (opt) { options[opt.value] = opt.checked; }); @@ -25,7 +27,9 @@ function performMark() { function performMarkUrl() { // Determine selected options - var options = {}; + var options = { + acrossElements: true, + }; [].forEach.call(optionInputs, function (opt) { options[opt.value] = opt.checked; }); diff --git a/html/js/prev-next-urlupdate.js b/html/js/prev-next-urlupdate.js index e5eabbb46..b8c1fdb99 100644 --- a/html/js/prev-next-urlupdate.js +++ b/html/js/prev-next-urlupdate.js @@ -1,6 +1,7 @@ /* de-micro-editor aot features class */ const dse_feat1 = "features-1"; const dse_feat2 = "features-2"; +const dse_feat3 = "features-3"; /* html prev and next buttons -> link id */ const prev_btn = "prev-doc"; @@ -10,6 +11,7 @@ window.onload = nextPrevUrl(); var features1 = document.getElementsByClassName(dse_feat1); var features2 = document.getElementsByClassName(dse_feat2); +var features3 = document.getElementsByClassName(dse_feat3); [].forEach.call(features1, (opt) => { opt.addEventListener("click", nextPrevUrlUpdate); @@ -19,6 +21,10 @@ var features2 = document.getElementsByClassName(dse_feat2); opt.addEventListener("click", nextPrevUrlUpdate); }); +[].forEach.call(features3, (opt) => { + opt.addEventListener("click", nextPrevUrlUpdate); +}); + function nextPrevUrl() { var prev = document.getElementById(prev_btn); var next = document.getElementById(next_btn); @@ -46,27 +52,20 @@ function nextPrevUrl() { function nextPrevUrlUpdate() { var prev = document.getElementById(prev_btn); var next = document.getElementById(next_btn); - var urlparam = new URLSearchParams(document.location.search); + var url = new URL(document.location); + var urlparam = new URLSearchParams(url.search); if (prev) { var prev_href = new URL(prev.getAttribute("href")); - var old_prev_search = new URLSearchParams(prev_href.search); - urlparam.forEach((value, key) => { - old_prev_search.set(key, value); - }); prev.setAttribute( "href", - `${prev_href.origin}${prev_href.pathname}?${old_prev_search.toString()}` + `${prev_href.origin}${prev_href.pathname}?${urlparam.toString()}` ); } if (next) { var next_href = new URL(next.getAttribute("href")); - var old_next_search = new URLSearchParams(next_href.search); - urlparam.forEach((value, key) => { - old_next_search.set(key, value); - }); next.setAttribute( "href", - `${next_href.origin}${next_href.pathname}?${old_next_search.toString()}` + `${next_href.origin}${next_href.pathname}?${urlparam.toString()}` ); } } diff --git a/html/js/run.js b/html/js/run.js index eaff321fe..363ad0bd3 100644 --- a/html/js/run.js +++ b/html/js/run.js @@ -70,6 +70,22 @@ var editor = new LoadEditor({ class: "features-1", }, }, + { + opt: "int", + color: "au-brown", + title: "Comments", + html_class: "interp", + css_class: "int", + hide: { + hidden: true, + class: "interp", + }, + chg_citation: "citation-url", + features: { + all: false, + class: "features-3", + }, + }, { opt: "tf", opt_slider: "text-features-slider", @@ -89,8 +105,8 @@ var editor = new LoadEditor({ }, { opt: "ef", - opt_slider: "entities-features-slider", - title: "All Entities", + opt_slider: "ef-features-slider", + title: "All entities", color: "grey", html_class: "undefined", css_class: "undefined", @@ -108,11 +124,11 @@ var editor = new LoadEditor({ opt: "prs", color: "pink", title: "Persons", - html_class: "persons", + html_class: "person", css_class: "pers", hide: { hidden: true, - class: "persons .entity", + class: "person .entity", }, chg_citation: "citation-url", features: { @@ -124,11 +140,11 @@ var editor = new LoadEditor({ opt: "plc", color: "gold", title: "Places", - html_class: "places", + html_class: "place", css_class: "plc", hide: { hidden: true, - class: "places .entity", + class: "place .entity", }, chg_citation: "citation-url", features: { @@ -140,12 +156,12 @@ var editor = new LoadEditor({ opt: "wrk", color: "turquoise", title: "Literature", - html_class: "works", + html_class: "lit_work", css_class: "wrk", chg_citation: "citation-url", hide: { hidden: true, - class: "works .entity", + class: "lit_work .entity", }, features: { all: false, @@ -156,11 +172,11 @@ var editor = new LoadEditor({ opt: "org", color: "lila", title: "Institutions", - html_class: "orgs", - css_class: "org", + html_class: "org", + css_class: "orgs", hide: { hidden: true, - class: "orgs .entity", + class: "org .entity", }, chg_citation: "citation-url", features: { @@ -214,22 +230,22 @@ var editor = new LoadEditor({ }, ], active_class: "active", - html_class: "custom-select", + html_class: "font-dropdown", }, fs: { name: "Create full size mode", variants: [ { - opt: "ef", - title: "Full screen on/off", + opt: "fs", + title: "Fullscreen", urlparam: "fs", chg_citation: "citation-url", hide: "hide-reading", - to_hide: "fade", + to_hide: "fade-all", }, ], active_class: "active", - render_class: "nav-link btn btn-round", + render_class: "window-screen-btn", render_svg: "", }, @@ -237,7 +253,7 @@ var editor = new LoadEditor({ name: "Change font size", variants: [ { - opt: "fs", + opt: "fos", title: "Font size", urlparam: "fos", chg_citation: "citation-url", @@ -254,20 +270,20 @@ var editor = new LoadEditor({ }, ], active_class: "active", - html_class: "custom-select", + html_class: "font-dropdown", }, is: { name: "enable/disable image viewer", variants: [ { opt: "es", - title: "Facsimile on/off", + title: "Image", urlparam: "img", chg_citation: "citation-url", - fade: "fade", + fade: "fade-all", column_small: { - class: "col-md-3", - percent: "25", + class: "col-md-4", + percent: "35", }, column_full: { class: "col-md-12", @@ -285,7 +301,7 @@ var editor = new LoadEditor({ ], active_class: "active", rendered_element: { - a_class: "nav-link btn btn-round", + a_class: "img-viewer-btn", svg: "", }, }, @@ -336,6 +352,6 @@ var editor = new LoadEditor({ osd_target: "container", img_source: "container2", }, - wr: true, + wr: false, up: true, }); diff --git a/html/js/ts_search.js b/html/js/ts_search.js index 1d8651245..bbb49d5cf 100644 --- a/html/js/ts_search.js +++ b/html/js/ts_search.js @@ -23,6 +23,7 @@ const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({ // filterBy is managed and overridden by InstantSearch.js. To set it, you want to use one of the filter widgets like refinementList or use the `configure` widget. additionalSearchParameters: { query_by: "full_text,title", + // infix: "fallback,fallback", }, }); @@ -79,10 +80,6 @@ search.addWidgets([ }, }), - instantsearch.widgets.pagination({ - container: "#pagination", - }), - instantsearch.widgets.stats({ container: "#stats-container", templates: { @@ -186,7 +183,17 @@ search.addWidgets([ }), instantsearch.widgets.pagination({ - container: "#pagination", + container: "#pagination-top", + padding: 2, + cssClasses: { + list: "pagination", + item: "page-item", + link: "page-link", + }, + }), + + instantsearch.widgets.pagination({ + container: "#pagination-bottom", padding: 2, cssClasses: { list: "pagination", diff --git a/xslt/editions.xsl b/xslt/editions.xsl index 8f27165d3..bb59c57f6 100644 --- a/xslt/editions.xsl +++ b/xslt/editions.xsl @@ -15,6 +15,7 @@ + @@ -57,44 +58,131 @@
+
+ + +
+
+
+
+
+

+ +

+
+
+ +
+
+
+
+

+ +

+
+
+ + + +
+
+
+ +
+

+ +

+
+
+ +
+
+
+
+
+
- - + - - - +
- - +
- - + + - + +
- - + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+
+ + + + + + + +

+
+ + + +


+
+ + + +

+
+ + +

+
+ + +

+
+ + + + + + + +

+
+ + + + + + + + + + + + + + + - - - + + + + + + + + + + + + @@ -146,115 +352,129 @@ - + - - - - - - - - - - / - - - - - - - - - - - - - / - - - - - - - - - - - - - / - - - - - - - - - - - - - / - - - - - - - - - - - - - / - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + +
+ + +
+
+ +
+
+
+ +

+
+
    + + +
  • + +
  • +
    + +
  • + +
  • +
  • + +
  • +
    +
+ +

External Evidence:

+
+ +
+
+
+ + + + + + +
+
+ +
+
+
+ +

+
+
    + + +
  • + +
  • +
    + +
  • + +
  • +
  • + +
  • +
    +
+ +

External Evidence:

+
+
+
+
+
+
+
+