Skip to content

Instantly share code, notes, and snippets.

@ThomasG77
Created July 30, 2021 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasG77/003d087ad317bf871eabd0fb77a719eb to your computer and use it in GitHub Desktop.
Save ThomasG77/003d087ad317bf871eabd0fb77a719eb to your computer and use it in GitHub Desktop.
import json
import os
import requests
dir_path = os.path.dirname(os.path.realpath(__file__))
r_roads = requests.get('https://omnesviae.org/roads.php')
r_all = requests.get('https://omnesviae.org/all.php')
features_roads = {
"type": "FeatureCollection",
"features": []
}
for road in r_roads.json()['roads']:
features_roads["features"].append({
"type": "Feature",
"properties": {
"kind": road["kind"]
},
"geometry": {
"type": "LineString",
"coordinates": [list(reversed(coord)) for coord in road['points']]
}
})
with open(os.path.join(dir_path, 'roads.geojson'), 'w') as outfile:
json.dump(features_roads, outfile)
features_markers = {
"type": "FeatureCollection",
"features": []
}
for pt in r_all.json()['markers']:
features_markers["features"].append({
"type": "Feature",
"properties": {
"id": pt[5],
"name": pt[0],
"desc": pt[1],
"source": "Tabula Peutingeriana" if pt[5][0] == "T" else "Itinerarium Antonini"
},
"geometry": {
"type": "Point",
"coordinates": [pt[4], pt[3]]
}
})
with open(os.path.join(dir_path, 'points.geojson'), 'w') as outfile:
json.dump(features_markers, outfile)
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"id": "TPPlace1000", "name": "Avgvsta vindelicv\u0304", "desc": "Augsburg<br>Vici.org: <a href='https://vici.org/vici/1552/'>https://vici.org/vici/1552/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1000.html'>TPPlace1000</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.894768, 48.365456]}}, {"type": "Feature", "properties": {"id": "TPPlace1001", "name": "Ponione", "desc": "Faimingen<br>Vici.org: <a href='https://vici.org/vici/1553/'>https://vici.org/vici/1553/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1001.html'>TPPlace1001</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.410222, 48.561756]}}, {"type": "Feature", "properties": {"id": "TPPlace1002", "name": "Rapis", "desc": "Schwabm\u00fcnchen<br>Vici.org: <a href='https://vici.org/vici/1554/'>https://vici.org/vici/1554/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1002.html'>TPPlace1002</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.755045, 48.1856]}}, {"type": "Feature", "properties": {"id": "TPPlace1003", "name": "Navoae", "desc": "? Eggenthal<br>Vici.org: <a href='https://vici.org/vici/1555/'>https://vici.org/vici/1555/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1003.html'>TPPlace1003</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.512053, 47.914913]}}, {"type": "Feature", "properties": {"id": "TPPlace1004", "name": "Cambodvno", "desc": "Kempten<br>Vici.org: <a href='https://vici.org/vici/1556/'>https://vici.org/vici/1556/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1004.html'>TPPlace1004</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.311047, 47.723938]}}, {"type": "Feature", "properties": {"id": "TPPlace1006", "name": "Abodiaco", "desc": "Epfach<br>Vici.org: <a href='https://vici.org/vici/1557/'>https://vici.org/vici/1557/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1006.html'>TPPlace1006</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.909769, 47.909885]}}, {"type": "Feature", "properties": {"id": "TPPlace1007", "name": "Vrvsa", "desc": "Raisting<br>Vici.org: <a href='https://vici.org/vici/1558/'>https://vici.org/vici/1558/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1007.html'>TPPlace1007</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.108567, 47.912407]}}, {"type": "Feature", "properties": {"id": "TPPlace1008", "name": "Bratananto", "desc": "Gauting<br>Vici.org: <a href='https://vici.org/vici/1559/'>https://vici.org/vici/1559/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1008.html'>TPPlace1008</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.380158, 48.066494]}}, {"type": "Feature", "properties": {"id": "TPPlace1010", "name": "Adenvm", "desc": "Leonhardpfunzen<br>Vici.org: <a href='https://vici.org/vici/1560/'>https://vici.org/vici/1560/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1010.html'>TPPlace1010</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.144, 47.88414]}}, {"type": "Feature", "properties": {"id": "TPPlace1011", "name": "Bedaio", "desc": "Seebruck<br>Vici.org: <a href='https://vici.org/vici/10048/'>https://vici.org/vici/10048/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1011.html'>TPPlace1011</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.477227, 47.933617]}}, {"type": "Feature", "properties": {"id": "TPPlace1013", "name": "Ivavo", "desc": "Salzburg<br>Vici.org: <a href='https://vici.org/vici/1562/'>https://vici.org/vici/1562/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1013.html'>TPPlace1013</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.05501, 47.80949]}}, {"type": "Feature", "properties": {"id": "TPPlace1014", "name": "Tarnantone", "desc": "? Neumarkt am Wallersee<br>Vici.org: <a href='https://vici.org/vici/1563/'>https://vici.org/vici/1563/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1014.html'>TPPlace1014</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.22449, 47.944839]}}, {"type": "Feature", "properties": {"id": "TPPlace1015", "name": "Laciacis", "desc": "? M\u00f6sendorf<br>Vici.org: <a href='https://vici.org/vici/1564/'>https://vici.org/vici/1564/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1015.html'>TPPlace1015</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.465947, 47.982449]}}, {"type": "Feature", "properties": {"id": "TPPlace1016", "name": "Tergolape", "desc": "Schwanenstadt<br>Vici.org: <a href='https://vici.org/vici/1565/'>https://vici.org/vici/1565/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1016.html'>TPPlace1016</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.77473, 48.05505]}}, {"type": "Feature", "properties": {"id": "TPPlace1017", "name": "Clvnia", "desc": "Feldkirch<br>Vici.org: <a href='https://vici.org/vici/1566/'>https://vici.org/vici/1566/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1017.html'>TPPlace1017</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.6019, 47.24128]}}, {"type": "Feature", "properties": {"id": "TPPlace1018", "name": "Magia", "desc": "Maienfeld<br>Vici.org: <a href='https://vici.org/vici/1567/'>https://vici.org/vici/1567/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1018.html'>TPPlace1018</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.54284, 47.018398]}}, {"type": "Feature", "properties": {"id": "TPPlace1019", "name": "Lvria", "desc": "Chur<br>Vici.org: <a href='https://vici.org/vici/1568/'>https://vici.org/vici/1568/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1019.html'>TPPlace1019</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.52673, 46.857262]}}, {"type": "Feature", "properties": {"id": "TPPlace1020", "name": "Lapidaria", "desc": "Zillis-Reischen<br>Vici.org: <a href='https://vici.org/vici/1569/'>https://vici.org/vici/1569/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1020.html'>TPPlace1020</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.45093, 46.639889]}}, {"type": "Feature", "properties": {"id": "TPPlace1021", "name": "Cvnvavrev", "desc": "Passo dello Spluga<br>Vici.org: <a href='https://vici.org/vici/1570/'>https://vici.org/vici/1570/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1021.html'>TPPlace1021</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.33028, 46.5056]}}, {"type": "Feature", "properties": {"id": "TPPlace1022", "name": "Tarvessedo", "desc": "Gallivaggio<br>Vici.org: <a href='https://vici.org/vici/1571/'>https://vici.org/vici/1571/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1022.html'>TPPlace1022</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.366176, 46.362423]}}, {"type": "Feature", "properties": {"id": "TPPlace1023", "name": "Clavenna", "desc": "Chiavenna<br>Vici.org: <a href='https://vici.org/vici/1572/'>https://vici.org/vici/1572/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1023.html'>TPPlace1023</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.397883, 46.319744]}}, {"type": "Feature", "properties": {"id": "TPPlace1024", "name": "Como", "desc": "Como<br>Vici.org: <a href='https://vici.org/vici/1573/'>https://vici.org/vici/1573/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1024.html'>TPPlace1024</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.085564, 45.811989]}}, {"type": "Feature", "properties": {"id": "TPPlace1025", "name": "Bergomvm", "desc": "Bergamo<br>Vici.org: <a href='https://vici.org/vici/1574/'>https://vici.org/vici/1574/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1025.html'>TPPlace1025</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.669953, 45.694904]}}, {"type": "Feature", "properties": {"id": "TPPlace1026", "name": "Adnovas", "desc": "~ Igling<br>Vici.org: <a href='https://vici.org/vici/1575/'>https://vici.org/vici/1575/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1026.html'>TPPlace1026</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.814445, 48.072842]}}, {"type": "Feature", "properties": {"id": "TPPlace1027", "name": "Avodiaco", "desc": "Epfach<br>Vici.org: <a href='https://vici.org/vici/1576/'>https://vici.org/vici/1576/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1027.html'>TPPlace1027</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.909769, 47.909885]}}, {"type": "Feature", "properties": {"id": "TPPlace1029", "name": "Tarteno", "desc": "Partenkirchen, Partanum<br>Vici.org: <a href='https://vici.org/vici/1577/'>https://vici.org/vici/1577/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1029.html'>TPPlace1029</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.086231, 47.492344]}}, {"type": "Feature", "properties": {"id": "TPPlace1030", "name": "Scarbia", "desc": "? Mittenwald<br>Vici.org: <a href='https://vici.org/vici/1578/'>https://vici.org/vici/1578/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1030.html'>TPPlace1030</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.26383, 47.44355]}}, {"type": "Feature", "properties": {"id": "TPPlace1031", "name": "Vetonina", "desc": "Wilten<br>Vici.org: <a href='https://vici.org/vici/1579/'>https://vici.org/vici/1579/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1031.html'>TPPlace1031</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.384053, 47.255947]}}, {"type": "Feature", "properties": {"id": "TPPlace1032", "name": "Matreio", "desc": "Matrei am Brenner<br>Vici.org: <a href='https://vici.org/vici/1580/'>https://vici.org/vici/1580/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1032.html'>TPPlace1032</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.4524, 47.12561]}}, {"type": "Feature", "properties": {"id": "TPPlace1033", "name": "Vepiteno", "desc": "Vipiteno<br>Vici.org: <a href='https://vici.org/vici/1581/'>https://vici.org/vici/1581/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1033.html'>TPPlace1033</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.431171, 46.899185]}}, {"type": "Feature", "properties": {"id": "TPPlace1034", "name": "Svblabione", "desc": "~ Chiusa<br>Vici.org: <a href='https://vici.org/vici/1582/'>https://vici.org/vici/1582/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1034.html'>TPPlace1034</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.564815, 46.639629]}}, {"type": "Feature", "properties": {"id": "TPPlace1035", "name": "Pontedrvsi", "desc": "~ Bolzano<br>Vici.org: <a href='https://vici.org/vici/1583/'>https://vici.org/vici/1583/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1035.html'>TPPlace1035</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.358005, 46.496716]}}, {"type": "Feature", "properties": {"id": "TPPlace1036", "name": "Tredente", "desc": "Trento<br>Vici.org: <a href='https://vici.org/vici/1584/'>https://vici.org/vici/1584/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1036.html'>TPPlace1036</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.119059, 46.066711]}}, {"type": "Feature", "properties": {"id": "TPPlace1037", "name": "Sarnis", "desc": "Serravalle d\u2019Adige<br>Vici.org: <a href='https://vici.org/vici/1585/'>https://vici.org/vici/1585/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1037.html'>TPPlace1037</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.015478, 45.810246]}}, {"type": "Feature", "properties": {"id": "TPPlace1042", "name": "Brixia", "desc": "Brescia<br>Vici.org: <a href='https://vici.org/vici/1586/'>https://vici.org/vici/1586/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1042.html'>TPPlace1042</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.222957, 45.539829]}}, {"type": "Feature", "properties": {"id": "TPPlace1044", "name": "Ariolica", "desc": "Peschiera del Garda<br>Vici.org: <a href='https://vici.org/vici/1587/'>https://vici.org/vici/1587/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1044.html'>TPPlace1044</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.692055, 45.439388]}}, {"type": "Feature", "properties": {"id": "TPPlace1047", "name": "Hostilia", "desc": "Ostiglia<br>Vici.org: <a href='https://vici.org/vici/1588/'>https://vici.org/vici/1588/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1047.html'>TPPlace1047</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.13789, 45.070183]}}, {"type": "Feature", "properties": {"id": "TPPlace1048", "name": "Mediolanvm", "desc": "Milano<br>Vici.org: <a href='https://vici.org/vici/1589/'>https://vici.org/vici/1589/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1048.html'>TPPlace1048</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.188141, 45.463688]}}, {"type": "Feature", "properties": {"id": "TPPlace1049", "name": "Lavde pompeia", "desc": "Lodi<br>Vici.org: <a href='https://vici.org/vici/1590/'>https://vici.org/vici/1590/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1049.html'>TPPlace1049</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.49785, 45.312878]}}, {"type": "Feature", "properties": {"id": "TPPlace104", "name": "Milev Colonia", "desc": "Mila<br>Vici.org: <a href='https://vici.org/vici/1591/'>https://vici.org/vici/1591/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace104.html'>TPPlace104</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.26348, 36.449959]}}, {"type": "Feature", "properties": {"id": "TPPlace1050", "name": "Acerras", "desc": "Pizzighettone<br>Vici.org: <a href='https://vici.org/vici/1592/'>https://vici.org/vici/1592/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1050.html'>TPPlace1050</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.790944, 45.189999]}}, {"type": "Feature", "properties": {"id": "TPPlace1051", "name": "Placentia", "desc": "Piacenza<br>Vici.org: <a href='https://vici.org/vici/1593/'>https://vici.org/vici/1593/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1051.html'>TPPlace1051</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.695142, 45.053772]}}, {"type": "Feature", "properties": {"id": "TPPlace1052", "name": "Cremona", "desc": "Cremone<br>Vici.org: <a href='https://vici.org/vici/1594/'>https://vici.org/vici/1594/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1052.html'>TPPlace1052</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.026135, 45.133495]}}, {"type": "Feature", "properties": {"id": "TPPlace1053", "name": "Deloriaco", "desc": "~ Calvatone<br>Vici.org: <a href='https://vici.org/vici/1595/'>https://vici.org/vici/1595/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1053.html'>TPPlace1053</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.442352, 45.129536]}}, {"type": "Feature", "properties": {"id": "TPPlace1054", "name": "Mantva", "desc": "Mantova<br>Vici.org: <a href='https://vici.org/vici/1596/'>https://vici.org/vici/1596/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1054.html'>TPPlace1054</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.797698, 45.160366]}}, {"type": "Feature", "properties": {"id": "TPPlace1055", "name": "Vergellis", "desc": "Vercelli<br>Vici.org: <a href='https://vici.org/vici/1597/'>https://vici.org/vici/1597/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1055.html'>TPPlace1055</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.426236, 45.32111]}}, {"type": "Feature", "properties": {"id": "TPPlace1056", "name": "Cvtias", "desc": "Cozzo ~ Candia Lomellina<br>Vici.org: <a href='https://vici.org/vici/1598/'>https://vici.org/vici/1598/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1056.html'>TPPlace1056</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.612341, 45.193222]}}, {"type": "Feature", "properties": {"id": "TPPlace1057", "name": "Lavmellvm", "desc": "Lomello<br>Vici.org: <a href='https://vici.org/vici/1599/'>https://vici.org/vici/1599/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1057.html'>TPPlace1057</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.797352, 45.122036]}}, {"type": "Feature", "properties": {"id": "TPPlace1058", "name": "Ticeno", "desc": "Pavia<br>Vici.org: <a href='https://vici.org/vici/1600/'>https://vici.org/vici/1600/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1058.html'>TPPlace1058</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.156563, 45.185886]}}, {"type": "Feature", "properties": {"id": "TPPlace1062", "name": "Florentia", "desc": "Fiorenzuola d'Arda<br>Vici.org: <a href='https://vici.org/vici/1601/'>https://vici.org/vici/1601/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1062.html'>TPPlace1062</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.910787, 44.927189]}}, {"type": "Feature", "properties": {"id": "TPPlace1063", "name": "Fidentia", "desc": "Fidenza<br>Vici.org: <a href='https://vici.org/vici/1602/'>https://vici.org/vici/1602/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1063.html'>TPPlace1063</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.061731, 44.865101]}}, {"type": "Feature", "properties": {"id": "TPPlace1064", "name": "Parna", "desc": "Parma<br>Vici.org: <a href='https://vici.org/vici/1603/'>https://vici.org/vici/1603/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1064.html'>TPPlace1064</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.329548, 44.807865]}}, {"type": "Feature", "properties": {"id": "TPPlace1066", "name": "Lepidoregio", "desc": "Reggio nell'Emilia<br>Vici.org: <a href='https://vici.org/vici/1604/'>https://vici.org/vici/1604/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1066.html'>TPPlace1066</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.627794, 44.696232]}}, {"type": "Feature", "properties": {"id": "TPPlace1067", "name": "Mvtina", "desc": "Modena<br>Vici.org: <a href='https://vici.org/vici/1605/'>https://vici.org/vici/1605/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1067.html'>TPPlace1067</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.92522, 44.647079]}}, {"type": "Feature", "properties": {"id": "TPPlace1068", "name": "Foro Gallorvm", "desc": "Castelfranco Emilia<br>Vici.org: <a href='https://vici.org/vici/1606/'>https://vici.org/vici/1606/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1068.html'>TPPlace1068</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.053148, 44.596722]}}, {"type": "Feature", "properties": {"id": "TPPlace1069", "name": "Bononia", "desc": "Bologna<br>Vici.org: <a href='https://vici.org/vici/1607/'>https://vici.org/vici/1607/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1069.html'>TPPlace1069</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.346481, 44.494221]}}, {"type": "Feature", "properties": {"id": "TPPlace1070", "name": "Iria", "desc": "Voghera<br>Vici.org: <a href='https://vici.org/vici/1608/'>https://vici.org/vici/1608/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1070.html'>TPPlace1070</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.00968, 44.992184]}}, {"type": "Feature", "properties": {"id": "TPPlace1073", "name": "Ricina", "desc": "Recco<br>Vici.org: <a href='https://vici.org/vici/1609/'>https://vici.org/vici/1609/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1073.html'>TPPlace1073</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.143833, 44.362232]}}, {"type": "Feature", "properties": {"id": "TPPlace1078", "name": "Lvne", "desc": "Luni<br>Vici.org: <a href='https://vici.org/vici/17447/'>https://vici.org/vici/17447/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1078.html'>TPPlace1078</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.026169, 44.089855]}}, {"type": "Feature", "properties": {"id": "TPPlace1080", "name": "Lvca", "desc": "Lucca<br>Vici.org: <a href='https://vici.org/vici/1611/'>https://vici.org/vici/1611/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1080.html'>TPPlace1080</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.507994, 43.843014]}}, {"type": "Feature", "properties": {"id": "TPPlace1082", "name": "Pistoris", "desc": "Pistoia<br>Vici.org: <a href='https://vici.org/vici/1612/'>https://vici.org/vici/1612/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1082.html'>TPPlace1082</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.918523, 43.932156]}}, {"type": "Feature", "properties": {"id": "TPPlace1084", "name": "Hellana", "desc": "~ Agliana<br>Vici.org: <a href='https://vici.org/vici/1613/'>https://vici.org/vici/1613/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1084.html'>TPPlace1084</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.00737, 43.907501]}}, {"type": "Feature", "properties": {"id": "TPPlace1085", "name": "Ad solaria", "desc": "~ Capalle<br>Vici.org: <a href='https://vici.org/vici/1614/'>https://vici.org/vici/1614/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1085.html'>TPPlace1085</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.131623, 43.836643]}}, {"type": "Feature", "properties": {"id": "TPPlace1086", "name": "Florentia Tvscorvm", "desc": "Firenze<br>Vici.org: <a href='https://vici.org/vici/1615/'>https://vici.org/vici/1615/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1086.html'>TPPlace1086</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.256901, 43.76873]}}, {"type": "Feature", "properties": {"id": "TPPlace1087", "name": "Adtaberna Frigida", "desc": "Massa di Carrara<br>Vici.org: <a href='https://vici.org/vici/1616/'>https://vici.org/vici/1616/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1087.html'>TPPlace1087</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.116923, 44.021111]}}, {"type": "Feature", "properties": {"id": "TPPlace1089", "name": "Pisis", "desc": "Pisa<br>Vici.org: <a href='https://vici.org/vici/1617/'>https://vici.org/vici/1617/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1089.html'>TPPlace1089</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.396584, 43.716133]}}, {"type": "Feature", "properties": {"id": "TPPlace1090", "name": "Valvata", "desc": "? Cascina<br>Vici.org: <a href='https://vici.org/vici/1618/'>https://vici.org/vici/1618/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1090.html'>TPPlace1090</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.546802, 43.676628]}}, {"type": "Feature", "properties": {"id": "TPPlace1092", "name": "Arnvm Fl.", "desc": "Fiume Arno<br>Vici.org: <a href='https://vici.org/vici/1619/'>https://vici.org/vici/1619/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1092.html'>TPPlace1092</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.077984, 43.670021]}}, {"type": "Feature", "properties": {"id": "TPPlace1094", "name": "Bitvriza", "desc": "? Montevarchi<br>Vici.org: <a href='https://vici.org/vici/1620/'>https://vici.org/vici/1620/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1094.html'>TPPlace1094</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.570007, 43.52877]}}, {"type": "Feature", "properties": {"id": "TPPlace1096", "name": "Adretio", "desc": "Arezzo<br>Vici.org: <a href='https://vici.org/vici/1621/'>https://vici.org/vici/1621/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1096.html'>TPPlace1096</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.863048, 43.471275]}}, {"type": "Feature", "properties": {"id": "TPPlace109", "name": "Thibili", "desc": "Announa<br>Vici.org: <a href='https://vici.org/vici/1622/'>https://vici.org/vici/1622/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace109.html'>TPPlace109</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.25, 36.366669]}}, {"type": "Feature", "properties": {"id": "TPPlace1100", "name": "Clvsio", "desc": "Chiusi<br>Vici.org: <a href='https://vici.org/vici/1623/'>https://vici.org/vici/1623/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1100.html'>TPPlace1100</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.948444, 43.017036]}}, {"type": "Feature", "properties": {"id": "TPPlace1104", "name": "Velinis", "desc": "? Volterra<br>Vici.org: <a href='https://vici.org/vici/1624/'>https://vici.org/vici/1624/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1104.html'>TPPlace1104</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.861111, 43.401424]}}, {"type": "Feature", "properties": {"id": "TPPlace1105", "name": "Vadis Volateris", "desc": "Vada ~ Rosignano Marittimo<br>Vici.org: <a href='https://vici.org/vici/1625/'>https://vici.org/vici/1625/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1105.html'>TPPlace1105</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.456738, 43.353352]}}, {"type": "Feature", "properties": {"id": "TPPlace1106", "name": "Aqvas volaternas", "desc": "Terme di Pomarance<br>Vici.org: <a href='https://vici.org/vici/1626/'>https://vici.org/vici/1626/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1106.html'>TPPlace1106</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.876959, 43.2645]}}, {"type": "Feature", "properties": {"id": "TPPlace1107", "name": "Popvlonio", "desc": "Populonia<br>Vici.org: <a href='https://vici.org/vici/1627/'>https://vici.org/vici/1627/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1107.html'>TPPlace1107</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.490491, 42.988953]}}, {"type": "Feature", "properties": {"id": "TPPlace1109", "name": "Aqvae Popvlaniae", "desc": "? Venturina-Terme<br>Vici.org: <a href='https://vici.org/vici/1628/'>https://vici.org/vici/1628/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1109.html'>TPPlace1109</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.600888, 43.028004]}}, {"type": "Feature", "properties": {"id": "TPPlace1111", "name": "Sena Ivlia", "desc": "Siena<br>Vici.org: <a href='https://vici.org/vici/1629/'>https://vici.org/vici/1629/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1111.html'>TPPlace1111</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.330514, 43.318661]}}, {"type": "Feature", "properties": {"id": "TPPlace1112", "name": "Vmbro Fl.", "desc": "Fiume Ombrone<br>Vici.org: <a href='https://vici.org/vici/1630/'>https://vici.org/vici/1630/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1112.html'>TPPlace1112</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.296956, 43.004688]}}, {"type": "Feature", "properties": {"id": "TPPlace1114", "name": "Manliana", "desc": "Torrita di Siena<br>Vici.org: <a href='https://vici.org/vici/1631/'>https://vici.org/vici/1631/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1114.html'>TPPlace1114</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.780481, 43.171261]}}, {"type": "Feature", "properties": {"id": "TPPlace1115", "name": "Saleborna", "desc": "? Castiglione della Pescaia<br>Vici.org: <a href='https://vici.org/vici/1632/'>https://vici.org/vici/1632/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1115.html'>TPPlace1115</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.882358, 42.765865]}}, {"type": "Feature", "properties": {"id": "TPPlace1118", "name": "Telamone", "desc": "Talamone<br>Vici.org: <a href='https://vici.org/vici/1633/'>https://vici.org/vici/1633/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1118.html'>TPPlace1118</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.133296, 42.555313]}}, {"type": "Feature", "properties": {"id": "TPPlace1119", "name": "Albinia Fl.", "desc": "Fiume Albenga<br>Vici.org: <a href='https://vici.org/vici/1634/'>https://vici.org/vici/1634/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1119.html'>TPPlace1119</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.207571, 42.50935]}}, {"type": "Feature", "properties": {"id": "TPPlace1120", "name": "Cosa", "desc": "Ansedonia<br>Vici.org: <a href='https://vici.org/vici/1635/'>https://vici.org/vici/1635/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1120.html'>TPPlace1120</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.288557, 42.407246]}}, {"type": "Feature", "properties": {"id": "TPPlace1121", "name": "Svccosa", "desc": "Ansedonia<br>Vici.org: <a href='https://vici.org/vici/1636/'>https://vici.org/vici/1636/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1121.html'>TPPlace1121</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.288555, 42.407284]}}, {"type": "Feature", "properties": {"id": "TPPlace1122", "name": "Port\u0304 Hercvlis", "desc": "Port\u2019 Ercole<br>Vici.org: <a href='https://vici.org/vici/1637/'>https://vici.org/vici/1637/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1122.html'>TPPlace1122</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.203592, 42.395069]}}, {"type": "Feature", "properties": {"id": "TPPlace1123", "name": "Opitergio", "desc": "Oderzo<br>Vici.org: <a href='https://vici.org/vici/1638/'>https://vici.org/vici/1638/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1123.html'>TPPlace1123</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.493628, 45.781273]}}, {"type": "Feature", "properties": {"id": "TPPlace1124", "name": "Concordia", "desc": "Concordia Sagittaria<br>Vici.org: <a href='https://vici.org/vici/1639/'>https://vici.org/vici/1639/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1124.html'>TPPlace1124</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.844317, 45.75692]}}, {"type": "Feature", "properties": {"id": "TPPlace1125", "name": "Aqvileia", "desc": "Aquileia<br>Vici.org: <a href='https://vici.org/vici/1640/'>https://vici.org/vici/1640/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1125.html'>TPPlace1125</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.364626, 45.768299]}}, {"type": "Feature", "properties": {"id": "TPPlace1126", "name": "Patavis", "desc": "Podova<br>Vici.org: <a href='https://vici.org/vici/1641/'>https://vici.org/vici/1641/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1126.html'>TPPlace1126</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.876589, 45.409569]}}, {"type": "Feature", "properties": {"id": "TPPlace1127", "name": "Altino", "desc": "Altino<br>Vici.org: <a href='https://vici.org/vici/1642/'>https://vici.org/vici/1642/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1127.html'>TPPlace1127</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.402095, 45.550934]}}, {"type": "Feature", "properties": {"id": "TPPlace112", "name": "Tipasa", "desc": "Tabet es-Sefra<br>Vici.org: <a href='https://vici.org/vici/1643/'>https://vici.org/vici/1643/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace112.html'>TPPlace112</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.7, 36.133331]}}, {"type": "Feature", "properties": {"id": "TPPlace1132", "name": "Fossis", "desc": "Chioggia<br>Vici.org: <a href='https://vici.org/vici/1644/'>https://vici.org/vici/1644/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1132.html'>TPPlace1132</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.278815, 45.217098]}}, {"type": "Feature", "properties": {"id": "TPPlace1134", "name": "Radriani", "desc": "Adria<br>Vici.org: <a href='https://vici.org/vici/1645/'>https://vici.org/vici/1645/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1134.html'>TPPlace1134</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.055944, 45.057518]}}, {"type": "Feature", "properties": {"id": "TPPlace1135", "name": "Cornicvlani", "desc": "<br>Vici.org: <a href='https://vici.org/vici/1646/'>https://vici.org/vici/1646/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1135.html'>TPPlace1135</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.131134, 44.824028]}}, {"type": "Feature", "properties": {"id": "TPPlace1136", "name": "Neronia", "desc": "Codigoro<br>Vici.org: <a href='https://vici.org/vici/1647/'>https://vici.org/vici/1647/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1136.html'>TPPlace1136</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.111532, 44.832794]}}, {"type": "Feature", "properties": {"id": "TPPlace1137", "name": "Sacis Ad Padvm", "desc": "~ Codigoro<br>Vici.org: <a href='https://vici.org/vici/1648/'>https://vici.org/vici/1648/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1137.html'>TPPlace1137</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.111532, 44.832794]}}, {"type": "Feature", "properties": {"id": "TPPlace1140", "name": "Ravenna", "desc": "Ravenna<br>Vici.org: <a href='https://vici.org/vici/1649/'>https://vici.org/vici/1649/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1140.html'>TPPlace1140</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.196571, 44.41573]}}, {"type": "Feature", "properties": {"id": "TPPlace1141", "name": "Sabis", "desc": "Savio<br>Vici.org: <a href='https://vici.org/vici/1650/'>https://vici.org/vici/1650/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1141.html'>TPPlace1141</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.291541, 44.310909]}}, {"type": "Feature", "properties": {"id": "TPPlace1142", "name": "Ad novas", "desc": "Cesenatico<br>Vici.org: <a href='https://vici.org/vici/1651/'>https://vici.org/vici/1651/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1142.html'>TPPlace1142</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.395361, 44.198948]}}, {"type": "Feature", "properties": {"id": "TPPlace1144", "name": "ARIMINO", "desc": "Rimini<br>Vici.org: <a href='https://vici.org/vici/1652/'>https://vici.org/vici/1652/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1144.html'>TPPlace1144</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.566301, 44.060917]}}, {"type": "Feature", "properties": {"id": "TPPlace1145", "name": "Pisavro", "desc": "P\u00e9saro<br>Vici.org: <a href='https://vici.org/vici/1653/'>https://vici.org/vici/1653/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1145.html'>TPPlace1145</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.915744, 43.912067]}}, {"type": "Feature", "properties": {"id": "TPPlace1146", "name": "Fano Fvrtvnae", "desc": "Fano<br>Vici.org: <a href='https://vici.org/vici/1654/'>https://vici.org/vici/1654/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1146.html'>TPPlace1146</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.016882, 43.844868]}}, {"type": "Feature", "properties": {"id": "TPPlace1148", "name": "Claterna", "desc": "Osteria Grande<br>Vici.org: <a href='https://vici.org/vici/1655/'>https://vici.org/vici/1655/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1148.html'>TPPlace1148</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.519838, 44.427967]}}, {"type": "Feature", "properties": {"id": "TPPlace1150", "name": "Foro corneli", "desc": "Imola<br>Vici.org: <a href='https://vici.org/vici/1656/'>https://vici.org/vici/1656/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1150.html'>TPPlace1150</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.71612, 44.355911]}}, {"type": "Feature", "properties": {"id": "TPPlace1152", "name": "Faventia", "desc": "Faenza<br>Vici.org: <a href='https://vici.org/vici/1657/'>https://vici.org/vici/1657/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1152.html'>TPPlace1152</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.88299, 44.285347]}}, {"type": "Feature", "properties": {"id": "TPPlace1153", "name": "Foro Livi", "desc": "Forl\u00ec<br>Vici.org: <a href='https://vici.org/vici/1658/'>https://vici.org/vici/1658/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1153.html'>TPPlace1153</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.042687, 44.22123]}}, {"type": "Feature", "properties": {"id": "TPPlace1154", "name": "Foro popvli", "desc": "Forlimpopoli<br>Vici.org: <a href='https://vici.org/vici/1659/'>https://vici.org/vici/1659/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1154.html'>TPPlace1154</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.126752, 44.18877]}}, {"type": "Feature", "properties": {"id": "TPPlace1155", "name": "Cvrita cesena", "desc": "Cesena, Curva Casena<br>Vici.org: <a href='https://vici.org/vici/1660/'>https://vici.org/vici/1660/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1155.html'>TPPlace1155</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.239124, 44.13876]}}, {"type": "Feature", "properties": {"id": "TPPlace1157", "name": "Matavrvm Fl.", "desc": "Fiume Metauro ~ Madonna del Ponte<br>Vici.org: <a href='https://vici.org/vici/1661/'>https://vici.org/vici/1661/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1157.html'>TPPlace1157</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.044763, 43.830441]}}, {"type": "Feature", "properties": {"id": "TPPlace1159", "name": "Sena Galli", "desc": "Senigallia<br>Vici.org: <a href='https://vici.org/vici/1662/'>https://vici.org/vici/1662/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1159.html'>TPPlace1159</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.218024, 43.715015]}}, {"type": "Feature", "properties": {"id": "TPPlace1161", "name": "ANCONE", "desc": "Ancona<br>Vici.org: <a href='https://vici.org/vici/1663/'>https://vici.org/vici/1663/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1161.html'>TPPlace1161</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.518757, 43.615856]}}, {"type": "Feature", "properties": {"id": "TPPlace1162", "name": "Nvmana", "desc": "Numana<br>Vici.org: <a href='https://vici.org/vici/1664/'>https://vici.org/vici/1664/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1162.html'>TPPlace1162</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.621412, 43.511269]}}, {"type": "Feature", "properties": {"id": "TPPlace1164", "name": "Polentia", "desc": "Porto Recanati<br>Vici.org: <a href='https://vici.org/vici/1665/'>https://vici.org/vici/1665/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1164.html'>TPPlace1164</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.66237, 43.437519]}}, {"type": "Feature", "properties": {"id": "TPPlace1165", "name": "Foro Semproni", "desc": "~ Fossombrone<br>Vici.org: <a href='https://vici.org/vici/1666/'>https://vici.org/vici/1666/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1165.html'>TPPlace1165</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.813778, 43.691723]}}, {"type": "Feature", "properties": {"id": "TPPlace1167", "name": "Adcalem", "desc": "~ Cagli<br>Vici.org: <a href='https://vici.org/vici/1667/'>https://vici.org/vici/1667/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1167.html'>TPPlace1167</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.648476, 43.546806]}}, {"type": "Feature", "properties": {"id": "TPPlace1168", "name": "Ad Ensem", "desc": "? Scheggia<br>Vici.org: <a href='https://vici.org/vici/1668/'>https://vici.org/vici/1668/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1168.html'>TPPlace1168</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.667794, 43.403271]}}, {"type": "Feature", "properties": {"id": "TPPlace1169", "name": "Halvillo", "desc": "? Fossato di Vicolo<br>Vici.org: <a href='https://vici.org/vici/1669/'>https://vici.org/vici/1669/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1169.html'>TPPlace1169</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.734799, 43.293045]}}, {"type": "Feature", "properties": {"id": "TPPlace116", "name": "Thacora", "desc": "~ A\u00efne Guettar<br>Vici.org: <a href='https://vici.org/vici/1670/'>https://vici.org/vici/1670/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace116.html'>TPPlace116</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.041262, 36.171581]}}, {"type": "Feature", "properties": {"id": "TPPlace1170", "name": "Nvcerio Camellaria", "desc": "Nocera Umbra<br>Vici.org: <a href='https://vici.org/vici/1671/'>https://vici.org/vici/1671/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1170.html'>TPPlace1170</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.788436, 43.113899]}}, {"type": "Feature", "properties": {"id": "TPPlace1171", "name": "Foro Fla\u0304mini", "desc": "San Giovanni Profiamma<br>Vici.org: <a href='https://vici.org/vici/1672/'>https://vici.org/vici/1672/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1171.html'>TPPlace1171</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.705819, 42.982281]}}, {"type": "Feature", "properties": {"id": "TPPlace1172", "name": "Mevanie", "desc": "Bevagna<br>Vici.org: <a href='https://vici.org/vici/1673/'>https://vici.org/vici/1673/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1172.html'>TPPlace1172</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.609389, 42.934872]}}, {"type": "Feature", "properties": {"id": "TPPlace1174", "name": "Avsimo", "desc": "Osimo<br>Vici.org: <a href='https://vici.org/vici/1674/'>https://vici.org/vici/1674/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1174.html'>TPPlace1174</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.482407, 43.486092]}}, {"type": "Feature", "properties": {"id": "TPPlace1175", "name": "Ricina", "desc": "Villa Potenza<br>Vici.org: <a href='https://vici.org/vici/1675/'>https://vici.org/vici/1675/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1175.html'>TPPlace1175</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.422732, 43.326763]}}, {"type": "Feature", "properties": {"id": "TPPlace1176", "name": "Vrbesalvia", "desc": "Urbisaglia<br>Vici.org: <a href='https://vici.org/vici/1676/'>https://vici.org/vici/1676/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1176.html'>TPPlace1176</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.373907, 43.192352]}}, {"type": "Feature", "properties": {"id": "TPPlace1177", "name": "Asclopiceno", "desc": "Ascoli Piceno<br>Vici.org: <a href='https://vici.org/vici/1677/'>https://vici.org/vici/1677/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1177.html'>TPPlace1177</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.574977, 42.855404]}}, {"type": "Feature", "properties": {"id": "TPPlace1181", "name": "Castello Firmani", "desc": "Santa Maria a Mare<br>Vici.org: <a href='https://vici.org/vici/1678/'>https://vici.org/vici/1678/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1181.html'>TPPlace1181</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.802075, 43.16151]}}, {"type": "Feature", "properties": {"id": "TPPlace1182", "name": "Cvpra Maritima", "desc": "Cupra Marittima<br>Vici.org: <a href='https://vici.org/vici/1679/'>https://vici.org/vici/1679/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1182.html'>TPPlace1182</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.858923, 43.030949]}}, {"type": "Feature", "properties": {"id": "TPPlace1183", "name": "Pavsvlas", "desc": "~ San Claudio<br>Vici.org: <a href='https://vici.org/vici/1680/'>https://vici.org/vici/1680/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1183.html'>TPPlace1183</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.502269, 43.275162]}}, {"type": "Feature", "properties": {"id": "TPPlace1184", "name": "Firmoviceno", "desc": "Fermo<br>Vici.org: <a href='https://vici.org/vici/1681/'>https://vici.org/vici/1681/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1184.html'>TPPlace1184</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.724222, 43.16563]}}, {"type": "Feature", "properties": {"id": "TPPlace1185", "name": "Adaqvas", "desc": "Acquasanta Terme<br>Vici.org: <a href='https://vici.org/vici/1682/'>https://vici.org/vici/1682/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1185.html'>TPPlace1185</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.411003, 42.77076]}}, {"type": "Feature", "properties": {"id": "TPPlace1188", "name": "Palacrinis", "desc": "Collicelle<br>Vici.org: <a href='https://vici.org/vici/1683/'>https://vici.org/vici/1683/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1188.html'>TPPlace1188</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.170745, 42.594341]}}, {"type": "Feature", "properties": {"id": "TPPlace1190", "name": "Interocrio", "desc": "Antrodoco<br>Vici.org: <a href='https://vici.org/vici/1684/'>https://vici.org/vici/1684/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1190.html'>TPPlace1190</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.081007, 42.416065]}}, {"type": "Feature", "properties": {"id": "TPPlace1193", "name": "Fisternas", "desc": "~ Vigliano<br>Vici.org: <a href='https://vici.org/vici/1685/'>https://vici.org/vici/1685/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1193.html'>TPPlace1193</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.218756, 42.347927]}}, {"type": "Feature", "properties": {"id": "TPPlace1194", "name": "Ervlos", "desc": "Civitatomassa<br>Vici.org: <a href='https://vici.org/vici/1686/'>https://vici.org/vici/1686/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1194.html'>TPPlace1194</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.278637, 42.351517]}}, {"type": "Feature", "properties": {"id": "TPPlace1195", "name": "Pitinvm", "desc": "~ L'Aquila<br>Vici.org: <a href='https://vici.org/vici/1687/'>https://vici.org/vici/1687/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1195.html'>TPPlace1195</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.377905, 42.348274]}}, {"type": "Feature", "properties": {"id": "TPPlace1197", "name": "Amiternvs", "desc": "San Vittorino Amiterno<br>Vici.org: <a href='https://vici.org/vici/1688/'>https://vici.org/vici/1688/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1197.html'>TPPlace1197</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.314537, 42.397018]}}, {"type": "Feature", "properties": {"id": "TPPlace1198", "name": "Aqve cvtillie", "desc": "Paterno ~ Cittaducale<br>Vici.org: <a href='https://vici.org/vici/1689/'>https://vici.org/vici/1689/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1198.html'>TPPlace1198</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.009844, 42.385975]}}, {"type": "Feature", "properties": {"id": "TPPlace1199", "name": "Reate", "desc": "Rieti<br>Vici.org: <a href='https://vici.org/vici/1690/'>https://vici.org/vici/1690/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1199.html'>TPPlace1199</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.860756, 42.402824]}}, {"type": "Feature", "properties": {"id": "TPPlace1202", "name": "Fidenis", "desc": "Borgata Fidene<br>Vici.org: <a href='https://vici.org/vici/1691/'>https://vici.org/vici/1691/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1202.html'>TPPlace1202</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.512541, 41.974018]}}, {"type": "Feature", "properties": {"id": "TPPlace1203", "name": "ROMA", "desc": "Roma<br>Vici.org: <a href='https://vici.org/vici/1692/'>https://vici.org/vici/1692/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1203.html'>TPPlace1203</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.482324, 41.895466]}}, {"type": "Feature", "properties": {"id": "TPPlace1204", "name": "Inter manana", "desc": "Terne<br>Vici.org: <a href='https://vici.org/vici/1693/'>https://vici.org/vici/1693/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1204.html'>TPPlace1204</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.646763, 42.560246]}}, {"type": "Feature", "properties": {"id": "TPPlace1206", "name": "Farfar Fl.", "desc": "Fiume Farfa<br>Vici.org: <a href='https://vici.org/vici/1694/'>https://vici.org/vici/1694/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1206.html'>TPPlace1206</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.734131, 42.242153]}}, {"type": "Feature", "properties": {"id": "TPPlace1207", "name": "Aqva viva", "desc": "Acquaviva<br>Vici.org: <a href='https://vici.org/vici/1695/'>https://vici.org/vici/1695/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1207.html'>TPPlace1207</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.674618, 42.418831]}}, {"type": "Feature", "properties": {"id": "TPPlace1208", "name": "Advicesimv\u0304", "desc": "~ Morlupo<br>Vici.org: <a href='https://vici.org/vici/1696/'>https://vici.org/vici/1696/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1208.html'>TPPlace1208</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.498463, 42.147205]}}, {"type": "Feature", "properties": {"id": "TPPlace120", "name": "Sicca Ve\u0304ria", "desc": "El Kef<br>Vici.org: <a href='https://vici.org/vici/1697/'>https://vici.org/vici/1697/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace120.html'>TPPlace120</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.71414, 36.179272]}}, {"type": "Feature", "properties": {"id": "TPPlace1211", "name": "Spoletio", "desc": "Spoleto<br>Vici.org: <a href='https://vici.org/vici/1698/'>https://vici.org/vici/1698/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1211.html'>TPPlace1211</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.73843, 42.745335]}}, {"type": "Feature", "properties": {"id": "TPPlace1212", "name": "Fano Fvgitivi", "desc": "Monte Somma ~ Spoleto<br>Vici.org: <a href='https://vici.org/vici/1699/'>https://vici.org/vici/1699/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1212.html'>TPPlace1212</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.728348, 42.663506]}}, {"type": "Feature", "properties": {"id": "TPPlace1214", "name": "Interamnio", "desc": "Terni<br>Vici.org: <a href='https://vici.org/vici/1700/'>https://vici.org/vici/1700/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1214.html'>TPPlace1214</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.64698, 42.560413]}}, {"type": "Feature", "properties": {"id": "TPPlace1215", "name": "Pirvsio", "desc": "Perugia<br>Vici.org: <a href='https://vici.org/vici/1701/'>https://vici.org/vici/1701/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1215.html'>TPPlace1215</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.389172, 43.110703]}}, {"type": "Feature", "properties": {"id": "TPPlace1216", "name": "Vetona", "desc": "Bettona<br>Vici.org: <a href='https://vici.org/vici/1702/'>https://vici.org/vici/1702/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1216.html'>TPPlace1216</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.485417, 43.01368]}}, {"type": "Feature", "properties": {"id": "TPPlace1217", "name": "Tvder", "desc": "Todi<br>Vici.org: <a href='https://vici.org/vici/1703/'>https://vici.org/vici/1703/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1217.html'>TPPlace1217</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.408453, 42.780231]}}, {"type": "Feature", "properties": {"id": "TPPlace1218", "name": "Ameria", "desc": "Amelia<br>Vici.org: <a href='https://vici.org/vici/1704/'>https://vici.org/vici/1704/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1218.html'>TPPlace1218</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.413149, 42.55666]}}, {"type": "Feature", "properties": {"id": "TPPlace1220", "name": "Faleros", "desc": "Civita Castellana<br>Vici.org: <a href='https://vici.org/vici/1705/'>https://vici.org/vici/1705/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1220.html'>TPPlace1220</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.411516, 42.288841]}}, {"type": "Feature", "properties": {"id": "TPPlace1221", "name": "Nepe", "desc": "Nepi<br>Vici.org: <a href='https://vici.org/vici/1706/'>https://vici.org/vici/1706/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1221.html'>TPPlace1221</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.346574, 42.243927]}}, {"type": "Feature", "properties": {"id": "TPPlace1222", "name": "Vacanas", "desc": "Baccano ~ Campagnano di Roma<br>Vici.org: <a href='https://vici.org/vici/1707/'>https://vici.org/vici/1707/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1222.html'>TPPlace1222</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.36733, 42.118999]}}, {"type": "Feature", "properties": {"id": "TPPlace1223", "name": "Veios", "desc": "Veio ~ Isola Farnese<br>Vici.org: <a href='https://vici.org/vici/1708/'>https://vici.org/vici/1708/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1223.html'>TPPlace1223</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.393079, 42.019669]}}, {"type": "Feature", "properties": {"id": "TPPlace1224", "name": "Ad Sextvm", "desc": "Tomba di Nerone<br>Vici.org: <a href='https://vici.org/vici/1709/'>https://vici.org/vici/1709/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1224.html'>TPPlace1224</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.443421, 41.972961]}}, {"type": "Feature", "properties": {"id": "TPPlace1225", "name": "Pallia Fl.", "desc": "~ Castel Viscardo<br>Vici.org: <a href='https://vici.org/vici/1710/'>https://vici.org/vici/1710/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1225.html'>TPPlace1225</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.999555, 42.754555]}}, {"type": "Feature", "properties": {"id": "TPPlace1226", "name": "Volsinis", "desc": "Bolsena<br>Vici.org: <a href='https://vici.org/vici/1711/'>https://vici.org/vici/1711/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1226.html'>TPPlace1226</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.986111, 42.644852]}}, {"type": "Feature", "properties": {"id": "TPPlace1228", "name": "Foro cassi", "desc": "~ Vetralla<br>Vici.org: <a href='https://vici.org/vici/1712/'>https://vici.org/vici/1712/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1228.html'>TPPlace1228</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.053244, 42.320854]}}, {"type": "Feature", "properties": {"id": "TPPlace1229", "name": "Vico Matrini", "desc": "Vico Matrino<br>Vici.org: <a href='https://vici.org/vici/1713/'>https://vici.org/vici/1713/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1229.html'>TPPlace1229</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.123611, 42.278297]}}, {"type": "Feature", "properties": {"id": "TPPlace1230", "name": "Svtrio", "desc": "Sutri<br>Vici.org: <a href='https://vici.org/vici/1714/'>https://vici.org/vici/1714/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1230.html'>TPPlace1230</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.220369, 42.242722]}}, {"type": "Feature", "properties": {"id": "TPPlace1233", "name": "Tvscana", "desc": "Tuscania<br>Vici.org: <a href='https://vici.org/vici/1715/'>https://vici.org/vici/1715/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1233.html'>TPPlace1233</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.870288, 42.419247]}}, {"type": "Feature", "properties": {"id": "TPPlace1234", "name": "MARTA", "desc": "Fiume Marta<br>Vici.org: <a href='https://vici.org/vici/1716/'>https://vici.org/vici/1716/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1234.html'>TPPlace1234</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.813209, 42.383881]}}, {"type": "Feature", "properties": {"id": "TPPlace1235", "name": "Dlera", "desc": "Blera<br>Vici.org: <a href='https://vici.org/vici/1717/'>https://vici.org/vici/1717/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1235.html'>TPPlace1235</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.027539, 42.272682]}}, {"type": "Feature", "properties": {"id": "TPPlace1236", "name": "Foro clodo", "desc": "Forum Clodii<br>Vici.org: <a href='https://vici.org/vici/1718/'>https://vici.org/vici/1718/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1236.html'>TPPlace1236</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.167955, 42.126751]}}, {"type": "Feature", "properties": {"id": "TPPlace1241", "name": "Tarqvinis", "desc": "Tarquinia<br>Vici.org: <a href='https://vici.org/vici/1719/'>https://vici.org/vici/1719/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1241.html'>TPPlace1241</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.758469, 42.254696]}}, {"type": "Feature", "properties": {"id": "TPPlace1242", "name": "Aqvas Apollinaris", "desc": "Bagni di Stigliano<br>Vici.org: <a href='https://vici.org/vici/1720/'>https://vici.org/vici/1720/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1242.html'>TPPlace1242</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.042518, 42.116741]}}, {"type": "Feature", "properties": {"id": "TPPlace1244", "name": "Bebiana", "desc": "~ Torrimpietra<br>Vici.org: <a href='https://vici.org/vici/1721/'>https://vici.org/vici/1721/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1244.html'>TPPlace1244</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.199981, 41.916168]}}, {"type": "Feature", "properties": {"id": "TPPlace1245", "name": "Lorio", "desc": "Castel di Guido<br>Vici.org: <a href='https://vici.org/vici/1722/'>https://vici.org/vici/1722/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1245.html'>TPPlace1245</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.283841, 41.903152]}}, {"type": "Feature", "properties": {"id": "TPPlace1246", "name": "Aqvas tavri", "desc": "Bagni di Traiano ~ Civitavecchia<br>Vici.org: <a href='https://vici.org/vici/1723/'>https://vici.org/vici/1723/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1246.html'>TPPlace1246</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.786513, 42.104271]}}, {"type": "Feature", "properties": {"id": "TPPlace1248", "name": "Armenita Fl.", "desc": "Fiume Fiora<br>Vici.org: <a href='https://vici.org/vici/1724/'>https://vici.org/vici/1724/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1248.html'>TPPlace1248</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.603909, 42.350502]}}, {"type": "Feature", "properties": {"id": "TPPlace124", "name": "Mvbsi", "desc": "El Krib<br>Vici.org: <a href='https://vici.org/vici/1725/'>https://vici.org/vici/1725/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace124.html'>TPPlace124</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.034998, 36.3321]}}, {"type": "Feature", "properties": {"id": "TPPlace1250", "name": "Marta Fl.", "desc": "Fiume Marta<br>Vici.org: <a href='https://vici.org/vici/1726/'>https://vici.org/vici/1726/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1250.html'>TPPlace1250</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.730938, 42.252232]}}, {"type": "Feature", "properties": {"id": "TPPlace1253", "name": "Gravisca", "desc": "~ Lido di Tarquinia<br>Vici.org: <a href='https://vici.org/vici/1727/'>https://vici.org/vici/1727/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1253.html'>TPPlace1253</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.707209, 42.224579]}}, {"type": "Feature", "properties": {"id": "TPPlace1254", "name": "Mindo Fl.", "desc": "Mignone<br>Vici.org: <a href='https://vici.org/vici/1728/'>https://vici.org/vici/1728/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1254.html'>TPPlace1254</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.785963, 42.195438]}}, {"type": "Feature", "properties": {"id": "TPPlace1255", "name": "Centv\u0304 cellis", "desc": "Civitavecchia<br>Vici.org: <a href='https://vici.org/vici/1729/'>https://vici.org/vici/1729/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1255.html'>TPPlace1255</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.796814, 42.091179]}}, {"type": "Feature", "properties": {"id": "TPPlace1256", "name": "Castro Novo", "desc": "Chiaruccia ~ Santa Marinella<br>Vici.org: <a href='https://vici.org/vici/1730/'>https://vici.org/vici/1730/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1256.html'>TPPlace1256</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.834164, 42.036163]}}, {"type": "Feature", "properties": {"id": "TPPlace1257", "name": "Pvnicvm", "desc": "Santa Marinella<br>Vici.org: <a href='https://vici.org/vici/1731/'>https://vici.org/vici/1731/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1257.html'>TPPlace1257</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.854456, 42.034344]}}, {"type": "Feature", "properties": {"id": "TPPlace1259", "name": "Alsivm", "desc": "Palo ~ Ladispoli<br>Vici.org: <a href='https://vici.org/vici/1732/'>https://vici.org/vici/1732/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1259.html'>TPPlace1259</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.102714, 41.934738]}}, {"type": "Feature", "properties": {"id": "TPPlace125", "name": "Aobia", "desc": "~ Dougga<br>Vici.org: <a href='https://vici.org/vici/1733/'>https://vici.org/vici/1733/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace125.html'>TPPlace125</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.23699, 36.399837]}}, {"type": "Feature", "properties": {"id": "TPPlace1261", "name": "AD SCM\u0304 PETRVM", "desc": "Vaticano<br>Vici.org: <a href='https://vici.org/vici/1734/'>https://vici.org/vici/1734/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1261.html'>TPPlace1261</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.453389, 41.902916]}}, {"type": "Feature", "properties": {"id": "TPPlace1262", "name": "Castro Trentino", "desc": "Martinsicuro<br>Vici.org: <a href='https://vici.org/vici/1735/'>https://vici.org/vici/1735/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1262.html'>TPPlace1262</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.915481, 42.884697]}}, {"type": "Feature", "properties": {"id": "TPPlace1263", "name": "Castro Novo", "desc": "Giulianova<br>Vici.org: <a href='https://vici.org/vici/1736/'>https://vici.org/vici/1736/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1263.html'>TPPlace1263</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.962371, 42.752548]}}, {"type": "Feature", "properties": {"id": "TPPlace1264", "name": "Macrinv\u0304", "desc": "~ Silvi<br>Vici.org: <a href='https://vici.org/vici/1737/'>https://vici.org/vici/1737/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1264.html'>TPPlace1264</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.122981, 42.546741]}}, {"type": "Feature", "properties": {"id": "TPPlace1265", "name": "Pinna", "desc": "Penne<br>Vici.org: <a href='https://vici.org/vici/1738/'>https://vici.org/vici/1738/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1265.html'>TPPlace1265</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.927475, 42.457623]}}, {"type": "Feature", "properties": {"id": "TPPlace1266", "name": "Hadria", "desc": "Atri<br>Vici.org: <a href='https://vici.org/vici/1739/'>https://vici.org/vici/1739/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1266.html'>TPPlace1266</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.981002, 42.5802]}}, {"type": "Feature", "properties": {"id": "TPPlace1267", "name": "Salinas", "desc": "~ Congiunti<br>Vici.org: <a href='https://vici.org/vici/1740/'>https://vici.org/vici/1740/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1267.html'>TPPlace1267</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.086111, 42.474239]}}, {"type": "Feature", "properties": {"id": "TPPlace1268", "name": "Ostia Eterni", "desc": "Pescara<br>Vici.org: <a href='https://vici.org/vici/1741/'>https://vici.org/vici/1741/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1268.html'>TPPlace1268</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.214095, 42.464825]}}, {"type": "Feature", "properties": {"id": "TPPlace1269", "name": "Ortona", "desc": "Ortona<br>Vici.org: <a href='https://vici.org/vici/1742/'>https://vici.org/vici/1742/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1269.html'>TPPlace1269</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.40521, 42.356911]}}, {"type": "Feature", "properties": {"id": "TPPlace126", "name": "Tignica", "desc": "~ Tast\u016br<br>Vici.org: <a href='https://vici.org/vici/1743/'>https://vici.org/vici/1743/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace126.html'>TPPlace126</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.444857, 36.554829]}}, {"type": "Feature", "properties": {"id": "TPPlace1270", "name": "Anxano", "desc": "Lanciano<br>Vici.org: <a href='https://vici.org/vici/1744/'>https://vici.org/vici/1744/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1270.html'>TPPlace1270</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.391379, 42.233173]}}, {"type": "Feature", "properties": {"id": "TPPlace1273", "name": "Istonivm", "desc": "Vasto<br>Vici.org: <a href='https://vici.org/vici/1745/'>https://vici.org/vici/1745/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1273.html'>TPPlace1273</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.709621, 42.112705]}}, {"type": "Feature", "properties": {"id": "TPPlace1274", "name": "Larinv\u0304", "desc": "Larino<br>Vici.org: <a href='https://vici.org/vici/1746/'>https://vici.org/vici/1746/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1274.html'>TPPlace1274</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.919239, 41.807129]}}, {"type": "Feature", "properties": {"id": "TPPlace1275", "name": "Teneapvlo", "desc": "~ San Paolo di Civitate<br>Vici.org: <a href='https://vici.org/vici/1747/'>https://vici.org/vici/1747/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1275.html'>TPPlace1275</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.261278, 41.739388]}}, {"type": "Feature", "properties": {"id": "TPPlace1277", "name": "Siponto", "desc": "Siponto ~ Manfredonia<br>Vici.org: <a href='https://vici.org/vici/1748/'>https://vici.org/vici/1748/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1277.html'>TPPlace1277</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.895949, 41.606819]}}, {"type": "Feature", "properties": {"id": "TPPlace127", "name": "Tichilla", "desc": "Tast\u016br<br>Vici.org: <a href='https://vici.org/vici/1749/'>https://vici.org/vici/1749/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace127.html'>TPPlace127</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.444857, 36.554829]}}, {"type": "Feature", "properties": {"id": "TPPlace1281", "name": "Bardvlos", "desc": "Barletta<br>Vici.org: <a href='https://vici.org/vici/1750/'>https://vici.org/vici/1750/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1281.html'>TPPlace1281</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.283991, 41.319279]}}, {"type": "Feature", "properties": {"id": "TPPlace1282", "name": "Tvrenvm", "desc": "Trani<br>Vici.org: <a href='https://vici.org/vici/1751/'>https://vici.org/vici/1751/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1282.html'>TPPlace1282</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.417578, 41.275524]}}, {"type": "Feature", "properties": {"id": "TPPlace1283", "name": "Natiolvm", "desc": "Giovinazzo<br>Vici.org: <a href='https://vici.org/vici/1752/'>https://vici.org/vici/1752/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1283.html'>TPPlace1283</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.672556, 41.187534]}}, {"type": "Feature", "properties": {"id": "TPPlace1284", "name": "Barivm", "desc": "Bari<br>Vici.org: <a href='https://vici.org/vici/1753/'>https://vici.org/vici/1753/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1284.html'>TPPlace1284</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.86838, 41.125999]}}, {"type": "Feature", "properties": {"id": "TPPlace1285", "name": "Tvrris cesaris", "desc": "? Polignano a Mare<br>Vici.org: <a href='https://vici.org/vici/1754/'>https://vici.org/vici/1754/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1285.html'>TPPlace1285</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.216722, 40.997055]}}, {"type": "Feature", "properties": {"id": "TPPlace1287", "name": "Gnatie", "desc": "Torre Egnazia ~ Fasano<br>Vici.org: <a href='https://vici.org/vici/1755/'>https://vici.org/vici/1755/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1287.html'>TPPlace1287</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.392206, 40.887329]}}, {"type": "Feature", "properties": {"id": "TPPlace1288", "name": "Aveia", "desc": "Fossa<br>Vici.org: <a href='https://vici.org/vici/1756/'>https://vici.org/vici/1756/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1288.html'>TPPlace1288</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.487411, 42.295746]}}, {"type": "Feature", "properties": {"id": "TPPlace128", "name": "Membrissa", "desc": "Mejez El Bab<br>Vici.org: <a href='https://vici.org/vici/1757/'>https://vici.org/vici/1757/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace128.html'>TPPlace128</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.611422, 36.652489]}}, {"type": "Feature", "properties": {"id": "TPPlace1290", "name": "Alba", "desc": "Albe<br>Vici.org: <a href='https://vici.org/vici/1758/'>https://vici.org/vici/1758/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1290.html'>TPPlace1290</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.409064, 42.079857]}}, {"type": "Feature", "properties": {"id": "TPPlace1291", "name": "Marrvbio", "desc": "San Benedetto dei Marsi<br>Vici.org: <a href='https://vici.org/vici/1759/'>https://vici.org/vici/1759/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1291.html'>TPPlace1291</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.619357, 42.004028]}}, {"type": "Feature", "properties": {"id": "TPPlace1292", "name": "Cirfenna", "desc": "Collarmele<br>Vici.org: <a href='https://vici.org/vici/1760/'>https://vici.org/vici/1760/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1292.html'>TPPlace1292</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.626476, 42.06039]}}, {"type": "Feature", "properties": {"id": "TPPlace1295", "name": "Tea Nomarrvci\u0304", "desc": "Chieti<br>Vici.org: <a href='https://vici.org/vici/1761/'>https://vici.org/vici/1761/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1295.html'>TPPlace1295</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.167151, 42.351791]}}, {"type": "Feature", "properties": {"id": "TPPlace1297", "name": "Interpromvm", "desc": "? Casauria<br>Vici.org: <a href='https://vici.org/vici/1762/'>https://vici.org/vici/1762/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1297.html'>TPPlace1297</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.897403, 42.236137]}}, {"type": "Feature", "properties": {"id": "TPPlace1298", "name": "Corfinio", "desc": "Corfinio<br>Vici.org: <a href='https://vici.org/vici/1763/'>https://vici.org/vici/1763/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1298.html'>TPPlace1298</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.842161, 42.123817]}}, {"type": "Feature", "properties": {"id": "TPPlace1299", "name": "Svlmone", "desc": "Sulmona<br>Vici.org: <a href='https://vici.org/vici/1764/'>https://vici.org/vici/1764/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1299.html'>TPPlace1299</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.925648, 42.046829]}}, {"type": "Feature", "properties": {"id": "TPPlace1300", "name": "Iovis Larene", "desc": "Campo di Giove<br>Vici.org: <a href='https://vici.org/vici/1765/'>https://vici.org/vici/1765/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1300.html'>TPPlace1300</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.034881, 42.011192]}}, {"type": "Feature", "properties": {"id": "TPPlace1301", "name": "Avfidena", "desc": "Castel di Sangro<br>Vici.org: <a href='https://vici.org/vici/1766/'>https://vici.org/vici/1766/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1301.html'>TPPlace1301</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.108263, 41.784336]}}, {"type": "Feature", "properties": {"id": "TPPlace1302", "name": "Esernie", "desc": "Isernia<br>Vici.org: <a href='https://vici.org/vici/1767/'>https://vici.org/vici/1767/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1302.html'>TPPlace1302</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.230828, 41.594334]}}, {"type": "Feature", "properties": {"id": "TPPlace1305", "name": "Nomento", "desc": "Mentana<br>Vici.org: <a href='https://vici.org/vici/1768/'>https://vici.org/vici/1768/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1305.html'>TPPlace1305</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.63834, 42.033562]}}, {"type": "Feature", "properties": {"id": "TPPlace1306", "name": "Tibori", "desc": "Tivoli<br>Vici.org: <a href='https://vici.org/vici/1769/'>https://vici.org/vici/1769/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1306.html'>TPPlace1306</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.798272, 41.963577]}}, {"type": "Feature", "properties": {"id": "TPPlace1307", "name": "Vari(a)e", "desc": "Vicovaro<br>Vici.org: <a href='https://vici.org/vici/1770/'>https://vici.org/vici/1770/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1307.html'>TPPlace1307</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.896183, 42.018204]}}, {"type": "Feature", "properties": {"id": "TPPlace1308", "name": "Lamnas", "desc": "Cineto Romano<br>Vici.org: <a href='https://vici.org/vici/1771/'>https://vici.org/vici/1771/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1308.html'>TPPlace1308</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.961696, 42.049587]}}, {"type": "Feature", "properties": {"id": "TPPlace1309", "name": "Carsvlis", "desc": "Civita Seconda<br>Vici.org: <a href='https://vici.org/vici/1772/'>https://vici.org/vici/1772/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1309.html'>TPPlace1309</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.044235, 42.081505]}}, {"type": "Feature", "properties": {"id": "TPPlace1311", "name": "Cabios", "desc": "~ Valle Martella<br>Vici.org: <a href='https://vici.org/vici/1773/'>https://vici.org/vici/1773/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1311.html'>TPPlace1311</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.733654, 41.884796]}}, {"type": "Feature", "properties": {"id": "TPPlace1312", "name": "Preneste", "desc": "Palestrina<br>Vici.org: <a href='https://vici.org/vici/1774/'>https://vici.org/vici/1774/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1312.html'>TPPlace1312</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.884538, 41.835365]}}, {"type": "Feature", "properties": {"id": "TPPlace1313", "name": "Treblis", "desc": "Trevi nel Lazio<br>Vici.org: <a href='https://vici.org/vici/1775/'>https://vici.org/vici/1775/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1313.html'>TPPlace1313</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.937958, 41.954475]}}, {"type": "Feature", "properties": {"id": "TPPlace1317", "name": "Adqvintanas", "desc": "~ Colonna<br>Vici.org: <a href='https://vici.org/vici/1776/'>https://vici.org/vici/1776/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1317.html'>TPPlace1317</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.75424, 41.835331]}}, {"type": "Feature", "properties": {"id": "TPPlace1319", "name": "Adstatvas", "desc": "San Cesareo<br>Vici.org: <a href='https://vici.org/vici/1777/'>https://vici.org/vici/1777/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1319.html'>TPPlace1319</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.802618, 41.814602]}}, {"type": "Feature", "properties": {"id": "TPPlace1321", "name": "Adbirivm", "desc": "Valmontone<br>Vici.org: <a href='https://vici.org/vici/1778/'>https://vici.org/vici/1778/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1321.html'>TPPlace1321</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.917845, 41.777088]}}, {"type": "Feature", "properties": {"id": "TPPlace1322", "name": "Conpito Anagnino", "desc": "Anagni<br>Vici.org: <a href='https://vici.org/vici/1779/'>https://vici.org/vici/1779/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1322.html'>TPPlace1322</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.158999, 41.742233]}}, {"type": "Feature", "properties": {"id": "TPPlace1323", "name": "Ferentinvm", "desc": "Ferentino<br>Vici.org: <a href='https://vici.org/vici/1780/'>https://vici.org/vici/1780/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1323.html'>TPPlace1323</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.253358, 41.692711]}}, {"type": "Feature", "properties": {"id": "TPPlace1326", "name": "Aqvino", "desc": "Aquino<br>Vici.org: <a href='https://vici.org/vici/1781/'>https://vici.org/vici/1781/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1326.html'>TPPlace1326</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.705244, 41.492802]}}, {"type": "Feature", "properties": {"id": "TPPlace1327", "name": "Casinvm", "desc": "Montecassino<br>Vici.org: <a href='https://vici.org/vici/1782/'>https://vici.org/vici/1782/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1327.html'>TPPlace1327</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.813391, 41.48843]}}, {"type": "Feature", "properties": {"id": "TPPlace1329", "name": "Teano Scedicino", "desc": "Teano<br>Vici.org: <a href='https://vici.org/vici/1783/'>https://vici.org/vici/1783/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1329.html'>TPPlace1329</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.067519, 41.252354]}}, {"type": "Feature", "properties": {"id": "TPPlace1330", "name": "Ad Rotas", "desc": "? Monteroduni<br>Vici.org: <a href='https://vici.org/vici/1784/'>https://vici.org/vici/1784/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1330.html'>TPPlace1330</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.177874, 41.522266]}}, {"type": "Feature", "properties": {"id": "TPPlace1334", "name": "Bobiano", "desc": "Bojano<br>Vici.org: <a href='https://vici.org/vici/1785/'>https://vici.org/vici/1785/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1334.html'>TPPlace1334</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.473926, 41.486721]}}, {"type": "Feature", "properties": {"id": "TPPlace1336", "name": "Arpos", "desc": "~ Arpinova<br>Vici.org: <a href='https://vici.org/vici/1786/'>https://vici.org/vici/1786/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1336.html'>TPPlace1336</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.555465, 41.475693]}}, {"type": "Feature", "properties": {"id": "TPPlace1338", "name": "Aecas", "desc": "Troia<br>Vici.org: <a href='https://vici.org/vici/1787/'>https://vici.org/vici/1787/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1338.html'>TPPlace1338</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.308898, 41.361191]}}, {"type": "Feature", "properties": {"id": "TPPlace1339", "name": "Aeqvotvtico", "desc": "Masseria Starza<br>Vici.org: <a href='https://vici.org/vici/1788/'>https://vici.org/vici/1788/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1339.html'>TPPlace1339</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.104556, 41.227352]}}, {"type": "Feature", "properties": {"id": "TPPlace1340", "name": "Foro novo", "desc": "Sant'Arcangelo Trimonte<br>Vici.org: <a href='https://vici.org/vici/1789/'>https://vici.org/vici/1789/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1340.html'>TPPlace1340</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.939665, 41.16745]}}, {"type": "Feature", "properties": {"id": "TPPlace1341", "name": "Canusio", "desc": "Canosa di Puglia, Canusium<br>Vici.org: <a href='https://vici.org/vici/1790/'>https://vici.org/vici/1790/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1341.html'>TPPlace1341</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.066025, 41.2225]}}, {"type": "Feature", "properties": {"id": "TPPlace1342", "name": "Benebento", "desc": "Benevento<br>Vici.org: <a href='https://vici.org/vici/1791/'>https://vici.org/vici/1791/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1342.html'>TPPlace1342</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.781174, 41.130447]}}, {"type": "Feature", "properties": {"id": "TPPlace1344", "name": "Rvbos", "desc": "Ruvo di Puglia<br>Vici.org: <a href='https://vici.org/vici/1792/'>https://vici.org/vici/1792/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1344.html'>TPPlace1344</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.485165, 41.118366]}}, {"type": "Feature", "properties": {"id": "TPPlace1345", "name": "Bvtvntos", "desc": "Bitonto<br>Vici.org: <a href='https://vici.org/vici/1793/'>https://vici.org/vici/1793/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1345.html'>TPPlace1345</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.691429, 41.10844]}}, {"type": "Feature", "properties": {"id": "TPPlace1346", "name": "Celia", "desc": "Ceglie del Campo<br>Vici.org: <a href='https://vici.org/vici/1794/'>https://vici.org/vici/1794/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1346.html'>TPPlace1346</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.866104, 41.06422]}}, {"type": "Feature", "properties": {"id": "TPPlace1348", "name": "Norve", "desc": "Conversano<br>Vici.org: <a href='https://vici.org/vici/1795/'>https://vici.org/vici/1795/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1348.html'>TPPlace1348</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.115665, 40.967323]}}, {"type": "Feature", "properties": {"id": "TPPlace1350", "name": "Venvsie", "desc": "Venosa<br>Vici.org: <a href='https://vici.org/vici/1796/'>https://vici.org/vici/1796/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1350.html'>TPPlace1350</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.815796, 40.962353]}}, {"type": "Feature", "properties": {"id": "TPPlace1351", "name": "Silvtvm", "desc": "Gravina in Puglia<br>Vici.org: <a href='https://vici.org/vici/1797/'>https://vici.org/vici/1797/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1351.html'>TPPlace1351</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.419338, 40.821178]}}, {"type": "Feature", "properties": {"id": "TPPlace1355", "name": "Potentia", "desc": "Potenza<br>Vici.org: <a href='https://vici.org/vici/1798/'>https://vici.org/vici/1798/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1355.html'>TPPlace1355</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.802221, 40.637241]}}, {"type": "Feature", "properties": {"id": "TPPlace1357", "name": "Aqviloina", "desc": "? Lacedonia<br>Vici.org: <a href='https://vici.org/vici/1799/'>https://vici.org/vici/1799/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1357.html'>TPPlace1357</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.42487, 41.052368]}}, {"type": "Feature", "properties": {"id": "TPPlace1358", "name": "Svbromvla", "desc": "? Guardia Lombardi<br>Vici.org: <a href='https://vici.org/vici/1800/'>https://vici.org/vici/1800/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1358.html'>TPPlace1358</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.20987, 40.954868]}}, {"type": "Feature", "properties": {"id": "TPPlace1359", "name": "Eclano", "desc": "Mirabella Eclano<br>Vici.org: <a href='https://vici.org/vici/1801/'>https://vici.org/vici/1801/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1359.html'>TPPlace1359</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.99419, 41.042503]}}, {"type": "Feature", "properties": {"id": "TPPlace1361", "name": "Calor Fl.", "desc": "~ Calore<br>Vici.org: <a href='https://vici.org/vici/1802/'>https://vici.org/vici/1802/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1361.html'>TPPlace1361</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.946456, 41.055214]}}, {"type": "Feature", "properties": {"id": "TPPlace1366", "name": "Acerronia", "desc": "?Auletta<br>Vici.org: <a href='https://vici.org/vici/1803/'>https://vici.org/vici/1803/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1366.html'>TPPlace1366</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.425603, 40.562309]}}, {"type": "Feature", "properties": {"id": "TPPlace1367", "name": "Nares Lvcanas", "desc": "Scorzo<br>Vici.org: <a href='https://vici.org/vici/1804/'>https://vici.org/vici/1804/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1367.html'>TPPlace1367</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.265, 40.578465]}}, {"type": "Feature", "properties": {"id": "TPPlace1370", "name": "Erdonia\u0304", "desc": "Ordona<br>Vici.org: <a href='https://vici.org/vici/1805/'>https://vici.org/vici/1805/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1370.html'>TPPlace1370</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.628296, 41.316574]}}, {"type": "Feature", "properties": {"id": "TPPlace1371", "name": "Ad pirvm", "desc": "~ Candela<br>Vici.org: <a href='https://vici.org/vici/1806/'>https://vici.org/vici/1806/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1371.html'>TPPlace1371</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.496286, 41.120937]}}, {"type": "Feature", "properties": {"id": "TPPlace1372", "name": "Foro popili", "desc": "Polla<br>Vici.org: <a href='https://vici.org/vici/1807/'>https://vici.org/vici/1807/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1372.html'>TPPlace1372</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.498879, 40.518219]}}, {"type": "Feature", "properties": {"id": "TPPlace1376", "name": "Balentivm", "desc": "Valesio ~ Torchiarolo<br>Vici.org: <a href='https://vici.org/vici/1808/'>https://vici.org/vici/1808/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1376.html'>TPPlace1376</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.165304, 40.356617]}}, {"type": "Feature", "properties": {"id": "TPPlace1377", "name": "Scamnvm", "desc": "Masseria Muro<br>Vici.org: <a href='https://vici.org/vici/1809/'>https://vici.org/vici/1809/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1377.html'>TPPlace1377</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.742313, 40.53857]}}, {"type": "Feature", "properties": {"id": "TPPlace1378", "name": "Vrbivs", "desc": "Oria<br>Vici.org: <a href='https://vici.org/vici/1810/'>https://vici.org/vici/1810/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1378.html'>TPPlace1378</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.64226, 40.498402]}}, {"type": "Feature", "properties": {"id": "TPPlace137", "name": "Tvbvrbomaivs", "desc": "~ El Fahs<br>Vici.org: <a href='https://vici.org/vici/1811/'>https://vici.org/vici/1811/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace137.html'>TPPlace137</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.910191, 36.3778]}}, {"type": "Feature", "properties": {"id": "TPPlace1380", "name": "Tarento", "desc": "Taranto<br>Vici.org: <a href='https://vici.org/vici/1812/'>https://vici.org/vici/1812/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1380.html'>TPPlace1380</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.240009, 40.469238]}}, {"type": "Feature", "properties": {"id": "TPPlace1381", "name": "Anxia", "desc": "Anzi<br>Vici.org: <a href='https://vici.org/vici/1813/'>https://vici.org/vici/1813/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1381.html'>TPPlace1381</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.925481, 40.517666]}}, {"type": "Feature", "properties": {"id": "TPPlace1382", "name": "Grvmento", "desc": "~ Grumento Novo<br>Vici.org: <a href='https://vici.org/vici/1814/'>https://vici.org/vici/1814/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1382.html'>TPPlace1382</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.889704, 40.283924]}}, {"type": "Feature", "properties": {"id": "TPPlace1383", "name": "Lvppia", "desc": "Lecce<br>Vici.org: <a href='https://vici.org/vici/1815/'>https://vici.org/vici/1815/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1383.html'>TPPlace1383</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.174015, 40.353291]}}, {"type": "Feature", "properties": {"id": "TPPlace1384", "name": "Ydrvnte", "desc": "Otranto<br>Vici.org: <a href='https://vici.org/vici/1816/'>https://vici.org/vici/1816/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1384.html'>TPPlace1384</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.485754, 40.148029]}}, {"type": "Feature", "properties": {"id": "TPPlace1385", "name": "Castra Minervae", "desc": "Castro<br>Vici.org: <a href='https://vici.org/vici/1817/'>https://vici.org/vici/1817/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1385.html'>TPPlace1385</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.425945, 40.002983]}}, {"type": "Feature", "properties": {"id": "TPPlace1387", "name": "Mandvris", "desc": "Manduria<br>Vici.org: <a href='https://vici.org/vici/1818/'>https://vici.org/vici/1818/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1387.html'>TPPlace1387</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.63439, 40.402817]}}, {"type": "Feature", "properties": {"id": "TPPlace1388", "name": "Neretvm", "desc": "Nard\u00f2<br>Vici.org: <a href='https://vici.org/vici/1819/'>https://vici.org/vici/1819/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1388.html'>TPPlace1388</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.030422, 40.17593]}}, {"type": "Feature", "properties": {"id": "TPPlace1389", "name": "Baletivm", "desc": "Alezio<br>Vici.org: <a href='https://vici.org/vici/1820/'>https://vici.org/vici/1820/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1389.html'>TPPlace1389</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.059074, 40.062351]}}, {"type": "Feature", "properties": {"id": "TPPlace1390", "name": "Vzintvm", "desc": "Ugento<br>Vici.org: <a href='https://vici.org/vici/1821/'>https://vici.org/vici/1821/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1390.html'>TPPlace1390</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.158297, 39.927353]}}, {"type": "Feature", "properties": {"id": "TPPlace1392", "name": "Cosilianvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/1822/'>https://vici.org/vici/1822/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1392.html'>TPPlace1392</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.592337, 40.39484]}}, {"type": "Feature", "properties": {"id": "TPPlace1394", "name": "Nervlos", "desc": "Nerulum<br>Vici.org: <a href='https://vici.org/vici/1823/'>https://vici.org/vici/1823/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1394.html'>TPPlace1394</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.039995, 39.953732]}}, {"type": "Feature", "properties": {"id": "TPPlace1395", "name": "Nteramnio", "desc": "~ Spezzano Albanese, Interamnium<br>Vici.org: <a href='https://vici.org/vici/1824/'>https://vici.org/vici/1824/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1395.html'>TPPlace1395</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.311426, 39.669853]}}, {"type": "Feature", "properties": {"id": "TPPlace1398", "name": "Consentia", "desc": "Cosenza<br>Vici.org: <a href='https://vici.org/vici/1825/'>https://vici.org/vici/1825/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1398.html'>TPPlace1398</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.253611, 39.295395]}}, {"type": "Feature", "properties": {"id": "TPPlace1401", "name": "Annicia", "desc": "~ Pizzo<br>Vici.org: <a href='https://vici.org/vici/1826/'>https://vici.org/vici/1826/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1401.html'>TPPlace1401</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.20064, 38.76387]}}, {"type": "Feature", "properties": {"id": "TPPlace1402", "name": "Vibona Balentia", "desc": "Vibo Valentia<br>Vici.org: <a href='https://vici.org/vici/1827/'>https://vici.org/vici/1827/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1402.html'>TPPlace1402</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.097649, 38.675583]}}, {"type": "Feature", "properties": {"id": "TPPlace1403", "name": "Scilatio", "desc": "Roccelletta<br>Vici.org: <a href='https://vici.org/vici/1828/'>https://vici.org/vici/1828/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1403.html'>TPPlace1403</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.597034, 38.817211]}}, {"type": "Feature", "properties": {"id": "TPPlace1404", "name": "Annibali", "desc": "Catanzaro Lido, Castra Hannibalis<br>Vici.org: <a href='https://vici.org/vici/1829/'>https://vici.org/vici/1829/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1404.html'>TPPlace1404</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.610374, 38.819771]}}, {"type": "Feature", "properties": {"id": "TPPlace1407", "name": "Columna Regia", "desc": "Villa S. Giovanni<br>Vici.org: <a href='https://vici.org/vici/1830/'>https://vici.org/vici/1830/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1407.html'>TPPlace1407</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.638008, 38.217953]}}, {"type": "Feature", "properties": {"id": "TPPlace1408", "name": "Regio", "desc": "Reggio Callabra<br>Vici.org: <a href='https://vici.org/vici/1831/'>https://vici.org/vici/1831/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1408.html'>TPPlace1408</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.650137, 38.114689]}}, {"type": "Feature", "properties": {"id": "TPPlace1411", "name": "Lvcis", "desc": "Locri<br>Vici.org: <a href='https://vici.org/vici/1832/'>https://vici.org/vici/1832/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1411.html'>TPPlace1411</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.259895, 38.236416]}}, {"type": "Feature", "properties": {"id": "TPPlace1412", "name": "Cavlon", "desc": "Caulonia<br>Vici.org: <a href='https://vici.org/vici/1833/'>https://vici.org/vici/1833/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1412.html'>TPPlace1412</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.409851, 38.382519]}}, {"type": "Feature", "properties": {"id": "TPPlace1415", "name": "Heraclea", "desc": "Policoro<br>Vici.org: <a href='https://vici.org/vici/1834/'>https://vici.org/vici/1834/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1415.html'>TPPlace1415</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.678339, 40.212967]}}, {"type": "Feature", "properties": {"id": "TPPlace1417", "name": "Tvris", "desc": "~ Sibari<br>Vici.org: <a href='https://vici.org/vici/1835/'>https://vici.org/vici/1835/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1417.html'>TPPlace1417</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.454241, 39.748295]}}, {"type": "Feature", "properties": {"id": "TPPlace1418", "name": "Petelia", "desc": "Strongoli<br>Vici.org: <a href='https://vici.org/vici/1836/'>https://vici.org/vici/1836/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1418.html'>TPPlace1418</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.051083, 39.266075]}}, {"type": "Feature", "properties": {"id": "TPPlace1419", "name": "Crontona", "desc": "Crotone<br>Vici.org: <a href='https://vici.org/vici/1837/'>https://vici.org/vici/1837/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1419.html'>TPPlace1419</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.127079, 39.080738]}}, {"type": "Feature", "properties": {"id": "TPPlace1420", "name": "Lacenivm", "desc": "Capo Colonne<br>Vici.org: <a href='https://vici.org/vici/1838/'>https://vici.org/vici/1838/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1420.html'>TPPlace1420</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.200001, 39.033333]}}, {"type": "Feature", "properties": {"id": "TPPlace1421", "name": "Bobellas", "desc": "Frattocchie<br>Vici.org: <a href='https://vici.org/vici/1839/'>https://vici.org/vici/1839/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1421.html'>TPPlace1421</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.617009, 41.765881]}}, {"type": "Feature", "properties": {"id": "TPPlace1422", "name": "Aricia", "desc": "Ariccia<br>Vici.org: <a href='https://vici.org/vici/1840/'>https://vici.org/vici/1840/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1422.html'>TPPlace1422</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.674063, 41.721703]}}, {"type": "Feature", "properties": {"id": "TPPlace1423", "name": "Svblanvbio", "desc": "San Gennaro ~ Lanuvio<br>Vici.org: <a href='https://vici.org/vici/1841/'>https://vici.org/vici/1841/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1423.html'>TPPlace1423</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.718549, 41.681969]}}, {"type": "Feature", "properties": {"id": "TPPlace1424", "name": "Tres Tabernas", "desc": "~ Cisterna di Latina<br>Vici.org: <a href='https://vici.org/vici/1842/'>https://vici.org/vici/1842/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1424.html'>TPPlace1424</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.826349, 41.59444]}}, {"type": "Feature", "properties": {"id": "TPPlace1425", "name": "Foro Appi", "desc": "Borgo Faiti ~ Latina, Forum Appii<br>Vici.org: <a href='https://vici.org/vici/1843/'>https://vici.org/vici/1843/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1425.html'>TPPlace1425</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.994458, 41.467976]}}, {"type": "Feature", "properties": {"id": "TPPlace1427", "name": "Lavrento", "desc": "Torre Paterno<br>Vici.org: <a href='https://vici.org/vici/1844/'>https://vici.org/vici/1844/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1427.html'>TPPlace1427</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.389223, 41.677631]}}, {"type": "Feature", "properties": {"id": "TPPlace1428", "name": "Hostis", "desc": "Ostia<br>Vici.org: <a href='https://vici.org/vici/1845/'>https://vici.org/vici/1845/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1428.html'>TPPlace1428</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.287656, 41.754856]}}, {"type": "Feature", "properties": {"id": "TPPlace1429", "name": "Lavinivm", "desc": "Marcellina<br>Vici.org: <a href='https://vici.org/vici/1846/'>https://vici.org/vici/1846/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1429.html'>TPPlace1429</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.481242, 41.665009]}}, {"type": "Feature", "properties": {"id": "TPPlace1430", "name": "Antivm", "desc": "Anzio<br>Vici.org: <a href='https://vici.org/vici/1847/'>https://vici.org/vici/1847/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1430.html'>TPPlace1430</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.629052, 41.447948]}}, {"type": "Feature", "properties": {"id": "TPPlace1436", "name": "Fvndis", "desc": "Fondi<br>Vici.org: <a href='https://vici.org/vici/1848/'>https://vici.org/vici/1848/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1436.html'>TPPlace1436</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.43237, 41.355167]}}, {"type": "Feature", "properties": {"id": "TPPlace1437", "name": "Formis", "desc": "Formia<br>Vici.org: <a href='https://vici.org/vici/1849/'>https://vici.org/vici/1849/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1437.html'>TPPlace1437</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.605914, 41.256351]}}, {"type": "Feature", "properties": {"id": "TPPlace1438", "name": "Mentvrnis", "desc": "Minturno<br>Vici.org: <a href='https://vici.org/vici/1850/'>https://vici.org/vici/1850/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1438.html'>TPPlace1438</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.746468, 41.262379]}}, {"type": "Feature", "properties": {"id": "TPPlace143", "name": "Vthica", "desc": "Oudna ~ Borj Fouaoud<br>Vici.org: <a href='https://vici.org/vici/1851/'>https://vici.org/vici/1851/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace143.html'>TPPlace143</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.172291, 36.607456]}}, {"type": "Feature", "properties": {"id": "TPPlace1440", "name": "Sinvessa", "desc": "~ Mondragone<br>Vici.org: <a href='https://vici.org/vici/1852/'>https://vici.org/vici/1852/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1440.html'>TPPlace1440</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.894555, 41.115166]}}, {"type": "Feature", "properties": {"id": "TPPlace1444", "name": "Sepinvm", "desc": "Altilia<br>Vici.org: <a href='https://vici.org/vici/1853/'>https://vici.org/vici/1853/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1444.html'>TPPlace1444</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.618447, 41.43375]}}, {"type": "Feature", "properties": {"id": "TPPlace1446", "name": "Sirpivm", "desc": "? Morcone<br>Vici.org: <a href='https://vici.org/vici/1854/'>https://vici.org/vici/1854/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1446.html'>TPPlace1446</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.666712, 41.344082]}}, {"type": "Feature", "properties": {"id": "TPPlace1447", "name": "Telesie", "desc": "San Salvatore Telesino<br>Vici.org: <a href='https://vici.org/vici/1855/'>https://vici.org/vici/1855/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1447.html'>TPPlace1447</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.497476, 41.234959]}}, {"type": "Feature", "properties": {"id": "TPPlace144", "name": "Maxvla", "desc": "Rad\u00e8s<br>Vici.org: <a href='https://vici.org/vici/1856/'>https://vici.org/vici/1856/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace144.html'>TPPlace144</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.283333, 36.766666]}}, {"type": "Feature", "properties": {"id": "TPPlace1450", "name": "Addiana", "desc": "Sant'Angelo in Formis ~ Capua<br>Vici.org: <a href='https://vici.org/vici/1857/'>https://vici.org/vici/1857/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1450.html'>TPPlace1450</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.260515, 41.118294]}}, {"type": "Feature", "properties": {"id": "TPPlace444", "name": "Cofna", "desc": "Jifna<br>Vici.org: <a href='https://vici.org/vici/1858/'>https://vici.org/vici/1858/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace444.html'>TPPlace444</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.214516, 31.962816]}}, {"type": "Feature", "properties": {"id": "TPPlace1454", "name": "Capvae", "desc": "Santa Maria Capua Vetere<br>Vici.org: <a href='https://vici.org/vici/1859/'>https://vici.org/vici/1859/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1454.html'>TPPlace1454</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.256627, 41.079987]}}, {"type": "Feature", "properties": {"id": "TPPlace1455", "name": "Cale", "desc": "Calvi<br>Vici.org: <a href='https://vici.org/vici/1860/'>https://vici.org/vici/1860/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1455.html'>TPPlace1455</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.128904, 41.217793]}}, {"type": "Feature", "properties": {"id": "TPPlace1456", "name": "Casilino", "desc": "Capua<br>Vici.org: <a href='https://vici.org/vici/1861/'>https://vici.org/vici/1861/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1456.html'>TPPlace1456</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.221111, 41.100796]}}, {"type": "Feature", "properties": {"id": "TPPlace1459", "name": "Adnovas", "desc": "Santa Maria a Vico<br>Vici.org: <a href='https://vici.org/vici/1862/'>https://vici.org/vici/1862/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1459.html'>TPPlace1459</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.466763, 41.026924]}}, {"type": "Feature", "properties": {"id": "TPPlace1460", "name": "Cavdio", "desc": "~ Montesarchio<br>Vici.org: <a href='https://vici.org/vici/1863/'>https://vici.org/vici/1863/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1460.html'>TPPlace1460</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.641278, 41.06414]}}, {"type": "Feature", "properties": {"id": "TPPlace1461", "name": "Svessvla", "desc": "~ Acerra<br>Vici.org: <a href='https://vici.org/vici/1864/'>https://vici.org/vici/1864/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1461.html'>TPPlace1461</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.377204, 40.951721]}}, {"type": "Feature", "properties": {"id": "TPPlace1462", "name": "Nola", "desc": "Nola<br>Vici.org: <a href='https://vici.org/vici/1865/'>https://vici.org/vici/1865/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1462.html'>TPPlace1462</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.529304, 40.937534]}}, {"type": "Feature", "properties": {"id": "TPPlace1463", "name": "Adteglanvm", "desc": "Palma Campania ~ Napoli<br>Vici.org: <a href='https://vici.org/vici/1866/'>https://vici.org/vici/1866/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1463.html'>TPPlace1463</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.549704, 40.865944]}}, {"type": "Feature", "properties": {"id": "TPPlace1464", "name": "Nvceria", "desc": "Nocera<br>Vici.org: <a href='https://vici.org/vici/1867/'>https://vici.org/vici/1867/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1464.html'>TPPlace1464</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.642815, 40.746094]}}, {"type": "Feature", "properties": {"id": "TPPlace1465", "name": "Atella", "desc": "Succivo<br>Vici.org: <a href='https://vici.org/vici/1868/'>https://vici.org/vici/1868/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1465.html'>TPPlace1465</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.256574, 40.969074]}}, {"type": "Feature", "properties": {"id": "TPPlace1466", "name": "Neapoli", "desc": "Napoli<br>Vici.org: <a href='https://vici.org/vici/1869/'>https://vici.org/vici/1869/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1466.html'>TPPlace1466</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.251636, 40.840096]}}, {"type": "Feature", "properties": {"id": "TPPlace1469", "name": "Literno", "desc": "Liternum<br>Vici.org: <a href='https://vici.org/vici/1870/'>https://vici.org/vici/1870/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1469.html'>TPPlace1469</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.029821, 40.921291]}}, {"type": "Feature", "properties": {"id": "TPPlace1468", "name": "Vvltvrno", "desc": "~ Castel Volturno<br>Vici.org: <a href='https://vici.org/vici/1871/'>https://vici.org/vici/1871/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1468.html'>TPPlace1468</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.941738, 41.033703]}}, {"type": "Feature", "properties": {"id": "TPPlace146", "name": "Mediocera", "desc": "A\u00efn Mdeker<br>Vici.org: <a href='https://vici.org/vici/1872/'>https://vici.org/vici/1872/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace146.html'>TPPlace146</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.261944, 36.217499]}}, {"type": "Feature", "properties": {"id": "TPPlace1470", "name": "Cvmas", "desc": "Cuma<br>Vici.org: <a href='https://vici.org/vici/1873/'>https://vici.org/vici/1873/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1470.html'>TPPlace1470</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.056292, 40.847191]}}, {"type": "Feature", "properties": {"id": "TPPlace1471", "name": "In Vinias", "desc": "~ Pozzuoli<br>Vici.org: <a href='https://vici.org/vici/1874/'>https://vici.org/vici/1874/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1471.html'>TPPlace1471</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.105023, 40.829884]}}, {"type": "Feature", "properties": {"id": "TPPlace1473", "name": "Pvteolis", "desc": "Pozzuoli<br>Vici.org: <a href='https://vici.org/vici/1875/'>https://vici.org/vici/1875/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1473.html'>TPPlace1473</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.121614, 40.823719]}}, {"type": "Feature", "properties": {"id": "TPPlace1474", "name": "Herclanivm", "desc": "Ercolano, Herculaneum<br>Vici.org: <a href='https://vici.org/vici/1876/'>https://vici.org/vici/1876/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1474.html'>TPPlace1474</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.352921, 40.806076]}}, {"type": "Feature", "properties": {"id": "TPPlace1475", "name": "Oplontis", "desc": "Torre Annunziata<br>Vici.org: <a href='https://vici.org/vici/1877/'>https://vici.org/vici/1877/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1475.html'>TPPlace1475</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.465648, 40.750797]}}, {"type": "Feature", "properties": {"id": "TPPlace1476", "name": "Pompeis", "desc": "Pompei<br>Vici.org: <a href='https://vici.org/vici/1878/'>https://vici.org/vici/1878/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1476.html'>TPPlace1476</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.485429, 40.749409]}}, {"type": "Feature", "properties": {"id": "TPPlace1477", "name": "Stabios", "desc": "Castellamare di Stabia<br>Vici.org: <a href='https://vici.org/vici/1879/'>https://vici.org/vici/1879/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1477.html'>TPPlace1477</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.481674, 40.696003]}}, {"type": "Feature", "properties": {"id": "TPPlace1478", "name": "Svrrento", "desc": "Sorrento<br>Vici.org: <a href='https://vici.org/vici/1880/'>https://vici.org/vici/1880/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1478.html'>TPPlace1478</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.375738, 40.62632]}}, {"type": "Feature", "properties": {"id": "TPPlace1479", "name": "Templvm Minervae", "desc": "~ Sorrento<br>Vici.org: <a href='https://vici.org/vici/1881/'>https://vici.org/vici/1881/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1479.html'>TPPlace1479</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.375738, 40.62632]}}, {"type": "Feature", "properties": {"id": "TPPlace1480", "name": "Pestv\u0304", "desc": "Paestum<br>Vici.org: <a href='https://vici.org/vici/1882/'>https://vici.org/vici/1882/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1480.html'>TPPlace1480</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.005081, 40.418667]}}, {"type": "Feature", "properties": {"id": "TPPlace1481", "name": "Ceserina", "desc": "Cesernia<br>Vici.org: <a href='https://vici.org/vici/1883/'>https://vici.org/vici/1883/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1481.html'>TPPlace1481</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.695781, 40.002319]}}, {"type": "Feature", "properties": {"id": "TPPlace1482", "name": "Blanda", "desc": "Palecastro di Tortora, Iulia<br>Vici.org: <a href='https://vici.org/vici/1884/'>https://vici.org/vici/1884/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1482.html'>TPPlace1482</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.779675, 39.930489]}}, {"type": "Feature", "properties": {"id": "TPPlace1483", "name": "Lavinivm", "desc": "Praia a Mare<br>Vici.org: <a href='https://vici.org/vici/1885/'>https://vici.org/vici/1885/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1483.html'>TPPlace1483</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.779715, 39.898148]}}, {"type": "Feature", "properties": {"id": "TPPlace1484", "name": "Cerelis", "desc": "Cirella<br>Vici.org: <a href='https://vici.org/vici/1886/'>https://vici.org/vici/1886/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1484.html'>TPPlace1484</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.811086, 39.713062]}}, {"type": "Feature", "properties": {"id": "TPPlace1485", "name": "Clampeia", "desc": "Amantea<br>Vici.org: <a href='https://vici.org/vici/1887/'>https://vici.org/vici/1887/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1485.html'>TPPlace1485</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.075481, 39.13422]}}, {"type": "Feature", "properties": {"id": "TPPlace1488", "name": "Depanis", "desc": "Trapani<br>Vici.org: <a href='https://vici.org/vici/1888/'>https://vici.org/vici/1888/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1488.html'>TPPlace1488</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.514634, 38.018589]}}, {"type": "Feature", "properties": {"id": "TPPlace1489", "name": "Segesto", "desc": "~ Calatafimi<br>Vici.org: <a href='https://vici.org/vici/1889/'>https://vici.org/vici/1889/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1489.html'>TPPlace1489</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.863591, 37.915905]}}, {"type": "Feature", "properties": {"id": "TPPlace1490", "name": "Lilybeo", "desc": "Marsala<br>Vici.org: <a href='https://vici.org/vici/1890/'>https://vici.org/vici/1890/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1490.html'>TPPlace1490</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.434233, 37.799084]}}, {"type": "Feature", "properties": {"id": "TPPlace1491", "name": "Panormo", "desc": "Palermo<br>Vici.org: <a href='https://vici.org/vici/1891/'>https://vici.org/vici/1891/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1491.html'>TPPlace1491</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.361376, 38.11562]}}, {"type": "Feature", "properties": {"id": "TPPlace1492", "name": "Solvnto", "desc": "~ Santa Flavia<br>Vici.org: <a href='https://vici.org/vici/1892/'>https://vici.org/vici/1892/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1492.html'>TPPlace1492</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.527583, 38.082466]}}, {"type": "Feature", "properties": {"id": "TPPlace1493", "name": "Thermis", "desc": "Termini Imerese<br>Vici.org: <a href='https://vici.org/vici/1893/'>https://vici.org/vici/1893/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1493.html'>TPPlace1493</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.696264, 37.983948]}}, {"type": "Feature", "properties": {"id": "TPPlace1494", "name": "Cephaledo", "desc": "Cefal\u00f9<br>Vici.org: <a href='https://vici.org/vici/1894/'>https://vici.org/vici/1894/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1494.html'>TPPlace1494</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.022059, 38.039471]}}, {"type": "Feature", "properties": {"id": "TPPlace1495", "name": "Halesa", "desc": "Tusa<br>Vici.org: <a href='https://vici.org/vici/1895/'>https://vici.org/vici/1895/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1495.html'>TPPlace1495</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.236475, 37.983242]}}, {"type": "Feature", "properties": {"id": "TPPlace1496", "name": "Calacte", "desc": "Caronia<br>Vici.org: <a href='https://vici.org/vici/1896/'>https://vici.org/vici/1896/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1496.html'>TPPlace1496</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.441077, 38.024193]}}, {"type": "Feature", "properties": {"id": "TPPlace1497", "name": "Agatinno", "desc": "? Capo d'Orlando<br>Vici.org: <a href='https://vici.org/vici/1897/'>https://vici.org/vici/1897/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1497.html'>TPPlace1497</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.746114, 38.163406]}}, {"type": "Feature", "properties": {"id": "TPPlace1498", "name": "Tindareo", "desc": "Tindari<br>Vici.org: <a href='https://vici.org/vici/1898/'>https://vici.org/vici/1898/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1498.html'>TPPlace1498</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.03996, 38.145393]}}, {"type": "Feature", "properties": {"id": "TPPlace1499", "name": "Messana", "desc": "Messina<br>Vici.org: <a href='https://vici.org/vici/1899/'>https://vici.org/vici/1899/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1499.html'>TPPlace1499</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.555523, 38.192333]}}, {"type": "Feature", "properties": {"id": "TPPlace149", "name": "Gvrra", "desc": "? Akouda<br>Vici.org: <a href='https://vici.org/vici/1900/'>https://vici.org/vici/1900/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace149.html'>TPPlace149</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.563368, 35.915833]}}, {"type": "Feature", "properties": {"id": "TPPlace14", "name": "Saldas Colonia", "desc": "B\u00e9ja\u00efa<br>Vici.org: <a href='https://vici.org/vici/1901/'>https://vici.org/vici/1901/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace14.html'>TPPlace14</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.066667, 36.75]}}, {"type": "Feature", "properties": {"id": "TPPlace1500", "name": "Enna", "desc": "Enna<br>Vici.org: <a href='https://vici.org/vici/1902/'>https://vici.org/vici/1902/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1500.html'>TPPlace1500</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.279706, 37.567596]}}, {"type": "Feature", "properties": {"id": "TPPlace1501", "name": "Agvrio", "desc": "Agira<br>Vici.org: <a href='https://vici.org/vici/1903/'>https://vici.org/vici/1903/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1501.html'>TPPlace1501</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.522637, 37.657322]}}, {"type": "Feature", "properties": {"id": "TPPlace1502", "name": "Centvrippa", "desc": "Centuripe<br>Vici.org: <a href='https://vici.org/vici/1904/'>https://vici.org/vici/1904/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1502.html'>TPPlace1502</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.740133, 37.624023]}}, {"type": "Feature", "properties": {"id": "TPPlace1503", "name": "Aethna", "desc": "? Patern\u00f2<br>Vici.org: <a href='https://vici.org/vici/1905/'>https://vici.org/vici/1905/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1503.html'>TPPlace1503</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.901029, 37.567287]}}, {"type": "Feature", "properties": {"id": "TPPlace1504", "name": "Catina", "desc": "Catania<br>Vici.org: <a href='https://vici.org/vici/1906/'>https://vici.org/vici/1906/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1504.html'>TPPlace1504</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.087834, 37.502483]}}, {"type": "Feature", "properties": {"id": "TPPlace1506", "name": "Aqvas labodes", "desc": "Sciacca<br>Vici.org: <a href='https://vici.org/vici/1907/'>https://vici.org/vici/1907/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1506.html'>TPPlace1506</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.080469, 37.505688]}}, {"type": "Feature", "properties": {"id": "TPPlace1507", "name": "Agrigento", "desc": "Agrigento<br>Vici.org: <a href='https://vici.org/vici/1908/'>https://vici.org/vici/1908/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1507.html'>TPPlace1507</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.576956, 37.311188]}}, {"type": "Feature", "properties": {"id": "TPPlace1508", "name": "Calvisiana", "desc": "~ Gela<br>Vici.org: <a href='https://vici.org/vici/1909/'>https://vici.org/vici/1909/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1508.html'>TPPlace1508</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.250765, 37.066265]}}, {"type": "Feature", "properties": {"id": "TPPlace1509", "name": "Niblae", "desc": "Ibla<br>Vici.org: <a href='https://vici.org/vici/1910/'>https://vici.org/vici/1910/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1509.html'>TPPlace1509</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.728504, 36.925915]}}, {"type": "Feature", "properties": {"id": "TPPlace150", "name": "Hadrito", "desc": "So\u00fbsse<br>Vici.org: <a href='https://vici.org/vici/1911/'>https://vici.org/vici/1911/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace150.html'>TPPlace150</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.633333, 35.833332]}}, {"type": "Feature", "properties": {"id": "TPPlace1510", "name": "Agris", "desc": "Palazzolo Acreide<br>Vici.org: <a href='https://vici.org/vici/1912/'>https://vici.org/vici/1912/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1510.html'>TPPlace1510</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.904502, 37.063393]}}, {"type": "Feature", "properties": {"id": "TPPlace1511", "name": "Siracvsis", "desc": "Siracusa<br>Vici.org: <a href='https://vici.org/vici/1913/'>https://vici.org/vici/1913/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1511.html'>TPPlace1511</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.284428, 37.066456]}}, {"type": "Feature", "properties": {"id": "TPPlace1512", "name": "Blaboriciaco", "desc": "Lorch, Lauriacum<br>Vici.org: <a href='https://vici.org/vici/1914/'>https://vici.org/vici/1914/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1512.html'>TPPlace1512</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.475, 48.216667]}}, {"type": "Feature", "properties": {"id": "TPPlace1513", "name": "Marinianio", "desc": "Eferding<br>Vici.org: <a href='https://vici.org/vici/1915/'>https://vici.org/vici/1915/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1513.html'>TPPlace1513</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.02023, 48.308788]}}, {"type": "Feature", "properties": {"id": "TPPlace1516", "name": "Arelate", "desc": "P\u00f6chlarn<br>Vici.org: <a href='https://vici.org/vici/1916/'>https://vici.org/vici/1916/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1516.html'>TPPlace1516</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.22189, 48.211079]}}, {"type": "Feature", "properties": {"id": "TPPlace1518", "name": "Vetonianis", "desc": "Voitsdorf<br>Vici.org: <a href='https://vici.org/vici/1917/'>https://vici.org/vici/1917/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1518.html'>TPPlace1518</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.06583, 48.007954]}}, {"type": "Feature", "properties": {"id": "TPPlace1519", "name": "Tvtastione", "desc": "Kremsdorf<br>Vici.org: <a href='https://vici.org/vici/1918/'>https://vici.org/vici/1918/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1519.html'>TPPlace1519</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.124515, 47.889603]}}, {"type": "Feature", "properties": {"id": "TPPlace1521", "name": "Gabromagi", "desc": "Windischgarsten<br>Vici.org: <a href='https://vici.org/vici/1919/'>https://vici.org/vici/1919/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1521.html'>TPPlace1521</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.32967, 47.721588]}}, {"type": "Feature", "properties": {"id": "TPPlace1522", "name": "Stiriate", "desc": "Liezen<br>Vici.org: <a href='https://vici.org/vici/1920/'>https://vici.org/vici/1920/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1522.html'>TPPlace1522</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.24315, 47.56741]}}, {"type": "Feature", "properties": {"id": "TPPlace1523", "name": "Svrontio", "desc": "Trieben<br>Vici.org: <a href='https://vici.org/vici/1921/'>https://vici.org/vici/1921/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1523.html'>TPPlace1523</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.48653, 47.488331]}}, {"type": "Feature", "properties": {"id": "TPPlace1524", "name": "Tartvrsanis", "desc": "Hohentauern<br>Vici.org: <a href='https://vici.org/vici/1922/'>https://vici.org/vici/1922/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1524.html'>TPPlace1524</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.48428, 47.43359]}}, {"type": "Feature", "properties": {"id": "TPPlace1525", "name": "Cvcvllae", "desc": "Kuchl<br>Vici.org: <a href='https://vici.org/vici/1923/'>https://vici.org/vici/1923/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1525.html'>TPPlace1525</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.14746, 47.625702]}}, {"type": "Feature", "properties": {"id": "TPPlace1526", "name": "Vocario", "desc": "Pfarrwerfen<br>Vici.org: <a href='https://vici.org/vici/1924/'>https://vici.org/vici/1924/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1526.html'>TPPlace1526</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.205859, 47.46254]}}, {"type": "Feature", "properties": {"id": "TPPlace1527", "name": "Ani", "desc": "Altenmarkt im Pongau<br>Vici.org: <a href='https://vici.org/vici/1925/'>https://vici.org/vici/1925/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1527.html'>TPPlace1527</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.42264, 47.378181]}}, {"type": "Feature", "properties": {"id": "TPPlace1528", "name": "In Alpe", "desc": "Obertauern<br>Vici.org: <a href='https://vici.org/vici/1926/'>https://vici.org/vici/1926/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1528.html'>TPPlace1528</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.55772, 47.248299]}}, {"type": "Feature", "properties": {"id": "TPPlace1529", "name": "In Imvrio", "desc": "Moosham Unternberg<br>Vici.org: <a href='https://vici.org/vici/1927/'>https://vici.org/vici/1927/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1529.html'>TPPlace1529</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.706592, 47.10199]}}, {"type": "Feature", "properties": {"id": "TPPlace152", "name": "Salinas Nvbonenenses", "desc": "Chott el Hodna<br>Vici.org: <a href='https://vici.org/vici/1928/'>https://vici.org/vici/1928/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace152.html'>TPPlace152</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.683611, 35.445278]}}, {"type": "Feature", "properties": {"id": "TPPlace1531", "name": "Ponte sonti", "desc": "Mainizza<br>Vici.org: <a href='https://vici.org/vici/1929/'>https://vici.org/vici/1929/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1531.html'>TPPlace1531</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.555015, 45.907326]}}, {"type": "Feature", "properties": {"id": "TPPlace1533", "name": "In Alpe Ivlia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/1930/'>https://vici.org/vici/1930/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1533.html'>TPPlace1533</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.110909, 45.864433]}}, {"type": "Feature", "properties": {"id": "TPPlace1534", "name": "Longatico", "desc": "Logatec<br>Vici.org: <a href='https://vici.org/vici/1931/'>https://vici.org/vici/1931/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1534.html'>TPPlace1534</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.20588, 45.911865]}}, {"type": "Feature", "properties": {"id": "TPPlace1535", "name": "Fonte timavi", "desc": "~ Monfalcone<br>Vici.org: <a href='https://vici.org/vici/1932/'>https://vici.org/vici/1932/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1535.html'>TPPlace1535</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.532855, 45.809647]}}, {"type": "Feature", "properties": {"id": "TPPlace1536", "name": "Tergeste", "desc": "Trieste<br>Vici.org: <a href='https://vici.org/vici/1933/'>https://vici.org/vici/1933/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1536.html'>TPPlace1536</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.778407, 45.653629]}}, {"type": "Feature", "properties": {"id": "TPPlace1537", "name": "Parentio", "desc": "Pore\u010d, Parentium<br>Vici.org: <a href='https://vici.org/vici/1934/'>https://vici.org/vici/1934/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1537.html'>TPPlace1537</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.597752, 45.226696]}}, {"type": "Feature", "properties": {"id": "TPPlace1540", "name": "Comagenis", "desc": "Tulln an der Donau<br>Vici.org: <a href='https://vici.org/vici/1935/'>https://vici.org/vici/1935/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1540.html'>TPPlace1540</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.06074, 48.331631]}}, {"type": "Feature", "properties": {"id": "TPPlace1542", "name": "Vindobona", "desc": "Wien<br>Vici.org: <a href='https://vici.org/vici/1936/'>https://vici.org/vici/1936/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1542.html'>TPPlace1542</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.373819, 48.208176]}}, {"type": "Feature", "properties": {"id": "TPPlace1543", "name": "villagai", "desc": "? Schwechat<br>Vici.org: <a href='https://vici.org/vici/1937/'>https://vici.org/vici/1937/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1543.html'>TPPlace1543</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.4771, 48.140999]}}, {"type": "Feature", "properties": {"id": "TPPlace1544", "name": "Aeqvinoctio", "desc": "Fischamend<br>Vici.org: <a href='https://vici.org/vici/1938/'>https://vici.org/vici/1938/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1544.html'>TPPlace1544</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.613171, 48.119308]}}, {"type": "Feature", "properties": {"id": "TPPlace1545", "name": "Carnvnto", "desc": "Deutsch Altenburg, Carnuntum<br>Vici.org: <a href='https://vici.org/vici/1939/'>https://vici.org/vici/1939/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1545.html'>TPPlace1545</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.867891, 48.113346]}}, {"type": "Feature", "properties": {"id": "TPPlace1547", "name": "Ad Flexvm", "desc": "Mosonmagyar\u00f3v\u00e1r<br>Vici.org: <a href='https://vici.org/vici/1940/'>https://vici.org/vici/1940/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1547.html'>TPPlace1547</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.26939, 47.874405]}}, {"type": "Feature", "properties": {"id": "TPPlace1549", "name": "Arrabo Fl.", "desc": "Gy\u0151r<br>Vici.org: <a href='https://vici.org/vici/1941/'>https://vici.org/vici/1941/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1549.html'>TPPlace1549</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.635101, 47.684052]}}, {"type": "Feature", "properties": {"id": "TPPlace1550", "name": "Brigantio", "desc": "Sz\u00f5ny ~ Kom\u00e1rom<br>Vici.org: <a href='https://vici.org/vici/1942/'>https://vici.org/vici/1942/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1550.html'>TPPlace1550</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.169516, 47.735245]}}, {"type": "Feature", "properties": {"id": "TPPlace1551", "name": "Lepavist", "desc": "? Alm\u00e1sf\u00fczit\u0151<br>Vici.org: <a href='https://vici.org/vici/1943/'>https://vici.org/vici/1943/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1551.html'>TPPlace1551</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.257799, 47.727848]}}, {"type": "Feature", "properties": {"id": "TPPlace1552", "name": "Gardellaca", "desc": "~ Tokod<br>Vici.org: <a href='https://vici.org/vici/1944/'>https://vici.org/vici/1944/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1552.html'>TPPlace1552</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.66011, 47.724148]}}, {"type": "Feature", "properties": {"id": "TPPlace1553", "name": "Lvsomana", "desc": "? Bicske<br>Vici.org: <a href='https://vici.org/vici/1945/'>https://vici.org/vici/1945/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1553.html'>TPPlace1553</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.636272, 47.490761]}}, {"type": "Feature", "properties": {"id": "TPPlace1554", "name": "Aqvinco", "desc": "Budapest, Aquincum<br>Vici.org: <a href='https://vici.org/vici/1946/'>https://vici.org/vici/1946/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1554.html'>TPPlace1554</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.049561, 47.564007]}}, {"type": "Feature", "properties": {"id": "TPPlace1555", "name": "Vetvsallo", "desc": "Adony<br>Vici.org: <a href='https://vici.org/vici/1947/'>https://vici.org/vici/1947/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1555.html'>TPPlace1555</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.865261, 47.119576]}}, {"type": "Feature", "properties": {"id": "TPPlace1556", "name": "Annamatia", "desc": "Baracs<br>Vici.org: <a href='https://vici.org/vici/1948/'>https://vici.org/vici/1948/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1556.html'>TPPlace1556</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.851389, 46.904846]}}, {"type": "Feature", "properties": {"id": "TPPlace1557", "name": "Lvsiene", "desc": "Dunak\u00f6ml\u0151d<br>Vici.org: <a href='https://vici.org/vici/1949/'>https://vici.org/vici/1949/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1557.html'>TPPlace1557</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.877232, 46.663616]}}, {"type": "Feature", "properties": {"id": "TPPlace1558", "name": "Altaripa", "desc": "Tolna<br>Vici.org: <a href='https://vici.org/vici/1950/'>https://vici.org/vici/1950/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1558.html'>TPPlace1558</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.790262, 46.423641]}}, {"type": "Feature", "properties": {"id": "TPPlace1560", "name": "Scarabantio", "desc": "Sopron<br>Vici.org: <a href='https://vici.org/vici/1951/'>https://vici.org/vici/1951/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1560.html'>TPPlace1560</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.583054, 47.684898]}}, {"type": "Feature", "properties": {"id": "TPPlace1561", "name": "Sabarie", "desc": "Szombathely<br>Vici.org: <a href='https://vici.org/vici/1952/'>https://vici.org/vici/1952/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1561.html'>TPPlace1561</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.621918, 47.235142]}}, {"type": "Feature", "properties": {"id": "TPPlace1562", "name": "Arrabone", "desc": "~ K\u00f6rmend<br>Vici.org: <a href='https://vici.org/vici/1953/'>https://vici.org/vici/1953/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1562.html'>TPPlace1562</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.605717, 47.011112]}}, {"type": "Feature", "properties": {"id": "TPPlace1563", "name": "Advicesimvm", "desc": "Ver\u017eej<br>Vici.org: <a href='https://vici.org/vici/1954/'>https://vici.org/vici/1954/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1563.html'>TPPlace1563</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.162575, 46.581692]}}, {"type": "Feature", "properties": {"id": "TPPlace1564", "name": "Petavione", "desc": "Ptuj<br>Vici.org: <a href='https://vici.org/vici/1955/'>https://vici.org/vici/1955/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1564.html'>TPPlace1564</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.869981, 46.419991]}}, {"type": "Feature", "properties": {"id": "TPPlace1565", "name": "Viscellis", "desc": "? Unterzeiring<br>Vici.org: <a href='https://vici.org/vici/1956/'>https://vici.org/vici/1956/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1565.html'>TPPlace1565</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.511731, 47.25655]}}, {"type": "Feature", "properties": {"id": "TPPlace1566", "name": "Adponte\u0304", "desc": "Scheifling<br>Vici.org: <a href='https://vici.org/vici/1957/'>https://vici.org/vici/1957/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1566.html'>TPPlace1566</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.41215, 47.150101]}}, {"type": "Feature", "properties": {"id": "TPPlace1569", "name": "Matvcaio", "desc": "Treibach<br>Vici.org: <a href='https://vici.org/vici/1958/'>https://vici.org/vici/1958/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1569.html'>TPPlace1569</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.4767, 46.869789]}}, {"type": "Feature", "properties": {"id": "TPPlace1571", "name": "Virvno", "desc": "Maria Saal<br>Vici.org: <a href='https://vici.org/vici/1959/'>https://vici.org/vici/1959/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1571.html'>TPPlace1571</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.35155, 46.684101]}}, {"type": "Feature", "properties": {"id": "TPPlace1572", "name": "Graviacis", "desc": "Stadl an der Mur<br>Vici.org: <a href='https://vici.org/vici/1960/'>https://vici.org/vici/1960/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1572.html'>TPPlace1572</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.98224, 47.088451]}}, {"type": "Feature", "properties": {"id": "TPPlace1573", "name": "Tarnasici", "desc": "Flattnitz<br>Vici.org: <a href='https://vici.org/vici/1961/'>https://vici.org/vici/1961/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1573.html'>TPPlace1573</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.02974, 46.945389]}}, {"type": "Feature", "properties": {"id": "TPPlace1574", "name": "Beliandro", "desc": "? Zweinitz | Feldkirchen<br>Vici.org: <a href='https://vici.org/vici/1962/'>https://vici.org/vici/1962/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1574.html'>TPPlace1574</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.23082, 46.863129]}}, {"type": "Feature", "properties": {"id": "TPPlace1576", "name": "Tasinemeti", "desc": "Lind-Rosegg<br>Vici.org: <a href='https://vici.org/vici/1963/'>https://vici.org/vici/1963/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1576.html'>TPPlace1576</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.018947, 46.589756]}}, {"type": "Feature", "properties": {"id": "TPPlace1579", "name": "Saloca", "desc": "Sallach ~ Krumpendorf<br>Vici.org: <a href='https://vici.org/vici/1964/'>https://vici.org/vici/1964/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1579.html'>TPPlace1579</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.036701, 46.702946]}}, {"type": "Feature", "properties": {"id": "TPPlace1580", "name": "Ivenna", "desc": "Globasnitz<br>Vici.org: <a href='https://vici.org/vici/1965/'>https://vici.org/vici/1965/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1580.html'>TPPlace1580</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.70038, 46.557178]}}, {"type": "Feature", "properties": {"id": "TPPlace1581", "name": "Colatione", "desc": "Stari Trg<br>Vici.org: <a href='https://vici.org/vici/1966/'>https://vici.org/vici/1966/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1581.html'>TPPlace1581</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.05976, 46.510117]}}, {"type": "Feature", "properties": {"id": "TPPlace1582", "name": "Vpellis", "desc": "Stara Vas ~ Velenje<br>Vici.org: <a href='https://vici.org/vici/1967/'>https://vici.org/vici/1967/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1582.html'>TPPlace1582</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.107994, 46.358723]}}, {"type": "Feature", "properties": {"id": "TPPlace1583", "name": "Celeia", "desc": "Celje<br>Vici.org: <a href='https://vici.org/vici/1968/'>https://vici.org/vici/1968/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1583.html'>TPPlace1583</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.260294, 46.231018]}}, {"type": "Feature", "properties": {"id": "TPPlace1584", "name": "Navporto", "desc": "Vrhnika<br>Vici.org: <a href='https://vici.org/vici/1969/'>https://vici.org/vici/1969/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1584.html'>TPPlace1584</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.298508, 45.966511]}}, {"type": "Feature", "properties": {"id": "TPPlace1585", "name": "Emona", "desc": "Ljubljana<br>Vici.org: <a href='https://vici.org/vici/1970/'>https://vici.org/vici/1970/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1585.html'>TPPlace1585</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.505966, 46.051426]}}, {"type": "Feature", "properties": {"id": "TPPlace1586", "name": "Savo Fl.", "desc": "? Laze<br>Vici.org: <a href='https://vici.org/vici/1971/'>https://vici.org/vici/1971/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1586.html'>TPPlace1586</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.645619, 46.135376]}}, {"type": "Feature", "properties": {"id": "TPPlace1587", "name": "Adpvblicanos", "desc": "? Lukovica<br>Vici.org: <a href='https://vici.org/vici/1972/'>https://vici.org/vici/1972/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1587.html'>TPPlace1587</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.7, 46.166668]}}, {"type": "Feature", "properties": {"id": "TPPlace1588", "name": "Adrante", "desc": "Trojane<br>Vici.org: <a href='https://vici.org/vici/1973/'>https://vici.org/vici/1973/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1588.html'>TPPlace1588</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.885907, 46.188244]}}, {"type": "Feature", "properties": {"id": "TPPlace1589", "name": "Ragandone", "desc": "Spodnje Gru\u0161ovje<br>Vici.org: <a href='https://vici.org/vici/1974/'>https://vici.org/vici/1974/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1589.html'>TPPlace1589</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.499898, 46.350986]}}, {"type": "Feature", "properties": {"id": "TPPlace158", "name": "Zaras", "desc": "Zraia<br>Vici.org: <a href='https://vici.org/vici/1975/'>https://vici.org/vici/1975/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace158.html'>TPPlace158</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.678888, 35.800774]}}, {"type": "Feature", "properties": {"id": "TPPlace1593", "name": "Botivo", "desc": "Ludbreg<br>Vici.org: <a href='https://vici.org/vici/1976/'>https://vici.org/vici/1976/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1593.html'>TPPlace1593</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.615089, 46.253761]}}, {"type": "Feature", "properties": {"id": "TPPlace1595", "name": "Piretis", "desc": "Draganovec<br>Vici.org: <a href='https://vici.org/vici/1977/'>https://vici.org/vici/1977/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1595.html'>TPPlace1595</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.832664, 46.125191]}}, {"type": "Feature", "properties": {"id": "TPPlace1596", "name": "Lvntvlis", "desc": "Stari Gradac<br>Vici.org: <a href='https://vici.org/vici/1978/'>https://vici.org/vici/1978/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1596.html'>TPPlace1596</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.292603, 45.925114]}}, {"type": "Feature", "properties": {"id": "TPPlace1598", "name": "Sirotis", "desc": "Virovitica<br>Vici.org: <a href='https://vici.org/vici/1979/'>https://vici.org/vici/1979/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1598.html'>TPPlace1598</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.383776, 45.833408]}}, {"type": "Feature", "properties": {"id": "TPPlace1602", "name": "Acervone", "desc": "Vi\u0161nja Gora<br>Vici.org: <a href='https://vici.org/vici/1980/'>https://vici.org/vici/1980/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1602.html'>TPPlace1602</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.742188, 45.957985]}}, {"type": "Feature", "properties": {"id": "TPPlace1603", "name": "Adprotoriv\u0304", "desc": "Trebnje<br>Vici.org: <a href='https://vici.org/vici/1981/'>https://vici.org/vici/1981/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1603.html'>TPPlace1603</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.005997, 45.907707]}}, {"type": "Feature", "properties": {"id": "TPPlace1604", "name": "Crvcio", "desc": "Grublje ~ \u0160entjernej<br>Vici.org: <a href='https://vici.org/vici/1982/'>https://vici.org/vici/1982/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1604.html'>TPPlace1604</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.147032, 45.80439]}}, {"type": "Feature", "properties": {"id": "TPPlace1605", "name": "Noviodvni", "desc": "Drnovo<br>Vici.org: <a href='https://vici.org/vici/1983/'>https://vici.org/vici/1983/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1605.html'>TPPlace1605</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.483947, 45.917648]}}, {"type": "Feature", "properties": {"id": "TPPlace1606", "name": "Romvla", "desc": "Ribnica<br>Vici.org: <a href='https://vici.org/vici/1984/'>https://vici.org/vici/1984/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1606.html'>TPPlace1606</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.666246, 45.865448]}}, {"type": "Feature", "properties": {"id": "TPPlace1608", "name": "Adfines", "desc": "Bu\u0161evec<br>Vici.org: <a href='https://vici.org/vici/1985/'>https://vici.org/vici/1985/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1608.html'>TPPlace1608</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.115349, 45.634232]}}, {"type": "Feature", "properties": {"id": "TPPlace1609", "name": "Siscia", "desc": "Sisak<br>Vici.org: <a href='https://vici.org/vici/1986/'>https://vici.org/vici/1986/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1609.html'>TPPlace1609</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.373569, 45.484684]}}, {"type": "Feature", "properties": {"id": "TPPlace1610", "name": "Ad Pretorivm", "desc": "~ Bosanska Dubica<br>Vici.org: <a href='https://vici.org/vici/1987/'>https://vici.org/vici/1987/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1610.html'>TPPlace1610</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.80666, 45.184528]}}, {"type": "Feature", "properties": {"id": "TPPlace1611", "name": "Pola", "desc": "Pula<br>Vici.org: <a href='https://vici.org/vici/1988/'>https://vici.org/vici/1988/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1611.html'>TPPlace1611</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.841147, 44.869652]}}, {"type": "Feature", "properties": {"id": "TPPlace1612", "name": "Qvaeri", "desc": "Koper<br>Vici.org: <a href='https://vici.org/vici/1989/'>https://vici.org/vici/1989/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1612.html'>TPPlace1612</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.731171, 45.548264]}}, {"type": "Feature", "properties": {"id": "TPPlace1613", "name": "Silvo", "desc": "Savudrija<br>Vici.org: <a href='https://vici.org/vici/1990/'>https://vici.org/vici/1990/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1613.html'>TPPlace1613</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.505246, 45.50053]}}, {"type": "Feature", "properties": {"id": "TPPlace1615", "name": "Arsia Fl.", "desc": "Ra\u0161a<br>Vici.org: <a href='https://vici.org/vici/1991/'>https://vici.org/vici/1991/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1615.html'>TPPlace1615</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.082756, 45.078854]}}, {"type": "Feature", "properties": {"id": "TPPlace1616", "name": "Alvona", "desc": "Labin<br>Vici.org: <a href='https://vici.org/vici/1992/'>https://vici.org/vici/1992/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1616.html'>TPPlace1616</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.115745, 45.098633]}}, {"type": "Feature", "properties": {"id": "TPPlace1617", "name": "Tarsatica", "desc": "Rijeka Trsat<br>Vici.org: <a href='https://vici.org/vici/1993/'>https://vici.org/vici/1993/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1617.html'>TPPlace1617</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.45208, 45.328613]}}, {"type": "Feature", "properties": {"id": "TPPlace1618", "name": "Senia", "desc": "Senj<br>Vici.org: <a href='https://vici.org/vici/1994/'>https://vici.org/vici/1994/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1618.html'>TPPlace1618</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.900878, 44.990559]}}, {"type": "Feature", "properties": {"id": "TPPlace161", "name": "Ad Dianam", "desc": "A\u00efn Zana<br>Vici.org: <a href='https://vici.org/vici/1995/'>https://vici.org/vici/1995/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace161.html'>TPPlace161</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.794601, 35.654507]}}, {"type": "Feature", "properties": {"id": "TPPlace1620", "name": "Avendone", "desc": "Crkvina ~ Brlog<br>Vici.org: <a href='https://vici.org/vici/1996/'>https://vici.org/vici/1996/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1620.html'>TPPlace1620</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.13092, 44.941959]}}, {"type": "Feature", "properties": {"id": "TPPlace1627", "name": "Bvrno", "desc": "~ Kistanje<br>Vici.org: <a href='https://vici.org/vici/1997/'>https://vici.org/vici/1997/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1627.html'>TPPlace1627</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.960938, 43.980236]}}, {"type": "Feature", "properties": {"id": "TPPlace1628", "name": "Iadera", "desc": "Zadar<br>Vici.org: <a href='https://vici.org/vici/1998/'>https://vici.org/vici/1998/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1628.html'>TPPlace1628</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.228951, 44.11488]}}, {"type": "Feature", "properties": {"id": "TPPlace1629", "name": "Nedino", "desc": "Nadin<br>Vici.org: <a href='https://vici.org/vici/1999/'>https://vici.org/vici/1999/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1629.html'>TPPlace1629</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.497251, 44.071514]}}, {"type": "Feature", "properties": {"id": "TPPlace1630", "name": "Aserie", "desc": "Podgra\u0111e ~ Benkovac<br>Vici.org: <a href='https://vici.org/vici/2000/'>https://vici.org/vici/2000/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1630.html'>TPPlace1630</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.694444, 44.024433]}}, {"type": "Feature", "properties": {"id": "TPPlace1633", "name": "Sardona", "desc": "Skradin<br>Vici.org: <a href='https://vici.org/vici/2001/'>https://vici.org/vici/2001/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1633.html'>TPPlace1633</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.923047, 43.817902]}}, {"type": "Feature", "properties": {"id": "TPPlace1634", "name": "Lvgione", "desc": "Dunaszekcs\u0151<br>Vici.org: <a href='https://vici.org/vici/2002/'>https://vici.org/vici/2002/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1634.html'>TPPlace1634</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.758713, 46.081539]}}, {"type": "Feature", "properties": {"id": "TPPlace1635", "name": "Antiana", "desc": "Popovac<br>Vici.org: <a href='https://vici.org/vici/2003/'>https://vici.org/vici/2003/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1635.html'>TPPlace1635</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.661966, 45.804909]}}, {"type": "Feature", "properties": {"id": "TPPlace1636", "name": "Donatianis", "desc": "Vardarac<br>Vici.org: <a href='https://vici.org/vici/2004/'>https://vici.org/vici/2004/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1636.html'>TPPlace1636</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.770573, 45.62682]}}, {"type": "Feature", "properties": {"id": "TPPlace1638", "name": "Tittobvrgo", "desc": "Dalj, Teutoburgium<br>Vici.org: <a href='https://vici.org/vici/2005/'>https://vici.org/vici/2005/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1638.html'>TPPlace1638</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.987394, 45.48436]}}, {"type": "Feature", "properties": {"id": "TPPlace1639", "name": "Cornaco", "desc": "Sotin<br>Vici.org: <a href='https://vici.org/vici/2006/'>https://vici.org/vici/2006/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1639.html'>TPPlace1639</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.152651, 45.291279]}}, {"type": "Feature", "properties": {"id": "TPPlace1640", "name": "Cvccio", "desc": "Ilok<br>Vici.org: <a href='https://vici.org/vici/2007/'>https://vici.org/vici/2007/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1640.html'>TPPlace1640</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.379131, 45.222122]}}, {"type": "Feature", "properties": {"id": "TPPlace1641", "name": "Milatis", "desc": "Bano\u0161tor, Bononia Malata, \u0411\u0430\u043d\u043e\u0448\u0442\u043e\u0440<br>Vici.org: <a href='https://vici.org/vici/2008/'>https://vici.org/vici/2008/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1641.html'>TPPlace1641</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.612038, 45.198936]}}, {"type": "Feature", "properties": {"id": "TPPlace1642", "name": "Cvsvm", "desc": "Petrovaradin, \u041f\u0435\u0442\u0440\u043e\u0432\u0430\u0440\u0430\u0434\u0438\u043d<br>Vici.org: <a href='https://vici.org/vici/2009/'>https://vici.org/vici/2009/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1642.html'>TPPlace1642</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.866667, 45.25]}}, {"type": "Feature", "properties": {"id": "TPPlace1643", "name": "Acvnvm", "desc": "Slankamen<br>Vici.org: <a href='https://vici.org/vici/2010/'>https://vici.org/vici/2010/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1643.html'>TPPlace1643</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.260605, 45.137386]}}, {"type": "Feature", "properties": {"id": "TPPlace1644", "name": "Bittio", "desc": "Surduk, \u0421\u0443\u0440\u0434\u0443\u043a<br>Vici.org: <a href='https://vici.org/vici/2011/'>https://vici.org/vici/2011/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1644.html'>TPPlace1644</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.321642, 45.066406]}}, {"type": "Feature", "properties": {"id": "TPPlace1645", "name": "Bvrgenis", "desc": "Novi Banovci, \u041d\u043e\u0432\u0438 \u0411\u0430\u043d\u043e\u0432\u0446\u0438<br>Vici.org: <a href='https://vici.org/vici/2012/'>https://vici.org/vici/2012/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1645.html'>TPPlace1645</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.283333, 44.950001]}}, {"type": "Feature", "properties": {"id": "TPPlace1646", "name": "Tavrvno", "desc": "Zemun, \u0417\u0435\u043c\u0443\u043d<br>Vici.org: <a href='https://vici.org/vici/2013/'>https://vici.org/vici/2013/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1646.html'>TPPlace1646</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.410278, 44.84528]}}, {"type": "Feature", "properties": {"id": "TPPlace1648", "name": "Singidvno", "desc": "Beograd, \u0411\u0435\u043e\u0433\u0440\u0430\u0434<br>Vici.org: <a href='https://vici.org/vici/2014/'>https://vici.org/vici/2014/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1648.html'>TPPlace1648</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.465601, 44.802418]}}, {"type": "Feature", "properties": {"id": "TPPlace1649", "name": "Berebis", "desc": "? Podravski Podgajci<br>Vici.org: <a href='https://vici.org/vici/2015/'>https://vici.org/vici/2015/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1649.html'>TPPlace1649</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.267162, 45.730995]}}, {"type": "Feature", "properties": {"id": "TPPlace1650", "name": "Iovallio", "desc": "Valpovo<br>Vici.org: <a href='https://vici.org/vici/2016/'>https://vici.org/vici/2016/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1650.html'>TPPlace1650</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.415684, 45.658669]}}, {"type": "Feature", "properties": {"id": "TPPlace1651", "name": "Mvrsa minor", "desc": "Petrijevci<br>Vici.org: <a href='https://vici.org/vici/2017/'>https://vici.org/vici/2017/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1651.html'>TPPlace1651</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.536938, 45.616348]}}, {"type": "Feature", "properties": {"id": "TPPlace1652", "name": "Mvrsa maior", "desc": "Osijek<br>Vici.org: <a href='https://vici.org/vici/2018/'>https://vici.org/vici/2018/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1652.html'>TPPlace1652</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.675884, 45.560001]}}, {"type": "Feature", "properties": {"id": "TPPlace1653", "name": "Ad Labores Pont Vlcae", "desc": "Bobota<br>Vici.org: <a href='https://vici.org/vici/2019/'>https://vici.org/vici/2019/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1653.html'>TPPlace1653</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.856287, 45.421864]}}, {"type": "Feature", "properties": {"id": "TPPlace1654", "name": "", "desc": "Vinkovci, Cibalae<br>Vici.org: <a href='https://vici.org/vici/2020/'>https://vici.org/vici/2020/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1654.html'>TPPlace1654</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.801048, 45.291023]}}, {"type": "Feature", "properties": {"id": "TPPlace1655", "name": "Cansilena", "desc": "Orolik<br>Vici.org: <a href='https://vici.org/vici/2021/'>https://vici.org/vici/2021/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1655.html'>TPPlace1655</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.985453, 45.214809]}}, {"type": "Feature", "properties": {"id": "TPPlace1657", "name": "Sirmivm", "desc": "Sremska Mitrovica, \u0421\u0440\u0435\u043c\u0441\u043a\u0430 \u041c\u0438\u0442\u0440\u043e\u0432\u0438\u0446\u0430<br>Vici.org: <a href='https://vici.org/vici/2022/'>https://vici.org/vici/2022/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1657.html'>TPPlace1657</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.615864, 44.978981]}}, {"type": "Feature", "properties": {"id": "TPPlace1660", "name": "Servttio", "desc": "Bosanska Gradi\u0161ka, \u0411\u043e\u0441\u0430\u043d\u0441\u043a\u0430 \u0413\u0440\u0430\u0434\u0438\u0448\u043a\u0430<br>Vici.org: <a href='https://vici.org/vici/2023/'>https://vici.org/vici/2023/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1660.html'>TPPlace1660</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.25293, 45.14209]}}, {"type": "Feature", "properties": {"id": "TPPlace1661", "name": "Vrbate", "desc": "~ Srbac, \u0421\u0440\u0431\u0430\u0446<br>Vici.org: <a href='https://vici.org/vici/2024/'>https://vici.org/vici/2024/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1661.html'>TPPlace1661</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.546841, 45.10799]}}, {"type": "Feature", "properties": {"id": "TPPlace1662", "name": "Marsonie", "desc": "~ Slavonski Brod<br>Vici.org: <a href='https://vici.org/vici/2025/'>https://vici.org/vici/2025/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1662.html'>TPPlace1662</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.018818, 45.161751]}}, {"type": "Feature", "properties": {"id": "TPPlace1663", "name": "Certis", "desc": "~ \u0110akovo<br>Vici.org: <a href='https://vici.org/vici/2026/'>https://vici.org/vici/2026/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1663.html'>TPPlace1663</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.407949, 45.308048]}}, {"type": "Feature", "properties": {"id": "TPPlace1666", "name": "Drinvm fl.", "desc": "Brodac, \u0411\u0440\u043e\u0434\u0430\u0446<br>Vici.org: <a href='https://vici.org/vici/2027/'>https://vici.org/vici/2027/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1666.html'>TPPlace1666</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.281401, 44.868279]}}, {"type": "Feature", "properties": {"id": "TPPlace1669", "name": "Argentaria", "desc": "Srebrenica<br>Vici.org: <a href='https://vici.org/vici/2028/'>https://vici.org/vici/2028/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1669.html'>TPPlace1669</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.315521, 44.111423]}}, {"type": "Feature", "properties": {"id": "TPPlace1670", "name": "Adfines", "desc": "Lakta\u0161i, \u041b\u0430\u043a\u0442\u0430\u0448\u0438<br>Vici.org: <a href='https://vici.org/vici/2029/'>https://vici.org/vici/2029/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1670.html'>TPPlace1670</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.314541, 44.893715]}}, {"type": "Feature", "properties": {"id": "TPPlace1671", "name": "Casra", "desc": "Banja Luka, \u0411\u0430\u045a\u0430 \u041b\u0443\u043a\u0430<br>Vici.org: <a href='https://vici.org/vici/2030/'>https://vici.org/vici/2030/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1671.html'>TPPlace1671</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.183332, 44.766666]}}, {"type": "Feature", "properties": {"id": "TPPlace1673", "name": "Levsaba", "desc": "Mrkonji\u0107 Grad, \u041c\u0440\u043a\u043e\u045a\u0438\u045b \u0413\u0440\u0430\u0434<br>Vici.org: <a href='https://vici.org/vici/2031/'>https://vici.org/vici/2031/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1673.html'>TPPlace1673</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.083941, 44.417042]}}, {"type": "Feature", "properties": {"id": "TPPlace1674", "name": "Baloie", "desc": "\u0160ipovo, \u0428\u0438\u043f\u043e\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2032/'>https://vici.org/vici/2032/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1674.html'>TPPlace1674</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.090832, 44.282883]}}, {"type": "Feature", "properties": {"id": "TPPlace1675", "name": "Indenea", "desc": "Mujdzic<br>Vici.org: <a href='https://vici.org/vici/2033/'>https://vici.org/vici/2033/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1675.html'>TPPlace1675</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.104912, 44.236984]}}, {"type": "Feature", "properties": {"id": "TPPlace1678", "name": "Baridvo", "desc": "Livno, \u041b\u0438\u0432\u043d\u043e<br>Vici.org: <a href='https://vici.org/vici/2034/'>https://vici.org/vici/2034/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1678.html'>TPPlace1678</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.01042, 43.82642]}}, {"type": "Feature", "properties": {"id": "TPPlace167", "name": "Lamasbva", "desc": "Merouana<br>Vici.org: <a href='https://vici.org/vici/2035/'>https://vici.org/vici/2035/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace167.html'>TPPlace167</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.913749, 35.631084]}}, {"type": "Feature", "properties": {"id": "TPPlace1680", "name": "Aeqvo", "desc": "\u010citluk ~ Sinj<br>Vici.org: <a href='https://vici.org/vici/2036/'>https://vici.org/vici/2036/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1680.html'>TPPlace1680</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.655825, 43.739174]}}, {"type": "Feature", "properties": {"id": "TPPlace1681", "name": "Salona", "desc": "Solin<br>Vici.org: <a href='https://vici.org/vici/2037/'>https://vici.org/vici/2037/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1681.html'>TPPlace1681</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.491028, 43.53756]}}, {"type": "Feature", "properties": {"id": "TPPlace1684", "name": "Andretio", "desc": "Mu\u0107<br>Vici.org: <a href='https://vici.org/vici/2038/'>https://vici.org/vici/2038/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1684.html'>TPPlace1684</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.470566, 43.691708]}}, {"type": "Feature", "properties": {"id": "TPPlace1686", "name": "Tilvrio", "desc": "Trilji<br>Vici.org: <a href='https://vici.org/vici/2039/'>https://vici.org/vici/2039/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1686.html'>TPPlace1686</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.726795, 43.617191]}}, {"type": "Feature", "properties": {"id": "TPPlace1691", "name": "Admatricem", "desc": "? Bugojno<br>Vici.org: <a href='https://vici.org/vici/2040/'>https://vici.org/vici/2040/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1691.html'>TPPlace1691</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.437389, 44.053581]}}, {"type": "Feature", "properties": {"id": "TPPlace1692", "name": "Bistve Nova", "desc": "Zenica, \u0417\u0435\u043d\u0438\u0446\u0430<br>Vici.org: <a href='https://vici.org/vici/2041/'>https://vici.org/vici/2041/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1692.html'>TPPlace1692</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.933332, 44.200001]}}, {"type": "Feature", "properties": {"id": "TPPlace1693", "name": "Stanecli", "desc": "? Kiseljak, \u041a\u0438\u0441\u0435\u0459\u0430\u043a ~ Sarajevo<br>Vici.org: <a href='https://vici.org/vici/2042/'>https://vici.org/vici/2042/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1693.html'>TPPlace1693</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.085041, 43.947166]}}, {"type": "Feature", "properties": {"id": "TPPlace1694", "name": "Billvbio", "desc": "Lokvi\u010di\u0107i<br>Vici.org: <a href='https://vici.org/vici/2043/'>https://vici.org/vici/2043/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1694.html'>TPPlace1694</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.091988, 43.464348]}}, {"type": "Feature", "properties": {"id": "TPPlace1695", "name": "Adnovas", "desc": "Runovi\u0107<br>Vici.org: <a href='https://vici.org/vici/2044/'>https://vici.org/vici/2044/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1695.html'>TPPlace1695</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.232803, 43.389256]}}, {"type": "Feature", "properties": {"id": "TPPlace1696", "name": "Ad Fvsciana", "desc": "Tihaljina<br>Vici.org: <a href='https://vici.org/vici/2045/'>https://vici.org/vici/2045/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1696.html'>TPPlace1696</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.64782, 43.053963]}}, {"type": "Feature", "properties": {"id": "TPPlace1698", "name": "Narona", "desc": "Vid ~ Metkovi\u0107<br>Vici.org: <a href='https://vici.org/vici/2046/'>https://vici.org/vici/2046/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1698.html'>TPPlace1698</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.64782, 43.053963]}}, {"type": "Feature", "properties": {"id": "TPPlace1700", "name": "Dilvnto", "desc": "? Stolac<br>Vici.org: <a href='https://vici.org/vici/2047/'>https://vici.org/vici/2047/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1700.html'>TPPlace1700</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.95846, 43.078758]}}, {"type": "Feature", "properties": {"id": "TPPlace1702", "name": "Ad Zizio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2048/'>https://vici.org/vici/2048/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1702.html'>TPPlace1702</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.387915, 42.776688]}}, {"type": "Feature", "properties": {"id": "TPPlace1703", "name": "Epetio", "desc": "Stobre\u010d<br>Vici.org: <a href='https://vici.org/vici/2049/'>https://vici.org/vici/2049/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1703.html'>TPPlace1703</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.525749, 43.507339]}}, {"type": "Feature", "properties": {"id": "TPPlace1704", "name": "Oneo", "desc": "~ Omi\u0161<br>Vici.org: <a href='https://vici.org/vici/2050/'>https://vici.org/vici/2050/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1704.html'>TPPlace1704</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.692156, 43.444065]}}, {"type": "Feature", "properties": {"id": "TPPlace1705", "name": "Inaronia", "desc": "? Makarska<br>Vici.org: <a href='https://vici.org/vici/2051/'>https://vici.org/vici/2051/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1705.html'>TPPlace1705</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.020739, 43.295242]}}, {"type": "Feature", "properties": {"id": "TPPlace1707", "name": "Spalato", "desc": "Split<br>Vici.org: <a href='https://vici.org/vici/2052/'>https://vici.org/vici/2052/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1707.html'>TPPlace1707</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.44245, 43.506905]}}, {"type": "Feature", "properties": {"id": "TPPlace1708", "name": "Addiana", "desc": "~ Split<br>Vici.org: <a href='https://vici.org/vici/2053/'>https://vici.org/vici/2053/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1708.html'>TPPlace1708</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.44245, 43.506905]}}, {"type": "Feature", "properties": {"id": "TPPlace1712", "name": "ragvrio", "desc": "Trogir, Tragurio<br>Vici.org: <a href='https://vici.org/vici/2054/'>https://vici.org/vici/2054/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1712.html'>TPPlace1712</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.250658, 43.517727]}}, {"type": "Feature", "properties": {"id": "TPPlace1713", "name": "Siclis", "desc": "Ka\u0161tel Stari<br>Vici.org: <a href='https://vici.org/vici/2055/'>https://vici.org/vici/2055/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1713.html'>TPPlace1713</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.346827, 43.553234]}}, {"type": "Feature", "properties": {"id": "TPPlace1714", "name": "Tricornio", "desc": "? Grocka, \u0413\u0440\u043e\u0446\u043a\u0430<br>Vici.org: <a href='https://vici.org/vici/2056/'>https://vici.org/vici/2056/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1714.html'>TPPlace1714</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.716667, 44.666668]}}, {"type": "Feature", "properties": {"id": "TPPlace1715", "name": "Monte avreo", "desc": "? Smederevo, \u0421\u043c\u0435\u0434\u0435\u0440\u0435\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2057/'>https://vici.org/vici/2057/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1715.html'>TPPlace1715</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.935513, 44.651382]}}, {"type": "Feature", "properties": {"id": "TPPlace1717", "name": "Viminatio", "desc": "Drmno ~ Kostolac<br>Vici.org: <a href='https://vici.org/vici/2058/'>https://vici.org/vici/2058/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1717.html'>TPPlace1717</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.233334, 44.716667]}}, {"type": "Feature", "properties": {"id": "TPPlace1718", "name": "Lederata", "desc": "Ram<br>Vici.org: <a href='https://vici.org/vici/2059/'>https://vici.org/vici/2059/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1718.html'>TPPlace1718</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.335142, 44.812843]}}, {"type": "Feature", "properties": {"id": "TPPlace171", "name": "Thamvgadi", "desc": "Timgad<br>Vici.org: <a href='https://vici.org/vici/2060/'>https://vici.org/vici/2060/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace171.html'>TPPlace171</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.464573, 35.487179]}}, {"type": "Feature", "properties": {"id": "TPPlace1725", "name": "Tivisco", "desc": "Jupa ~ Caransebe\u015f<br>Vici.org: <a href='https://vici.org/vici/2061/'>https://vici.org/vici/2061/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1725.html'>TPPlace1725</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.186457, 45.459076]}}, {"type": "Feature", "properties": {"id": "TPPlace1727", "name": "Vico cvppe", "desc": "Golubac, \u0413\u043e\u043b\u0443\u0431\u0430\u0446<br>Vici.org: <a href='https://vici.org/vici/2062/'>https://vici.org/vici/2062/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1727.html'>TPPlace1727</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.627159, 44.652683]}}, {"type": "Feature", "properties": {"id": "TPPlace1730", "name": "Faliatis", "desc": "Donji Milanovac, \u0414\u043e\u045a\u0438 \u041c\u0438\u043b\u0430\u043d\u043e\u0432\u0430\u0446<br>Vici.org: <a href='https://vici.org/vici/2063/'>https://vici.org/vici/2063/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1730.html'>TPPlace1730</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.154346, 44.462242]}}, {"type": "Feature", "properties": {"id": "TPPlace1737", "name": "Tivisco", "desc": "Jupa ~ Caransebe\u015f<br>Vici.org: <a href='https://vici.org/vici/2064/'>https://vici.org/vici/2064/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1737.html'>TPPlace1737</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.186089, 45.458347]}}, {"type": "Feature", "properties": {"id": "TPPlace1740", "name": "Sarmategte", "desc": "Gr\u0103di\u015fte<br>Vici.org: <a href='https://vici.org/vici/11775/'>https://vici.org/vici/11775/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1740.html'>TPPlace1740</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.786654, 45.516029]}}, {"type": "Feature", "properties": {"id": "TPPlace1741", "name": "Adaqvas", "desc": "C\u0103lan<br>Vici.org: <a href='https://vici.org/vici/2066/'>https://vici.org/vici/2066/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1741.html'>TPPlace1741</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.991756, 45.737446]}}, {"type": "Feature", "properties": {"id": "TPPlace1745", "name": "Apvla", "desc": "Alba Iulia<br>Vici.org: <a href='https://vici.org/vici/2067/'>https://vici.org/vici/2067/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1745.html'>TPPlace1745</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.580099, 46.076691]}}, {"type": "Feature", "properties": {"id": "TPPlace1749", "name": "Drvbetis", "desc": "Turnu-Severin<br>Vici.org: <a href='https://vici.org/vici/2068/'>https://vici.org/vici/2068/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1749.html'>TPPlace1749</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.660179, 44.635654]}}, {"type": "Feature", "properties": {"id": "TPPlace1751", "name": "Pelendova", "desc": "Craiova-Mofleni<br>Vici.org: <a href='https://vici.org/vici/2069/'>https://vici.org/vici/2069/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1751.html'>TPPlace1751</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.890007, 44.318821]}}, {"type": "Feature", "properties": {"id": "TPPlace1758", "name": "Castra Tragana", "desc": "Castra Traiana<br>Vici.org: <a href='https://vici.org/vici/2070/'>https://vici.org/vici/2070/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1758.html'>TPPlace1758</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.37711, 45.209122]}}, {"type": "Feature", "properties": {"id": "TPPlace1767", "name": "Dortico", "desc": "~Bregovo, \u0411\u0440\u0435\u0433\u043e\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2071/'>https://vici.org/vici/2071/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1767.html'>TPPlace1767</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.638983, 44.15123]}}, {"type": "Feature", "properties": {"id": "TPPlace1769", "name": "Ratiaris", "desc": "Ar\u00e7ar ~ Vidin, \u0410\u0440\u0447\u0430\u0440<br>Vici.org: <a href='https://vici.org/vici/2072/'>https://vici.org/vici/2072/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1769.html'>TPPlace1769</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.919855, 43.809422]}}, {"type": "Feature", "properties": {"id": "TPPlace1772", "name": "Pomodiana", "desc": "Stanevo<br>Vici.org: <a href='https://vici.org/vici/2073/'>https://vici.org/vici/2073/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1772.html'>TPPlace1772</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.446182, 43.82386]}}, {"type": "Feature", "properties": {"id": "TPPlace1776", "name": "Esco", "desc": "Gigen, Oescus<br>Vici.org: <a href='https://vici.org/vici/2074/'>https://vici.org/vici/2074/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1776.html'>TPPlace1776</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.482489, 43.69733]}}, {"type": "Feature", "properties": {"id": "TPPlace1780", "name": "Horrea Margi", "desc": "\u0106uprija, \u040b\u0443\u043f\u0440\u0438\u0458\u0430<br>Vici.org: <a href='https://vici.org/vici/2075/'>https://vici.org/vici/2075/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1780.html'>TPPlace1780</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.3836, 43.927509]}}, {"type": "Feature", "properties": {"id": "TPPlace1784", "name": "Naisso", "desc": "Ni\u0161<br>Vici.org: <a href='https://vici.org/vici/2076/'>https://vici.org/vici/2076/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1784.html'>TPPlace1784</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.896328, 43.319382]}}, {"type": "Feature", "properties": {"id": "TPPlace1788", "name": "Romesiana", "desc": "Bela Palanka, \u0411\u0435\u043b\u0430 \u041f\u0430\u043b\u0430\u043d\u043a\u0430<br>Vici.org: <a href='https://vici.org/vici/2077/'>https://vici.org/vici/2077/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1788.html'>TPPlace1788</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.306667, 43.217777]}}, {"type": "Feature", "properties": {"id": "TPPlace1789", "name": "Tvrribvs", "desc": "Pirot, Turres, \u041f\u0438\u0440\u043e\u0442<br>Vici.org: <a href='https://vici.org/vici/2078/'>https://vici.org/vici/2078/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1789.html'>TPPlace1789</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.582397, 43.159237]}}, {"type": "Feature", "properties": {"id": "TPPlace1791", "name": "Sertica", "desc": "Sofia<br>Vici.org: <a href='https://vici.org/vici/2079/'>https://vici.org/vici/2079/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1791.html'>TPPlace1791</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.322285, 42.697624]}}, {"type": "Feature", "properties": {"id": "TPPlace1792", "name": "Levsino", "desc": "Leusinio<br>Vici.org: <a href='https://vici.org/vici/2080/'>https://vici.org/vici/2080/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1792.html'>TPPlace1792</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.471022, 42.74155]}}, {"type": "Feature", "properties": {"id": "TPPlace1799", "name": "Bersvmno", "desc": "? Podgorica, \u041f\u043e\u0434\u0433\u043e\u0440\u0438\u0446\u0430<br>Vici.org: <a href='https://vici.org/vici/2081/'>https://vici.org/vici/2081/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1799.html'>TPPlace1799</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.268646, 42.442574]}}, {"type": "Feature", "properties": {"id": "TPPlace179", "name": "Ad Aqvas casaris", "desc": "Youks ~ Tebessa, Ad Aquas Caesaris<br>Vici.org: <a href='https://vici.org/vici/2082/'>https://vici.org/vici/2082/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace179.html'>TPPlace179</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.949211, 35.45026]}}, {"type": "Feature", "properties": {"id": "TPPlace1800", "name": "Sinna", "desc": "Koplik<br>Vici.org: <a href='https://vici.org/vici/2083/'>https://vici.org/vici/2083/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1800.html'>TPPlace1800</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.43639, 42.213612]}}, {"type": "Feature", "properties": {"id": "TPPlace1801", "name": "Scobre", "desc": "Shkod\u00ebr<br>Vici.org: <a href='https://vici.org/vici/2084/'>https://vici.org/vici/2084/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1801.html'>TPPlace1801</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.330734, 42.171001]}}, {"type": "Feature", "properties": {"id": "TPPlace1802", "name": "Asamo", "desc": "Trebinje, Asamum<br>Vici.org: <a href='https://vici.org/vici/2085/'>https://vici.org/vici/2085/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1802.html'>TPPlace1802</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.341541, 42.70966]}}, {"type": "Feature", "properties": {"id": "TPPlace1803", "name": "Epitavro", "desc": "Cavtat<br>Vici.org: <a href='https://vici.org/vici/2086/'>https://vici.org/vici/2086/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1803.html'>TPPlace1803</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.21887, 42.581028]}}, {"type": "Feature", "properties": {"id": "TPPlace1804", "name": "Resinvm", "desc": "? Risan<br>Vici.org: <a href='https://vici.org/vici/2087/'>https://vici.org/vici/2087/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1804.html'>TPPlace1804</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.695, 42.514721]}}, {"type": "Feature", "properties": {"id": "TPPlace1805", "name": "Vicinivm", "desc": "? Bigovo<br>Vici.org: <a href='https://vici.org/vici/2088/'>https://vici.org/vici/2088/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1805.html'>TPPlace1805</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.707382, 42.353481]}}, {"type": "Feature", "properties": {"id": "TPPlace1806", "name": "Batva", "desc": "Budva, \u0411\u0443\u0434\u0432\u0430<br>Vici.org: <a href='https://vici.org/vici/2089/'>https://vici.org/vici/2089/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1806.html'>TPPlace1806</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.842501, 42.288055]}}, {"type": "Feature", "properties": {"id": "TPPlace1807", "name": "Lissvm", "desc": "Lezh\u00eb<br>Vici.org: <a href='https://vici.org/vici/2090/'>https://vici.org/vici/2090/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1807.html'>TPPlace1807</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.65407, 41.787731]}}, {"type": "Feature", "properties": {"id": "TPPlace180", "name": "Theveste", "desc": "Tebessa<br>Vici.org: <a href='https://vici.org/vici/2091/'>https://vici.org/vici/2091/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace180.html'>TPPlace180</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.120864, 35.407139]}}, {"type": "Feature", "properties": {"id": "TPPlace1815", "name": "Hammeo", "desc": "Prokuplje, \u041f\u0440\u043e\u043a\u0443\u043f\u0459\u0435<br>Vici.org: <a href='https://vici.org/vici/2092/'>https://vici.org/vici/2092/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1815.html'>TPPlace1815</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.598602, 43.240711]}}, {"type": "Feature", "properties": {"id": "TPPlace1816", "name": "Adhercvlem", "desc": "\u017ditora\u0111a<br>Vici.org: <a href='https://vici.org/vici/2093/'>https://vici.org/vici/2093/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1816.html'>TPPlace1816</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.771868, 43.166744]}}, {"type": "Feature", "properties": {"id": "TPPlace1818", "name": "Scviris", "desc": "Skopje, Scupis, \u0421\u043a\u043e\u043f\u0458\u0435<br>Vici.org: <a href='https://vici.org/vici/2094/'>https://vici.org/vici/2094/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1818.html'>TPPlace1818</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.452246, 42.003811]}}, {"type": "Feature", "properties": {"id": "TPPlace1825", "name": "Gvrbita", "desc": "? Zgropolci ~ Veles, \u0412\u0435\u043b\u0435\u0441<br>Vici.org: <a href='https://vici.org/vici/2095/'>https://vici.org/vici/2095/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1825.html'>TPPlace1825</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.866547, 41.648972]}}, {"type": "Feature", "properties": {"id": "TPPlace1826", "name": "Stopis", "desc": "Palikura ~ Negotino<br>Vici.org: <a href='https://vici.org/vici/2096/'>https://vici.org/vici/2096/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1826.html'>TPPlace1826</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.093468, 41.491837]}}, {"type": "Feature", "properties": {"id": "TPPlace1827", "name": "Astibo", "desc": "Shtip, \u0428\u0442\u0438\u043f <br>Vici.org: <a href='https://vici.org/vici/2097/'>https://vici.org/vici/2097/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1827.html'>TPPlace1827</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.200006, 41.749863]}}, {"type": "Feature", "properties": {"id": "TPPlace1828", "name": "Tranvpara", "desc": "? Kratovo, \u041a\u0440\u0430\u0442\u043e\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2098/'>https://vici.org/vici/2098/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1828.html'>TPPlace1828</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.174318, 42.081245]}}, {"type": "Feature", "properties": {"id": "TPPlace1829", "name": "Pevtalia", "desc": "Kjustendil, \u041a\u044e\u0441\u0442\u0435\u043d\u0434\u0438\u043b<br>Vici.org: <a href='https://vici.org/vici/2099/'>https://vici.org/vici/2099/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1829.html'>TPPlace1829</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.688236, 42.281242]}}, {"type": "Feature", "properties": {"id": "TPPlace182", "name": "Ad medera", "desc": "Ha\u00efdra<br>Vici.org: <a href='https://vici.org/vici/2100/'>https://vici.org/vici/2100/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace182.html'>TPPlace182</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.4431, 35.567516]}}, {"type": "Feature", "properties": {"id": "TPPlace1831", "name": "Antigonia", "desc": "Negotino, \u041d\u0435\u0433\u043e\u0442\u0438\u043d\u043e<br>Vici.org: <a href='https://vici.org/vici/2101/'>https://vici.org/vici/2101/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1831.html'>TPPlace1831</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.09354, 41.49205]}}, {"type": "Feature", "properties": {"id": "TPPlace1836", "name": "Tessalonice", "desc": "Saloniki<br>Vici.org: <a href='https://vici.org/vici/2102/'>https://vici.org/vici/2102/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1836.html'>TPPlace1836</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.944607, 40.639351]}}, {"type": "Feature", "properties": {"id": "TPPlace1838", "name": "Ceramie", "desc": "? Prilep, \u041f\u0440\u0438\u043b\u0435\u043f<br>Vici.org: <a href='https://vici.org/vici/2103/'>https://vici.org/vici/2103/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1838.html'>TPPlace1838</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.56214, 41.35173]}}, {"type": "Feature", "properties": {"id": "TPPlace1839", "name": "Heraclea", "desc": "~ Bitola, \u0411\u0438\u0442\u043e\u043b\u0430<br>Vici.org: <a href='https://vici.org/vici/2104/'>https://vici.org/vici/2104/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1839.html'>TPPlace1839</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.34029, 41.032799]}}, {"type": "Feature", "properties": {"id": "TPPlace1841", "name": "Dyrratio", "desc": "Durr\u00ebs<br>Vici.org: <a href='https://vici.org/vici/2105/'>https://vici.org/vici/2105/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1841.html'>TPPlace1841</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.450001, 41.316666]}}, {"type": "Feature", "properties": {"id": "TPPlace1842", "name": "Clodiana", "desc": "Peqin<br>Vici.org: <a href='https://vici.org/vici/2106/'>https://vici.org/vici/2106/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1842.html'>TPPlace1842</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.75, 41.049999]}}, {"type": "Feature", "properties": {"id": "TPPlace1843", "name": "Scampis", "desc": "Elbasan<br>Vici.org: <a href='https://vici.org/vici/2107/'>https://vici.org/vici/2107/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1843.html'>TPPlace1843</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.092621, 41.11684]}}, {"type": "Feature", "properties": {"id": "TPPlace1848", "name": "Lignido", "desc": "Ohrid, Okhrid<br>Vici.org: <a href='https://vici.org/vici/2108/'>https://vici.org/vici/2108/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1848.html'>TPPlace1848</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.801666, 41.116943]}}, {"type": "Feature", "properties": {"id": "TPPlace1852", "name": "Apollonia", "desc": "Pojan ~ Fier<br>Vici.org: <a href='https://vici.org/vici/2109/'>https://vici.org/vici/2109/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1852.html'>TPPlace1852</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.468746, 40.730427]}}, {"type": "Feature", "properties": {"id": "TPPlace1854", "name": "Hadrianopoli", "desc": "Jergucati<br>Vici.org: <a href='https://vici.org/vici/2110/'>https://vici.org/vici/2110/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1854.html'>TPPlace1854</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.26833, 39.936611]}}, {"type": "Feature", "properties": {"id": "TPPlace1857", "name": "Actanicopoli", "desc": "Nicopolis<br>Vici.org: <a href='https://vici.org/vici/2111/'>https://vici.org/vici/2111/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1857.html'>TPPlace1857</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.733395, 39.026505]}}, {"type": "Feature", "properties": {"id": "TPPlace1858", "name": "Avlona", "desc": "Vlor\u00eb<br>Vici.org: <a href='https://vici.org/vici/2112/'>https://vici.org/vici/2112/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1858.html'>TPPlace1858</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.490219, 40.471882]}}, {"type": "Feature", "properties": {"id": "TPPlace185", "name": "Obba", "desc": "Ebba Ksoui<br>Vici.org: <a href='https://vici.org/vici/2113/'>https://vici.org/vici/2113/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace185.html'>TPPlace185</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.831133, 35.945881]}}, {"type": "Feature", "properties": {"id": "TPPlace1862", "name": "Rvtharoto", "desc": "Butrint<br>Vici.org: <a href='https://vici.org/vici/2114/'>https://vici.org/vici/2114/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1862.html'>TPPlace1862</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.0261, 39.751099]}}, {"type": "Feature", "properties": {"id": "TPPlace1864", "name": "Ciclis limen", "desc": "Glyki, \u0393\u03bb\u03c5\u03ba\u03ae<br>Vici.org: <a href='https://vici.org/vici/2115/'>https://vici.org/vici/2115/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1864.html'>TPPlace1864</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.607077, 39.327099]}}, {"type": "Feature", "properties": {"id": "TPPlace1865", "name": "Larissa", "desc": "Larisa, \u039b\u03ac\u03c1\u03b9\u03c3\u03b1<br>Vici.org: <a href='https://vici.org/vici/2116/'>https://vici.org/vici/2116/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1865.html'>TPPlace1865</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.419935, 39.632099]}}, {"type": "Feature", "properties": {"id": "TPPlace1869", "name": "Grannona", "desc": "Krannonas, \u039a\u03c1\u03b1\u03bd\u03bd\u03c9\u03bd\u03b1\u03c2<br>Vici.org: <a href='https://vici.org/vici/2117/'>https://vici.org/vici/2117/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1869.html'>TPPlace1869</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.319588, 39.519997]}}, {"type": "Feature", "properties": {"id": "TPPlace1872", "name": "Thermopylas", "desc": "~ Lam\u00eda, \u039b\u03b1\u03bc\u03af\u03b1<br>Vici.org: <a href='https://vici.org/vici/2118/'>https://vici.org/vici/2118/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1872.html'>TPPlace1872</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.538294, 38.796513]}}, {"type": "Feature", "properties": {"id": "TPPlace1880", "name": "Navpactos", "desc": "N\u00e1fpaktos, \u039d\u03b1\u03cd\u03c0\u03b1\u03ba\u03c4\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2119/'>https://vici.org/vici/2119/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1880.html'>TPPlace1880</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.834032, 38.394794]}}, {"type": "Feature", "properties": {"id": "TPPlace1883", "name": "Crvsa", "desc": "Chriss\u00f3, \u03a7\u03c1\u03b9\u03c3\u03c3\u03cc<br>Vici.org: <a href='https://vici.org/vici/2120/'>https://vici.org/vici/2120/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1883.html'>TPPlace1883</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.468719, 38.47464]}}, {"type": "Feature", "properties": {"id": "TPPlace1885", "name": "Megara", "desc": "Megara<br>Vici.org: <a href='https://vici.org/vici/2121/'>https://vici.org/vici/2121/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1885.html'>TPPlace1885</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.344591, 37.994846]}}, {"type": "Feature", "properties": {"id": "TPPlace1888", "name": "Cronias", "desc": "Kor\u00f3nia, \u039a\u03bf\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1<br>Vici.org: <a href='https://vici.org/vici/2122/'>https://vici.org/vici/2122/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1888.html'>TPPlace1888</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.96011, 38.358677]}}, {"type": "Feature", "properties": {"id": "TPPlace188", "name": "Assvres", "desc": "Zanfour<br>Vici.org: <a href='https://vici.org/vici/2123/'>https://vici.org/vici/2123/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace188.html'>TPPlace188</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.02028, 35.982498]}}, {"type": "Feature", "properties": {"id": "TPPlace1890", "name": "Athenas", "desc": "Ath\u00edna, \u0391\u03b8\u03ae\u03bd\u03b1<br>Vici.org: <a href='https://vici.org/vici/2124/'>https://vici.org/vici/2124/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1890.html'>TPPlace1890</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.716646, 37.979179]}}, {"type": "Feature", "properties": {"id": "TPPlace1891", "name": "Pyreo", "desc": "Peirai\u00e1s, \u03a0\u03b5\u03b9\u03c1\u03b1\u03b9\u03ac\u03c2 <br>Vici.org: <a href='https://vici.org/vici/2125/'>https://vici.org/vici/2125/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1891.html'>TPPlace1891</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.641104, 37.950901]}}, {"type": "Feature", "properties": {"id": "TPPlace1892", "name": "Istamo", "desc": "Isthmia, \u0399\u03c3\u03b8\u03bc\u03b9\u03b1<br>Vici.org: <a href='https://vici.org/vici/2126/'>https://vici.org/vici/2126/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1892.html'>TPPlace1892</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.999958, 37.911465]}}, {"type": "Feature", "properties": {"id": "TPPlace1893", "name": "Corintho", "desc": "K\u00f3rinthos, \u039a\u03cc\u03c1\u03b9\u03bd\u03b8\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2127/'>https://vici.org/vici/2127/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1893.html'>TPPlace1893</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.93203, 37.93858]}}, {"type": "Feature", "properties": {"id": "TPPlace1896", "name": "Micenis", "desc": "Myk\u00ednes, Mycenae, \u039c\u03c5\u03ba\u03ae\u03bd\u03b5\u03c2<br>Vici.org: <a href='https://vici.org/vici/2128/'>https://vici.org/vici/2128/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1896.html'>TPPlace1896</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.745132, 37.719677]}}, {"type": "Feature", "properties": {"id": "TPPlace1897", "name": "Tegeas", "desc": "Teg\u00e9a, \u03a4\u03b5\u03b3\u03ad\u03b1<br>Vici.org: <a href='https://vici.org/vici/2129/'>https://vici.org/vici/2129/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1897.html'>TPPlace1897</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.420429, 37.455318]}}, {"type": "Feature", "properties": {"id": "TPPlace1899", "name": "Epitavro", "desc": "Epidavros<br>Vici.org: <a href='https://vici.org/vici/2130/'>https://vici.org/vici/2130/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1899.html'>TPPlace1899</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.160061, 37.63332]}}, {"type": "Feature", "properties": {"id": "TPPlace189", "name": "Zamareigia", "desc": "Djama<br>Vici.org: <a href='https://vici.org/vici/2131/'>https://vici.org/vici/2131/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace189.html'>TPPlace189</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.284444, 36.115002]}}, {"type": "Feature", "properties": {"id": "TPPlace1900", "name": "Megalopili", "desc": "Megal\u00f3poli, \u039c\u03b5\u03b3\u03b1\u03bb\u03cc\u03c0\u03bf\u03bb\u03b7<br>Vici.org: <a href='https://vici.org/vici/2132/'>https://vici.org/vici/2132/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1900.html'>TPPlace1900</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.13677, 37.402248]}}, {"type": "Feature", "properties": {"id": "TPPlace1901", "name": "Lacedemone", "desc": "Sp\u00e1rti, \u03a3\u03c0\u03ac\u03c1\u03c4\u03b7, Sparta<br>Vici.org: <a href='https://vici.org/vici/2133/'>https://vici.org/vici/2133/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1901.html'>TPPlace1901</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.432585, 37.074303]}}, {"type": "Feature", "properties": {"id": "TPPlace1902", "name": "Olympia", "desc": "Archea Olympia<br>Vici.org: <a href='https://vici.org/vici/2134/'>https://vici.org/vici/2134/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1902.html'>TPPlace1902</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.627287, 37.648552]}}, {"type": "Feature", "properties": {"id": "TPPlace1903", "name": "Netide", "desc": "Elis, \u0397\u03bb\u03b9\u03c2<br>Vici.org: <a href='https://vici.org/vici/2135/'>https://vici.org/vici/2135/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1903.html'>TPPlace1903</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.570679, 37.70451]}}, {"type": "Feature", "properties": {"id": "TPPlace1904", "name": "Cyllene", "desc": "Kyll\u00e9ne, \u039a\u03c5\u03bb\u03bb\u03ae\u03bd\u03b7<br>Vici.org: <a href='https://vici.org/vici/2136/'>https://vici.org/vici/2136/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1904.html'>TPPlace1904</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.143869, 37.933243]}}, {"type": "Feature", "properties": {"id": "TPPlace1905", "name": "Dyme", "desc": "D\u00fdmi, \u0394\u03cd\u03bc\u03b7<br>Vici.org: <a href='https://vici.org/vici/2137/'>https://vici.org/vici/2137/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1905.html'>TPPlace1905</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.558754, 38.121586]}}, {"type": "Feature", "properties": {"id": "TPPlace1906", "name": "PaTHRAS", "desc": "Patras<br>Vici.org: <a href='https://vici.org/vici/2138/'>https://vici.org/vici/2138/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1906.html'>TPPlace1906</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.737066, 38.254463]}}, {"type": "Feature", "properties": {"id": "TPPlace1907", "name": "Agion", "desc": "\u00c9gio, \u0391\u03af\u03b3\u03b9\u03bf<br>Vici.org: <a href='https://vici.org/vici/2139/'>https://vici.org/vici/2139/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1907.html'>TPPlace1907</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.077282, 38.25082]}}, {"type": "Feature", "properties": {"id": "TPPlace1908", "name": "Agira", "desc": "Eg\u00edra, \u0391\u03b9\u03b3\u03b5\u03af\u03c1\u03b1<br>Vici.org: <a href='https://vici.org/vici/2140/'>https://vici.org/vici/2140/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1908.html'>TPPlace1908</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.35433, 38.148258]}}, {"type": "Feature", "properties": {"id": "TPPlace1820", "name": "Anavsaro", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2141/'>https://vici.org/vici/2141/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1820.html'>TPPlace1820</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.058174, 42.707603]}}, {"type": "Feature", "properties": {"id": "TPPlace1909", "name": "Sicione", "desc": "~ Kiato<br>Vici.org: <a href='https://vici.org/vici/2142/'>https://vici.org/vici/2142/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1909.html'>TPPlace1909</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.74572, 38.010433]}}, {"type": "Feature", "properties": {"id": "TPPlace1911", "name": "Nemea", "desc": "Nem\u00e9a, \u039d\u03b5\u03bc\u03ad\u03b1<br>Vici.org: <a href='https://vici.org/vici/2143/'>https://vici.org/vici/2143/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1911.html'>TPPlace1911</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.662743, 37.820766]}}, {"type": "Feature", "properties": {"id": "TPPlace1914", "name": "Samaco", "desc": "Samiko, \u03a3\u03b1\u03bc\u03b9\u03ba\u03bf <br>Vici.org: <a href='https://vici.org/vici/2144/'>https://vici.org/vici/2144/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1914.html'>TPPlace1914</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.585524, 37.57243]}}, {"type": "Feature", "properties": {"id": "TPPlace1915", "name": "Cyparissa", "desc": "Kypariss\u00eda, \u039a\u03c5\u03c0\u03b1\u03c1\u03b9\u03c3\u03c3\u03af\u03b1<br>Vici.org: <a href='https://vici.org/vici/2145/'>https://vici.org/vici/2145/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1915.html'>TPPlace1915</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.668827, 37.251232]}}, {"type": "Feature", "properties": {"id": "TPPlace1916", "name": "Pylios", "desc": "~ N\u00e9stor, \u039d\u03ad\u03c3\u03c4\u03bf\u03c1<br>Vici.org: <a href='https://vici.org/vici/2146/'>https://vici.org/vici/2146/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1916.html'>TPPlace1916</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.661236, 36.952625]}}, {"type": "Feature", "properties": {"id": "TPPlace1917", "name": "Mothone", "desc": "Methonis, \u039c\u03b5\u03b8\u03c9\u03bd\u03b7\u03c2<br>Vici.org: <a href='https://vici.org/vici/2147/'>https://vici.org/vici/2147/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1917.html'>TPPlace1917</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.707315, 36.818008]}}, {"type": "Feature", "properties": {"id": "TPPlace1919", "name": "Messene", "desc": "~ Ith\u00f3mi, \u0399\u03b8\u03ce\u03bc\u03b7<br>Vici.org: <a href='https://vici.org/vici/2148/'>https://vici.org/vici/2148/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1919.html'>TPPlace1919</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.008167, 37.051476]}}, {"type": "Feature", "properties": {"id": "TPPlace1920", "name": "Cytmon", "desc": "G\u00fdthio, \u0393\u03cd\u03b8\u03b5\u03b9\u03bf<br>Vici.org: <a href='https://vici.org/vici/2149/'>https://vici.org/vici/2149/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1920.html'>TPPlace1920</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.566284, 36.759449]}}, {"type": "Feature", "properties": {"id": "TPPlace1921", "name": "Asopos", "desc": "Asop\u00f3s, \u0391\u03c3\u03c9\u03c0\u03cc\u03c2<br>Vici.org: <a href='https://vici.org/vici/2150/'>https://vici.org/vici/2150/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1921.html'>TPPlace1921</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.854559, 36.730438]}}, {"type": "Feature", "properties": {"id": "TPPlace1922", "name": "Boas", "desc": "Ne\u00e1poli, \u039d\u03b5\u03ac\u03c0\u03bf\u03bb\u03b7<br>Vici.org: <a href='https://vici.org/vici/2151/'>https://vici.org/vici/2151/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1922.html'>TPPlace1922</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.060606, 36.543457]}}, {"type": "Feature", "properties": {"id": "TPPlace1925", "name": "Patavissa", "desc": "Turda<br>Vici.org: <a href='https://vici.org/vici/2152/'>https://vici.org/vici/2152/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1925.html'>TPPlace1925</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.79064, 46.56628]}}, {"type": "Feature", "properties": {"id": "TPPlace1926", "name": "Napoca", "desc": "Cluj<br>Vici.org: <a href='https://vici.org/vici/2153/'>https://vici.org/vici/2153/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1926.html'>TPPlace1926</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.59989, 46.777248]}}, {"type": "Feature", "properties": {"id": "TPPlace1930", "name": "Porolisso", "desc": "Moigrad-Jac<br>Vici.org: <a href='https://vici.org/vici/2154/'>https://vici.org/vici/2154/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1930.html'>TPPlace1930</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.154516, 47.177731]}}, {"type": "Feature", "properties": {"id": "TPPlace1934", "name": "Dimo", "desc": "Belene, \u0411\u0435\u043b\u0435\u043d\u0435<br>Vici.org: <a href='https://vici.org/vici/2155/'>https://vici.org/vici/2155/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1934.html'>TPPlace1934</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.128008, 43.648155]}}, {"type": "Feature", "properties": {"id": "TPPlace1935", "name": "Adnovas", "desc": "Svi\u0161tov, \u0421\u0432\u0438\u0449\u043e\u0432<br>Vici.org: <a href='https://vici.org/vici/2156/'>https://vici.org/vici/2156/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1935.html'>TPPlace1935</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.346045, 43.620117]}}, {"type": "Feature", "properties": {"id": "TPPlace1936", "name": "Latro", "desc": "Krivina, Iatrus, \u041a\u0440\u0438\u0432\u0438\u043d\u0430<br>Vici.org: <a href='https://vici.org/vici/2157/'>https://vici.org/vici/2157/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1936.html'>TPPlace1936</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.585089, 43.626114]}}, {"type": "Feature", "properties": {"id": "TPPlace1938", "name": "Pristis", "desc": "Ruse, \u0420\u0443\u0441\u0435<br>Vici.org: <a href='https://vici.org/vici/2158/'>https://vici.org/vici/2158/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1938.html'>TPPlace1938</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.95294, 43.848888]}}, {"type": "Feature", "properties": {"id": "TPPlace1939", "name": "Tegris", "desc": "Marten<br>Vici.org: <a href='https://vici.org/vici/2159/'>https://vici.org/vici/2159/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1939.html'>TPPlace1939</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.081699, 43.919163]}}, {"type": "Feature", "properties": {"id": "TPPlace1940", "name": "Appiaris", "desc": "Ryakhovo, \u0420\u044f\u0445\u043e\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2160/'>https://vici.org/vici/2160/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1940.html'>TPPlace1940</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.242205, 43.986763]}}, {"type": "Feature", "properties": {"id": "TPPlace1941", "name": "Tra\u0304smarisca", "desc": "Tutrakan, \u0422\u0443\u0442\u0440\u0430\u043a\u0430\u043d<br>Vici.org: <a href='https://vici.org/vici/2161/'>https://vici.org/vici/2161/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1941.html'>TPPlace1941</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.614489, 44.044933]}}, {"type": "Feature", "properties": {"id": "TPPlace1942", "name": "Nigrinianis", "desc": "Malak Preslavets<br>Vici.org: <a href='https://vici.org/vici/2162/'>https://vici.org/vici/2162/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1942.html'>TPPlace1942</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.848312, 44.06345]}}, {"type": "Feature", "properties": {"id": "TPPlace1943", "name": "Tegvlicio", "desc": "Sreburna, Tegulitium, \u0421\u0440\u0435\u0431\u044a\u0440\u043d\u0430<br>Vici.org: <a href='https://vici.org/vici/2163/'>https://vici.org/vici/2163/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1943.html'>TPPlace1943</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.032862, 44.124596]}}, {"type": "Feature", "properties": {"id": "TPPlace1944", "name": "Dvrostero", "desc": "Silistra<br>Vici.org: <a href='https://vici.org/vici/2164/'>https://vici.org/vici/2164/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1944.html'>TPPlace1944</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.260721, 44.117107]}}, {"type": "Feature", "properties": {"id": "TPPlace1946", "name": "Svcidava", "desc": "? Dun\u0103reni<br>Vici.org: <a href='https://vici.org/vici/2165/'>https://vici.org/vici/2165/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1946.html'>TPPlace1946</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.789848, 44.210365]}}, {"type": "Feature", "properties": {"id": "TPPlace1947", "name": "Axiopolis", "desc": "Cernavod\u0103<br>Vici.org: <a href='https://vici.org/vici/2166/'>https://vici.org/vici/2166/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1947.html'>TPPlace1947</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.033611, 44.338055]}}, {"type": "Feature", "properties": {"id": "TPPlace1948", "name": "Calidava", "desc": "Capidava<br>Vici.org: <a href='https://vici.org/vici/2167/'>https://vici.org/vici/2167/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1948.html'>TPPlace1948</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.091734, 44.496784]}}, {"type": "Feature", "properties": {"id": "TPPlace1949", "name": "Carsio", "desc": "H\u00e2r\u015fova<br>Vici.org: <a href='https://vici.org/vici/2168/'>https://vici.org/vici/2168/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1949.html'>TPPlace1949</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.951481, 44.691841]}}, {"type": "Feature", "properties": {"id": "TPPlace1951", "name": "Troesmis", "desc": "Turcoaia ~ Braila<br>Vici.org: <a href='https://vici.org/vici/2169/'>https://vici.org/vici/2169/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1951.html'>TPPlace1951</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.180431, 45.100624]}}, {"type": "Feature", "properties": {"id": "TPPlace1956", "name": "Histriopoli", "desc": "~ Istria<br>Vici.org: <a href='https://vici.org/vici/2170/'>https://vici.org/vici/2170/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1956.html'>TPPlace1956</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.71224, 44.570438]}}, {"type": "Feature", "properties": {"id": "TPPlace1957", "name": "Tomis", "desc": "Constan\u0163a<br>Vici.org: <a href='https://vici.org/vici/2171/'>https://vici.org/vici/2171/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1957.html'>TPPlace1957</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.638332, 44.173332]}}, {"type": "Feature", "properties": {"id": "TPPlace1958", "name": "Odessos", "desc": "Varna, \u0412\u0430\u0440\u043d\u0430<br>Vici.org: <a href='https://vici.org/vici/2172/'>https://vici.org/vici/2172/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1958.html'>TPPlace1958</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.911806, 43.216644]}}, {"type": "Feature", "properties": {"id": "TPPlace195", "name": "AGGAR", "desc": "~ Al-Waslatiyah<br>Vici.org: <a href='https://vici.org/vici/2173/'>https://vici.org/vici/2173/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace195.html'>TPPlace195</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.592387, 35.849442]}}, {"type": "Feature", "properties": {"id": "TPPlace1960", "name": "Bizone", "desc": "Kavarna, \u041a\u0430\u0432\u0430\u0440\u043d\u0430<br>Vici.org: <a href='https://vici.org/vici/2174/'>https://vici.org/vici/2174/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1960.html'>TPPlace1960</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.338903, 43.434547]}}, {"type": "Feature", "properties": {"id": "TPPlace1961", "name": "Trissa", "desc": "~ B\u016dlgarevo, \u0411\u044a\u043b\u0433\u0430\u0440\u0435\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2175/'>https://vici.org/vici/2175/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1961.html'>TPPlace1961</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.43256, 43.413528]}}, {"type": "Feature", "properties": {"id": "TPPlace1962", "name": "Callatis", "desc": "Mangalia<br>Vici.org: <a href='https://vici.org/vici/2176/'>https://vici.org/vici/2176/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1962.html'>TPPlace1962</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.582779, 43.817223]}}, {"type": "Feature", "properties": {"id": "TPPlace1965", "name": "Templo Iovis", "desc": "Obzor, \u041e\u0431\u0437\u043e\u0440<br>Vici.org: <a href='https://vici.org/vici/2177/'>https://vici.org/vici/2177/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1965.html'>TPPlace1965</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.881414, 42.818966]}}, {"type": "Feature", "properties": {"id": "TPPlace1967", "name": "Ancialis", "desc": "Pomorije<br>Vici.org: <a href='https://vici.org/vici/2178/'>https://vici.org/vici/2178/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1967.html'>TPPlace1967</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.64138, 42.55603]}}, {"type": "Feature", "properties": {"id": "TPPlace1968", "name": "Appollonia", "desc": "Sozopol, \u0421\u043e\u0437\u043e\u043f\u043e\u043b\u044c<br>Vici.org: <a href='https://vici.org/vici/2179/'>https://vici.org/vici/2179/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1968.html'>TPPlace1968</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.696356, 42.41737]}}, {"type": "Feature", "properties": {"id": "TPPlace1971", "name": "Scyllam", "desc": "~ Podima<br>Vici.org: <a href='https://vici.org/vici/2180/'>https://vici.org/vici/2180/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1971.html'>TPPlace1971</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.29966, 41.485458]}}, {"type": "Feature", "properties": {"id": "TPPlace1972", "name": "Philias", "desc": "Karaburun<br>Vici.org: <a href='https://vici.org/vici/2181/'>https://vici.org/vici/2181/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1972.html'>TPPlace1972</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.682463, 41.345577]}}, {"type": "Feature", "properties": {"id": "TPPlace1976", "name": "Perintvs", "desc": "Marmaraere\u011flisi<br>Vici.org: <a href='https://vici.org/vici/2182/'>https://vici.org/vici/2182/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1976.html'>TPPlace1976</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.955, 40.970001]}}, {"type": "Feature", "properties": {"id": "TPPlace1981", "name": "Apris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2183/'>https://vici.org/vici/2183/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1981.html'>TPPlace1981</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.069889, 40.969929]}}, {"type": "Feature", "properties": {"id": "TPPlace1982", "name": "Heraclea", "desc": "M\u00fcrefte<br>Vici.org: <a href='https://vici.org/vici/2184/'>https://vici.org/vici/2184/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1982.html'>TPPlace1982</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.245565, 40.668552]}}, {"type": "Feature", "properties": {"id": "TPPlace1986", "name": "Sestos", "desc": "~ Eceabat<br>Vici.org: <a href='https://vici.org/vici/2185/'>https://vici.org/vici/2185/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1986.html'>TPPlace1986</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.356388, 40.183887]}}, {"type": "Feature", "properties": {"id": "TPPlace1988", "name": "Marcianopolis", "desc": "Devnya, \u0414\u0435\u0432\u043d\u044f<br>Vici.org: <a href='https://vici.org/vici/2186/'>https://vici.org/vici/2186/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1988.html'>TPPlace1988</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.555975, 43.219135]}}, {"type": "Feature", "properties": {"id": "TPPlace1995", "name": "Melta", "desc": "Lovech, \u041b\u043e\u0432\u0435\u0447<br>Vici.org: <a href='https://vici.org/vici/2187/'>https://vici.org/vici/2187/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1995.html'>TPPlace1995</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.717262, 43.134838]}}, {"type": "Feature", "properties": {"id": "TPPlace1996", "name": "Nicopolistro", "desc": "~Nikjup, Nicopolis ad Istrum, \u041d\u0438\u043a\u044e\u043f<br>Vici.org: <a href='https://vici.org/vici/2188/'>https://vici.org/vici/2188/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1996.html'>TPPlace1996</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.612232, 43.217926]}}, {"type": "Feature", "properties": {"id": "TPPlace1997", "name": "Sostra", "desc": "~Lomets, \u041b\u043em\u0435\u0446<br>Vici.org: <a href='https://vici.org/vici/2189/'>https://vici.org/vici/2189/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1997.html'>TPPlace1997</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.648026, 42.991741]}}, {"type": "Feature", "properties": {"id": "TPPlace199", "name": "Thisdro Col.", "desc": "El Djem<br>Vici.org: <a href='https://vici.org/vici/2190/'>https://vici.org/vici/2190/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace199.html'>TPPlace199</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.70753, 35.300659]}}, {"type": "Feature", "properties": {"id": "TPPlace2001", "name": "Phinipopolis", "desc": "Plovdiv, Philippopolis<br>Vici.org: <a href='https://vici.org/vici/2191/'>https://vici.org/vici/2191/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2001.html'>TPPlace2001</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.749561, 42.143841]}}, {"type": "Feature", "properties": {"id": "TPPlace2002", "name": "Svbradice", "desc": "Hristo Danovo, \u0425\u0440\u0438\u0441\u0442\u043e \u0414\u0430\u043d\u043e\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2192/'>https://vici.org/vici/2192/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2002.html'>TPPlace2002</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.599678, 42.727352]}}, {"type": "Feature", "properties": {"id": "TPPlace2007", "name": "Cabilis", "desc": "Kabile, \u041a\u0430\u0431\u0438\u043b\u0435<br>Vici.org: <a href='https://vici.org/vici/2193/'>https://vici.org/vici/2193/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2007.html'>TPPlace2007</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.478588, 42.529079]}}, {"type": "Feature", "properties": {"id": "TPPlace2008", "name": "Aqvis calidis", "desc": "Banevo, \u0411\u0430\u043d\u0435\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2194/'>https://vici.org/vici/2194/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2008.html'>TPPlace2008</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.393053, 42.627674]}}, {"type": "Feature", "properties": {"id": "TPPlace2009", "name": "Pizo", "desc": "Dimitrievo, \u0414\u0438\u043c\u0438\u0442\u0440\u0438\u0435\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2195/'>https://vici.org/vici/2195/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2009.html'>TPPlace2009</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.553661, 42.189274]}}, {"type": "Feature", "properties": {"id": "TPPlace200", "name": "Ad Basilicam Diadvmene", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2196/'>https://vici.org/vici/2196/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace200.html'>TPPlace200</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.116665, 35.416668]}}, {"type": "Feature", "properties": {"id": "TPPlace2010", "name": "Arzvm", "desc": "Kalugerovo, \u041a\u0430\u043b\u0443\u0433\u0435\u0440\u043e\u0432\u043e<br>Vici.org: <a href='https://vici.org/vici/2197/'>https://vici.org/vici/2197/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2010.html'>TPPlace2010</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.868467, 42.090294]}}, {"type": "Feature", "properties": {"id": "TPPlace2013", "name": "Hadrianopoli", "desc": "Edirne<br>Vici.org: <a href='https://vici.org/vici/2198/'>https://vici.org/vici/2198/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2013.html'>TPPlace2013</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.566668, 41.666668]}}, {"type": "Feature", "properties": {"id": "TPPlace2014", "name": "Hostizo", "desc": "Havsa<br>Vici.org: <a href='https://vici.org/vici/2199/'>https://vici.org/vici/2199/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2014.html'>TPPlace2014</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.816668, 41.549999]}}, {"type": "Feature", "properties": {"id": "TPPlace2016", "name": "Bergvle", "desc": "L\u00fcleburgaz<br>Vici.org: <a href='https://vici.org/vici/2200/'>https://vici.org/vici/2200/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2016.html'>TPPlace2016</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.35, 41.400002]}}, {"type": "Feature", "properties": {"id": "TPPlace2019", "name": "Plotinopoli", "desc": "~ Didymoteicho<br>Vici.org: <a href='https://vici.org/vici/2201/'>https://vici.org/vici/2201/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2019.html'>TPPlace2019</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.493111, 41.347805]}}, {"type": "Feature", "properties": {"id": "TPPlace201", "name": "Symmachi", "desc": "~ A\u00efn Touta<br>Vici.org: <a href='https://vici.org/vici/2202/'>https://vici.org/vici/2202/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace201.html'>TPPlace201</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.9, 35.383331]}}, {"type": "Feature", "properties": {"id": "TPPlace2021", "name": "Aenos", "desc": "Enez<br>Vici.org: <a href='https://vici.org/vici/2203/'>https://vici.org/vici/2203/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2021.html'>TPPlace2021</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.0889, 40.729328]}}, {"type": "Feature", "properties": {"id": "TPPlace2023", "name": "Zorlanis", "desc": "Kesan<br>Vici.org: <a href='https://vici.org/vici/2204/'>https://vici.org/vici/2204/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2023.html'>TPPlace2023</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.632303, 40.852188]}}, {"type": "Feature", "properties": {"id": "TPPlace2026", "name": "Cellis", "desc": "K\u00e9lla, \u039a\u1f73\u03bb\u03bb\u03b1 <br>Vici.org: <a href='https://vici.org/vici/2205/'>https://vici.org/vici/2205/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2026.html'>TPPlace2026</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.689402, 40.786064]}}, {"type": "Feature", "properties": {"id": "TPPlace2027", "name": "Edessa", "desc": "\u00c9dessa, \u0388\u03b4\u03b5\u03c3\u03c3\u03b1<br>Vici.org: <a href='https://vici.org/vici/2206/'>https://vici.org/vici/2206/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2027.html'>TPPlace2027</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.050694, 40.802399]}}, {"type": "Feature", "properties": {"id": "TPPlace2029", "name": "Pella", "desc": "Pella<br>Vici.org: <a href='https://vici.org/vici/2207/'>https://vici.org/vici/2207/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2029.html'>TPPlace2029</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.526407, 40.760132]}}, {"type": "Feature", "properties": {"id": "TPPlace2030", "name": "Divm", "desc": "Dion, \u0394\u03af\u03bf\u03bd<br>Vici.org: <a href='https://vici.org/vici/2208/'>https://vici.org/vici/2208/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2030.html'>TPPlace2030</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.48613, 40.172852]}}, {"type": "Feature", "properties": {"id": "TPPlace2036", "name": "Beroea", "desc": "Berea, \u0392\u03ad\u03c1\u03bf\u03b9\u03b1<br>Vici.org: <a href='https://vici.org/vici/2209/'>https://vici.org/vici/2209/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2036.html'>TPPlace2036</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.204006, 40.526161]}}, {"type": "Feature", "properties": {"id": "TPPlace2038", "name": "Appollonia", "desc": "~ N\u00e9a Apollon\u00eda, \u039d\u1f73\u03b1 \u0391\u03c0\u03bf\u03bb\u03bb\u03bf\u03bd\u1f77\u03b1<br>Vici.org: <a href='https://vici.org/vici/2210/'>https://vici.org/vici/2210/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2038.html'>TPPlace2038</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.440493, 40.625717]}}, {"type": "Feature", "properties": {"id": "TPPlace2039", "name": "Amphipoli", "desc": "Amf\u00edpolis, \u0391\u03bc\u03c6\u1f77\u03c0\u03bf\u03bb\u03b7\u03c2<br>Vici.org: <a href='https://vici.org/vici/2211/'>https://vici.org/vici/2211/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2039.html'>TPPlace2039</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.846754, 40.824871]}}, {"type": "Feature", "properties": {"id": "TPPlace203", "name": "Ad calcevm Hercvlis", "desc": "El Kantara<br>Vici.org: <a href='https://vici.org/vici/2212/'>https://vici.org/vici/2212/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace203.html'>TPPlace203</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.706367, 35.222343]}}, {"type": "Feature", "properties": {"id": "TPPlace2040", "name": "Philippis", "desc": "~ Krinides, \u039a\u03c1\u03b7\u03bd\u03af\u03b4\u03b5\u03c2<br>Vici.org: <a href='https://vici.org/vici/2213/'>https://vici.org/vici/2213/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2040.html'>TPPlace2040</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.299097, 41.014828]}}, {"type": "Feature", "properties": {"id": "TPPlace2042", "name": "Neapolis", "desc": "Kav\u00e1la, \u039a\u03b1\u03b2\u03ac\u03bb\u03b1<br>Vici.org: <a href='https://vici.org/vici/2214/'>https://vici.org/vici/2214/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2042.html'>TPPlace2042</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.409477, 40.936501]}}, {"type": "Feature", "properties": {"id": "TPPlace2049", "name": "Dymis", "desc": "Feres, \u03a6\u03b5\u03c1\u03b5\u03c2<br>Vici.org: <a href='https://vici.org/vici/2215/'>https://vici.org/vici/2215/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2049.html'>TPPlace2049</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.173737, 40.893311]}}, {"type": "Feature", "properties": {"id": "TPPlace204", "name": "Ad aqvas Hercvlis", "desc": "Hammam Sidi el Hadj<br>Vici.org: <a href='https://vici.org/vici/2216/'>https://vici.org/vici/2216/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace204.html'>TPPlace204</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.616667, 35.099998]}}, {"type": "Feature", "properties": {"id": "TPPlace2050", "name": "Heracleasantica", "desc": "? Neo Petritsio<br>Vici.org: <a href='https://vici.org/vici/2217/'>https://vici.org/vici/2217/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2050.html'>TPPlace2050</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.26193, 41.450733]}}, {"type": "Feature", "properties": {"id": "TPPlace2051", "name": "Scotvsa", "desc": "Sidirokastro, \u03a3\u03b9\u03b4\u03b7\u03c1\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf <br>Vici.org: <a href='https://vici.org/vici/2218/'>https://vici.org/vici/2218/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2051.html'>TPPlace2051</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.389748, 41.234894]}}, {"type": "Feature", "properties": {"id": "TPPlace2055", "name": "Daravescos", "desc": "? Draviskos<br>Vici.org: <a href='https://vici.org/vici/2219/'>https://vici.org/vici/2219/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2055.html'>TPPlace2055</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.871769, 40.923546]}}, {"type": "Feature", "properties": {"id": "TPPlace2059", "name": "Cydonia", "desc": "Ch\u00e1nia, \u03a7\u1f71\u03bd\u03b9\u03b1<br>Vici.org: <a href='https://vici.org/vici/2220/'>https://vici.org/vici/2220/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2059.html'>TPPlace2059</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.018806, 35.516235]}}, {"type": "Feature", "properties": {"id": "TPPlace2064", "name": "Svbrita", "desc": "Thr\u00f3nos, \u0398\u03c1\u03cc\u03bd\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2221/'>https://vici.org/vici/2221/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2064.html'>TPPlace2064</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.642824, 35.258133]}}, {"type": "Feature", "properties": {"id": "TPPlace2065", "name": "Cisamos", "desc": "Kast\u00e9li, \u039a\u03b1\u03c3\u03c4\u03ad\u03bb\u03b9<br>Vici.org: <a href='https://vici.org/vici/2222/'>https://vici.org/vici/2222/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2065.html'>TPPlace2065</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.660727, 35.495308]}}, {"type": "Feature", "properties": {"id": "TPPlace2066", "name": "Cantano", "desc": "K\u00e1ndanos, \u039a\u03ac\u03bd\u03b4\u03b1\u03bd\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2223/'>https://vici.org/vici/2223/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2066.html'>TPPlace2066</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.742069, 35.327579]}}, {"type": "Feature", "properties": {"id": "TPPlace2069", "name": "Ledena", "desc": "Lentas, \u039b\u03ad\u03bd\u03c4\u03b1\u03c2<br>Vici.org: <a href='https://vici.org/vici/2224/'>https://vici.org/vici/2224/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2069.html'>TPPlace2069</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.923782, 34.931149]}}, {"type": "Feature", "properties": {"id": "TPPlace2070", "name": "Cortina", "desc": "Gortis, \u0393\u03bf\u03c1\u03c4\u03c5\u03c2<br>Vici.org: <a href='https://vici.org/vici/2225/'>https://vici.org/vici/2225/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2070.html'>TPPlace2070</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.947535, 35.061687]}}, {"type": "Feature", "properties": {"id": "TPPlace2076", "name": "Hiera", "desc": "Ier\u00e1petra, \u0399\u03b5\u03c1\u03ac\u03c0\u03b5\u03c4\u03c1\u03b1<br>Vici.org: <a href='https://vici.org/vici/2226/'>https://vici.org/vici/2226/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2076.html'>TPPlace2076</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.74048, 35.010262]}}, {"type": "Feature", "properties": {"id": "TPPlace2077", "name": "Inata", "desc": "Tso\u00fatsouros, \u03a4\u03c3\u03bf\u03cd\u03c4\u03c3\u03bf\u03c5\u03c1\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2227/'>https://vici.org/vici/2227/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2077.html'>TPPlace2077</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.28129, 34.984215]}}, {"type": "Feature", "properties": {"id": "TPPlace2078", "name": "Lisia", "desc": "? Kalo\u00ed Lim\u00e9nes, \u03ba\u03b1\u03bb\u03bf\u03af \u03bb\u03b9\u03bc\u03ae\u03bd\u03b7\u03c2 <br>Vici.org: <a href='https://vici.org/vici/2228/'>https://vici.org/vici/2228/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2078.html'>TPPlace2078</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.806009, 34.934204]}}, {"type": "Feature", "properties": {"id": "TPPlace207", "name": "Mesar filia", "desc": "el Outaya<br>Vici.org: <a href='https://vici.org/vici/2229/'>https://vici.org/vici/2229/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace207.html'>TPPlace207</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.6, 35.033333]}}, {"type": "Feature", "properties": {"id": "TPPlace2080", "name": "Sycas", "desc": "\u0130stanbul-Galata<br>Vici.org: <a href='https://vici.org/vici/2230/'>https://vici.org/vici/2230/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2080.html'>TPPlace2080</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.97201, 41.018265]}}, {"type": "Feature", "properties": {"id": "TPPlace2081", "name": "Melantiana", "desc": "? Yarimburgaz<br>Vici.org: <a href='https://vici.org/vici/2231/'>https://vici.org/vici/2231/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2081.html'>TPPlace2081</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.767647, 41.025593]}}, {"type": "Feature", "properties": {"id": "TPPlace2082", "name": "Constantinopolis", "desc": "\u0130stanbul<br>Vici.org: <a href='https://vici.org/vici/2232/'>https://vici.org/vici/2232/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2082.html'>TPPlace2082</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.976959, 41.005268]}}, {"type": "Feature", "properties": {"id": "TPPlace2084", "name": "Chrisoppolis", "desc": "\u0130stanbul-\u00dcsk\u00fcdar<br>Vici.org: <a href='https://vici.org/vici/2233/'>https://vici.org/vici/2233/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2084.html'>TPPlace2084</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.031939, 41.032234]}}, {"type": "Feature", "properties": {"id": "TPPlace2085", "name": "Iovisvrivs", "desc": "Anadolu Kava\u011fi<br>Vici.org: <a href='https://vici.org/vici/2234/'>https://vici.org/vici/2234/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2085.html'>TPPlace2085</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.088226, 41.174541]}}, {"type": "Feature", "properties": {"id": "TPPlace2089", "name": "Artane", "desc": "\u015eile ?<br>Vici.org: <a href='https://vici.org/vici/2235/'>https://vici.org/vici/2235/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2089.html'>TPPlace2089</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.611416, 41.175037]}}, {"type": "Feature", "properties": {"id": "TPPlace208", "name": "Ad piscinam", "desc": "Biskra<br>Vici.org: <a href='https://vici.org/vici/2236/'>https://vici.org/vici/2236/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace208.html'>TPPlace208</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.733333, 34.849998]}}, {"type": "Feature", "properties": {"id": "TPPlace2092", "name": "Sagarivs Fl.", "desc": "Sakarya Nehri<br>Vici.org: <a href='https://vici.org/vici/2237/'>https://vici.org/vici/2237/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2092.html'>TPPlace2092</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.308002, 40.666325]}}, {"type": "Feature", "properties": {"id": "TPPlace2096", "name": "Heraclea", "desc": "Ere\u011fli<br>Vici.org: <a href='https://vici.org/vici/2238/'>https://vici.org/vici/2238/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2096.html'>TPPlace2096</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.432093, 41.259338]}}, {"type": "Feature", "properties": {"id": "TPPlace2099", "name": "Tivm", "desc": "Filyos-Hisar\u00f6n\u00fc<br>Vici.org: <a href='https://vici.org/vici/2239/'>https://vici.org/vici/2239/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2099.html'>TPPlace2099</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.02219, 41.554066]}}, {"type": "Feature", "properties": {"id": "TPPlace209", "name": "Gemellas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2240/'>https://vici.org/vici/2240/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace209.html'>TPPlace209</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.522757, 34.635422]}}, {"type": "Feature", "properties": {"id": "TPPlace2100", "name": "Mastrvm", "desc": "Amasra<br>Vici.org: <a href='https://vici.org/vici/2241/'>https://vici.org/vici/2241/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2100.html'>TPPlace2100</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.384659, 41.745144]}}, {"type": "Feature", "properties": {"id": "TPPlace2104", "name": "Sinope", "desc": "Sinop<br>Vici.org: <a href='https://vici.org/vici/2242/'>https://vici.org/vici/2242/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2104.html'>TPPlace2104</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.155075, 42.026421]}}, {"type": "Feature", "properties": {"id": "TPPlace2105", "name": "Templvm Hercvlis", "desc": "Kand\u0131ra<br>Vici.org: <a href='https://vici.org/vici/2243/'>https://vici.org/vici/2243/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2105.html'>TPPlace2105</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.15712, 41.080231]}}, {"type": "Feature", "properties": {"id": "TPPlace2106", "name": "Sagar Fl.", "desc": "Sakarya Nehri<br>Vici.org: <a href='https://vici.org/vici/2244/'>https://vici.org/vici/2244/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2106.html'>TPPlace2106</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.308002, 40.666325]}}, {"type": "Feature", "properties": {"id": "TPPlace2108", "name": "Calcedonia", "desc": "Kad\u0131k\u00f6y<br>Vici.org: <a href='https://vici.org/vici/2245/'>https://vici.org/vici/2245/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2108.html'>TPPlace2108</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.082127, 40.979717]}}, {"type": "Feature", "properties": {"id": "TPPlace2109", "name": "Livissa", "desc": "Gebze<br>Vici.org: <a href='https://vici.org/vici/2246/'>https://vici.org/vici/2246/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2109.html'>TPPlace2109</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.433332, 40.799999]}}, {"type": "Feature", "properties": {"id": "TPPlace2110", "name": "Nicomedia", "desc": "\u0130zmit<br>Vici.org: <a href='https://vici.org/vici/2247/'>https://vici.org/vici/2247/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2110.html'>TPPlace2110</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.948357, 40.775986]}}, {"type": "Feature", "properties": {"id": "TPPlace2118", "name": "Gangaris", "desc": "\u00c7ank\u0131r\u0131<br>Vici.org: <a href='https://vici.org/vici/2248/'>https://vici.org/vici/2248/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2118.html'>TPPlace2118</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.616669, 40.599998]}}, {"type": "Feature", "properties": {"id": "TPPlace2119", "name": "Pompeiopolis", "desc": "Ta\u015fk\u00f6pr\u00fc<br>Vici.org: <a href='https://vici.org/vici/2249/'>https://vici.org/vici/2249/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2119.html'>TPPlace2119</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.214722, 41.513889]}}, {"type": "Feature", "properties": {"id": "TPPlace2122", "name": "Amasia", "desc": "Amasya<br>Vici.org: <a href='https://vici.org/vici/2250/'>https://vici.org/vici/2250/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2122.html'>TPPlace2122</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.833332, 40.650002]}}, {"type": "Feature", "properties": {"id": "TPPlace2128", "name": "Eribvlo", "desc": "Yenik\u00f6y<br>Vici.org: <a href='https://vici.org/vici/2251/'>https://vici.org/vici/2251/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2128.html'>TPPlace2128</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.351149, 40.535889]}}, {"type": "Feature", "properties": {"id": "TPPlace2129", "name": "Nicea", "desc": "\u0130znik<br>Vici.org: <a href='https://vici.org/vici/2252/'>https://vici.org/vici/2252/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2129.html'>TPPlace2129</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.716541, 40.428963]}}, {"type": "Feature", "properties": {"id": "TPPlace2130", "name": "Pronetios", "desc": "Karam\u00fcrsel<br>Vici.org: <a href='https://vici.org/vici/2253/'>https://vici.org/vici/2253/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2130.html'>TPPlace2130</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.615, 40.689167]}}, {"type": "Feature", "properties": {"id": "TPPlace2134", "name": "Ivliopoli", "desc": "Emremsultan<br>Vici.org: <a href='https://vici.org/vici/2254/'>https://vici.org/vici/2254/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2134.html'>TPPlace2134</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.39847, 40.075157]}}, {"type": "Feature", "properties": {"id": "TPPlace2137", "name": "Lagania", "desc": "Beypazar\u0131<br>Vici.org: <a href='https://vici.org/vici/2255/'>https://vici.org/vici/2255/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2137.html'>TPPlace2137</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.92111, 40.1675]}}, {"type": "Feature", "properties": {"id": "TPPlace2139", "name": "Ancyra", "desc": "Ankara<br>Vici.org: <a href='https://vici.org/vici/2256/'>https://vici.org/vici/2256/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2139.html'>TPPlace2139</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.854111, 39.920769]}}, {"type": "Feature", "properties": {"id": "TPPlace2144", "name": "Tavio", "desc": "B\u00fcy\u00fcknefes<br>Vici.org: <a href='https://vici.org/vici/2257/'>https://vici.org/vici/2257/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2144.html'>TPPlace2144</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.517914, 39.858334]}}, {"type": "Feature", "properties": {"id": "TPPlace2147", "name": "Aspona", "desc": "Sar\u0131h\u00fcy\u00fck<br>Vici.org: <a href='https://vici.org/vici/2258/'>https://vici.org/vici/2258/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2147.html'>TPPlace2147</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.288345, 39.307915]}}, {"type": "Feature", "properties": {"id": "TPPlace2151", "name": "Agrillo", "desc": "Bilecik<br>Vici.org: <a href='https://vici.org/vici/2259/'>https://vici.org/vici/2259/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2151.html'>TPPlace2151</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.983061, 40.150131]}}, {"type": "Feature", "properties": {"id": "TPPlace2152", "name": "Dorileo", "desc": "Eski\u015fehir<br>Vici.org: <a href='https://vici.org/vici/2260/'>https://vici.org/vici/2260/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2152.html'>TPPlace2152</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.51922, 39.784302]}}, {"type": "Feature", "properties": {"id": "TPPlace2155", "name": "Pesinvnte", "desc": "Ball\u0131hisar ~ Sivrihisar<br>Vici.org: <a href='https://vici.org/vici/2261/'>https://vici.org/vici/2261/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2155.html'>TPPlace2155</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.581238, 39.332756]}}, {"type": "Feature", "properties": {"id": "TPPlace2157", "name": "Amvrio", "desc": "~ Emird\u0103g<br>Vici.org: <a href='https://vici.org/vici/2262/'>https://vici.org/vici/2262/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2157.html'>TPPlace2157</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.15345, 39.026039]}}, {"type": "Feature", "properties": {"id": "TPPlace215", "name": "Theleote col.", "desc": "Medinet el Kedima<br>Vici.org: <a href='https://vici.org/vici/2263/'>https://vici.org/vici/2263/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace215.html'>TPPlace215</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.594134, 34.979248]}}, {"type": "Feature", "properties": {"id": "TPPlace2161", "name": "Vetisso", "desc": "S\u00fcl\u00fckl\u00fc<br>Vici.org: <a href='https://vici.org/vici/2264/'>https://vici.org/vici/2264/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2161.html'>TPPlace2161</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.341927, 38.881264]}}, {"type": "Feature", "properties": {"id": "TPPlace2162", "name": "Egdava", "desc": "\u00c7e\u015fmelisebil<br>Vici.org: <a href='https://vici.org/vici/2265/'>https://vici.org/vici/2265/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2162.html'>TPPlace2162</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.55283, 38.624382]}}, {"type": "Feature", "properties": {"id": "TPPlace2164", "name": "Lavdiciaca tacecavmeno", "desc": "Ladik, Laodicea Combusta<br>Vici.org: <a href='https://vici.org/vici/2266/'>https://vici.org/vici/2266/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2164.html'>TPPlace2164</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.388111, 38.21386]}}, {"type": "Feature", "properties": {"id": "TPPlace2165", "name": "Caballvcome", "desc": "~ E\u011fribayat<br>Vici.org: <a href='https://vici.org/vici/2267/'>https://vici.org/vici/2267/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2165.html'>TPPlace2165</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.767384, 38.123657]}}, {"type": "Feature", "properties": {"id": "TPPlace2166", "name": "Sabatra", "desc": "Ya\u011fl\u0131bayat<br>Vici.org: <a href='https://vici.org/vici/2268/'>https://vici.org/vici/2268/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2166.html'>TPPlace2166</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.122498, 37.969273]}}, {"type": "Feature", "properties": {"id": "TPPlace2168", "name": "Synnada", "desc": "\u015euhut<br>Vici.org: <a href='https://vici.org/vici/2269/'>https://vici.org/vici/2269/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2168.html'>TPPlace2168</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.549999, 38.533333]}}, {"type": "Feature", "properties": {"id": "TPPlace2173", "name": "Conni", "desc": "~ \u00c7alk\u00f6y<br>Vici.org: <a href='https://vici.org/vici/2270/'>https://vici.org/vici/2270/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2173.html'>TPPlace2173</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.05891, 38.947498]}}, {"type": "Feature", "properties": {"id": "TPPlace2174", "name": "Evcarpia", "desc": "Banaz<br>Vici.org: <a href='https://vici.org/vici/2271/'>https://vici.org/vici/2271/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2174.html'>TPPlace2174</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.75, 38.733334]}}, {"type": "Feature", "properties": {"id": "TPPlace2175", "name": "Evmenia", "desc": "I\u015f\u0131kl\u0131<br>Vici.org: <a href='https://vici.org/vici/2272/'>https://vici.org/vici/2272/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2175.html'>TPPlace2175</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.893089, 38.235474]}}, {"type": "Feature", "properties": {"id": "TPPlace2176", "name": "Cocleo", "desc": "? K\u00fctahya<br>Vici.org: <a href='https://vici.org/vici/2273/'>https://vici.org/vici/2273/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2176.html'>TPPlace2176</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.983334, 39.416668]}}, {"type": "Feature", "properties": {"id": "TPPlace2179", "name": "Clanvdda", "desc": "? \u00c7\u0131rp\u0131c\u0131lar<br>Vici.org: <a href='https://vici.org/vici/2274/'>https://vici.org/vici/2274/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2179.html'>TPPlace2179</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.192844, 38.559841]}}, {"type": "Feature", "properties": {"id": "TPPlace2180", "name": "Philadelfia", "desc": "Ala\u015fehir, Philadelpheia<br>Vici.org: <a href='https://vici.org/vici/2275/'>https://vici.org/vici/2275/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2180.html'>TPPlace2180</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.515169, 38.350861]}}, {"type": "Feature", "properties": {"id": "TPPlace2181", "name": "Tripoli", "desc": "Yenicekent<br>Vici.org: <a href='https://vici.org/vici/2276/'>https://vici.org/vici/2276/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2181.html'>TPPlace2181</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.943609, 38.04306]}}, {"type": "Feature", "properties": {"id": "TPPlace2184", "name": "Sardes", "desc": "~ Salihli<br>Vici.org: <a href='https://vici.org/vici/2277/'>https://vici.org/vici/2277/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2184.html'>TPPlace2184</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.139168, 38.48111]}}, {"type": "Feature", "properties": {"id": "TPPlace2187", "name": "Ephesvm", "desc": "Sel\u00e7uk, Ephesus<br>Vici.org: <a href='https://vici.org/vici/2278/'>https://vici.org/vici/2278/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2187.html'>TPPlace2187</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.370142, 37.949886]}}, {"type": "Feature", "properties": {"id": "TPPlace2188", "name": "Tyatira", "desc": "Akhisar<br>Vici.org: <a href='https://vici.org/vici/2279/'>https://vici.org/vici/2279/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2188.html'>TPPlace2188</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.8375, 38.918056]}}, {"type": "Feature", "properties": {"id": "TPPlace218", "name": "Capsa Colonia", "desc": "Gafsa<br>Vici.org: <a href='https://vici.org/vici/2280/'>https://vici.org/vici/2280/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace218.html'>TPPlace218</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.786656, 34.42165]}}, {"type": "Feature", "properties": {"id": "TPPlace2190", "name": "Smyrna", "desc": "\u0130zmir<br>Vici.org: <a href='https://vici.org/vici/2281/'>https://vici.org/vici/2281/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2190.html'>TPPlace2190</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.128719, 38.41885]}}, {"type": "Feature", "properties": {"id": "TPPlace2191", "name": "Lamasco", "desc": "Lampsacus<br>Vici.org: <a href='https://vici.org/vici/2282/'>https://vici.org/vici/2282/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2191.html'>TPPlace2191</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.991619, 40.346684]}}, {"type": "Feature", "properties": {"id": "TPPlace2193", "name": "Priapos", "desc": "~ Karabiga<br>Vici.org: <a href='https://vici.org/vici/2283/'>https://vici.org/vici/2283/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2193.html'>TPPlace2193</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.303888, 40.40361]}}, {"type": "Feature", "properties": {"id": "TPPlace2196", "name": "Cio", "desc": "Gemlik<br>Vici.org: <a href='https://vici.org/vici/2284/'>https://vici.org/vici/2284/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2196.html'>TPPlace2196</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.156668, 40.433056]}}, {"type": "Feature", "properties": {"id": "TPPlace2197", "name": "Pylae", "desc": "Yalova<br>Vici.org: <a href='https://vici.org/vici/2285/'>https://vici.org/vici/2285/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2197.html'>TPPlace2197</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.266666, 40.650002]}}, {"type": "Feature", "properties": {"id": "TPPlace2198", "name": "Prvsad Olympvm", "desc": "Bursa<br>Vici.org: <a href='https://vici.org/vici/2286/'>https://vici.org/vici/2286/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2198.html'>TPPlace2198</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.06687, 40.182571]}}, {"type": "Feature", "properties": {"id": "TPPlace2200", "name": "Mileopoli", "desc": "Miletopolis<br>Vici.org: <a href='https://vici.org/vici/2287/'>https://vici.org/vici/2287/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2200.html'>TPPlace2200</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.316486, 40.083458]}}, {"type": "Feature", "properties": {"id": "TPPlace2201", "name": "Lamasco", "desc": "Apamea<br>Vici.org: <a href='https://vici.org/vici/2288/'>https://vici.org/vici/2288/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2201.html'>TPPlace2201</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.882618, 40.375469]}}, {"type": "Feature", "properties": {"id": "TPPlace2202", "name": "Prvsias", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2289/'>https://vici.org/vici/2289/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2202.html'>TPPlace2202</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.156389, 40.432468]}}, {"type": "Feature", "properties": {"id": "TPPlace2204", "name": "Pergamo", "desc": "Bergama<br>Vici.org: <a href='https://vici.org/vici/2290/'>https://vici.org/vici/2290/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2204.html'>TPPlace2204</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.183332, 39.116669]}}, {"type": "Feature", "properties": {"id": "TPPlace2208", "name": "Alexandria troas", "desc": "Kur\u015funlu Tepe ~ \u00c7anakkale, Antigoneia<br>Vici.org: <a href='https://vici.org/vici/2291/'>https://vici.org/vici/2291/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2208.html'>TPPlace2208</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.152555, 39.76128]}}, {"type": "Feature", "properties": {"id": "TPPlace2210", "name": "Assos", "desc": "Behramkale<br>Vici.org: <a href='https://vici.org/vici/2292/'>https://vici.org/vici/2292/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2210.html'>TPPlace2210</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.336666, 39.490555]}}, {"type": "Feature", "properties": {"id": "TPPlace2211", "name": "Gargara", "desc": "Ine ~ Cepini<br>Vici.org: <a href='https://vici.org/vici/2293/'>https://vici.org/vici/2293/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2211.html'>TPPlace2211</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.538692, 39.533478]}}, {"type": "Feature", "properties": {"id": "TPPlace2212", "name": "Antandros", "desc": "~ Alt\u0131noluk<br>Vici.org: <a href='https://vici.org/vici/2294/'>https://vici.org/vici/2294/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2212.html'>TPPlace2212</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.791496, 39.578499]}}, {"type": "Feature", "properties": {"id": "TPPlace1990", "name": "Scatras", "desc": "Scatrae<br>Vici.org: <a href='https://vici.org/vici/2295/'>https://vici.org/vici/2295/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1990.html'>TPPlace1990</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.682056, 42.88343]}}, {"type": "Feature", "properties": {"id": "TPPlace2226", "name": "Teos", "desc": "~ Seferihisar<br>Vici.org: <a href='https://vici.org/vici/2296/'>https://vici.org/vici/2296/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2226.html'>TPPlace2226</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.837339, 38.198921]}}, {"type": "Feature", "properties": {"id": "TPPlace2236", "name": "Missos", "desc": "Samsun<br>Vici.org: <a href='https://vici.org/vici/2297/'>https://vici.org/vici/2297/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2236.html'>TPPlace2236</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.33128, 41.292782]}}, {"type": "Feature", "properties": {"id": "TPPlace2242", "name": "Polemonio", "desc": "Bolaman<br>Vici.org: <a href='https://vici.org/vici/2298/'>https://vici.org/vici/2298/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2242.html'>TPPlace2242</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.595478, 41.034504]}}, {"type": "Feature", "properties": {"id": "TPPlace2252", "name": "Amasia", "desc": "Amasya<br>Vici.org: <a href='https://vici.org/vici/2299/'>https://vici.org/vici/2299/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2252.html'>TPPlace2252</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.833332, 40.650002]}}, {"type": "Feature", "properties": {"id": "TPPlace2257", "name": "Neocesaria", "desc": "Niksar<br>Vici.org: <a href='https://vici.org/vici/2300/'>https://vici.org/vici/2300/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2257.html'>TPPlace2257</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.953602, 40.590542]}}, {"type": "Feature", "properties": {"id": "TPPlace2262", "name": "Zela", "desc": "Zile<br>Vici.org: <a href='https://vici.org/vici/2301/'>https://vici.org/vici/2301/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2262.html'>TPPlace2262</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.883331, 40.299999]}}, {"type": "Feature", "properties": {"id": "TPPlace226", "name": "Adaqvas", "desc": "El Hamma<br>Vici.org: <a href='https://vici.org/vici/2302/'>https://vici.org/vici/2302/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace226.html'>TPPlace226</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.791839, 33.884102]}}, {"type": "Feature", "properties": {"id": "TPPlace2283", "name": "Mazaca cesarea", "desc": "Kayseri<br>Vici.org: <a href='https://vici.org/vici/2303/'>https://vici.org/vici/2303/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2283.html'>TPPlace2283</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.478729, 38.73122]}}, {"type": "Feature", "properties": {"id": "TPPlace2286", "name": "Armaza", "desc": "? Gemerek<br>Vici.org: <a href='https://vici.org/vici/2304/'>https://vici.org/vici/2304/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2286.html'>TPPlace2286</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.075031, 39.1852]}}, {"type": "Feature", "properties": {"id": "TPPlace228", "name": "Tacape col.", "desc": "Gab\u00e8s<br>Vici.org: <a href='https://vici.org/vici/2305/'>https://vici.org/vici/2305/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace228.html'>TPPlace228</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.10291, 33.893269]}}, {"type": "Feature", "properties": {"id": "TPPlace2290", "name": "Sevastia", "desc": "Sivas<br>Vici.org: <a href='https://vici.org/vici/2306/'>https://vici.org/vici/2306/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2290.html'>TPPlace2290</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.017879, 39.747662]}}, {"type": "Feature", "properties": {"id": "TPPlace2297", "name": "Tyana", "desc": "Kemerhisar ~ Ni\u011fde<br>Vici.org: <a href='https://vici.org/vici/2307/'>https://vici.org/vici/2307/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2297.html'>TPPlace2297</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.570835, 37.82328]}}, {"type": "Feature", "properties": {"id": "TPPlace2307", "name": "Comana Capadocia", "desc": "\u015ear<br>Vici.org: <a href='https://vici.org/vici/2308/'>https://vici.org/vici/2308/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2307.html'>TPPlace2307</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.326237, 38.330616]}}, {"type": "Feature", "properties": {"id": "TPPlace230", "name": "Ad tvrres", "desc": "Tamerza<br>Vici.org: <a href='https://vici.org/vici/2309/'>https://vici.org/vici/2309/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace230.html'>TPPlace230</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.91571, 34.208694]}}, {"type": "Feature", "properties": {"id": "TPPlace2315", "name": "Congvsso", "desc": "? Alt\u0131nekin<br>Vici.org: <a href='https://vici.org/vici/2310/'>https://vici.org/vici/2310/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2315.html'>TPPlace2315</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.86861, 38.307777]}}, {"type": "Feature", "properties": {"id": "TPPlace231", "name": "Specvlvm", "desc": "Shabikah<br>Vici.org: <a href='https://vici.org/vici/2311/'>https://vici.org/vici/2311/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace231.html'>TPPlace231</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.933333, 34.316666]}}, {"type": "Feature", "properties": {"id": "TPPlace2320", "name": "Aqvis calidis", "desc": "~ \u00c7iftehan<br>Vici.org: <a href='https://vici.org/vici/2312/'>https://vici.org/vici/2312/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2320.html'>TPPlace2320</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.769936, 37.512592]}}, {"type": "Feature", "properties": {"id": "TPPlace2322", "name": "yconio", "desc": "Konya<br>Vici.org: <a href='https://vici.org/vici/2313/'>https://vici.org/vici/2313/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2322.html'>TPPlace2322</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.48177, 37.87759]}}, {"type": "Feature", "properties": {"id": "TPPlace1426", "name": "Terracina", "desc": " Terracina<br>Vici.org: <a href='https://vici.org/vici/2314/'>https://vici.org/vici/2314/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1426.html'>TPPlace1426</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.252916, 41.289841]}}, {"type": "Feature", "properties": {"id": "TPPlace2324", "name": "Padvando", "desc": "Pozant\u0131<br>Vici.org: <a href='https://vici.org/vici/2315/'>https://vici.org/vici/2315/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2324.html'>TPPlace2324</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.871113, 37.427776]}}, {"type": "Feature", "properties": {"id": "TPPlace2327", "name": "Tarso cilicie", "desc": "Tarsus<br>Vici.org: <a href='https://vici.org/vici/2316/'>https://vici.org/vici/2316/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2327.html'>TPPlace2327</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.900002, 36.916668]}}, {"type": "Feature", "properties": {"id": "TPPlace2329", "name": "Mompsistea", "desc": "Yakap\u0131nar<br>Vici.org: <a href='https://vici.org/vici/2317/'>https://vici.org/vici/2317/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2329.html'>TPPlace2329</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.615017, 36.972755]}}, {"type": "Feature", "properties": {"id": "TPPlace232", "name": "Thiges", "desc": "Bordj Gourbala<br>Vici.org: <a href='https://vici.org/vici/2318/'>https://vici.org/vici/2318/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace232.html'>TPPlace232</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.548889, 34.272778]}}, {"type": "Feature", "properties": {"id": "TPPlace2331", "name": "Anazarbo", "desc": "~ Ye\u015fildam<br>Vici.org: <a href='https://vici.org/vici/2319/'>https://vici.org/vici/2319/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2331.html'>TPPlace2331</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.878426, 37.229759]}}, {"type": "Feature", "properties": {"id": "TPPlace2332", "name": "Epifania", "desc": "~ Erzin<br>Vici.org: <a href='https://vici.org/vici/2320/'>https://vici.org/vici/2320/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2332.html'>TPPlace2332</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.202202, 36.953899]}}, {"type": "Feature", "properties": {"id": "TPPlace2333", "name": "Alexandria catisson", "desc": "\u0130skenderun<br>Vici.org: <a href='https://vici.org/vici/2321/'>https://vici.org/vici/2321/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2333.html'>TPPlace2333</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.172569, 36.586864]}}, {"type": "Feature", "properties": {"id": "TPPlace2343", "name": "Taspa", "desc": "? Kavak<br>Vici.org: <a href='https://vici.org/vici/2322/'>https://vici.org/vici/2322/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2343.html'>TPPlace2343</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.452579, 37.560551]}}, {"type": "Feature", "properties": {"id": "TPPlace2345", "name": "Animvrio", "desc": "Anamur<br>Vici.org: <a href='https://vici.org/vici/2323/'>https://vici.org/vici/2323/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2345.html'>TPPlace2345</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.838539, 36.07515]}}, {"type": "Feature", "properties": {"id": "TPPlace2346", "name": "Apamea ciboton", "desc": "Dinar<br>Vici.org: <a href='https://vici.org/vici/2324/'>https://vici.org/vici/2324/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2346.html'>TPPlace2346</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.166668, 38.066666]}}, {"type": "Feature", "properties": {"id": "TPPlace2351", "name": "Antiochia pisidia", "desc": "Yalva\u00e7<br>Vici.org: <a href='https://vici.org/vici/2325/'>https://vici.org/vici/2325/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2351.html'>TPPlace2351</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.180229, 38.295231]}}, {"type": "Feature", "properties": {"id": "TPPlace2353", "name": "Sidi", "desc": "Side ~ Manavgat<br>Vici.org: <a href='https://vici.org/vici/2326/'>https://vici.org/vici/2326/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2353.html'>TPPlace2353</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.391172, 36.768044]}}, {"type": "Feature", "properties": {"id": "TPPlace2354", "name": "Lavdicivm pilycvm", "desc": "Eskihisar ~ Denizli<br>Vici.org: <a href='https://vici.org/vici/2327/'>https://vici.org/vici/2327/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2354.html'>TPPlace2354</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.80195, 36.790443]}}, {"type": "Feature", "properties": {"id": "TPPlace2357", "name": "Perge", "desc": "~ Aksu<br>Vici.org: <a href='https://vici.org/vici/2328/'>https://vici.org/vici/2328/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2357.html'>TPPlace2357</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.854618, 36.961372]}}, {"type": "Feature", "properties": {"id": "TPPlace2358", "name": "Syllio", "desc": "~ Yank\u00f6y<br>Vici.org: <a href='https://vici.org/vici/2329/'>https://vici.org/vici/2329/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2358.html'>TPPlace2358</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.000538, 37.007481]}}, {"type": "Feature", "properties": {"id": "TPPlace2359", "name": "Aspendo", "desc": "~ Serik<br>Vici.org: <a href='https://vici.org/vici/2330/'>https://vici.org/vici/2330/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2359.html'>TPPlace2359</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.101271, 36.921822]}}, {"type": "Feature", "properties": {"id": "TPPlace2360", "name": "Selinvnte", "desc": "Selinti ~ Gazipa\u015fa<br>Vici.org: <a href='https://vici.org/vici/2331/'>https://vici.org/vici/2331/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2360.html'>TPPlace2360</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.3125, 36.271301]}}, {"type": "Feature", "properties": {"id": "TPPlace2361", "name": "Arsinoe", "desc": "~ Bozyaz\u0131<br>Vici.org: <a href='https://vici.org/vici/2332/'>https://vici.org/vici/2332/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2361.html'>TPPlace2361</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.974751, 36.103062]}}, {"type": "Feature", "properties": {"id": "TPPlace2362", "name": "Celenderis", "desc": "Ayd\u0131nc\u0131k<br>Vici.org: <a href='https://vici.org/vici/2333/'>https://vici.org/vici/2333/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2362.html'>TPPlace2362</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.317749, 36.141693]}}, {"type": "Feature", "properties": {"id": "TPPlace2364", "name": "Selevcia", "desc": "Silifke<br>Vici.org: <a href='https://vici.org/vici/2334/'>https://vici.org/vici/2334/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2364.html'>TPPlace2364</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.933186, 36.375301]}}, {"type": "Feature", "properties": {"id": "TPPlace2365", "name": "Corioco", "desc": "~ K\u0131zkalesi<br>Vici.org: <a href='https://vici.org/vici/2335/'>https://vici.org/vici/2335/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2365.html'>TPPlace2365</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.14624, 36.465931]}}, {"type": "Feature", "properties": {"id": "TPPlace2366", "name": "Pompeiopolis", "desc": "~ Mersin<br>Vici.org: <a href='https://vici.org/vici/2336/'>https://vici.org/vici/2336/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2366.html'>TPPlace2366</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.638569, 36.804203]}}, {"type": "Feature", "properties": {"id": "TPPlace2369", "name": "Aregea", "desc": "~ Yumurtal\u0131k<br>Vici.org: <a href='https://vici.org/vici/2337/'>https://vici.org/vici/2337/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2369.html'>TPPlace2369</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.783333, 36.766666]}}, {"type": "Feature", "properties": {"id": "TPPlace2370", "name": "Issos", "desc": "~ Ye\u015filtepe<br>Vici.org: <a href='https://vici.org/vici/2338/'>https://vici.org/vici/2338/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2370.html'>TPPlace2370</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.165688, 36.837811]}}, {"type": "Feature", "properties": {"id": "TPPlace2371", "name": "Pictanvs", "desc": "Belen<br>Vici.org: <a href='https://vici.org/vici/2339/'>https://vici.org/vici/2339/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2371.html'>TPPlace2371</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.195129, 36.488438]}}, {"type": "Feature", "properties": {"id": "TPPlace2372", "name": "Pagaris", "desc": "Ba\u011fras ~ \u00d6ten\u00e7ay<br>Vici.org: <a href='https://vici.org/vici/2340/'>https://vici.org/vici/2340/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2372.html'>TPPlace2372</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.274597, 36.428696]}}, {"type": "Feature", "properties": {"id": "TPPlace2374", "name": "ANTIOCHIA", "desc": "Antakya<br>Vici.org: <a href='https://vici.org/vici/2341/'>https://vici.org/vici/2341/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2374.html'>TPPlace2374</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.176189, 36.20015]}}, {"type": "Feature", "properties": {"id": "TPPlace2378", "name": "Emma", "desc": "Imma<br>Vici.org: <a href='https://vici.org/vici/2342/'>https://vici.org/vici/2342/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2378.html'>TPPlace2378</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.569263, 36.241238]}}, {"type": "Feature", "properties": {"id": "TPPlace2379", "name": "Calcida", "desc": "Qinnasrin<br>Vici.org: <a href='https://vici.org/vici/2343/'>https://vici.org/vici/2343/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2379.html'>TPPlace2379</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.154633, 36.196079]}}, {"type": "Feature", "properties": {"id": "TPPlace2380", "name": "Berya", "desc": "Haleb<br>Vici.org: <a href='https://vici.org/vici/2344/'>https://vici.org/vici/2344/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2380.html'>TPPlace2380</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.159279, 36.215549]}}, {"type": "Feature", "properties": {"id": "TPPlace2381", "name": "Antiochi(a)e", "desc": "~ Azizabat<br>Vici.org: <a href='https://vici.org/vici/2345/'>https://vici.org/vici/2345/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2381.html'>TPPlace2381</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.569586, 37.878899]}}, {"type": "Feature", "properties": {"id": "TPPlace2384", "name": "Miletvm", "desc": "Balat<br>Vici.org: <a href='https://vici.org/vici/2346/'>https://vici.org/vici/2346/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2384.html'>TPPlace2384</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.276728, 37.512924]}}, {"type": "Feature", "properties": {"id": "TPPlace2386", "name": "Chidvm", "desc": "~ Re\u015fadiye<br>Vici.org: <a href='https://vici.org/vici/2347/'>https://vici.org/vici/2347/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2386.html'>TPPlace2386</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.371637, 36.69017]}}, {"type": "Feature", "properties": {"id": "TPPlace2390", "name": "Patras", "desc": "Gelemi\u015f ~ Kalkan<br>Vici.org: <a href='https://vici.org/vici/2348/'>https://vici.org/vici/2348/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2390.html'>TPPlace2390</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.320679, 36.276707]}}, {"type": "Feature", "properties": {"id": "TPPlace2394", "name": "Phaselis", "desc": "~ Kemer<br>Vici.org: <a href='https://vici.org/vici/2349/'>https://vici.org/vici/2349/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2394.html'>TPPlace2394</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.54771, 36.592381]}}, {"type": "Feature", "properties": {"id": "TPPlace2395", "name": "Atalia", "desc": "Antalya<br>Vici.org: <a href='https://vici.org/vici/2350/'>https://vici.org/vici/2350/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2395.html'>TPPlace2395</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.705629, 36.88414]}}, {"type": "Feature", "properties": {"id": "TPPlace2396", "name": "Trapezvnte", "desc": "Trabzon<br>Vici.org: <a href='https://vici.org/vici/2351/'>https://vici.org/vici/2351/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2396.html'>TPPlace2396</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.733334, 41.0]}}, {"type": "Feature", "properties": {"id": "TPPlace2403", "name": "Cissa", "desc": "Hopa<br>Vici.org: <a href='https://vici.org/vici/2352/'>https://vici.org/vici/2352/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2403.html'>TPPlace2403</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.437019, 41.386719]}}, {"type": "Feature", "properties": {"id": "TPPlace2404", "name": "Apsaro", "desc": "~ Batumi<br>Vici.org: <a href='https://vici.org/vici/2353/'>https://vici.org/vici/2353/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2404.html'>TPPlace2404</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.656189, 41.651741]}}, {"type": "Feature", "properties": {"id": "TPPlace2405", "name": "Portvaltv", "desc": "Batumi<br>Vici.org: <a href='https://vici.org/vici/2354/'>https://vici.org/vici/2354/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2405.html'>TPPlace2405</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.656189, 41.651741]}}, {"type": "Feature", "properties": {"id": "TPPlace2409", "name": "Bylae", "desc": "Zigana ge\u00e7idi<br>Vici.org: <a href='https://vici.org/vici/2355/'>https://vici.org/vici/2355/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2409.html'>TPPlace2409</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.377777, 40.623055]}}, {"type": "Feature", "properties": {"id": "TPPlace2415", "name": "Satala", "desc": "Sadak ~ \u00c7iftlik<br>Vici.org: <a href='https://vici.org/vici/2356/'>https://vici.org/vici/2356/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2415.html'>TPPlace2415</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.596069, 40.026733]}}, {"type": "Feature", "properties": {"id": "TPPlace241", "name": "Thvni", "desc": "Tunis<br>Vici.org: <a href='https://vici.org/vici/2357/'>https://vici.org/vici/2357/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace241.html'>TPPlace241</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.165272, 36.81588]}}, {"type": "Feature", "properties": {"id": "TPPlace2421", "name": "Paphos", "desc": "Paphos<br>Vici.org: <a href='https://vici.org/vici/2358/'>https://vici.org/vici/2358/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2421.html'>TPPlace2421</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.416668, 34.766666]}}, {"type": "Feature", "properties": {"id": "TPPlace2422", "name": "Soloae", "desc": "~ Karavostasi<br>Vici.org: <a href='https://vici.org/vici/2359/'>https://vici.org/vici/2359/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2422.html'>TPPlace2422</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.832424, 35.137569]}}, {"type": "Feature", "properties": {"id": "TPPlace2424", "name": "Cerinia", "desc": "Kyrenia<br>Vici.org: <a href='https://vici.org/vici/2360/'>https://vici.org/vici/2360/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2424.html'>TPPlace2424</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.317749, 35.335049]}}, {"type": "Feature", "properties": {"id": "TPPlace2426", "name": "Salamina", "desc": "~ Famagusta<br>Vici.org: <a href='https://vici.org/vici/2361/'>https://vici.org/vici/2361/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2426.html'>TPPlace2426</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.941551, 35.107849]}}, {"type": "Feature", "properties": {"id": "TPPlace2428", "name": "Thremitvs", "desc": "~ Tremetousi\u00e1, \u03a4\u03c1\u03b5\u03bc\u03b5\u03c4\u03bf\u03c5\u03c3\u03b9\u03ac<br>Vici.org: <a href='https://vici.org/vici/2362/'>https://vici.org/vici/2362/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2428.html'>TPPlace2428</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.61058, 35.086353]}}, {"type": "Feature", "properties": {"id": "TPPlace242", "name": "Adaqvas", "desc": "Korbous ?<br>Vici.org: <a href='https://vici.org/vici/2363/'>https://vici.org/vici/2363/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace242.html'>TPPlace242</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.583333, 36.799999]}}, {"type": "Feature", "properties": {"id": "TPPlace2431", "name": "Palephato", "desc": "~ Kouklia, Palaipaphos<br>Vici.org: <a href='https://vici.org/vici/2364/'>https://vici.org/vici/2364/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2431.html'>TPPlace2431</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.584461, 34.703503]}}, {"type": "Feature", "properties": {"id": "TPPlace2432", "name": "Cvrio", "desc": "~ Episkopi, Kourion<br>Vici.org: <a href='https://vici.org/vici/2365/'>https://vici.org/vici/2365/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2432.html'>TPPlace2432</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.879745, 34.668255]}}, {"type": "Feature", "properties": {"id": "TPPlace2433", "name": "Amathvs", "desc": "Amathus, Amathous, \u0391\u03bc\u03b1\u03b8\u03bf\u03cd\u03c2<br>Vici.org: <a href='https://vici.org/vici/2366/'>https://vici.org/vici/2366/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2433.html'>TPPlace2433</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.130333, 34.712353]}}, {"type": "Feature", "properties": {"id": "TPPlace2439", "name": "Hierapoli", "desc": "Manbij<br>Vici.org: <a href='https://vici.org/vici/2367/'>https://vici.org/vici/2367/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2439.html'>TPPlace2439</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.950001, 36.533333]}}, {"type": "Feature", "properties": {"id": "TPPlace2442", "name": "Occaraba", "desc": "Uqayribat<br>Vici.org: <a href='https://vici.org/vici/2368/'>https://vici.org/vici/2368/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2442.html'>TPPlace2442</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.475109, 35.03566]}}, {"type": "Feature", "properties": {"id": "TPPlace2446", "name": "Nigro", "desc": "? Supsa<br>Vici.org: <a href='https://vici.org/vici/2369/'>https://vici.org/vici/2369/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2446.html'>TPPlace2446</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.802559, 42.044449]}}, {"type": "Feature", "properties": {"id": "TPPlace2447", "name": "Phasin", "desc": "~ Poti<br>Vici.org: <a href='https://vici.org/vici/2370/'>https://vici.org/vici/2370/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2447.html'>TPPlace2447</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.667751, 42.150879]}}, {"type": "Feature", "properties": {"id": "TPPlace2454", "name": "Sebastoplis", "desc": "Sokhumi<br>Vici.org: <a href='https://vici.org/vici/2371/'>https://vici.org/vici/2371/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2454.html'>TPPlace2454</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.989151, 43.00732]}}, {"type": "Feature", "properties": {"id": "TPPlace2457", "name": "Caspiae", "desc": "Kaspi<br>Vici.org: <a href='https://vici.org/vici/2372/'>https://vici.org/vici/2372/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2457.html'>TPPlace2457</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.411911, 41.927551]}}, {"type": "Feature", "properties": {"id": "TPPlace2464", "name": "Artaxata", "desc": "Artashat, \u0531\u0580\u057f\u0561\u0577\u0561\u057f<br>Vici.org: <a href='https://vici.org/vici/2373/'>https://vici.org/vici/2373/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2464.html'>TPPlace2464</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.550556, 39.953888]}}, {"type": "Feature", "properties": {"id": "TPPlace2466", "name": "Sanora", "desc": "Ordubad<br>Vici.org: <a href='https://vici.org/vici/2374/'>https://vici.org/vici/2374/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2466.html'>TPPlace2466</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [46.027779, 38.908054]}}, {"type": "Feature", "properties": {"id": "TPPlace2469", "name": "Teleda", "desc": "Sabirabad<br>Vici.org: <a href='https://vici.org/vici/2375/'>https://vici.org/vici/2375/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2469.html'>TPPlace2469</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [48.478889, 40.012779]}}, {"type": "Feature", "properties": {"id": "TPPlace2480", "name": "Sinara", "desc": "A\u015fkale<br>Vici.org: <a href='https://vici.org/vici/2376/'>https://vici.org/vici/2376/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2480.html'>TPPlace2480</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.69236, 39.92025]}}, {"type": "Feature", "properties": {"id": "TPPlace2481", "name": "Calcidava", "desc": "Il\u0131ca<br>Vici.org: <a href='https://vici.org/vici/2377/'>https://vici.org/vici/2377/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2481.html'>TPPlace2481</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.108353, 39.945347]}}, {"type": "Feature", "properties": {"id": "TPPlace2482", "name": "Avtisparate", "desc": "Erzurum<br>Vici.org: <a href='https://vici.org/vici/2378/'>https://vici.org/vici/2378/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2482.html'>TPPlace2482</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.267883, 39.90432]}}, {"type": "Feature", "properties": {"id": "TPPlace2485", "name": "Datamissa", "desc": "Pasinler<br>Vici.org: <a href='https://vici.org/vici/2379/'>https://vici.org/vici/2379/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2485.html'>TPPlace2485</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.676617, 39.980053]}}, {"type": "Feature", "properties": {"id": "TPPlace2486", "name": "Adconflventes", "desc": "K\u00f6pr\u00fck\u00f6y<br>Vici.org: <a href='https://vici.org/vici/2380/'>https://vici.org/vici/2380/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2486.html'>TPPlace2486</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.888336, 39.969982]}}, {"type": "Feature", "properties": {"id": "TPPlace2489", "name": "Andaga", "desc": "Adilcevaz<br>Vici.org: <a href='https://vici.org/vici/2381/'>https://vici.org/vici/2381/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2489.html'>TPPlace2489</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.298519, 39.94437]}}, {"type": "Feature", "properties": {"id": "TPPlace2491", "name": "Chadas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2382/'>https://vici.org/vici/2382/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2491.html'>TPPlace2491</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.699986, 39.822746]}}, {"type": "Feature", "properties": {"id": "TPPlace2492", "name": "Colchion", "desc": "~ A\u011fr\u0131<br>Vici.org: <a href='https://vici.org/vici/2383/'>https://vici.org/vici/2383/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2492.html'>TPPlace2492</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.056667, 39.721668]}}, {"type": "Feature", "properties": {"id": "TPPlace2493", "name": "Ravgonia", "desc": "Bagauna<br>Vici.org: <a href='https://vici.org/vici/2384/'>https://vici.org/vici/2384/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2493.html'>TPPlace2493</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.519714, 39.603878]}}, {"type": "Feature", "properties": {"id": "TPPlace2495", "name": "Coloceia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2385/'>https://vici.org/vici/2385/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2495.html'>TPPlace2495</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.207829, 39.961361]}}, {"type": "Feature", "properties": {"id": "TPPlace2496", "name": "Paracata", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2386/'>https://vici.org/vici/2386/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2496.html'>TPPlace2496</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.257896, 39.937645]}}, {"type": "Feature", "properties": {"id": "TPPlace249", "name": "Clipeis", "desc": "K\u00e9libia<br>Vici.org: <a href='https://vici.org/vici/2387/'>https://vici.org/vici/2387/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace249.html'>TPPlace249</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.09016, 36.849651]}}, {"type": "Feature", "properties": {"id": "TPPlace24", "name": "Choba Mvnicipivm", "desc": "Ziama<br>Vici.org: <a href='https://vici.org/vici/2388/'>https://vici.org/vici/2388/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace24.html'>TPPlace24</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.482233, 36.672298]}}, {"type": "Feature", "properties": {"id": "TPPlace2501", "name": "Isvmbo", "desc": "? Patnos<br>Vici.org: <a href='https://vici.org/vici/2389/'>https://vici.org/vici/2389/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2501.html'>TPPlace2501</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.866669, 39.233334]}}, {"type": "Feature", "properties": {"id": "TPPlace250", "name": "Misva", "desc": "~ Sidi Da'ud<br>Vici.org: <a href='https://vici.org/vici/2390/'>https://vici.org/vici/2390/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace250.html'>TPPlace250</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.91, 37.02]}}, {"type": "Feature", "properties": {"id": "TPPlace2515", "name": "Nicea Nialia", "desc": "Sanandaj | Ashgabat<br>Vici.org: <a href='https://vici.org/vici/2391/'>https://vici.org/vici/2391/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2515.html'>TPPlace2515</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [46.994331, 35.31871]}}, {"type": "Feature", "properties": {"id": "TPPlace2516", "name": "Ecbatanis Partiorvm", "desc": "Hamadan<br>Vici.org: <a href='https://vici.org/vici/2392/'>https://vici.org/vici/2392/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2516.html'>TPPlace2516</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [48.516247, 34.806499]}}, {"type": "Feature", "properties": {"id": "TPPlace2520", "name": "Draconis", "desc": "~ Refahiye?<br>Vici.org: <a href='https://vici.org/vici/2393/'>https://vici.org/vici/2393/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2520.html'>TPPlace2520</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.768314, 39.901649]}}, {"type": "Feature", "properties": {"id": "TPPlace2538", "name": "Arsinia", "desc": "Ergani<br>Vici.org: <a href='https://vici.org/vici/2394/'>https://vici.org/vici/2394/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2538.html'>TPPlace2538</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.766666, 38.266666]}}, {"type": "Feature", "properties": {"id": "TPPlace2540", "name": "", "desc": "Diyarbak\u0131r, Amida<br>Vici.org: <a href='https://vici.org/vici/2395/'>https://vici.org/vici/2395/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2540.html'>TPPlace2540</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.230629, 37.91441]}}, {"type": "Feature", "properties": {"id": "TPPlace254", "name": "Ad Horrea", "desc": "Hergla, Horrea Caelia<br>Vici.org: <a href='https://vici.org/vici/2396/'>https://vici.org/vici/2396/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace254.html'>TPPlace254</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.5, 36.033333]}}, {"type": "Feature", "properties": {"id": "TPPlace2556", "name": "Samosata", "desc": "Samsat<br>Vici.org: <a href='https://vici.org/vici/2397/'>https://vici.org/vici/2397/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2556.html'>TPPlace2556</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.482365, 37.579288]}}, {"type": "Feature", "properties": {"id": "TPPlace256", "name": "Lepteminvs", "desc": "Lamta<br>Vici.org: <a href='https://vici.org/vici/2398/'>https://vici.org/vici/2398/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace256.html'>TPPlace256</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.876193, 35.66938]}}, {"type": "Feature", "properties": {"id": "TPPlace2572", "name": "Dolica", "desc": "D\u00fcl\u00fck<br>Vici.org: <a href='https://vici.org/vici/2399/'>https://vici.org/vici/2399/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2572.html'>TPPlace2572</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.360016, 37.1553]}}, {"type": "Feature", "properties": {"id": "TPPlace2576", "name": "Thvrae", "desc": "? Kilis<br>Vici.org: <a href='https://vici.org/vici/2400/'>https://vici.org/vici/2400/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2576.html'>TPPlace2576</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.12122, 36.718399]}}, {"type": "Feature", "properties": {"id": "TPPlace2580", "name": "Zevgma", "desc": "Belk\u0131s ~ Birecik<br>Vici.org: <a href='https://vici.org/vici/2401/'>https://vici.org/vici/2401/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2580.html'>TPPlace2580</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.876438, 37.046951]}}, {"type": "Feature", "properties": {"id": "TPPlace2582", "name": "Triganocarten", "desc": "Silvan<br>Vici.org: <a href='https://vici.org/vici/2402/'>https://vici.org/vici/2402/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2582.html'>TPPlace2582</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.38995, 37.973759]}}, {"type": "Feature", "properties": {"id": "TPPlace2583", "name": "Ceciliana", "desc": "Qal\u2018t Najm<br>Vici.org: <a href='https://vici.org/vici/2403/'>https://vici.org/vici/2403/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2583.html'>TPPlace2583</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.076557, 36.655949]}}, {"type": "Feature", "properties": {"id": "TPPlace2584", "name": "", "desc": "Carabulus ~ Karkam\u0131\u015f, Europos<br>Vici.org: <a href='https://vici.org/vici/2404/'>https://vici.org/vici/2404/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2584.html'>TPPlace2584</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.011986, 36.817673]}}, {"type": "Feature", "properties": {"id": "TPPlace2589", "name": "Harae", "desc": "Arak<br>Vici.org: <a href='https://vici.org/vici/2405/'>https://vici.org/vici/2405/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2589.html'>TPPlace2589</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.599403, 34.639847]}}, {"type": "Feature", "properties": {"id": "TPPlace2592", "name": "Risapa", "desc": "al-Resafa<br>Vici.org: <a href='https://vici.org/vici/2406/'>https://vici.org/vici/2406/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2592.html'>TPPlace2592</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.757099, 35.62936]}}, {"type": "Feature", "properties": {"id": "TPPlace2577", "name": "Regia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2407/'>https://vici.org/vici/2407/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2577.html'>TPPlace2577</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.278107, 36.696323]}}, {"type": "Feature", "properties": {"id": "TPPlace2595", "name": "Barbalisso", "desc": "Tell Meskene ~ Emar<br>Vici.org: <a href='https://vici.org/vici/2408/'>https://vici.org/vici/2408/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2595.html'>TPPlace2595</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.1423, 36.017239]}}, {"type": "Feature", "properties": {"id": "TPPlace2618", "name": "Batnis", "desc": "S\u00fcr\u00fc\u00e7<br>Vici.org: <a href='https://vici.org/vici/2409/'>https://vici.org/vici/2409/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2618.html'>TPPlace2618</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.424515, 36.974651]}}, {"type": "Feature", "properties": {"id": "TPPlace2619", "name": "Charris", "desc": "Harran<br>Vici.org: <a href='https://vici.org/vici/2410/'>https://vici.org/vici/2410/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2619.html'>TPPlace2619</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.024441, 36.864376]}}, {"type": "Feature", "properties": {"id": "TPPlace261", "name": "Tapsvm", "desc": "Rass Dimasse<br>Vici.org: <a href='https://vici.org/vici/2411/'>https://vici.org/vici/2411/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace261.html'>TPPlace261</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.050833, 35.625278]}}, {"type": "Feature", "properties": {"id": "TPPlace2621", "name": "Ressaina", "desc": "R\u0103s el A\u00efn<br>Vici.org: <a href='https://vici.org/vici/2412/'>https://vici.org/vici/2412/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2621.html'>TPPlace2621</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.063274, 36.850094]}}, {"type": "Feature", "properties": {"id": "TPPlace2623", "name": "Macharta", "desc": "K\u0131z\u0131ltepe<br>Vici.org: <a href='https://vici.org/vici/2413/'>https://vici.org/vici/2413/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2623.html'>TPPlace2623</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.586109, 37.19389]}}, {"type": "Feature", "properties": {"id": "TPPlace2624", "name": "Nisibi", "desc": "Nusaybin<br>Vici.org: <a href='https://vici.org/vici/2414/'>https://vici.org/vici/2414/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2624.html'>TPPlace2624</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.21452, 37.075687]}}, {"type": "Feature", "properties": {"id": "TPPlace2627", "name": "Singara", "desc": "Shingal<br>Vici.org: <a href='https://vici.org/vici/2415/'>https://vici.org/vici/2415/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2627.html'>TPPlace2627</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.869469, 36.314018]}}, {"type": "Feature", "properties": {"id": "TPPlace262", "name": "Vsilla Mvn\u0304", "desc": "~ Amra<br>Vici.org: <a href='https://vici.org/vici/2416/'>https://vici.org/vici/2416/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace262.html'>TPPlace262</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.898056, 34.983334]}}, {"type": "Feature", "properties": {"id": "TPPlace2634", "name": "Edessa", "desc": "\u015eanl\u0131urfa<br>Vici.org: <a href='https://vici.org/vici/2417/'>https://vici.org/vici/2417/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2634.html'>TPPlace2634</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.799999, 37.150002]}}, {"type": "Feature", "properties": {"id": "TPPlace263", "name": "Aholla", "desc": "~ La Laouata<br>Vici.org: <a href='https://vici.org/vici/2418/'>https://vici.org/vici/2418/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace263.html'>TPPlace263</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.001898, 35.052216]}}, {"type": "Feature", "properties": {"id": "TPPlace2642", "name": "Tharrana", "desc": "Harran<br>Vici.org: <a href='https://vici.org/vici/2419/'>https://vici.org/vici/2419/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2642.html'>TPPlace2642</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.024441, 36.864376]}}, {"type": "Feature", "properties": {"id": "TPPlace2645", "name": "Charra", "desc": "Harran<br>Vici.org: <a href='https://vici.org/vici/2420/'>https://vici.org/vici/2420/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2645.html'>TPPlace2645</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.024441, 36.864376]}}, {"type": "Feature", "properties": {"id": "TPPlace2658", "name": "Ad Fl. tigrem", "desc": "Cizre<br>Vici.org: <a href='https://vici.org/vici/2421/'>https://vici.org/vici/2421/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2658.html'>TPPlace2658</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.195831, 37.325001]}}, {"type": "Feature", "properties": {"id": "TPPlace2659", "name": "Hatris", "desc": "Al Hadr<br>Vici.org: <a href='https://vici.org/vici/2422/'>https://vici.org/vici/2422/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2659.html'>TPPlace2659</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.717499, 35.58556]}}, {"type": "Feature", "properties": {"id": "TPPlace265", "name": "Taparvra", "desc": "Sfax<br>Vici.org: <a href='https://vici.org/vici/2423/'>https://vici.org/vici/2423/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace265.html'>TPPlace265</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.7613, 34.745159]}}, {"type": "Feature", "properties": {"id": "TPPlace266", "name": "Thenae", "desc": "Thyna<br>Vici.org: <a href='https://vici.org/vici/2424/'>https://vici.org/vici/2424/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace266.html'>TPPlace266</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.688611, 34.720554]}}, {"type": "Feature", "properties": {"id": "TPPlace2676", "name": "Adfl. Tigrim", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2425/'>https://vici.org/vici/2425/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2676.html'>TPPlace2676</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.195831, 37.325001]}}, {"type": "Feature", "properties": {"id": "TPPlace2682", "name": "Thelser", "desc": "Kirkuk?<br>Vici.org: <a href='https://vici.org/vici/2426/'>https://vici.org/vici/2426/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2682.html'>TPPlace2682</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.395206, 35.468079]}}, {"type": "Feature", "properties": {"id": "TPPlace2687", "name": "Albania", "desc": "? Qasr e-Shirin<br>Vici.org: <a href='https://vici.org/vici/2427/'>https://vici.org/vici/2427/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2687.html'>TPPlace2687</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [45.583332, 34.516666]}}, {"type": "Feature", "properties": {"id": "TPPlace2691", "name": "Peloriarca", "desc": "Tekr\u00eft?<br>Vici.org: <a href='https://vici.org/vici/2428/'>https://vici.org/vici/2428/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2691.html'>TPPlace2691</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.77737, 34.606087]}}, {"type": "Feature", "properties": {"id": "TPPlace2695", "name": "Cesiphvn", "desc": "~ Bagdad<br>Vici.org: <a href='https://vici.org/vici/2429/'>https://vici.org/vici/2429/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2695.html'>TPPlace2695</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.580715, 33.093582]}}, {"type": "Feature", "properties": {"id": "TPPlace26", "name": "Igilgili Col.", "desc": "Djidjelli<br>Vici.org: <a href='https://vici.org/vici/2430/'>https://vici.org/vici/2430/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace26.html'>TPPlace26</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.76666, 36.821617]}}, {"type": "Feature", "properties": {"id": "TPPlace2700", "name": "Selevcia", "desc": "~ Bagdad<br>Vici.org: <a href='https://vici.org/vici/2431/'>https://vici.org/vici/2431/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2700.html'>TPPlace2700</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.551979, 33.09914]}}, {"type": "Feature", "properties": {"id": "TPPlace2702", "name": "Babylonia", "desc": "Babylon<br>Vici.org: <a href='https://vici.org/vici/2432/'>https://vici.org/vici/2432/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2702.html'>TPPlace2702</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.424149, 32.522907]}}, {"type": "Feature", "properties": {"id": "TPPlace2717", "name": "Spasinvcarax", "desc": "~ Abadan<br>Vici.org: <a href='https://vici.org/vici/2433/'>https://vici.org/vici/2433/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2717.html'>TPPlace2717</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [48.303169, 30.332411]}}, {"type": "Feature", "properties": {"id": "TPPlace2724", "name": "Hecantopolis", "desc": "Shahr-e Qumis<br>Vici.org: <a href='https://vici.org/vici/2434/'>https://vici.org/vici/2434/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2724.html'>TPPlace2724</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [54.037498, 35.961666]}}, {"type": "Feature", "properties": {"id": "TPPlace2727", "name": "Evropos", "desc": "? Shahr-e-Rey<br>Vici.org: <a href='https://vici.org/vici/2435/'>https://vici.org/vici/2435/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2727.html'>TPPlace2727</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [51.44289, 35.57959]}}, {"type": "Feature", "properties": {"id": "TPPlace272", "name": "Fvlgvrita", "desc": "? Az Zarat<br>Vici.org: <a href='https://vici.org/vici/2436/'>https://vici.org/vici/2436/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace272.html'>TPPlace272</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.350101, 33.666328]}}, {"type": "Feature", "properties": {"id": "TPPlace273", "name": "Martae", "desc": "Marith<br>Vici.org: <a href='https://vici.org/vici/2437/'>https://vici.org/vici/2437/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace273.html'>TPPlace273</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.28829, 33.619881]}}, {"type": "Feature", "properties": {"id": "TPPlace2740", "name": "Aris", "desc": "Zaranj<br>Vici.org: <a href='https://vici.org/vici/2438/'>https://vici.org/vici/2438/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2740.html'>TPPlace2740</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [61.886539, 31.11241]}}, {"type": "Feature", "properties": {"id": "TPPlace2742", "name": "Aspacora", "desc": "~ Kabul?<br>Vici.org: <a href='https://vici.org/vici/2439/'>https://vici.org/vici/2439/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2742.html'>TPPlace2742</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [69.168549, 34.530319]}}, {"type": "Feature", "properties": {"id": "TPPlace2744", "name": "Magaris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2440/'>https://vici.org/vici/2440/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2744.html'>TPPlace2744</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [85.99472, 20.37846]}}, {"type": "Feature", "properties": {"id": "TPPlace2761", "name": "Elymaine", "desc": "? Ahmadabad<br>Vici.org: <a href='https://vici.org/vici/2441/'>https://vici.org/vici/2441/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2761.html'>TPPlace2761</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [72.566002, 23.039568]}}, {"type": "Feature", "properties": {"id": "TPPlace2763", "name": "Alexandria Bvcefalos", "desc": "Jhelum<br>Vici.org: <a href='https://vici.org/vici/2442/'>https://vici.org/vici/2442/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2763.html'>TPPlace2763</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [73.720718, 32.93354]}}, {"type": "Feature", "properties": {"id": "TPPlace2772", "name": "Bestia Deselvtia", "desc": "Bestia Desolata<br>Vici.org: <a href='https://vici.org/vici/2443/'>https://vici.org/vici/2443/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2772.html'>TPPlace2772</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [63.870857, 31.600185]}}, {"type": "Feature", "properties": {"id": "TPPlace280", "name": "Templvm veneris", "desc": "Djorf<br>Vici.org: <a href='https://vici.org/vici/2444/'>https://vici.org/vici/2444/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace280.html'>TPPlace280</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.731524, 33.695953]}}, {"type": "Feature", "properties": {"id": "TPPlace281", "name": "Gigti", "desc": "Boughrara<br>Vici.org: <a href='https://vici.org/vici/2445/'>https://vici.org/vici/2445/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace281.html'>TPPlace281</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.822573, 33.610748]}}, {"type": "Feature", "properties": {"id": "TPPlace292", "name": "Osa col.", "desc": "Tarabulus<br>Vici.org: <a href='https://vici.org/vici/2446/'>https://vici.org/vici/2446/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace292.html'>TPPlace292</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.187507, 32.876175]}}, {"type": "Feature", "properties": {"id": "TPPlace29", "name": "Chvllv", "desc": "Collo<br>Vici.org: <a href='https://vici.org/vici/2447/'>https://vici.org/vici/2447/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace29.html'>TPPlace29</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.55432, 37.001385]}}, {"type": "Feature", "properties": {"id": "TPPlace300", "name": "Leptimagna col.", "desc": "Lebda ~ Al Khoms<br>Vici.org: <a href='https://vici.org/vici/2448/'>https://vici.org/vici/2448/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace300.html'>TPPlace300</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.289408, 32.636814]}}, {"type": "Feature", "properties": {"id": "TPPlace30", "name": "Rvsicade Colonia", "desc": "Skikda<br>Vici.org: <a href='https://vici.org/vici/2449/'>https://vici.org/vici/2449/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace30.html'>TPPlace30</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.9, 36.866669]}}, {"type": "Feature", "properties": {"id": "TPPlace340", "name": "Bernicide", "desc": "Banghazi<br>Vici.org: <a href='https://vici.org/vici/2450/'>https://vici.org/vici/2450/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace340.html'>TPPlace340</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.066668, 32.116669]}}, {"type": "Feature", "properties": {"id": "TPPlace341", "name": "Hadrianopolis", "desc": "Daryanah<br>Vici.org: <a href='https://vici.org/vici/2451/'>https://vici.org/vici/2451/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace341.html'>TPPlace341</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.308889, 32.347221]}}, {"type": "Feature", "properties": {"id": "TPPlace342", "name": "Tavchira col.", "desc": "Toqra<br>Vici.org: <a href='https://vici.org/vici/2452/'>https://vici.org/vici/2452/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace342.html'>TPPlace342</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.568352, 32.540779]}}, {"type": "Feature", "properties": {"id": "TPPlace346", "name": "Balacris", "desc": "Al Bayd\u0101<br>Vici.org: <a href='https://vici.org/vici/2453/'>https://vici.org/vici/2453/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace346.html'>TPPlace346</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.741667, 32.766388]}}, {"type": "Feature", "properties": {"id": "TPPlace347", "name": "Cyrenis col.", "desc": "Qurena ~ Shahhat<br>Vici.org: <a href='https://vici.org/vici/2454/'>https://vici.org/vici/2454/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace347.html'>TPPlace347</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.856928, 32.81805]}}, {"type": "Feature", "properties": {"id": "TPPlace348", "name": "Appollonia", "desc": "Susah<br>Vici.org: <a href='https://vici.org/vici/2455/'>https://vici.org/vici/2455/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace348.html'>TPPlace348</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.9725, 32.896301]}}, {"type": "Feature", "properties": {"id": "TPPlace349", "name": "Agabis", "desc": "Al Qayqab<br>Vici.org: <a href='https://vici.org/vici/2456/'>https://vici.org/vici/2456/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace349.html'>TPPlace349</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.244854, 32.768311]}}, {"type": "Feature", "properties": {"id": "TPPlace351", "name": "Palivris", "desc": "Al Tamimi<br>Vici.org: <a href='https://vici.org/vici/2457/'>https://vici.org/vici/2457/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace351.html'>TPPlace351</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.06167, 32.333199]}}, {"type": "Feature", "properties": {"id": "TPPlace3524", "name": "Gasavpala", "desc": "Ksar Sbahi<br>Vici.org: <a href='https://vici.org/vici/2458/'>https://vici.org/vici/2458/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3524.html'>TPPlace3524</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.259903, 36.082691]}}, {"type": "Feature", "properties": {"id": "TPPlace352", "name": "Meciris", "desc": "al-Murassas<br>Vici.org: <a href='https://vici.org/vici/2459/'>https://vici.org/vici/2459/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace352.html'>TPPlace352</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.483906, 32.13995]}}, {"type": "Feature", "properties": {"id": "TPPlace3537", "name": "Vasampvs", "desc": "? Morsott<br>Vici.org: <a href='https://vici.org/vici/2460/'>https://vici.org/vici/2460/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3537.html'>TPPlace3537</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.007222, 35.668331]}}, {"type": "Feature", "properties": {"id": "TPPlace3544", "name": "Cyropolis", "desc": "Rasht<br>Vici.org: <a href='https://vici.org/vici/2461/'>https://vici.org/vici/2461/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3544.html'>TPPlace3544</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [49.583332, 37.283333]}}, {"type": "Feature", "properties": {"id": "TPPlace357", "name": "Catabathmo", "desc": "Sal\u00fbm<br>Vici.org: <a href='https://vici.org/vici/2462/'>https://vici.org/vici/2462/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace357.html'>TPPlace357</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.154543, 31.574484]}}, {"type": "Feature", "properties": {"id": "TPPlace359", "name": "Nesvs", "desc": "Sidi Barani<br>Vici.org: <a href='https://vici.org/vici/2463/'>https://vici.org/vici/2463/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace359.html'>TPPlace359</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.925556, 31.610832]}}, {"type": "Feature", "properties": {"id": "TPPlace35", "name": "Tacatva", "desc": "~ Chetaibi<br>Vici.org: <a href='https://vici.org/vici/2464/'>https://vici.org/vici/2464/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace35.html'>TPPlace35</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.370564, 37.060299]}}, {"type": "Feature", "properties": {"id": "TPPlace361", "name": "Pretonio", "desc": "Mersa Matruh<br>Vici.org: <a href='https://vici.org/vici/2465/'>https://vici.org/vici/2465/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace361.html'>TPPlace361</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.23694, 31.35025]}}, {"type": "Feature", "properties": {"id": "TPPlace363", "name": "Patrico", "desc": "? El-Daba<br>Vici.org: <a href='https://vici.org/vici/2466/'>https://vici.org/vici/2466/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace363.html'>TPPlace363</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.43569, 31.027081]}}, {"type": "Feature", "properties": {"id": "TPPlace368", "name": "Ermvpoli", "desc": "Damanhur<br>Vici.org: <a href='https://vici.org/vici/2467/'>https://vici.org/vici/2467/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace368.html'>TPPlace368</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.469999, 31.0406]}}, {"type": "Feature", "properties": {"id": "TPPlace37", "name": "Hyppone Regio", "desc": "Annaba<br>Vici.org: <a href='https://vici.org/vici/2468/'>https://vici.org/vici/2468/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace37.html'>TPPlace37</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.755543, 36.902859]}}, {"type": "Feature", "properties": {"id": "TPPlace387", "name": "Memphis", "desc": "Menf ~ El G\u00efzeh<br>Vici.org: <a href='https://vici.org/vici/2469/'>https://vici.org/vici/2469/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace387.html'>TPPlace387</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.250917, 29.844667]}}, {"type": "Feature", "properties": {"id": "TPPlace388", "name": "Herasicamina", "desc": "Muharraqah<br>Vici.org: <a href='https://vici.org/vici/2470/'>https://vici.org/vici/2470/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace388.html'>TPPlace388</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.7369, 23.049055]}}, {"type": "Feature", "properties": {"id": "TPPlace389", "name": "Spelci", "desc": "Ad Dakkah<br>Vici.org: <a href='https://vici.org/vici/2471/'>https://vici.org/vici/2471/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace389.html'>TPPlace389</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.719059, 23.191542]}}, {"type": "Feature", "properties": {"id": "TPPlace393", "name": "Ombos", "desc": "~ K\u00f4m Ombo<br>Vici.org: <a href='https://vici.org/vici/2472/'>https://vici.org/vici/2472/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace393.html'>TPPlace393</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.948299, 24.478001]}}, {"type": "Feature", "properties": {"id": "TPPlace398", "name": "Hormvcopto", "desc": "Qift<br>Vici.org: <a href='https://vici.org/vici/2473/'>https://vici.org/vici/2473/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace398.html'>TPPlace398</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.800873, 25.994017]}}, {"type": "Feature", "properties": {"id": "TPPlace410", "name": "Pernicide portvm", "desc": "Port Berenice<br>Vici.org: <a href='https://vici.org/vici/2474/'>https://vici.org/vici/2474/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace410.html'>TPPlace410</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.484169, 23.94556]}}, {"type": "Feature", "properties": {"id": "TPPlace412", "name": "Tyconpoli", "desc": "Asy\u016bt<br>Vici.org: <a href='https://vici.org/vici/2475/'>https://vici.org/vici/2475/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace412.html'>TPPlace412</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.185049, 27.183781]}}, {"type": "Feature", "properties": {"id": "TPPlace434", "name": "Ascalone", "desc": "Ashqelon, \u200f\u05d0\u05e9\u05e7\u05dc\u05d5\u05df <br>Vici.org: <a href='https://vici.org/vici/2476/'>https://vici.org/vici/2476/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace434.html'>TPPlace434</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.564999, 31.676201]}}, {"type": "Feature", "properties": {"id": "TPPlace436", "name": "Betogabri", "desc": "Beit Guvrin, \u05d1\u05d9\u05ea \u05d2\u05d5\u05d1\u05e8\u05d9\u05df<br>Vici.org: <a href='https://vici.org/vici/2477/'>https://vici.org/vici/2477/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace436.html'>TPPlace436</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.898296, 31.613096]}}, {"type": "Feature", "properties": {"id": "TPPlace437", "name": "Ceperaria", "desc": "~ Zekharya, \u05d6\u05db\u05e8\u05d9\u05d4<br>Vici.org: <a href='https://vici.org/vici/2478/'>https://vici.org/vici/2478/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace437.html'>TPPlace437</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.945, 31.709723]}}, {"type": "Feature", "properties": {"id": "TPPlace438", "name": "Helyacapitolina", "desc": "Jerusalem, \u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd, Herusalem<br>Vici.org: <a href='https://vici.org/vici/2479/'>https://vici.org/vici/2479/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace438.html'>TPPlace438</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.200699, 31.7857]}}, {"type": "Feature", "properties": {"id": "TPPlace439", "name": "Lamnia", "desc": "Yavne, \u05d9\u05d1\u05e0\u05d4\u200e<br>Vici.org: <a href='https://vici.org/vici/2480/'>https://vici.org/vici/2480/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace439.html'>TPPlace439</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.738052, 31.87833]}}, {"type": "Feature", "properties": {"id": "TPPlace43", "name": "Cirta Colonia", "desc": "Constantine, Qusantina<br>Vici.org: <a href='https://vici.org/vici/2481/'>https://vici.org/vici/2481/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace43.html'>TPPlace43</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.6, 36.349998]}}, {"type": "Feature", "properties": {"id": "TPPlace440", "name": "Ioppe", "desc": "Jaffa, \u05d9\u05e4\u05d5<br>Vici.org: <a href='https://vici.org/vici/2482/'>https://vici.org/vici/2482/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace440.html'>TPPlace440</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.75201, 32.054371]}}, {"type": "Feature", "properties": {"id": "TPPlace442", "name": "Cesaria", "desc": "Caesarea Maritima, Caesarea Palaestinae<br>Vici.org: <a href='https://vici.org/vici/2483/'>https://vici.org/vici/2483/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace442.html'>TPPlace442</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.899723, 32.5]}}, {"type": "Feature", "properties": {"id": "TPPlace443", "name": "Lvddis", "desc": "Lod, \u05dc\u05d5\u05d3<br>Vici.org: <a href='https://vici.org/vici/2484/'>https://vici.org/vici/2484/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace443.html'>TPPlace443</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.893509, 31.954]}}, {"type": "Feature", "properties": {"id": "TPPlace445", "name": "Neapoli", "desc": "Nablus<br>Vici.org: <a href='https://vici.org/vici/2485/'>https://vici.org/vici/2485/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace445.html'>TPPlace445</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.259575, 32.222336]}}, {"type": "Feature", "properties": {"id": "TPPlace446", "name": "Amavante", "desc": "~ Latrun, \u05dc\u05d8\u05e8\u05d5\u05df, Emmaus<br>Vici.org: <a href='https://vici.org/vici/2486/'>https://vici.org/vici/2486/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace446.html'>TPPlace446</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.98909, 31.839418]}}, {"type": "Feature", "properties": {"id": "TPPlace448", "name": "Clisma", "desc": "Suez<br>Vici.org: <a href='https://vici.org/vici/2487/'>https://vici.org/vici/2487/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace448.html'>TPPlace448</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.524502, 29.9834]}}, {"type": "Feature", "properties": {"id": "TPPlace44", "name": "Aqvis Thibilitanis", "desc": "Hammam Meskoutine<br>Vici.org: <a href='https://vici.org/vici/2488/'>https://vici.org/vici/2488/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace44.html'>TPPlace44</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.27, 36.459999]}}, {"type": "Feature", "properties": {"id": "TPPlace451", "name": "Haila", "desc": "Al `Aqabah<br>Vici.org: <a href='https://vici.org/vici/2489/'>https://vici.org/vici/2489/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace451.html'>TPPlace451</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.004444, 29.556437]}}, {"type": "Feature", "properties": {"id": "TPPlace456", "name": "Oboda", "desc": "Avdat, \u05e2\u05d1\u05d3\u05ea<br>Vici.org: <a href='https://vici.org/vici/2490/'>https://vici.org/vici/2490/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace456.html'>TPPlace456</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.773441, 30.794456]}}, {"type": "Feature", "properties": {"id": "TPPlace457", "name": "Elvsa", "desc": "~ Revivim<br>Vici.org: <a href='https://vici.org/vici/2491/'>https://vici.org/vici/2491/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace457.html'>TPPlace457</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.721111, 31.043333]}}, {"type": "Feature", "properties": {"id": "TPPlace458", "name": "Herichonte", "desc": "Ariha, Jericho<br>Vici.org: <a href='https://vici.org/vici/2492/'>https://vici.org/vici/2492/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace458.html'>TPPlace458</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.460163, 31.856731]}}, {"type": "Feature", "properties": {"id": "TPPlace461", "name": "Scytopoli", "desc": "Beit She'an, \u05d1\u05d9\u05ea \u05e9\u05d0\u05df<br>Vici.org: <a href='https://vici.org/vici/2493/'>https://vici.org/vici/2493/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace461.html'>TPPlace461</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.505901, 32.5042]}}, {"type": "Feature", "properties": {"id": "TPPlace463", "name": "Thora", "desc": "~ Nahsholim, \u05e0\u05d7\u05e9\u05d5\u05dc\u05d9\u05dd\u200e<br>Vici.org: <a href='https://vici.org/vici/2494/'>https://vici.org/vici/2494/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace463.html'>TPPlace463</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.921398, 32.600307]}}, {"type": "Feature", "properties": {"id": "TPPlace464", "name": "Caporcotani", "desc": "~Meggido, Legio, Othnai<br>Vici.org: <a href='https://vici.org/vici/2495/'>https://vici.org/vici/2495/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace464.html'>TPPlace464</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.170277, 32.572224]}}, {"type": "Feature", "properties": {"id": "TPPlace465", "name": "P\u0304sdio", "desc": "Praesidio<br>Vici.org: <a href='https://vici.org/vici/2496/'>https://vici.org/vici/2496/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace465.html'>TPPlace465</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.243023, 29.675468]}}, {"type": "Feature", "properties": {"id": "TPPlace467", "name": "Zadagatta", "desc": "Sadaqa<br>Vici.org: <a href='https://vici.org/vici/2497/'>https://vici.org/vici/2497/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace467.html'>TPPlace467</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.47282, 30.154911]}}, {"type": "Feature", "properties": {"id": "TPPlace473", "name": "Philadelfia", "desc": "Amman, Philadelpheia<br>Vici.org: <a href='https://vici.org/vici/2498/'>https://vici.org/vici/2498/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace473.html'>TPPlace473</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.932911, 31.949381]}}, {"type": "Feature", "properties": {"id": "TPPlace474", "name": "Gadda", "desc": "? Az-Zarqa<br>Vici.org: <a href='https://vici.org/vici/2499/'>https://vici.org/vici/2499/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace474.html'>TPPlace474</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.081722, 32.026672]}}, {"type": "Feature", "properties": {"id": "TPPlace477", "name": "Bostris", "desc": "Bosra<br>Vici.org: <a href='https://vici.org/vici/2500/'>https://vici.org/vici/2500/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace477.html'>TPPlace477</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.483334, 32.516666]}}, {"type": "Feature", "properties": {"id": "TPPlace478", "name": "Adraha", "desc": "Dar'a<br>Vici.org: <a href='https://vici.org/vici/2501/'>https://vici.org/vici/2501/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace478.html'>TPPlace478</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.105221, 32.6245]}}, {"type": "Feature", "properties": {"id": "TPPlace479", "name": "Capitoliade", "desc": "Beit Ras<br>Vici.org: <a href='https://vici.org/vici/2502/'>https://vici.org/vici/2502/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace479.html'>TPPlace479</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.854759, 32.597519]}}, {"type": "Feature", "properties": {"id": "TPPlace480", "name": "Cadara", "desc": "Umm Qais<br>Vici.org: <a href='https://vici.org/vici/2503/'>https://vici.org/vici/2503/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace480.html'>TPPlace480</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.683334, 32.650002]}}, {"type": "Feature", "properties": {"id": "TPPlace482", "name": "Chanata", "desc": "el-Qanawat<br>Vici.org: <a href='https://vici.org/vici/2504/'>https://vici.org/vici/2504/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace482.html'>TPPlace482</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.617298, 32.756962]}}, {"type": "Feature", "properties": {"id": "TPPlace483", "name": "Aenos", "desc": "? Buraq<br>Vici.org: <a href='https://vici.org/vici/2505/'>https://vici.org/vici/2505/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace483.html'>TPPlace483</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.482414, 33.185699]}}, {"type": "Feature", "properties": {"id": "TPPlace485", "name": "Damaspo", "desc": "Dimashq, Damascus<br>Vici.org: <a href='https://vici.org/vici/2506/'>https://vici.org/vici/2506/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace485.html'>TPPlace485</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.292, 33.513]}}, {"type": "Feature", "properties": {"id": "TPPlace486", "name": "Ptolomaide", "desc": "\u2018Akk\u00f4, \u05e2\u05db\u05d5<br>Vici.org: <a href='https://vici.org/vici/2507/'>https://vici.org/vici/2507/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace486.html'>TPPlace486</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.1003, 32.920601]}}, {"type": "Feature", "properties": {"id": "TPPlace487", "name": "Tyro", "desc": "Sour<br>Vici.org: <a href='https://vici.org/vici/2508/'>https://vici.org/vici/2508/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace487.html'>TPPlace487</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.20945, 33.272514]}}, {"type": "Feature", "properties": {"id": "TPPlace488", "name": "Sydone", "desc": "Saida<br>Vici.org: <a href='https://vici.org/vici/2509/'>https://vici.org/vici/2509/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace488.html'>TPPlace488</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.368729, 33.562611]}}, {"type": "Feature", "properties": {"id": "TPPlace489", "name": "Cesarea Paneas", "desc": "Banyas, Caesarea Philippi<br>Vici.org: <a href='https://vici.org/vici/2510/'>https://vici.org/vici/2510/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace489.html'>TPPlace489</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.693844, 33.247158]}}, {"type": "Feature", "properties": {"id": "TPPlace492", "name": "Berizto", "desc": "Beirut<br>Vici.org: <a href='https://vici.org/vici/2511/'>https://vici.org/vici/2511/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace492.html'>TPPlace492</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.49548, 33.88863]}}, {"type": "Feature", "properties": {"id": "TPPlace494", "name": "Eliopoli", "desc": "Ba'labakk<br>Vici.org: <a href='https://vici.org/vici/2512/'>https://vici.org/vici/2512/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace494.html'>TPPlace494</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.220463, 34.004822]}}, {"type": "Feature", "properties": {"id": "TPPlace496", "name": "Abila", "desc": "Wadi Barada<br>Vici.org: <a href='https://vici.org/vici/2513/'>https://vici.org/vici/2513/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace496.html'>TPPlace496</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.103474, 33.620319]}}, {"type": "Feature", "properties": {"id": "TPPlace497", "name": "Biblo", "desc": "Jubayl<br>Vici.org: <a href='https://vici.org/vici/2514/'>https://vici.org/vici/2514/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace497.html'>TPPlace497</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.663712, 34.120392]}}, {"type": "Feature", "properties": {"id": "TPPlace498", "name": "Botrvs", "desc": "Batroun<br>Vici.org: <a href='https://vici.org/vici/2515/'>https://vici.org/vici/2515/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace498.html'>TPPlace498</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.664291, 34.249832]}}, {"type": "Feature", "properties": {"id": "TPPlace499", "name": "Tripoli", "desc": "Tar\u0101bulus<br>Vici.org: <a href='https://vici.org/vici/2516/'>https://vici.org/vici/2516/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace499.html'>TPPlace499</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.841309, 34.445679]}}, {"type": "Feature", "properties": {"id": "TPPlace49", "name": "Tvniza", "desc": "El Kala<br>Vici.org: <a href='https://vici.org/vici/2517/'>https://vici.org/vici/2517/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace49.html'>TPPlace49</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.174524, 36.72419]}}, {"type": "Feature", "properties": {"id": "TPPlace500", "name": "Ortosias", "desc": "Orthosia<br>Vici.org: <a href='https://vici.org/vici/2518/'>https://vici.org/vici/2518/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace500.html'>TPPlace500</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.951103, 34.510681]}}, {"type": "Feature", "properties": {"id": "TPPlace50", "name": "Cabraca", "desc": "Tabarka<br>Vici.org: <a href='https://vici.org/vici/2519/'>https://vici.org/vici/2519/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace50.html'>TPPlace50</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.750955, 36.95742]}}, {"type": "Feature", "properties": {"id": "TPPlace513", "name": "Nemesa", "desc": "Homs<br>Vici.org: <a href='https://vici.org/vici/2520/'>https://vici.org/vici/2520/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace513.html'>TPPlace513</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.707394, 34.708412]}}, {"type": "Feature", "properties": {"id": "TPPlace515", "name": "Epifania", "desc": "Hama<br>Vici.org: <a href='https://vici.org/vici/2521/'>https://vici.org/vici/2521/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace515.html'>TPPlace515</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.752449, 35.13781]}}, {"type": "Feature", "properties": {"id": "TPPlace516", "name": "Larissa", "desc": "Shaizar<br>Vici.org: <a href='https://vici.org/vici/2522/'>https://vici.org/vici/2522/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace516.html'>TPPlace516</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.55756, 35.267818]}}, {"type": "Feature", "properties": {"id": "TPPlace522", "name": "Casama", "desc": "an-Nabk<br>Vici.org: <a href='https://vici.org/vici/2523/'>https://vici.org/vici/2523/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace522.html'>TPPlace522</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.734612, 34.025421]}}, {"type": "Feature", "properties": {"id": "TPPlace523", "name": "Cehere", "desc": "Qara<br>Vici.org: <a href='https://vici.org/vici/2524/'>https://vici.org/vici/2524/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace523.html'>TPPlace523</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.762699, 34.182362]}}, {"type": "Feature", "properties": {"id": "TPPlace525", "name": "Nezala", "desc": "Al Qaryatayn<br>Vici.org: <a href='https://vici.org/vici/2525/'>https://vici.org/vici/2525/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace525.html'>TPPlace525</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.24374, 34.23159]}}, {"type": "Feature", "properties": {"id": "TPPlace527", "name": "Palmyra", "desc": "Tadmur<br>Vici.org: <a href='https://vici.org/vici/2526/'>https://vici.org/vici/2526/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace527.html'>TPPlace527</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.278671, 34.547951]}}, {"type": "Feature", "properties": {"id": "TPPlace529", "name": "Gabala", "desc": "Jablah<br>Vici.org: <a href='https://vici.org/vici/2527/'>https://vici.org/vici/2527/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace529.html'>TPPlace529</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.921391, 35.359722]}}, {"type": "Feature", "properties": {"id": "TPPlace52", "name": "Ipponte diarito", "desc": "Bizerta<br>Vici.org: <a href='https://vici.org/vici/2528/'>https://vici.org/vici/2528/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace52.html'>TPPlace52</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.873071, 37.27626]}}, {"type": "Feature", "properties": {"id": "TPPlace530", "name": "Lavdiciae", "desc": "Al Lathqiyah<br>Vici.org: <a href='https://vici.org/vici/2529/'>https://vici.org/vici/2529/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace530.html'>TPPlace530</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.7924, 35.52145]}}, {"type": "Feature", "properties": {"id": "TPPlace531", "name": "Adorontem", "desc": "~ Samanda\u011f<br>Vici.org: <a href='https://vici.org/vici/2530/'>https://vici.org/vici/2530/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace531.html'>TPPlace531</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.999321, 36.08239]}}, {"type": "Feature", "properties": {"id": "TPPlace532", "name": "Selevcia", "desc": "Samanda\u011f<br>Vici.org: <a href='https://vici.org/vici/2531/'>https://vici.org/vici/2531/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace532.html'>TPPlace532</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.999321, 36.08239]}}, {"type": "Feature", "properties": {"id": "TPPlace53", "name": "Tvnisa", "desc": "? Ras-al-Jabal<br>Vici.org: <a href='https://vici.org/vici/2532/'>https://vici.org/vici/2532/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace53.html'>TPPlace53</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.122717, 37.212799]}}, {"type": "Feature", "properties": {"id": "TPPlace544", "name": "Roribis", "desc": "Rochester, Durobrivae<br>Vici.org: <a href='https://vici.org/vici/2533/'>https://vici.org/vici/2533/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace544.html'>TPPlace544</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.503554, 51.389511]}}, {"type": "Feature", "properties": {"id": "TPPlace552", "name": "Lvgdvno", "desc": "Katwijk aan Zee, Lugdunum Batavorum<br>Vici.org: <a href='https://vici.org/vici/58/'>https://vici.org/vici/58/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace552.html'>TPPlace552</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.389181, 52.21048]}}, {"type": "Feature", "properties": {"id": "TPPlace553", "name": "Pretoriv\u0304 Agrippine", "desc": "Valkenburg, Praetorium Agrippinae<br>Vici.org: <a href='https://vici.org/vici/59/'>https://vici.org/vici/59/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace553.html'>TPPlace553</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.433091, 52.180328]}}, {"type": "Feature", "properties": {"id": "TPPlace554", "name": "Matilone", "desc": "Leiden-Roomburg, Matilo<br>Vici.org: <a href='https://vici.org/vici/60/'>https://vici.org/vici/60/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace554.html'>TPPlace554</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.518428, 52.150265]}}, {"type": "Feature", "properties": {"id": "TPPlace555", "name": "Albanianis", "desc": "Alphen aan den Rijn<br>Vici.org: <a href='https://vici.org/vici/61/'>https://vici.org/vici/61/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace555.html'>TPPlace555</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.660703, 52.129292]}}, {"type": "Feature", "properties": {"id": "TPPlace556", "name": "Nigropvllo", "desc": "Zwammerdam, Nigrum Pullum<br>Vici.org: <a href='https://vici.org/vici/62/'>https://vici.org/vici/62/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace556.html'>TPPlace556</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.715951, 52.105114]}}, {"type": "Feature", "properties": {"id": "TPPlace557", "name": "Lavriv\u0304", "desc": "Woerden, Laurium<br>Vici.org: <a href='https://vici.org/vici/52/'>https://vici.org/vici/52/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace557.html'>TPPlace557</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.883333, 52.085835]}}, {"type": "Feature", "properties": {"id": "TPPlace558", "name": "Fletione", "desc": "Vechten, Fectio, Bunnik, Houten<br>Vici.org: <a href='https://vici.org/vici/49/'>https://vici.org/vici/49/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace558.html'>TPPlace558</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.163474, 52.059578]}}, {"type": "Feature", "properties": {"id": "TPPlace559", "name": "Levefano", "desc": "Rijswijk, Wijk bij Duurstede<br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace559.html'>TPPlace559</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.345349, 51.966286]}}, {"type": "Feature", "properties": {"id": "TPPlace560", "name": "Carvone", "desc": "Kesteren, Carvo<br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace560.html'>TPPlace560</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.57203, 51.93412]}}, {"type": "Feature", "properties": {"id": "TPPlace561", "name": "Castra Hercvlis", "desc": "Arnhem Meinerswijk<br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace561.html'>TPPlace561</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.877201, 51.971973]}}, {"type": "Feature", "properties": {"id": "TPPlace562", "name": "Noviomagi", "desc": "Nijmegen, Ulpia Noviomagus Batavorum<br>Vici.org: <a href='https://vici.org/vici/84/'>https://vici.org/vici/84/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace562.html'>TPPlace562</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.846593, 51.847496]}}, {"type": "Feature", "properties": {"id": "TPPlace563", "name": "Foro Adriani", "desc": "Voorburg, Forum Hadriani, Den Haag<br>Vici.org: <a href='https://vici.org/vici/83/'>https://vici.org/vici/83/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace563.html'>TPPlace563</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.348133, 52.058857]}}, {"type": "Feature", "properties": {"id": "TPPlace564", "name": "Flenio", "desc": "Vlaardingen<br>Vici.org: <a href='https://vici.org/vici/2534/'>https://vici.org/vici/2534/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace564.html'>TPPlace564</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.336366, 51.907951]}}, {"type": "Feature", "properties": {"id": "TPPlace565", "name": "Tablis", "desc": "Oud-Alblas<br>Vici.org: <a href='https://vici.org/vici/2535/'>https://vici.org/vici/2535/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace565.html'>TPPlace565</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.704522, 51.858894]}}, {"type": "Feature", "properties": {"id": "TPPlace566", "name": "Caspingio", "desc": "Asperen<br>Vici.org: <a href='https://vici.org/vici/2536/'>https://vici.org/vici/2536/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace566.html'>TPPlace566</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.125726, 51.734547]}}, {"type": "Feature", "properties": {"id": "TPPlace567", "name": "Grinnibvs", "desc": "Rossum, Grinnes<br>Vici.org: <a href='https://vici.org/vici/2537/'>https://vici.org/vici/2537/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace567.html'>TPPlace567</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.333333, 51.799999]}}, {"type": "Feature", "properties": {"id": "TPPlace568", "name": "Ad dvodecimvm", "desc": "? Wamel<br>Vici.org: <a href='https://vici.org/vici/2538/'>https://vici.org/vici/2538/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace568.html'>TPPlace568</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.457682, 51.877544]}}, {"type": "Feature", "properties": {"id": "TPPlace569", "name": "Arenatio", "desc": "Rindern<br>Vici.org: <a href='https://vici.org/vici/351/'>https://vici.org/vici/351/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace569.html'>TPPlace569</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.122623, 51.811253]}}, {"type": "Feature", "properties": {"id": "TPPlace570", "name": "Bvrginatio", "desc": "~ Kalkar<br>Vici.org: <a href='https://vici.org/vici/349/'>https://vici.org/vici/349/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace570.html'>TPPlace570</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.318889, 51.71389]}}, {"type": "Feature", "properties": {"id": "TPPlace571", "name": "Colo Traiana", "desc": "Xanten, Colonia Ulpia Traiana<br>Vici.org: <a href='https://vici.org/vici/103/'>https://vici.org/vici/103/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace571.html'>TPPlace571</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.449822, 51.661106]}}, {"type": "Feature", "properties": {"id": "TPPlace572", "name": "Veteribvs", "desc": "Birten (F\u00fcrstenberg) ~ Xanten, Castra Vetera<br>Vici.org: <a href='https://vici.org/vici/353/'>https://vici.org/vici/353/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace572.html'>TPPlace572</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.468616, 51.652054]}}, {"type": "Feature", "properties": {"id": "TPPlace573", "name": "Ascibvrgio", "desc": "Moers-Asberg<br>Vici.org: <a href='https://vici.org/vici/8536/'>https://vici.org/vici/8536/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace573.html'>TPPlace573</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.669764, 51.432308]}}, {"type": "Feature", "properties": {"id": "TPPlace574", "name": "Novesio", "desc": "Neuss, Novaesium<br>Vici.org: <a href='https://vici.org/vici/366/'>https://vici.org/vici/366/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace574.html'>TPPlace574</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.69529, 51.198429]}}, {"type": "Feature", "properties": {"id": "TPPlace575", "name": "Agripina", "desc": "K\u00f6ln, Colonia Claudia Ara Agrippinensium<br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace575.html'>TPPlace575</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.959911, 50.940662]}}, {"type": "Feature", "properties": {"id": "TPPlace576", "name": "Cevclvm", "desc": "Cuijk<br>Vici.org: <a href='https://vici.org/vici/347/'>https://vici.org/vici/347/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace576.html'>TPPlace576</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.877145, 51.728279]}}, {"type": "Feature", "properties": {"id": "TPPlace577", "name": "Blariaco", "desc": "Blerick<br>Vici.org: <a href='https://vici.org/vici/348/'>https://vici.org/vici/348/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace577.html'>TPPlace577</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.148377, 51.369007]}}, {"type": "Feature", "properties": {"id": "TPPlace578", "name": "Catvalivm", "desc": "Heel<br>Vici.org: <a href='https://vici.org/vici/2540/'>https://vici.org/vici/2540/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace578.html'>TPPlace578</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.897423, 51.177307]}}, {"type": "Feature", "properties": {"id": "TPPlace579", "name": "Feresne", "desc": "Lanklaar<br>Vici.org: <a href='https://vici.org/vici/2541/'>https://vici.org/vici/2541/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace579.html'>TPPlace579</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.7262, 51.018799]}}, {"type": "Feature", "properties": {"id": "TPPlace580", "name": "Atvaca", "desc": "Tongeren, Atuatuca Tungrorum<br>Vici.org: <a href='https://vici.org/vici/350/'>https://vici.org/vici/350/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace580.html'>TPPlace580</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.459418, 50.780499]}}, {"type": "Feature", "properties": {"id": "TPPlace582", "name": "Gesogiaco qvod nvnc Bononia", "desc": "Boulogne-sur-Mer<br>Vici.org: <a href='https://vici.org/vici/2542/'>https://vici.org/vici/2542/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace582.html'>TPPlace582</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.614883, 50.725605]}}, {"type": "Feature", "properties": {"id": "TPPlace583", "name": "Castello Menapiorv\u0304", "desc": "Cassel<br>Vici.org: <a href='https://vici.org/vici/2543/'>https://vici.org/vici/2543/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace583.html'>TPPlace583</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.487366, 50.799377]}}, {"type": "Feature", "properties": {"id": "TPPlace584", "name": "Virovino", "desc": "Wervik<br>Vici.org: <a href='https://vici.org/vici/2544/'>https://vici.org/vici/2544/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace584.html'>TPPlace584</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.04481, 50.784081]}}, {"type": "Feature", "properties": {"id": "TPPlace585", "name": "Tvrnaco", "desc": "Tournai<br>Vici.org: <a href='https://vici.org/vici/2545/'>https://vici.org/vici/2545/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace585.html'>TPPlace585</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.392589, 50.607235]}}, {"type": "Feature", "properties": {"id": "TPPlace586", "name": "Pontes caldis", "desc": "Escautpont<br>Vici.org: <a href='https://vici.org/vici/2546/'>https://vici.org/vici/2546/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace586.html'>TPPlace586</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.562682, 50.42371]}}, {"type": "Feature", "properties": {"id": "TPPlace588", "name": "Baca Conervio", "desc": "Bavay<br>Vici.org: <a href='https://vici.org/vici/2547/'>https://vici.org/vici/2547/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace588.html'>TPPlace588</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.791744, 50.297153]}}, {"type": "Feature", "properties": {"id": "TPPlace589", "name": "Vogo Dorgiaco", "desc": "Givry<br>Vici.org: <a href='https://vici.org/vici/2548/'>https://vici.org/vici/2548/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace589.html'>TPPlace589</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.039435, 50.377125]}}, {"type": "Feature", "properties": {"id": "TPPlace590", "name": "Geminico vico", "desc": "Liberchies<br>Vici.org: <a href='https://vici.org/vici/2549/'>https://vici.org/vici/2549/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace590.html'>TPPlace590</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.42145, 50.515442]}}, {"type": "Feature", "properties": {"id": "TPPlace591", "name": "Pernaco", "desc": "Braives<br>Vici.org: <a href='https://vici.org/vici/2550/'>https://vici.org/vici/2550/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace591.html'>TPPlace591</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.133333, 50.616669]}}, {"type": "Feature", "properties": {"id": "TPPlace592", "name": "cortovallio", "desc": "Heerlen, Coriovallum<br>Vici.org: <a href='https://vici.org/vici/364/'>https://vici.org/vici/364/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace592.html'>TPPlace592</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.979499, 50.888172]}}, {"type": "Feature", "properties": {"id": "TPPlace593", "name": "Ivliaco", "desc": "J\u00fclich, Iuliacum<br>Vici.org: <a href='https://vici.org/vici/363/'>https://vici.org/vici/363/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace593.html'>TPPlace593</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.361197, 50.921005]}}, {"type": "Feature", "properties": {"id": "TPPlace594", "name": "Tervanna", "desc": "Th\u00e9rouanne<br>Vici.org: <a href='https://vici.org/vici/2551/'>https://vici.org/vici/2551/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace594.html'>TPPlace594</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.257654, 50.637379]}}, {"type": "Feature", "properties": {"id": "TPPlace596", "name": "Camaraco", "desc": "Cambrai<br>Vici.org: <a href='https://vici.org/vici/2552/'>https://vici.org/vici/2552/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace596.html'>TPPlace596</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.234369, 50.17535]}}, {"type": "Feature", "properties": {"id": "TPPlace598", "name": "Avg\u0304 Viro Mvdvorvm", "desc": "Vermand<br>Vici.org: <a href='https://vici.org/vici/2553/'>https://vici.org/vici/2553/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace598.html'>TPPlace598</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.148069, 49.879185]}}, {"type": "Feature", "properties": {"id": "TPPlace599", "name": "Avg\u0304 Svessorvm", "desc": "Soissons<br>Vici.org: <a href='https://vici.org/vici/2554/'>https://vici.org/vici/2554/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace599.html'>TPPlace599</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.327716, 49.38232]}}, {"type": "Feature", "properties": {"id": "TPPlace600", "name": "Tevcera", "desc": "Thi\u00e8vres<br>Vici.org: <a href='https://vici.org/vici/2555/'>https://vici.org/vici/2555/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace600.html'>TPPlace600</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.45462, 50.130253]}}, {"type": "Feature", "properties": {"id": "TPPlace601", "name": "Sammarobriva", "desc": "Amiens<br>Vici.org: <a href='https://vici.org/vici/2556/'>https://vici.org/vici/2556/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace601.html'>TPPlace601</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.294244, 49.893917]}}, {"type": "Feature", "properties": {"id": "TPPlace602", "name": "Lintomagi", "desc": "Brimeux<br>Vici.org: <a href='https://vici.org/vici/2557/'>https://vici.org/vici/2557/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace602.html'>TPPlace602</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.833767, 50.44746]}}, {"type": "Feature", "properties": {"id": "TPPlace603", "name": "Adlvllia", "desc": "Estruval<br>Vici.org: <a href='https://vici.org/vici/2558/'>https://vici.org/vici/2558/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace603.html'>TPPlace603</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.876244, 50.332539]}}, {"type": "Feature", "properties": {"id": "TPPlace606", "name": "Rodivm", "desc": "Roye<br>Vici.org: <a href='https://vici.org/vici/2559/'>https://vici.org/vici/2559/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace606.html'>TPPlace606</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.793809, 49.698631]}}, {"type": "Feature", "properties": {"id": "TPPlace607", "name": "Lvra", "desc": "Pontoise-l\u00e8s-Noyon<br>Vici.org: <a href='https://vici.org/vici/2560/'>https://vici.org/vici/2560/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace607.html'>TPPlace607</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.050758, 49.551563]}}, {"type": "Feature", "properties": {"id": "TPPlace609", "name": "Dvrocortoro", "desc": "Reims<br>Vici.org: <a href='https://vici.org/vici/2561/'>https://vici.org/vici/2561/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace609.html'>TPPlace609</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.033091, 49.256603]}}, {"type": "Feature", "properties": {"id": "TPPlace60", "name": "Chartagine Colon\u0304", "desc": "Tunis, Carthago<br>Vici.org: <a href='https://vici.org/vici/2562/'>https://vici.org/vici/2562/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace60.html'>TPPlace60</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.332785, 36.862358]}}, {"type": "Feature", "properties": {"id": "TPPlace611", "name": "Vironvm", "desc": "Vervins<br>Vici.org: <a href='https://vici.org/vici/2563/'>https://vici.org/vici/2563/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace611.html'>TPPlace611</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.907424, 49.833706]}}, {"type": "Feature", "properties": {"id": "TPPlace612", "name": "Ninittaci", "desc": "Nizy-le-Comte<br>Vici.org: <a href='https://vici.org/vici/2564/'>https://vici.org/vici/2564/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace612.html'>TPPlace612</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.054813, 49.567936]}}, {"type": "Feature", "properties": {"id": "TPPlace614", "name": "Noviomagvs", "desc": "Saint-Loup-en-Champagne<br>Vici.org: <a href='https://vici.org/vici/2565/'>https://vici.org/vici/2565/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace614.html'>TPPlace614</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.219704, 49.455585]}}, {"type": "Feature", "properties": {"id": "TPPlace615", "name": "Mose", "desc": "Charleville-M\u00e9zi\u00e8res<br>Vici.org: <a href='https://vici.org/vici/2566/'>https://vici.org/vici/2566/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace615.html'>TPPlace615</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.72021, 49.773609]}}, {"type": "Feature", "properties": {"id": "TPPlace616", "name": "Medvanto", "desc": "Mande-Saint-Etienne<br>Vici.org: <a href='https://vici.org/vici/2567/'>https://vici.org/vici/2567/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace616.html'>TPPlace616</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.638057, 50.012943]}}, {"type": "Feature", "properties": {"id": "TPPlace617", "name": "Monerica", "desc": "Gem\u00fcnd<br>Vici.org: <a href='https://vici.org/vici/2568/'>https://vici.org/vici/2568/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace617.html'>TPPlace617</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.499572, 50.57235]}}, {"type": "Feature", "properties": {"id": "TPPlace619", "name": "Ivliobona", "desc": "Lillebonne<br>Vici.org: <a href='https://vici.org/vici/2569/'>https://vici.org/vici/2569/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace619.html'>TPPlace619</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.535495, 49.52161]}}, {"type": "Feature", "properties": {"id": "TPPlace620", "name": "Brevodvro", "desc": "Brionne<br>Vici.org: <a href='https://vici.org/vici/2570/'>https://vici.org/vici/2570/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace620.html'>TPPlace620</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.720542, 49.195316]}}, {"type": "Feature", "properties": {"id": "TPPlace621", "name": "Ratvmagvs", "desc": "Rouen<br>Vici.org: <a href='https://vici.org/vici/2571/'>https://vici.org/vici/2571/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace621.html'>TPPlace621</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.098492, 49.442368]}}, {"type": "Feature", "properties": {"id": "TPPlace622", "name": "Ritvmagvs", "desc": "~Radepont<br>Vici.org: <a href='https://vici.org/vici/2572/'>https://vici.org/vici/2572/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace622.html'>TPPlace622</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.328309, 49.350555]}}, {"type": "Feature", "properties": {"id": "TPPlace623", "name": "Petrvm viaco", "desc": "Magny-en-Vexin<br>Vici.org: <a href='https://vici.org/vici/2573/'>https://vici.org/vici/2573/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace623.html'>TPPlace623</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.786796, 49.155369]}}, {"type": "Feature", "properties": {"id": "TPPlace624", "name": "Casaromago", "desc": "Beauvais<br>Vici.org: <a href='https://vici.org/vici/2574/'>https://vici.org/vici/2574/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace624.html'>TPPlace624</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.081069, 49.429291]}}, {"type": "Feature", "properties": {"id": "TPPlace625", "name": "Mediolano avtercorvm", "desc": "Evreux<br>Vici.org: <a href='https://vici.org/vici/2575/'>https://vici.org/vici/2575/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace625.html'>TPPlace625</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.151109, 49.024529]}}, {"type": "Feature", "properties": {"id": "TPPlace626", "name": "Condate", "desc": "Cond\u00e9-sur-Iton<br>Vici.org: <a href='https://vici.org/vici/2576/'>https://vici.org/vici/2576/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace626.html'>TPPlace626</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.963002, 48.834652]}}, {"type": "Feature", "properties": {"id": "TPPlace627", "name": "Dvrocassio", "desc": "Dreux<br>Vici.org: <a href='https://vici.org/vici/2577/'>https://vici.org/vici/2577/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace627.html'>TPPlace627</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.36119, 48.738277]}}, {"type": "Feature", "properties": {"id": "TPPlace628", "name": "Avtricvm", "desc": "Chartres<br>Vici.org: <a href='https://vici.org/vici/2578/'>https://vici.org/vici/2578/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace628.html'>TPPlace628</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.483543, 48.44408]}}, {"type": "Feature", "properties": {"id": "TPPlace629", "name": "Brivisara", "desc": "Pontoise<br>Vici.org: <a href='https://vici.org/vici/2579/'>https://vici.org/vici/2579/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace629.html'>TPPlace629</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.09296, 49.048813]}}, {"type": "Feature", "properties": {"id": "TPPlace630", "name": "Lvteci", "desc": "Paris, Lutetia Parisorum<br>Vici.org: <a href='https://vici.org/vici/2580/'>https://vici.org/vici/2580/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace630.html'>TPPlace630</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.350987, 48.856667]}}, {"type": "Feature", "properties": {"id": "TPPlace631", "name": "Meteglo", "desc": "Melun, Meluneum<br>Vici.org: <a href='https://vici.org/vici/2581/'>https://vici.org/vici/2581/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace631.html'>TPPlace631</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.660293, 48.541458]}}, {"type": "Feature", "properties": {"id": "TPPlace632", "name": "Condate", "desc": "Montereau-Fault-Yonne<br>Vici.org: <a href='https://vici.org/vici/2582/'>https://vici.org/vici/2582/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace632.html'>TPPlace632</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.956532, 48.38467]}}, {"type": "Feature", "properties": {"id": "TPPlace633", "name": "Riobe", "desc": "Ch\u00e2teaubleau<br>Vici.org: <a href='https://vici.org/vici/2583/'>https://vici.org/vici/2583/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace633.html'>TPPlace633</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.105964, 48.587284]}}, {"type": "Feature", "properties": {"id": "TPPlace635", "name": "Avg\u0304 Bona", "desc": "Troyes<br>Vici.org: <a href='https://vici.org/vici/2584/'>https://vici.org/vici/2584/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace635.html'>TPPlace635</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.074801, 48.29747]}}, {"type": "Feature", "properties": {"id": "TPPlace636", "name": "Ebvrobriga", "desc": "~ Avrolles<br>Vici.org: <a href='https://vici.org/vici/2585/'>https://vici.org/vici/2585/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace636.html'>TPPlace636</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.682888, 48.003548]}}, {"type": "Feature", "properties": {"id": "TPPlace637", "name": "Avg\u0304 Magvs", "desc": "Senlis<br>Vici.org: <a href='https://vici.org/vici/2586/'>https://vici.org/vici/2586/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace637.html'>TPPlace637</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.586235, 49.204185]}}, {"type": "Feature", "properties": {"id": "TPPlace639", "name": "Calagvm", "desc": "Chailly-en-Brie<br>Vici.org: <a href='https://vici.org/vici/2587/'>https://vici.org/vici/2587/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace639.html'>TPPlace639</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.124048, 48.789436]}}, {"type": "Feature", "properties": {"id": "TPPlace640", "name": "Bibe", "desc": "Morains<br>Vici.org: <a href='https://vici.org/vici/2588/'>https://vici.org/vici/2588/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace640.html'>TPPlace640</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.990837, 48.813431]}}, {"type": "Feature", "properties": {"id": "TPPlace641", "name": "Alavna", "desc": "Valognes<br>Vici.org: <a href='https://vici.org/vici/2589/'>https://vici.org/vici/2589/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace641.html'>TPPlace641</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.470351, 49.509155]}}, {"type": "Feature", "properties": {"id": "TPPlace642", "name": "Crovcia connvm", "desc": "Carentan<br>Vici.org: <a href='https://vici.org/vici/2590/'>https://vici.org/vici/2590/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace642.html'>TPPlace642</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.247796, 49.303249]}}, {"type": "Feature", "properties": {"id": "TPPlace643", "name": "Avgvstodvro", "desc": "Bayeux<br>Vici.org: <a href='https://vici.org/vici/2591/'>https://vici.org/vici/2591/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace643.html'>TPPlace643</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.702124, 49.277023]}}, {"type": "Feature", "properties": {"id": "TPPlace644", "name": "Araegenve", "desc": "Vieux<br>Vici.org: <a href='https://vici.org/vici/2592/'>https://vici.org/vici/2592/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace644.html'>TPPlace644</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.435628, 49.105671]}}, {"type": "Feature", "properties": {"id": "TPPlace646", "name": "NV DIONNVM", "desc": "S\u00e9es<br>Vici.org: <a href='https://vici.org/vici/2593/'>https://vici.org/vici/2593/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace646.html'>TPPlace646</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.172762, 48.606869]}}, {"type": "Feature", "properties": {"id": "TPPlace647", "name": "Svb dinnvm", "desc": "Le Mans<br>Vici.org: <a href='https://vici.org/vici/2594/'>https://vici.org/vici/2594/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace647.html'>TPPlace647</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.198579, 48.007717]}}, {"type": "Feature", "properties": {"id": "TPPlace649", "name": "Casarodvno", "desc": "Tours, Turonum Caesarodunum<br>Vici.org: <a href='https://vici.org/vici/2595/'>https://vici.org/vici/2595/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace649.html'>TPPlace649</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.688851, 47.390293]}}, {"type": "Feature", "properties": {"id": "TPPlace650", "name": "Cenabo", "desc": "Orl\u00e9ans<br>Vici.org: <a href='https://vici.org/vici/2596/'>https://vici.org/vici/2596/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace650.html'>TPPlace650</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.903976, 47.901386]}}, {"type": "Feature", "properties": {"id": "TPPlace651", "name": "Fines", "desc": "Ingrannes<br>Vici.org: <a href='https://vici.org/vici/2597/'>https://vici.org/vici/2597/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace651.html'>TPPlace651</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.209687, 47.996841]}}, {"type": "Feature", "properties": {"id": "TPPlace653", "name": "Agetincvm", "desc": "Sens<br>Vici.org: <a href='https://vici.org/vici/2598/'>https://vici.org/vici/2598/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace653.html'>TPPlace653</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.287177, 48.197758]}}, {"type": "Feature", "properties": {"id": "TPPlace655", "name": "Avtessio Dvro", "desc": "Auxerre<br>Vici.org: <a href='https://vici.org/vici/2599/'>https://vici.org/vici/2599/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace655.html'>TPPlace655</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.574404, 47.79829]}}, {"type": "Feature", "properties": {"id": "TPPlace657", "name": "Sidoteco", "desc": "Saulieu<br>Vici.org: <a href='https://vici.org/vici/2600/'>https://vici.org/vici/2600/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace657.html'>TPPlace657</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.229357, 47.279617]}}, {"type": "Feature", "properties": {"id": "TPPlace658", "name": "Avg\u0304 Dunum", "desc": "Autun<br>Vici.org: <a href='https://vici.org/vici/2601/'>https://vici.org/vici/2601/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace658.html'>TPPlace658</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.299421, 46.949783]}}, {"type": "Feature", "properties": {"id": "TPPlace659", "name": "Belca", "desc": "Dampierre-en-Burly<br>Vici.org: <a href='https://vici.org/vici/2602/'>https://vici.org/vici/2602/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace659.html'>TPPlace659</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.517524, 47.7617]}}, {"type": "Feature", "properties": {"id": "TPPlace65", "name": "Simitv Colonia", "desc": "Chemtou<br>Vici.org: <a href='https://vici.org/vici/2603/'>https://vici.org/vici/2603/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace65.html'>TPPlace65</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.58333, 36.48333]}}, {"type": "Feature", "properties": {"id": "TPPlace660", "name": "Brivodvro", "desc": "Briare<br>Vici.org: <a href='https://vici.org/vici/2604/'>https://vici.org/vici/2604/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace660.html'>TPPlace660</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.738956, 47.638523]}}, {"type": "Feature", "properties": {"id": "TPPlace661", "name": "Massava", "desc": "Mesves-sur-Loire<br>Vici.org: <a href='https://vici.org/vici/2605/'>https://vici.org/vici/2605/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace661.html'>TPPlace661</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.99373, 47.243881]}}, {"type": "Feature", "properties": {"id": "TPPlace662", "name": "Ebirno", "desc": "Nevers<br>Vici.org: <a href='https://vici.org/vici/2606/'>https://vici.org/vici/2606/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace662.html'>TPPlace662</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.161603, 46.987179]}}, {"type": "Feature", "properties": {"id": "TPPlace663", "name": "Degetia", "desc": "Decize<br>Vici.org: <a href='https://vici.org/vici/2607/'>https://vici.org/vici/2607/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace663.html'>TPPlace663</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.461301, 46.828564]}}, {"type": "Feature", "properties": {"id": "TPPlace664", "name": "AQVIS BORMONIS", "desc": "Bourbon-Lancy, Aquae Bormonis<br>Vici.org: <a href='https://vici.org/vici/2608/'>https://vici.org/vici/2608/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace664.html'>TPPlace664</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.767922, 46.622417]}}, {"type": "Feature", "properties": {"id": "TPPlace665", "name": "Coriallo", "desc": "Cherbourg<br>Vici.org: <a href='https://vici.org/vici/2609/'>https://vici.org/vici/2609/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace665.html'>TPPlace665</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.614241, 49.638668]}}, {"type": "Feature", "properties": {"id": "TPPlace666", "name": "Cosedia", "desc": "Coutances, Constantia civitas<br>Vici.org: <a href='https://vici.org/vici/2610/'>https://vici.org/vici/2610/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace666.html'>TPPlace666</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.444356, 49.049168]}}, {"type": "Feature", "properties": {"id": "TPPlace668", "name": "Condate", "desc": "Rennes, Condate Redonum<br>Vici.org: <a href='https://vici.org/vici/2611/'>https://vici.org/vici/2611/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace668.html'>TPPlace668</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.680265, 48.111759]}}, {"type": "Feature", "properties": {"id": "TPPlace669", "name": "Sipia", "desc": "Visseiche<br>Vici.org: <a href='https://vici.org/vici/2612/'>https://vici.org/vici/2612/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace669.html'>TPPlace669</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.300508, 47.955624]}}, {"type": "Feature", "properties": {"id": "TPPlace66", "name": "Bvlla Regia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2613/'>https://vici.org/vici/2613/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace66.html'>TPPlace66</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.750548, 36.555607]}}, {"type": "Feature", "properties": {"id": "TPPlace670", "name": "Reginca", "desc": "Erquy<br>Vici.org: <a href='https://vici.org/vici/2614/'>https://vici.org/vici/2614/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace670.html'>TPPlace670</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-2.46409, 48.62883]}}, {"type": "Feature", "properties": {"id": "TPPlace671", "name": "Fanomartis", "desc": "Corseul<br>Vici.org: <a href='https://vici.org/vici/2615/'>https://vici.org/vici/2615/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace671.html'>TPPlace671</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-2.169527, 48.481213]}}, {"type": "Feature", "properties": {"id": "TPPlace672", "name": "Conbaristvm", "desc": "Ch\u00e2telais<br>Vici.org: <a href='https://vici.org/vici/2616/'>https://vici.org/vici/2616/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace672.html'>TPPlace672</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.926833, 47.758499]}}, {"type": "Feature", "properties": {"id": "TPPlace673", "name": "Ivliomago", "desc": "Angers<br>Vici.org: <a href='https://vici.org/vici/2617/'>https://vici.org/vici/2617/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace673.html'>TPPlace673</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.549073, 47.469471]}}, {"type": "Feature", "properties": {"id": "TPPlace674", "name": "Robrica", "desc": "Bourgueil<br>Vici.org: <a href='https://vici.org/vici/2618/'>https://vici.org/vici/2618/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace674.html'>TPPlace674</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.168915, 47.281631]}}, {"type": "Feature", "properties": {"id": "TPPlace675", "name": "Tasciaca", "desc": "Th\u00e9s\u00e9e<br>Vici.org: <a href='https://vici.org/vici/2619/'>https://vici.org/vici/2619/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace675.html'>TPPlace675</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.30219, 47.326565]}}, {"type": "Feature", "properties": {"id": "TPPlace676", "name": "Gabris", "desc": "Gi\u00e8vres<br>Vici.org: <a href='https://vici.org/vici/2620/'>https://vici.org/vici/2620/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace676.html'>TPPlace676</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.672989, 47.275684]}}, {"type": "Feature", "properties": {"id": "TPPlace677", "name": "Avaricvm", "desc": "Bourges<br>Vici.org: <a href='https://vici.org/vici/2621/'>https://vici.org/vici/2621/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace677.html'>TPPlace677</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.396579, 47.082893]}}, {"type": "Feature", "properties": {"id": "TPPlace678", "name": "Tincollo", "desc": "Sancoins<br>Vici.org: <a href='https://vici.org/vici/2622/'>https://vici.org/vici/2622/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace678.html'>TPPlace678</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.919918, 46.830738]}}, {"type": "Feature", "properties": {"id": "TPPlace679", "name": "Aqvis Nisincii", "desc": "Saint-Honor\u00e9-les-Bains<br>Vici.org: <a href='https://vici.org/vici/2623/'>https://vici.org/vici/2623/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace679.html'>TPPlace679</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.839562, 46.904617]}}, {"type": "Feature", "properties": {"id": "TPPlace680", "name": "Boxvm", "desc": "Bibracte<br>Vici.org: <a href='https://vici.org/vici/2624/'>https://vici.org/vici/2624/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace680.html'>TPPlace680</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.037221, 46.921394]}}, {"type": "Feature", "properties": {"id": "TPPlace681", "name": "Cabillione", "desc": "Chalons-sur-Sa\u00f3ne<br>Vici.org: <a href='https://vici.org/vici/2625/'>https://vici.org/vici/2625/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace681.html'>TPPlace681</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.843838, 46.781937]}}, {"type": "Feature", "properties": {"id": "TPPlace685", "name": "TELONNO", "desc": "Toulon-sur-Arroux<br>Vici.org: <a href='https://vici.org/vici/2626/'>https://vici.org/vici/2626/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace685.html'>TPPlace685</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.138813, 46.694225]}}, {"type": "Feature", "properties": {"id": "TPPlace686", "name": "Gesocribate", "desc": "Brest<br>Vici.org: <a href='https://vici.org/vici/2627/'>https://vici.org/vici/2627/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace686.html'>TPPlace686</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-4.486901, 48.390602]}}, {"type": "Feature", "properties": {"id": "TPPlace687", "name": "VORGIVM", "desc": "Carhaix-Plouger<br>Vici.org: <a href='https://vici.org/vici/2628/'>https://vici.org/vici/2628/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace687.html'>TPPlace687</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-3.571141, 48.276501]}}, {"type": "Feature", "properties": {"id": "TPPlace688", "name": "Svlim", "desc": "Castennec<br>Vici.org: <a href='https://vici.org/vici/2629/'>https://vici.org/vici/2629/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace688.html'>TPPlace688</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-3.046434, 47.98217]}}, {"type": "Feature", "properties": {"id": "TPPlace689", "name": "Dartoritvm", "desc": "Vannes<br>Vici.org: <a href='https://vici.org/vici/2630/'>https://vici.org/vici/2630/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace689.html'>TPPlace689</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-2.759521, 47.654903]}}, {"type": "Feature", "properties": {"id": "TPPlace690", "name": "Dvretie", "desc": "Rieux<br>Vici.org: <a href='https://vici.org/vici/2631/'>https://vici.org/vici/2631/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace690.html'>TPPlace690</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-2.107913, 47.598053]}}, {"type": "Feature", "properties": {"id": "TPPlace691", "name": "Portvnamnetv", "desc": "Nantes<br>Vici.org: <a href='https://vici.org/vici/2632/'>https://vici.org/vici/2632/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace691.html'>TPPlace691</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.556744, 47.216843]}}, {"type": "Feature", "properties": {"id": "TPPlace693", "name": "Lemvno", "desc": "Poitiers<br>Vici.org: <a href='https://vici.org/vici/2633/'>https://vici.org/vici/2633/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace693.html'>TPPlace693</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.342648, 46.586987]}}, {"type": "Feature", "properties": {"id": "TPPlace695", "name": "Argantomago", "desc": "Saint-Marcel<br>Vici.org: <a href='https://vici.org/vici/2634/'>https://vici.org/vici/2634/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace695.html'>TPPlace695</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.515523, 46.599953]}}, {"type": "Feature", "properties": {"id": "TPPlace698", "name": "Blavia", "desc": "Blaye<br>Vici.org: <a href='https://vici.org/vici/2635/'>https://vici.org/vici/2635/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace698.html'>TPPlace698</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.661439, 45.129066]}}, {"type": "Feature", "properties": {"id": "TPPlace699", "name": "Lamnv\u0304", "desc": "Talmont-sur-Gironde<br>Vici.org: <a href='https://vici.org/vici/2636/'>https://vici.org/vici/2636/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace699.html'>TPPlace699</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.908342, 45.534801]}}, {"type": "Feature", "properties": {"id": "TPPlace700", "name": "Mediolano Sancorvm", "desc": "Saintes<br>Vici.org: <a href='https://vici.org/vici/2637/'>https://vici.org/vici/2637/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace700.html'>TPPlace700</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.637109, 45.747437]}}, {"type": "Feature", "properties": {"id": "TPPlace701", "name": "Avedonnaco", "desc": "Aulnay<br>Vici.org: <a href='https://vici.org/vici/2638/'>https://vici.org/vici/2638/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace701.html'>TPPlace701</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.3473, 46.020603]}}, {"type": "Feature", "properties": {"id": "TPPlace702", "name": "Condate", "desc": "Merpins<br>Vici.org: <a href='https://vici.org/vici/2639/'>https://vici.org/vici/2639/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace702.html'>TPPlace702</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.356848, 45.674801]}}, {"type": "Feature", "properties": {"id": "TPPlace703", "name": "Sarrvm", "desc": "? Charmant<br>Vici.org: <a href='https://vici.org/vici/2640/'>https://vici.org/vici/2640/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace703.html'>TPPlace703</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.184434, 45.495968]}}, {"type": "Feature", "properties": {"id": "TPPlace704", "name": "Vesonna", "desc": "P\u00e9rigueux<br>Vici.org: <a href='https://vici.org/vici/2641/'>https://vici.org/vici/2641/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace704.html'>TPPlace704</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.721835, 45.186798]}}, {"type": "Feature", "properties": {"id": "TPPlace705", "name": "Brigiosvm", "desc": "Brioux-sur-Boutonne<br>Vici.org: <a href='https://vici.org/vici/2642/'>https://vici.org/vici/2642/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace705.html'>TPPlace705</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.219931, 46.141121]}}, {"type": "Feature", "properties": {"id": "TPPlace706", "name": "Sermanicomago", "desc": "Saint-Cybardeaux<br>Vici.org: <a href='https://vici.org/vici/2643/'>https://vici.org/vici/2643/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace706.html'>TPPlace706</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.031714, 45.767174]}}, {"type": "Feature", "properties": {"id": "TPPlace707", "name": "Cassinomago", "desc": "Chassenon<br>Vici.org: <a href='https://vici.org/vici/2644/'>https://vici.org/vici/2644/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace707.html'>TPPlace707</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.765491, 45.851398]}}, {"type": "Feature", "properties": {"id": "TPPlace708", "name": "Avsrito", "desc": "Limoges, Augustoritum Limovicum<br>Vici.org: <a href='https://vici.org/vici/2645/'>https://vici.org/vici/2645/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace708.html'>TPPlace708</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.262119, 45.828163]}}, {"type": "Feature", "properties": {"id": "TPPlace709", "name": "Raravna", "desc": "Rom<br>Vici.org: <a href='https://vici.org/vici/2646/'>https://vici.org/vici/2646/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace709.html'>TPPlace709</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.115685, 46.292927]}}, {"type": "Feature", "properties": {"id": "TPPlace710", "name": "Viratedo", "desc": "Vayres<br>Vici.org: <a href='https://vici.org/vici/2647/'>https://vici.org/vici/2647/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace710.html'>TPPlace710</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.318717, 44.896915]}}, {"type": "Feature", "properties": {"id": "TPPlace711", "name": "Corterate", "desc": "Coutras<br>Vici.org: <a href='https://vici.org/vici/2648/'>https://vici.org/vici/2648/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace711.html'>TPPlace711</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.130282, 45.041046]}}, {"type": "Feature", "properties": {"id": "TPPlace715", "name": "Pretorio", "desc": "Saint-Goussaud<br>Vici.org: <a href='https://vici.org/vici/2649/'>https://vici.org/vici/2649/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace715.html'>TPPlace715</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.576596, 46.040798]}}, {"type": "Feature", "properties": {"id": "TPPlace716", "name": "Alerta", "desc": "Ardentes<br>Vici.org: <a href='https://vici.org/vici/2650/'>https://vici.org/vici/2650/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace716.html'>TPPlace716</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.831354, 46.741943]}}, {"type": "Feature", "properties": {"id": "TPPlace717", "name": "Mediolano", "desc": "Ch\u00e2teaumeillant<br>Vici.org: <a href='https://vici.org/vici/2651/'>https://vici.org/vici/2651/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace717.html'>TPPlace717</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.202046, 46.561916]}}, {"type": "Feature", "properties": {"id": "TPPlace718", "name": "Aqvis Neri", "desc": "N\u00e9ris-les-Bains<br>Vici.org: <a href='https://vici.org/vici/2652/'>https://vici.org/vici/2652/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace718.html'>TPPlace718</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.66122, 46.287743]}}, {"type": "Feature", "properties": {"id": "TPPlace719", "name": "Cantilia", "desc": "Chantelle<br>Vici.org: <a href='https://vici.org/vici/2653/'>https://vici.org/vici/2653/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace719.html'>TPPlace719</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.153309, 46.239887]}}, {"type": "Feature", "properties": {"id": "TPPlace720", "name": "Avg\u0304 Nemeto", "desc": "Clermont-Ferrand<br>Vici.org: <a href='https://vici.org/vici/2654/'>https://vici.org/vici/2654/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace720.html'>TPPlace720</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.082418, 45.777168]}}, {"type": "Feature", "properties": {"id": "TPPlace721", "name": "Acitodonvm", "desc": "Ahun<br>Vici.org: <a href='https://vici.org/vici/2655/'>https://vici.org/vici/2655/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace721.html'>TPPlace721</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.045175, 46.086952]}}, {"type": "Feature", "properties": {"id": "TPPlace724", "name": "Aqvis Calidis", "desc": "Vichy<br>Vici.org: <a href='https://vici.org/vici/2656/'>https://vici.org/vici/2656/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace724.html'>TPPlace724</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.422397, 46.123066]}}, {"type": "Feature", "properties": {"id": "TPPlace725", "name": "Vorogio", "desc": "? Varennes-sur-Allier<br>Vici.org: <a href='https://vici.org/vici/2657/'>https://vici.org/vici/2657/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace725.html'>TPPlace725</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.402618, 46.312012]}}, {"type": "Feature", "properties": {"id": "TPPlace726", "name": "Ariolica", "desc": "? La Pacaudi\u00e8re <br>Vici.org: <a href='https://vici.org/vici/2658/'>https://vici.org/vici/2658/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace726.html'>TPPlace726</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.867837, 46.17527]}}, {"type": "Feature", "properties": {"id": "TPPlace727", "name": "Roidomna", "desc": "Rouannne<br>Vici.org: <a href='https://vici.org/vici/2659/'>https://vici.org/vici/2659/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace727.html'>TPPlace727</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.071868, 46.039181]}}, {"type": "Feature", "properties": {"id": "TPPlace728", "name": "Mediolano", "desc": "Amions<br>Vici.org: <a href='https://vici.org/vici/2660/'>https://vici.org/vici/2660/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace728.html'>TPPlace728</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.033871, 45.87746]}}, {"type": "Feature", "properties": {"id": "TPPlace729", "name": "Foro Segvstavarv\u0304", "desc": "Feurs<br>Vici.org: <a href='https://vici.org/vici/2661/'>https://vici.org/vici/2661/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace729.html'>TPPlace729</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.222161, 45.744335]}}, {"type": "Feature", "properties": {"id": "TPPlace730", "name": "Lvgdvno capvt Galliarvm", "desc": "Lyon, Lvgdvno capvt Galliarvm vsqve hic legas<br>Vici.org: <a href='https://vici.org/vici/2662/'>https://vici.org/vici/2662/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace730.html'>TPPlace730</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.834329, 45.7673]}}, {"type": "Feature", "properties": {"id": "TPPlace732", "name": "Vesvbio", "desc": "Le Mas-d'Agenais<br>Vici.org: <a href='https://vici.org/vici/2663/'>https://vici.org/vici/2663/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace732.html'>TPPlace732</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.218938, 44.409447]}}, {"type": "Feature", "properties": {"id": "TPPlace735", "name": "Aginnvm", "desc": "Agen<br>Vici.org: <a href='https://vici.org/vici/2664/'>https://vici.org/vici/2664/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace735.html'>TPPlace735</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.612095, 44.201492]}}, {"type": "Feature", "properties": {"id": "TPPlace736", "name": "Excisvm", "desc": "Villeneuve-sur-Lot<br>Vici.org: <a href='https://vici.org/vici/2665/'>https://vici.org/vici/2665/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace736.html'>TPPlace736</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.707825, 44.406586]}}, {"type": "Feature", "properties": {"id": "TPPlace737", "name": "Diolindvm", "desc": "Duravel<br>Vici.org: <a href='https://vici.org/vici/2666/'>https://vici.org/vici/2666/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace737.html'>TPPlace737</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.081413, 44.516048]}}, {"type": "Feature", "properties": {"id": "TPPlace738", "name": "Bibona", "desc": "Cahors, Divona Cadureorum<br>Vici.org: <a href='https://vici.org/vici/2667/'>https://vici.org/vici/2667/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace738.html'>TPPlace738</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.441466, 44.445629]}}, {"type": "Feature", "properties": {"id": "TPPlace739", "name": "Varadeto", "desc": "Varaire<br>Vici.org: <a href='https://vici.org/vici/2668/'>https://vici.org/vici/2668/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace739.html'>TPPlace739</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.722973, 44.357059]}}, {"type": "Feature", "properties": {"id": "TPPlace740", "name": "Carantomago", "desc": "Compolibat<br>Vici.org: <a href='https://vici.org/vici/2669/'>https://vici.org/vici/2669/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace740.html'>TPPlace740</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.194646, 44.377811]}}, {"type": "Feature", "properties": {"id": "TPPlace741", "name": "Segodvni", "desc": "Rodez<br>Vici.org: <a href='https://vici.org/vici/2670/'>https://vici.org/vici/2670/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace741.html'>TPPlace741</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.573599, 44.351093]}}, {"type": "Feature", "properties": {"id": "TPPlace742", "name": "Adsilanvm", "desc": "Nasbinals<br>Vici.org: <a href='https://vici.org/vici/2671/'>https://vici.org/vici/2671/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace742.html'>TPPlace742</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.046159, 44.664738]}}, {"type": "Feature", "properties": {"id": "TPPlace743", "name": "Anderitvm", "desc": "Javols<br>Vici.org: <a href='https://vici.org/vici/2672/'>https://vici.org/vici/2672/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace743.html'>TPPlace743</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.342675, 44.693871]}}, {"type": "Feature", "properties": {"id": "TPPlace744", "name": "Condate", "desc": "Chapeauroux<br>Vici.org: <a href='https://vici.org/vici/2673/'>https://vici.org/vici/2673/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace744.html'>TPPlace744</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.737751, 44.837479]}}, {"type": "Feature", "properties": {"id": "TPPlace745", "name": "Revessione", "desc": "Saint-Paulien<br>Vici.org: <a href='https://vici.org/vici/2674/'>https://vici.org/vici/2674/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace745.html'>TPPlace745</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.811924, 45.135468]}}, {"type": "Feature", "properties": {"id": "TPPlace746", "name": "Icidmago", "desc": "Usson-en-Forez<br>Vici.org: <a href='https://vici.org/vici/2675/'>https://vici.org/vici/2675/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace746.html'>TPPlace746</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.94197, 45.389324]}}, {"type": "Feature", "properties": {"id": "TPPlace747", "name": "Aqvis Segete", "desc": "Moingt<br>Vici.org: <a href='https://vici.org/vici/2676/'>https://vici.org/vici/2676/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace747.html'>TPPlace747</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.064747, 45.608841]}}, {"type": "Feature", "properties": {"id": "TPPlace748", "name": "Condatomago", "desc": "Millau<br>Vici.org: <a href='https://vici.org/vici/2677/'>https://vici.org/vici/2677/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace748.html'>TPPlace748</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.081268, 44.099583]}}, {"type": "Feature", "properties": {"id": "TPPlace749", "name": "Loteva", "desc": "Lod\u00e8ve<br>Vici.org: <a href='https://vici.org/vici/2678/'>https://vici.org/vici/2678/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace749.html'>TPPlace749</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.323305, 43.731026]}}, {"type": "Feature", "properties": {"id": "TPPlace750", "name": "Cesse Rone", "desc": "Saint-Thib\u00e9ry<br>Vici.org: <a href='https://vici.org/vici/2679/'>https://vici.org/vici/2679/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace750.html'>TPPlace750</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.420558, 43.395077]}}, {"type": "Feature", "properties": {"id": "TPPlace751", "name": "Elvsa", "desc": "Eauze<br>Vici.org: <a href='https://vici.org/vici/2680/'>https://vici.org/vici/2680/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace751.html'>TPPlace751</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.103187, 43.861122]}}, {"type": "Feature", "properties": {"id": "TPPlace752", "name": "Besino", "desc": "Vic-Fezensac<br>Vici.org: <a href='https://vici.org/vici/2681/'>https://vici.org/vici/2681/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace752.html'>TPPlace752</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.302636, 43.759144]}}, {"type": "Feature", "properties": {"id": "TPPlace753", "name": "Eliberre", "desc": "Auch<br>Vici.org: <a href='https://vici.org/vici/2682/'>https://vici.org/vici/2682/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace753.html'>TPPlace753</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.58516, 43.647663]}}, {"type": "Feature", "properties": {"id": "TPPlace754", "name": "Casinomago", "desc": "Gimont<br>Vici.org: <a href='https://vici.org/vici/2683/'>https://vici.org/vici/2683/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace754.html'>TPPlace754</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.877004, 43.627541]}}, {"type": "Feature", "properties": {"id": "TPPlace755", "name": "Tolosa", "desc": "Toulouse<br>Vici.org: <a href='https://vici.org/vici/2684/'>https://vici.org/vici/2684/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace755.html'>TPPlace755</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.442951, 43.604362]}}, {"type": "Feature", "properties": {"id": "TPPlace926", "name": "Vidvbia", "desc": "Nuits-Saint-Georges<br>Vici.org: <a href='https://vici.org/vici/2685/'>https://vici.org/vici/2685/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace926.html'>TPPlace926</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.950886, 47.138359]}}, {"type": "Feature", "properties": {"id": "TPPlace757", "name": "Lactora", "desc": "Lectoure<br>Vici.org: <a href='https://vici.org/vici/2686/'>https://vici.org/vici/2686/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace757.html'>TPPlace757</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.619805, 43.933998]}}, {"type": "Feature", "properties": {"id": "TPPlace759", "name": "Cosa", "desc": "Albias<br>Vici.org: <a href='https://vici.org/vici/2687/'>https://vici.org/vici/2687/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace759.html'>TPPlace759</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.449339, 44.091152]}}, {"type": "Feature", "properties": {"id": "TPPlace762", "name": "Ebvromagi", "desc": "Bram<br>Vici.org: <a href='https://vici.org/vici/2688/'>https://vici.org/vici/2688/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace762.html'>TPPlace762</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.110688, 43.24308]}}, {"type": "Feature", "properties": {"id": "TPPlace763", "name": "Carcassione", "desc": "Casrcassonne<br>Vici.org: <a href='https://vici.org/vici/2689/'>https://vici.org/vici/2689/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace763.html'>TPPlace763</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.3561, 43.212605]}}, {"type": "Feature", "properties": {"id": "TPPlace764", "name": "Liviana", "desc": "Douzens<br>Vici.org: <a href='https://vici.org/vici/2690/'>https://vici.org/vici/2690/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace764.html'>TPPlace764</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.59833, 43.185917]}}, {"type": "Feature", "properties": {"id": "TPPlace765", "name": "Vsverva", "desc": "L\u00e9zignan<br>Vici.org: <a href='https://vici.org/vici/2691/'>https://vici.org/vici/2691/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace765.html'>TPPlace765</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.759971, 43.201653]}}, {"type": "Feature", "properties": {"id": "TPPlace766", "name": "Narbone", "desc": "Narbonne<br>Vici.org: <a href='https://vici.org/vici/2692/'>https://vici.org/vici/2692/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace766.html'>TPPlace766</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.004192, 43.183567]}}, {"type": "Feature", "properties": {"id": "TPPlace767", "name": "Aqvis Convenarvm", "desc": "Bagn\u00e8res-de-Bigorre, Aquae Convenarum<br>Vici.org: <a href='https://vici.org/vici/2693/'>https://vici.org/vici/2693/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace767.html'>TPPlace767</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.150121, 43.065136]}}, {"type": "Feature", "properties": {"id": "TPPlace768", "name": "Lugdunum Convenarum", "desc": "Saint-Bertrand-de-Comminges<br>Vici.org: <a href='https://vici.org/vici/2694/'>https://vici.org/vici/2694/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace768.html'>TPPlace768</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.570853, 43.026875]}}, {"type": "Feature", "properties": {"id": "TPPlace771", "name": "Cenviana", "desc": "Cinniana<br>Vici.org: <a href='https://vici.org/vici/2695/'>https://vici.org/vici/2695/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace771.html'>TPPlace771</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.910473, 42.066067]}}, {"type": "Feature", "properties": {"id": "TPPlace774", "name": "Insvmmo Pyreneo", "desc": "Le Perthus<br>Vici.org: <a href='https://vici.org/vici/2696/'>https://vici.org/vici/2696/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace774.html'>TPPlace774</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.857792, 42.454468]}}, {"type": "Feature", "properties": {"id": "TPPlace775", "name": "Adcentenarivm", "desc": "Le Boulou<br>Vici.org: <a href='https://vici.org/vici/2697/'>https://vici.org/vici/2697/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace775.html'>TPPlace775</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.833971, 42.524334]}}, {"type": "Feature", "properties": {"id": "TPPlace776", "name": "Illiberre", "desc": "Elne<br>Vici.org: <a href='https://vici.org/vici/2698/'>https://vici.org/vici/2698/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace776.html'>TPPlace776</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.972645, 42.599491]}}, {"type": "Feature", "properties": {"id": "TPPlace777", "name": "Rvscione", "desc": "Ch\u00e2teau Roussillon<br>Vici.org: <a href='https://vici.org/vici/2699/'>https://vici.org/vici/2699/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace777.html'>TPPlace777</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.946568, 42.711105]}}, {"type": "Feature", "properties": {"id": "TPPlace778", "name": "Beteris", "desc": "B\u00e9ziers<br>Vici.org: <a href='https://vici.org/vici/2700/'>https://vici.org/vici/2700/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace778.html'>TPPlace778</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.217816, 43.341629]}}, {"type": "Feature", "properties": {"id": "TPPlace779", "name": "Foro Domitii", "desc": "Montbazin<br>Vici.org: <a href='https://vici.org/vici/2701/'>https://vici.org/vici/2701/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace779.html'>TPPlace779</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.692315, 43.515755]}}, {"type": "Feature", "properties": {"id": "TPPlace77", "name": "Thvbvrbiminvs", "desc": "Tebourba<br>Vici.org: <a href='https://vici.org/vici/2702/'>https://vici.org/vici/2702/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace77.html'>TPPlace77</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.833333, 36.833332]}}, {"type": "Feature", "properties": {"id": "TPPlace780", "name": "Sextatione", "desc": "Castelnau-le-Lez<br>Vici.org: <a href='https://vici.org/vici/2703/'>https://vici.org/vici/2703/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace780.html'>TPPlace780</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.895658, 43.633171]}}, {"type": "Feature", "properties": {"id": "TPPlace781", "name": "Ambrvsiv\u0304", "desc": "~ Lunel<br>Vici.org: <a href='https://vici.org/vici/2704/'>https://vici.org/vici/2704/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace781.html'>TPPlace781</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.138053, 43.675739]}}, {"type": "Feature", "properties": {"id": "TPPlace782", "name": "Nemvso", "desc": "N\u00eemes<br>Vici.org: <a href='https://vici.org/vici/2705/'>https://vici.org/vici/2705/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace782.html'>TPPlace782</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.360864, 43.834591]}}, {"type": "Feature", "properties": {"id": "TPPlace783", "name": "VGERNO", "desc": "Beaucaire<br>Vici.org: <a href='https://vici.org/vici/2706/'>https://vici.org/vici/2706/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace783.html'>TPPlace783</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.635468, 43.811352]}}, {"type": "Feature", "properties": {"id": "TPPlace784", "name": "Arelato", "desc": "Arles<br>Vici.org: <a href='https://vici.org/vici/2707/'>https://vici.org/vici/2707/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace784.html'>TPPlace784</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.627804, 43.676651]}}, {"type": "Feature", "properties": {"id": "TPPlace785", "name": "Ernagina", "desc": "~ Tarascon<br>Vici.org: <a href='https://vici.org/vici/2708/'>https://vici.org/vici/2708/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace785.html'>TPPlace785</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.692892, 43.767422]}}, {"type": "Feature", "properties": {"id": "TPPlace786", "name": "Avennione", "desc": "Avignon<br>Vici.org: <a href='https://vici.org/vici/2709/'>https://vici.org/vici/2709/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace786.html'>TPPlace786</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.805967, 43.948612]}}, {"type": "Feature", "properties": {"id": "TPPlace788", "name": "Senomago", "desc": "Boll\u00e8ne<br>Vici.org: <a href='https://vici.org/vici/2710/'>https://vici.org/vici/2710/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace788.html'>TPPlace788</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.751631, 44.279205]}}, {"type": "Feature", "properties": {"id": "TPPlace789", "name": "Acvnvm", "desc": "Mont\u00e9limar<br>Vici.org: <a href='https://vici.org/vici/2711/'>https://vici.org/vici/2711/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace789.html'>TPPlace789</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.75093, 44.558689]}}, {"type": "Feature", "properties": {"id": "TPPlace790", "name": "Batiana", "desc": "Saulce-sur-Rhone<br>Vici.org: <a href='https://vici.org/vici/2712/'>https://vici.org/vici/2712/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace790.html'>TPPlace790</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.799457, 44.703785]}}, {"type": "Feature", "properties": {"id": "TPPlace791", "name": "Valentia", "desc": "Valence<br>Vici.org: <a href='https://vici.org/vici/2713/'>https://vici.org/vici/2713/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace791.html'>TPPlace791</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.889941, 44.929901]}}, {"type": "Feature", "properties": {"id": "TPPlace792", "name": "Clano", "desc": "Saint-R\u00e9my-de-Provence, Glanum<br>Vici.org: <a href='https://vici.org/vici/2714/'>https://vici.org/vici/2714/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace792.html'>TPPlace792</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.830037, 43.788589]}}, {"type": "Feature", "properties": {"id": "TPPlace794", "name": "Adfines", "desc": "Goult<br>Vici.org: <a href='https://vici.org/vici/2715/'>https://vici.org/vici/2715/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace794.html'>TPPlace794</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.244074, 43.863003]}}, {"type": "Feature", "properties": {"id": "TPPlace796", "name": "Catviacia", "desc": "C\u00e9reste<br>Vici.org: <a href='https://vici.org/vici/2716/'>https://vici.org/vici/2716/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace796.html'>TPPlace796</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.590084, 43.856312]}}, {"type": "Feature", "properties": {"id": "TPPlace797", "name": "Alavnio", "desc": "~ Lurs<br>Vici.org: <a href='https://vici.org/vici/2717/'>https://vici.org/vici/2717/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace797.html'>TPPlace797</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.89005, 43.968849]}}, {"type": "Feature", "properties": {"id": "TPPlace798", "name": "Segvsterone", "desc": "Sisteron<br>Vici.org: <a href='https://vici.org/vici/2718/'>https://vici.org/vici/2718/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace798.html'>TPPlace798</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.943559, 44.197155]}}, {"type": "Feature", "properties": {"id": "TPPlace7", "name": "Rvsvccvrv colon\u0304", "desc": "Dellys | Tigzirt<br>Vici.org: <a href='https://vici.org/vici/2719/'>https://vici.org/vici/2719/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace7.html'>TPPlace7</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.891396, 36.919552]}}, {"type": "Feature", "properties": {"id": "TPPlace800", "name": "Alarante", "desc": "Mon\u00eatier-Allemont<br>Vici.org: <a href='https://vici.org/vici/2720/'>https://vici.org/vici/2720/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace800.html'>TPPlace800</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.944, 44.385941]}}, {"type": "Feature", "properties": {"id": "TPPlace803", "name": "Ictodvrv\u0304", "desc": "La B\u00e2tie-Neuve<br>Vici.org: <a href='https://vici.org/vici/2721/'>https://vici.org/vici/2721/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace803.html'>TPPlace803</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.195708, 44.565571]}}, {"type": "Feature", "properties": {"id": "TPPlace804", "name": "Catorigomago", "desc": "Chorges<br>Vici.org: <a href='https://vici.org/vici/2722/'>https://vici.org/vici/2722/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace804.html'>TPPlace804</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.278282, 44.545074]}}, {"type": "Feature", "properties": {"id": "TPPlace805", "name": "Ebvrvno", "desc": "Embrun<br>Vici.org: <a href='https://vici.org/vici/2723/'>https://vici.org/vici/2723/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace805.html'>TPPlace805</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.496891, 44.565643]}}, {"type": "Feature", "properties": {"id": "TPPlace806", "name": "Rama", "desc": "Rame<br>Vici.org: <a href='https://vici.org/vici/2724/'>https://vici.org/vici/2724/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace806.html'>TPPlace806</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.57861, 44.747574]}}, {"type": "Feature", "properties": {"id": "TPPlace807", "name": "Vigenna", "desc": "Vienne<br>Vici.org: <a href='https://vici.org/vici/2725/'>https://vici.org/vici/2725/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace807.html'>TPPlace807</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.878902, 45.528549]}}, {"type": "Feature", "properties": {"id": "TPPlace808", "name": "Bergvsivm", "desc": "Bourgoin-Jallieu<br>Vici.org: <a href='https://vici.org/vici/2726/'>https://vici.org/vici/2726/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace808.html'>TPPlace808</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.276808, 45.585934]}}, {"type": "Feature", "properties": {"id": "TPPlace809", "name": "Avgvstvm", "desc": "Aoste<br>Vici.org: <a href='https://vici.org/vici/2727/'>https://vici.org/vici/2727/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace809.html'>TPPlace809</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.607319, 45.587616]}}, {"type": "Feature", "properties": {"id": "TPPlace810", "name": "Tvrenonno", "desc": "Revel-Tourdan, Turedonnum<br>Vici.org: <a href='https://vici.org/vici/2728/'>https://vici.org/vici/2728/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace810.html'>TPPlace810</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.036271, 45.383862]}}, {"type": "Feature", "properties": {"id": "TPPlace811", "name": "Morginno", "desc": "Moirans<br>Vici.org: <a href='https://vici.org/vici/2729/'>https://vici.org/vici/2729/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace811.html'>TPPlace811</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.564526, 45.326893]}}, {"type": "Feature", "properties": {"id": "TPPlace812", "name": "Cvlabone", "desc": "Grenoble<br>Vici.org: <a href='https://vici.org/vici/2730/'>https://vici.org/vici/2730/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace812.html'>TPPlace812</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.731634, 45.194279]}}, {"type": "Feature", "properties": {"id": "TPPlace815", "name": "Dvrotinco", "desc": "Villar-d'Ar\u00eane<br>Vici.org: <a href='https://vici.org/vici/2731/'>https://vici.org/vici/2731/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace815.html'>TPPlace815</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.33588, 45.042591]}}, {"type": "Feature", "properties": {"id": "TPPlace816", "name": "Stabatione", "desc": "Le Mon\u00eatier-les-Bains<br>Vici.org: <a href='https://vici.org/vici/2732/'>https://vici.org/vici/2732/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace816.html'>TPPlace816</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.507809, 44.975864]}}, {"type": "Feature", "properties": {"id": "TPPlace817", "name": "In Alpe Cottia", "desc": "~Montgen\u00e8vre<br>Vici.org: <a href='https://vici.org/vici/2733/'>https://vici.org/vici/2733/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace817.html'>TPPlace817</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.723396, 44.930973]}}, {"type": "Feature", "properties": {"id": "TPPlace818", "name": "Figlinis", "desc": "Saint-Rambert-d'Albon<br>Vici.org: <a href='https://vici.org/vici/2734/'>https://vici.org/vici/2734/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace818.html'>TPPlace818</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.814211, 45.290844]}}, {"type": "Feature", "properties": {"id": "TPPlace819", "name": "Tegna", "desc": "Tain-l\u2019Hermitage<br>Vici.org: <a href='https://vici.org/vici/2735/'>https://vici.org/vici/2735/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace819.html'>TPPlace819</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.839174, 45.069859]}}, {"type": "Feature", "properties": {"id": "TPPlace820", "name": "Avgvstvm", "desc": "Aouste-sur-Sye<br>Vici.org: <a href='https://vici.org/vici/2736/'>https://vici.org/vici/2736/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace820.html'>TPPlace820</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.057358, 44.715618]}}, {"type": "Feature", "properties": {"id": "TPPlace821", "name": "Bocontiorvm ADDEAM", "desc": "Die, Ad Deam Bocontiorum<br>Vici.org: <a href='https://vici.org/vici/2737/'>https://vici.org/vici/2737/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace821.html'>TPPlace821</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.370741, 44.751038]}}, {"type": "Feature", "properties": {"id": "TPPlace822", "name": "Lvco", "desc": "Luc-en-Diois<br>Vici.org: <a href='https://vici.org/vici/2738/'>https://vici.org/vici/2738/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace822.html'>TPPlace822</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.451479, 44.615742]}}, {"type": "Feature", "properties": {"id": "TPPlace825", "name": "Brigantione", "desc": "Brian\u00e7on<br>Vici.org: <a href='https://vici.org/vici/2739/'>https://vici.org/vici/2739/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace825.html'>TPPlace825</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.634159, 44.896915]}}, {"type": "Feature", "properties": {"id": "TPPlace828", "name": "Segvsione", "desc": "Susa<br>Vici.org: <a href='https://vici.org/vici/2740/'>https://vici.org/vici/2740/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace828.html'>TPPlace828</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.048731, 45.139465]}}, {"type": "Feature", "properties": {"id": "TPPlace82", "name": "Eqvezeto", "desc": "El Hammadia<br>Vici.org: <a href='https://vici.org/vici/2741/'>https://vici.org/vici/2741/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace82.html'>TPPlace82</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.74742, 35.979221]}}, {"type": "Feature", "properties": {"id": "TPPlace830", "name": "Avgvsta Tavrinorvm", "desc": "Torino, Julia Augusta Taurinorum<br>Vici.org: <a href='https://vici.org/vici/2742/'>https://vici.org/vici/2742/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace830.html'>TPPlace830</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.686619, 45.07056]}}, {"type": "Feature", "properties": {"id": "TPPlace832", "name": "Pisavis", "desc": "Salon-en-Provence<br>Vici.org: <a href='https://vici.org/vici/2743/'>https://vici.org/vici/2743/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace832.html'>TPPlace832</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.126107, 43.628551]}}, {"type": "Feature", "properties": {"id": "TPPlace834", "name": "Reis Apollinaris", "desc": "Riez<br>Vici.org: <a href='https://vici.org/vici/2744/'>https://vici.org/vici/2744/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace834.html'>TPPlace834</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.092427, 43.817806]}}, {"type": "Feature", "properties": {"id": "TPPlace835", "name": "Anteis", "desc": "Draguignan<br>Vici.org: <a href='https://vici.org/vici/2745/'>https://vici.org/vici/2745/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace835.html'>TPPlace835</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.464732, 43.541096]}}, {"type": "Feature", "properties": {"id": "TPPlace836", "name": "Foro Voconi", "desc": "Vidauban<br>Vici.org: <a href='https://vici.org/vici/2746/'>https://vici.org/vici/2746/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace836.html'>TPPlace836</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.43116, 43.427322]}}, {"type": "Feature", "properties": {"id": "TPPlace837", "name": "Foro ivlii", "desc": "Fr\u00e9jus<br>Vici.org: <a href='https://vici.org/vici/2747/'>https://vici.org/vici/2747/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace837.html'>TPPlace837</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.73518, 43.432468]}}, {"type": "Feature", "properties": {"id": "TPPlace838", "name": "Fossis Marianis", "desc": "Fos-sur-Mer<br>Vici.org: <a href='https://vici.org/vici/2748/'>https://vici.org/vici/2748/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace838.html'>TPPlace838</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.943921, 43.437595]}}, {"type": "Feature", "properties": {"id": "TPPlace840", "name": "Masilia Grecorvm", "desc": "Marseille<br>Vici.org: <a href='https://vici.org/vici/2749/'>https://vici.org/vici/2749/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace840.html'>TPPlace840</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.381042, 43.297611]}}, {"type": "Feature", "properties": {"id": "TPPlace841", "name": "Tegvlata", "desc": "La Grande-Pugere<br>Vici.org: <a href='https://vici.org/vici/2750/'>https://vici.org/vici/2750/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace841.html'>TPPlace841</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.699721, 43.482155]}}, {"type": "Feature", "properties": {"id": "TPPlace842", "name": "Ad tvrrem", "desc": "Tourves<br>Vici.org: <a href='https://vici.org/vici/2751/'>https://vici.org/vici/2751/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace842.html'>TPPlace842</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.923991, 43.407909]}}, {"type": "Feature", "properties": {"id": "TPPlace843", "name": "Matavone", "desc": "Cabasse<br>Vici.org: <a href='https://vici.org/vici/2752/'>https://vici.org/vici/2752/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace843.html'>TPPlace843</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.221195, 43.426205]}}, {"type": "Feature", "properties": {"id": "TPPlace845", "name": "Antipoli", "desc": "Antibes<br>Vici.org: <a href='https://vici.org/vici/2753/'>https://vici.org/vici/2753/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace845.html'>TPPlace845</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.120872, 43.580723]}}, {"type": "Feature", "properties": {"id": "TPPlace846", "name": "Varvm", "desc": "Colomars<br>Vici.org: <a href='https://vici.org/vici/2754/'>https://vici.org/vici/2754/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace846.html'>TPPlace846</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.217954, 43.761631]}}, {"type": "Feature", "properties": {"id": "TPPlace847", "name": "Gemenello", "desc": "Cimiez<br>Vici.org: <a href='https://vici.org/vici/2755/'>https://vici.org/vici/2755/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace847.html'>TPPlace847</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.275398, 43.720661]}}, {"type": "Feature", "properties": {"id": "TPPlace848", "name": "In Alpe Maritima", "desc": "La Turbie<br>Vici.org: <a href='https://vici.org/vici/2756/'>https://vici.org/vici/2756/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace848.html'>TPPlace848</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.400836, 43.744846]}}, {"type": "Feature", "properties": {"id": "TPPlace849", "name": "Albentimillo", "desc": "Ventimiglia<br>Vici.org: <a href='https://vici.org/vici/2757/'>https://vici.org/vici/2757/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace849.html'>TPPlace849</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.607139, 43.790417]}}, {"type": "Feature", "properties": {"id": "TPPlace850", "name": "Costa Bellene", "desc": "Riva Ligure<br>Vici.org: <a href='https://vici.org/vici/2758/'>https://vici.org/vici/2758/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace850.html'>TPPlace850</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.880796, 43.838905]}}, {"type": "Feature", "properties": {"id": "TPPlace851", "name": "Lvco Boramni", "desc": "Diano Marina<br>Vici.org: <a href='https://vici.org/vici/2759/'>https://vici.org/vici/2759/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace851.html'>TPPlace851</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.081829, 43.909893]}}, {"type": "Feature", "properties": {"id": "TPPlace852", "name": "Albingavno", "desc": "Albenga<br>Vici.org: <a href='https://vici.org/vici/2760/'>https://vici.org/vici/2760/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace852.html'>TPPlace852</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.214959, 44.04845]}}, {"type": "Feature", "properties": {"id": "TPPlace853", "name": "Vadis Sabates", "desc": "Vado Ligure<br>Vici.org: <a href='https://vici.org/vici/2761/'>https://vici.org/vici/2761/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace853.html'>TPPlace853</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.435763, 44.269348]}}, {"type": "Feature", "properties": {"id": "TPPlace854", "name": "Calanico", "desc": "Carcare<br>Vici.org: <a href='https://vici.org/vici/2762/'>https://vici.org/vici/2762/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace854.html'>TPPlace854</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.290311, 44.357479]}}, {"type": "Feature", "properties": {"id": "TPPlace855", "name": "Crixia", "desc": "Piana Crixia<br>Vici.org: <a href='https://vici.org/vici/2763/'>https://vici.org/vici/2763/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace855.html'>TPPlace855</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.309241, 44.486111]}}, {"type": "Feature", "properties": {"id": "TPPlace856", "name": "Aqvis Tatelis", "desc": "Acqui Terme<br>Vici.org: <a href='https://vici.org/vici/2764/'>https://vici.org/vici/2764/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace856.html'>TPPlace856</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.470669, 44.675526]}}, {"type": "Feature", "properties": {"id": "TPPlace857", "name": "Alba Pompeia", "desc": "Alba<br>Vici.org: <a href='https://vici.org/vici/2765/'>https://vici.org/vici/2765/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace857.html'>TPPlace857</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.035259, 44.700863]}}, {"type": "Feature", "properties": {"id": "TPPlace858", "name": "Polentia", "desc": "Pollenzo<br>Vici.org: <a href='https://vici.org/vici/2766/'>https://vici.org/vici/2766/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace858.html'>TPPlace858</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.896013, 44.686836]}}, {"type": "Feature", "properties": {"id": "TPPlace859", "name": "Eporedia", "desc": "Ivrea<br>Vici.org: <a href='https://vici.org/vici/2767/'>https://vici.org/vici/2767/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace859.html'>TPPlace859</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.875945, 45.466606]}}, {"type": "Feature", "properties": {"id": "TPPlace861", "name": "Alba Docilia", "desc": "Albisola<br>Vici.org: <a href='https://vici.org/vici/2768/'>https://vici.org/vici/2768/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace861.html'>TPPlace861</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.510481, 44.340961]}}, {"type": "Feature", "properties": {"id": "TPPlace864", "name": "Adfiglinas", "desc": "Genova-Fegino<br>Vici.org: <a href='https://vici.org/vici/2769/'>https://vici.org/vici/2769/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace864.html'>TPPlace864</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.885091, 44.437946]}}, {"type": "Feature", "properties": {"id": "TPPlace866", "name": "Genva", "desc": "Genova<br>Vici.org: <a href='https://vici.org/vici/2770/'>https://vici.org/vici/2770/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace866.html'>TPPlace866</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.933989, 44.407063]}}, {"type": "Feature", "properties": {"id": "TPPlace868", "name": "Foro Fvlvi", "desc": "Villa del Foro<br>Vici.org: <a href='https://vici.org/vici/2771/'>https://vici.org/vici/2771/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace868.html'>TPPlace868</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.533611, 44.888294]}}, {"type": "Feature", "properties": {"id": "TPPlace869", "name": "Dertona", "desc": "Tortona<br>Vici.org: <a href='https://vici.org/vici/2772/'>https://vici.org/vici/2772/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace869.html'>TPPlace869</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.865485, 44.897171]}}, {"type": "Feature", "properties": {"id": "TPPlace86", "name": "Tamannvna Mvnicipivm et castellvm", "desc": "Toumella<br>Vici.org: <a href='https://vici.org/vici/2773/'>https://vici.org/vici/2773/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace86.html'>TPPlace86</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.039631, 35.962433]}}, {"type": "Feature", "properties": {"id": "TPPlace870", "name": "Libarnvm", "desc": "Libarna<br>Vici.org: <a href='https://vici.org/vici/2774/'>https://vici.org/vici/2774/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace870.html'>TPPlace870</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.860717, 44.711384]}}, {"type": "Feature", "properties": {"id": "TPPlace871", "name": "Bonnae", "desc": "Bonn<br>Vici.org: <a href='https://vici.org/vici/2775/'>https://vici.org/vici/2775/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace871.html'>TPPlace871</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.096311, 50.732704]}}, {"type": "Feature", "properties": {"id": "TPPlace872", "name": "Rigomagvs", "desc": "Remagen<br>Vici.org: <a href='https://vici.org/vici/2776/'>https://vici.org/vici/2776/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace872.html'>TPPlace872</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.226986, 50.578842]}}, {"type": "Feature", "properties": {"id": "TPPlace873", "name": "Antvnnaco", "desc": "Andernach<br>Vici.org: <a href='https://vici.org/vici/2777/'>https://vici.org/vici/2777/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace873.html'>TPPlace873</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.406155, 50.439194]}}, {"type": "Feature", "properties": {"id": "TPPlace874", "name": "Conflventes", "desc": "Koblenz<br>Vici.org: <a href='https://vici.org/vici/2778/'>https://vici.org/vici/2778/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace874.html'>TPPlace874</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.599617, 50.356697]}}, {"type": "Feature", "properties": {"id": "TPPlace875", "name": "Bontobrice", "desc": "Boppard<br>Vici.org: <a href='https://vici.org/vici/2779/'>https://vici.org/vici/2779/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace875.html'>TPPlace875</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.58813, 50.231728]}}, {"type": "Feature", "properties": {"id": "TPPlace876", "name": "Vosavia", "desc": "Oberwesel<br>Vici.org: <a href='https://vici.org/vici/2780/'>https://vici.org/vici/2780/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace876.html'>TPPlace876</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.726602, 50.107426]}}, {"type": "Feature", "properties": {"id": "TPPlace877", "name": "Bingiv\u0304", "desc": "Bingen<br>Vici.org: <a href='https://vici.org/vici/2781/'>https://vici.org/vici/2781/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace877.html'>TPPlace877</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.895665, 49.96899]}}, {"type": "Feature", "properties": {"id": "TPPlace878", "name": "Mogontiaco", "desc": "Mainz<br>Vici.org: <a href='https://vici.org/vici/2782/'>https://vici.org/vici/2782/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace878.html'>TPPlace878</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.267426, 49.995125]}}, {"type": "Feature", "properties": {"id": "TPPlace880", "name": "Borgetomagi", "desc": "Worms<br>Vici.org: <a href='https://vici.org/vici/2783/'>https://vici.org/vici/2783/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace880.html'>TPPlace880</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.357911, 49.630646]}}, {"type": "Feature", "properties": {"id": "TPPlace881", "name": "Noviomagvs", "desc": "Speyer<br>Vici.org: <a href='https://vici.org/vici/2784/'>https://vici.org/vici/2784/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace881.html'>TPPlace881</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.431007, 49.317284]}}, {"type": "Feature", "properties": {"id": "TPPlace882", "name": "Tabernis", "desc": "Rheinzabern, Tabernae Rhenanae<br>Vici.org: <a href='https://vici.org/vici/2785/'>https://vici.org/vici/2785/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace882.html'>TPPlace882</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.278079, 49.119305]}}, {"type": "Feature", "properties": {"id": "TPPlace883", "name": "Saletione", "desc": "Seltz<br>Vici.org: <a href='https://vici.org/vici/2786/'>https://vici.org/vici/2786/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace883.html'>TPPlace883</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.106214, 48.895065]}}, {"type": "Feature", "properties": {"id": "TPPlace884", "name": "Brocomacvs", "desc": "Brumath<br>Vici.org: <a href='https://vici.org/vici/2787/'>https://vici.org/vici/2787/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace884.html'>TPPlace884</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.711184, 48.730022]}}, {"type": "Feature", "properties": {"id": "TPPlace885", "name": "Argentorate", "desc": "Strasbourg<br>Vici.org: <a href='https://vici.org/vici/2788/'>https://vici.org/vici/2788/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace885.html'>TPPlace885</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.743749, 48.582932]}}, {"type": "Feature", "properties": {"id": "TPPlace886", "name": "Helellvm", "desc": "Ehl<br>Vici.org: <a href='https://vici.org/vici/2789/'>https://vici.org/vici/2789/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace886.html'>TPPlace886</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.616975, 48.373013]}}, {"type": "Feature", "properties": {"id": "TPPlace887", "name": "Argentovaria", "desc": "Horbourg-Wihr<br>Vici.org: <a href='https://vici.org/vici/2790/'>https://vici.org/vici/2790/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace887.html'>TPPlace887</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.393839, 48.081127]}}, {"type": "Feature", "properties": {"id": "TPPlace888", "name": "Cambete", "desc": "Kembs<br>Vici.org: <a href='https://vici.org/vici/2791/'>https://vici.org/vici/2791/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace888.html'>TPPlace888</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.503806, 47.690548]}}, {"type": "Feature", "properties": {"id": "TPPlace889", "name": "Arialbinnvm", "desc": "Allschwill<br>Vici.org: <a href='https://vici.org/vici/2792/'>https://vici.org/vici/2792/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace889.html'>TPPlace889</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.538112, 47.550587]}}, {"type": "Feature", "properties": {"id": "TPPlace890", "name": "Avgvsta Rvracvm", "desc": "Augst<br>Vici.org: <a href='https://vici.org/vici/2793/'>https://vici.org/vici/2793/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace890.html'>TPPlace890</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.716667, 47.533333]}}, {"type": "Feature", "properties": {"id": "TPPlace891", "name": "Vindonissa", "desc": "Windisch<br>Vici.org: <a href='https://vici.org/vici/2794/'>https://vici.org/vici/2794/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace891.html'>TPPlace891</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.21669, 47.477901]}}, {"type": "Feature", "properties": {"id": "TPPlace893", "name": "Marcomagvs", "desc": "Marmagen<br>Vici.org: <a href='https://vici.org/vici/2795/'>https://vici.org/vici/2795/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace893.html'>TPPlace893</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.621944, 50.477501]}}, {"type": "Feature", "properties": {"id": "TPPlace894", "name": "Icorigivm", "desc": "J\u00fcnkerath<br>Vici.org: <a href='https://vici.org/vici/2796/'>https://vici.org/vici/2796/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace894.html'>TPPlace894</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.573304, 50.348969]}}, {"type": "Feature", "properties": {"id": "TPPlace895", "name": "Avsava", "desc": "Oos<br>Vici.org: <a href='https://vici.org/vici/2797/'>https://vici.org/vici/2797/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace895.html'>TPPlace895</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.584487, 50.24157]}}, {"type": "Feature", "properties": {"id": "TPPlace896", "name": "Beda", "desc": "Bitburg<br>Vici.org: <a href='https://vici.org/vici/2798/'>https://vici.org/vici/2798/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace896.html'>TPPlace896</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.52271, 49.974033]}}, {"type": "Feature", "properties": {"id": "TPPlace897", "name": "Avg\u0304 Tresvirorvm", "desc": "Trier<br>Vici.org: <a href='https://vici.org/vici/2799/'>https://vici.org/vici/2799/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace897.html'>TPPlace897</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.646251, 49.753742]}}, {"type": "Feature", "properties": {"id": "TPPlace898", "name": "Noviomago", "desc": "Neumagen-Dhron<br>Vici.org: <a href='https://vici.org/vici/2800/'>https://vici.org/vici/2800/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace898.html'>TPPlace898</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.895123, 49.853832]}}, {"type": "Feature", "properties": {"id": "TPPlace899", "name": "Belginvm", "desc": "~ Hinzerath<br>Vici.org: <a href='https://vici.org/vici/2801/'>https://vici.org/vici/2801/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace899.html'>TPPlace899</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.164222, 49.866051]}}, {"type": "Feature", "properties": {"id": "TPPlace900", "name": "Dvmno", "desc": "Kirchberg/Hunsr\u00fcck, Dumnissus<br>Vici.org: <a href='https://vici.org/vici/2802/'>https://vici.org/vici/2802/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace900.html'>TPPlace900</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.407521, 49.943043]}}, {"type": "Feature", "properties": {"id": "TPPlace902", "name": "Catvrices", "desc": "Bar-le-Duc<br>Vici.org: <a href='https://vici.org/vici/2803/'>https://vici.org/vici/2803/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace902.html'>TPPlace902</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.160575, 48.77372]}}, {"type": "Feature", "properties": {"id": "TPPlace903", "name": "Nasic", "desc": "Naix-aux-Forges<br>Vici.org: <a href='https://vici.org/vici/2804/'>https://vici.org/vici/2804/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace903.html'>TPPlace903</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.376395, 48.637032]}}, {"type": "Feature", "properties": {"id": "TPPlace905", "name": "Andesina", "desc": "Grand<br>Vici.org: <a href='https://vici.org/vici/2805/'>https://vici.org/vici/2805/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace905.html'>TPPlace905</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.488701, 48.389774]}}, {"type": "Feature", "properties": {"id": "TPPlace907", "name": "Mose", "desc": "Meuvy<br>Vici.org: <a href='https://vici.org/vici/2806/'>https://vici.org/vici/2806/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace907.html'>TPPlace907</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.547957, 48.084702]}}, {"type": "Feature", "properties": {"id": "TPPlace908", "name": "Noviomagvs", "desc": "Nijon<br>Vici.org: <a href='https://vici.org/vici/2807/'>https://vici.org/vici/2807/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace908.html'>TPPlace908</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.63882, 48.192734]}}, {"type": "Feature", "properties": {"id": "TPPlace90", "name": "Cvlchvl Colonia", "desc": "Dj\u00e9mila<br>Vici.org: <a href='https://vici.org/vici/2808/'>https://vici.org/vici/2808/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace90.html'>TPPlace90</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.733333, 36.299999]}}, {"type": "Feature", "properties": {"id": "TPPlace910", "name": "Tullio", "desc": "Toul, Tullium Leucorum<br>Vici.org: <a href='https://vici.org/vici/2809/'>https://vici.org/vici/2809/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace910.html'>TPPlace910</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.895101, 48.68346]}}, {"type": "Feature", "properties": {"id": "TPPlace911", "name": "Scarponna", "desc": "Dieulouard<br>Vici.org: <a href='https://vici.org/vici/2810/'>https://vici.org/vici/2810/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace911.html'>TPPlace911</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.068881, 48.842487]}}, {"type": "Feature", "properties": {"id": "TPPlace912", "name": "Divo Dvrimedio Matricorvm", "desc": "Metz<br>Vici.org: <a href='https://vici.org/vici/2811/'>https://vici.org/vici/2811/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace912.html'>TPPlace912</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.172695, 49.116127]}}, {"type": "Feature", "properties": {"id": "TPPlace913", "name": "Ricciaco", "desc": "Dalheim, Ricciacum<br>Vici.org: <a href='https://vici.org/vici/2812/'>https://vici.org/vici/2812/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace913.html'>TPPlace913</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.259232, 49.558449]}}, {"type": "Feature", "properties": {"id": "TPPlace914", "name": "Caranvsca", "desc": "Hettange<br>Vici.org: <a href='https://vici.org/vici/2813/'>https://vici.org/vici/2813/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace914.html'>TPPlace914</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.151685, 49.406811]}}, {"type": "Feature", "properties": {"id": "TPPlace915", "name": "Addvodecimvm", "desc": "Delme<br>Vici.org: <a href='https://vici.org/vici/2814/'>https://vici.org/vici/2814/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace915.html'>TPPlace915</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.392963, 48.886173]}}, {"type": "Feature", "properties": {"id": "TPPlace916", "name": "Ad Decem Pagos", "desc": "Tarquimpol<br>Vici.org: <a href='https://vici.org/vici/2815/'>https://vici.org/vici/2815/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace916.html'>TPPlace916</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.75753, 48.784348]}}, {"type": "Feature", "properties": {"id": "TPPlace917", "name": "Pontesaravi", "desc": "Sarrebourg<br>Vici.org: <a href='https://vici.org/vici/2816/'>https://vici.org/vici/2816/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace917.html'>TPPlace917</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.0519, 48.734974]}}, {"type": "Feature", "properties": {"id": "TPPlace918", "name": "Tabernis", "desc": "Saverne, Tres Tabernae<br>Vici.org: <a href='https://vici.org/vici/2817/'>https://vici.org/vici/2817/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace918.html'>TPPlace918</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.362041, 48.741714]}}, {"type": "Feature", "properties": {"id": "TPPlace919", "name": "Corobilivm", "desc": "Corbeil<br>Vici.org: <a href='https://vici.org/vici/2818/'>https://vici.org/vici/2818/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace919.html'>TPPlace919</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.424847, 48.577995]}}, {"type": "Feature", "properties": {"id": "TPPlace920", "name": "Segessera", "desc": "Bar-sur-Aube<br>Vici.org: <a href='https://vici.org/vici/2819/'>https://vici.org/vici/2819/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace920.html'>TPPlace920</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.704613, 48.234802]}}, {"type": "Feature", "properties": {"id": "TPPlace921", "name": "Andemantvnno", "desc": "Langres<br>Vici.org: <a href='https://vici.org/vici/2820/'>https://vici.org/vici/2820/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace921.html'>TPPlace921</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.33411, 47.862972]}}, {"type": "Feature", "properties": {"id": "TPPlace923", "name": "Segobodiv\u0304", "desc": "Seveux<br>Vici.org: <a href='https://vici.org/vici/2821/'>https://vici.org/vici/2821/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace923.html'>TPPlace923</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.749961, 47.556206]}}, {"type": "Feature", "properties": {"id": "TPPlace924", "name": "Vesontine", "desc": "Besan\u00e7on<br>Vici.org: <a href='https://vici.org/vici/2822/'>https://vici.org/vici/2822/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace924.html'>TPPlace924</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.025566, 47.241226]}}, {"type": "Feature", "properties": {"id": "TPPlace925", "name": "Filena", "desc": "Til-Ch\u00e2tel<br>Vici.org: <a href='https://vici.org/vici/2823/'>https://vici.org/vici/2823/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace925.html'>TPPlace925</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.17237, 47.51791]}}, {"type": "Feature", "properties": {"id": "TPPlace927", "name": "Ponte Dvbris", "desc": "Pontoux<br>Vici.org: <a href='https://vici.org/vici/2824/'>https://vici.org/vici/2824/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace927.html'>TPPlace927</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.111203, 46.92725]}}, {"type": "Feature", "properties": {"id": "TPPlace928", "name": "Crvsinie", "desc": "Dole<br>Vici.org: <a href='https://vici.org/vici/2825/'>https://vici.org/vici/2825/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace928.html'>TPPlace928</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.487841, 47.089252]}}, {"type": "Feature", "properties": {"id": "TPPlace929", "name": "Tenvrcio", "desc": "Tournus<br>Vici.org: <a href='https://vici.org/vici/2826/'>https://vici.org/vici/2826/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace929.html'>TPPlace929</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.908409, 46.565617]}}, {"type": "Feature", "properties": {"id": "TPPlace930", "name": "Matiscone", "desc": "M\u00e2con<br>Vici.org: <a href='https://vici.org/vici/2827/'>https://vici.org/vici/2827/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace930.html'>TPPlace930</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.833486, 46.30415]}}, {"type": "Feature", "properties": {"id": "TPPlace931", "name": "Lvdnam", "desc": "Saint-Georges-de-Reneins<br>Vici.org: <a href='https://vici.org/vici/2828/'>https://vici.org/vici/2828/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace931.html'>TPPlace931</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.722992, 46.062893]}}, {"type": "Feature", "properties": {"id": "TPPlace932", "name": "Loposagio", "desc": "Luxiol<br>Vici.org: <a href='https://vici.org/vici/2829/'>https://vici.org/vici/2829/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace932.html'>TPPlace932</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.34821, 47.382706]}}, {"type": "Feature", "properties": {"id": "TPPlace933", "name": "Epomandvo", "desc": "Mandeure<br>Vici.org: <a href='https://vici.org/vici/2830/'>https://vici.org/vici/2830/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace933.html'>TPPlace933</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.807917, 47.45261]}}, {"type": "Feature", "properties": {"id": "TPPlace934", "name": "Large", "desc": "Friesen-Largizen<br>Vici.org: <a href='https://vici.org/vici/2831/'>https://vici.org/vici/2831/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace934.html'>TPPlace934</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.187143, 47.561314]}}, {"type": "Feature", "properties": {"id": "TPPlace935", "name": "Cambete", "desc": "Kembs<br>Vici.org: <a href='https://vici.org/vici/2832/'>https://vici.org/vici/2832/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace935.html'>TPPlace935</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.503806, 47.690548]}}, {"type": "Feature", "properties": {"id": "TPPlace936", "name": "Arialbinvm", "desc": "Allschwill<br>Vici.org: <a href='https://vici.org/vici/2833/'>https://vici.org/vici/2833/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace936.html'>TPPlace936</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.538112, 47.550587]}}, {"type": "Feature", "properties": {"id": "TPPlace937", "name": "Filo Mvsiaco", "desc": "Fallerans<br>Vici.org: <a href='https://vici.org/vici/2834/'>https://vici.org/vici/2834/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace937.html'>TPPlace937</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.29187, 47.133118]}}, {"type": "Feature", "properties": {"id": "TPPlace939", "name": "Ebvrodvno", "desc": "Yverdon-les-Bains<br>Vici.org: <a href='https://vici.org/vici/2835/'>https://vici.org/vici/2835/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace939.html'>TPPlace939</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.642493, 46.778473]}}, {"type": "Feature", "properties": {"id": "TPPlace93", "name": "Sitifi col.", "desc": "S\u00e9tif<br>Vici.org: <a href='https://vici.org/vici/2836/'>https://vici.org/vici/2836/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace93.html'>TPPlace93</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.414416, 36.18898]}}, {"type": "Feature", "properties": {"id": "TPPlace941", "name": "Aventicvm Heletiorvm", "desc": "Avenches<br>Vici.org: <a href='https://vici.org/vici/2837/'>https://vici.org/vici/2837/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace941.html'>TPPlace941</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.041111, 46.880833]}}, {"type": "Feature", "properties": {"id": "TPPlace942", "name": "Petenisca", "desc": "~ Worben<br>Vici.org: <a href='https://vici.org/vici/2838/'>https://vici.org/vici/2838/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace942.html'>TPPlace942</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.29518, 47.102501]}}, {"type": "Feature", "properties": {"id": "TPPlace943", "name": "Salodvrvm", "desc": "Solothurn<br>Vici.org: <a href='https://vici.org/vici/2839/'>https://vici.org/vici/2839/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace943.html'>TPPlace943</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.530185, 47.208515]}}, {"type": "Feature", "properties": {"id": "TPPlace944", "name": "Minodvm", "desc": "Moudon<br>Vici.org: <a href='https://vici.org/vici/2840/'>https://vici.org/vici/2840/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace944.html'>TPPlace944</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.79726, 46.6689]}}, {"type": "Feature", "properties": {"id": "TPPlace945", "name": "Viromagvs", "desc": "Oron-la-Ville<br>Vici.org: <a href='https://vici.org/vici/2841/'>https://vici.org/vici/2841/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace945.html'>TPPlace945</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.825933, 46.571587]}}, {"type": "Feature", "properties": {"id": "TPPlace946", "name": "Vivisco", "desc": "Vevey<br>Vici.org: <a href='https://vici.org/vici/2842/'>https://vici.org/vici/2842/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace946.html'>TPPlace946</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.84693, 46.4589]}}, {"type": "Feature", "properties": {"id": "TPPlace947", "name": "Etanna", "desc": "Yenne<br>Vici.org: <a href='https://vici.org/vici/2843/'>https://vici.org/vici/2843/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace947.html'>TPPlace947</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.758163, 45.703876]}}, {"type": "Feature", "properties": {"id": "TPPlace948", "name": "Condate", "desc": "Seyssel<br>Vici.org: <a href='https://vici.org/vici/2844/'>https://vici.org/vici/2844/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace948.html'>TPPlace948</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.834113, 45.958523]}}, {"type": "Feature", "properties": {"id": "TPPlace949", "name": "Gennava", "desc": "Gen\u00e8ve<br>Vici.org: <a href='https://vici.org/vici/2845/'>https://vici.org/vici/2845/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace949.html'>TPPlace949</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.142296, 46.198391]}}, {"type": "Feature", "properties": {"id": "TPPlace950", "name": "Colonia eqvestris", "desc": "Nyon, Noviodunum<br>Vici.org: <a href='https://vici.org/vici/2846/'>https://vici.org/vici/2846/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace950.html'>TPPlace950</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.234062, 46.388184]}}, {"type": "Feature", "properties": {"id": "TPPlace951", "name": "Pennolvcos", "desc": "Villeneuve<br>Vici.org: <a href='https://vici.org/vici/2847/'>https://vici.org/vici/2847/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace951.html'>TPPlace951</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.932378, 46.391212]}}, {"type": "Feature", "properties": {"id": "TPPlace952", "name": "Tarnaias", "desc": "Massongex<br>Vici.org: <a href='https://vici.org/vici/2848/'>https://vici.org/vici/2848/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace952.html'>TPPlace952</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.986955, 46.242519]}}, {"type": "Feature", "properties": {"id": "TPPlace953", "name": "Octodvro", "desc": "Martigny<br>Vici.org: <a href='https://vici.org/vici/2849/'>https://vici.org/vici/2849/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace953.html'>TPPlace953</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.077055, 46.102596]}}, {"type": "Feature", "properties": {"id": "TPPlace955", "name": "Insvmmo Pennino", "desc": "Grand-Saint-Bernard<br>Vici.org: <a href='https://vici.org/vici/2850/'>https://vici.org/vici/2850/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace955.html'>TPPlace955</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.170556, 45.868889]}}, {"type": "Feature", "properties": {"id": "TPPlace957", "name": "Avgvsta Pretoria", "desc": "Aosta<br>Vici.org: <a href='https://vici.org/vici/2851/'>https://vici.org/vici/2851/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace957.html'>TPPlace957</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.313234, 45.735001]}}, {"type": "Feature", "properties": {"id": "TPPlace958", "name": "Vtricio", "desc": "Verres<br>Vici.org: <a href='https://vici.org/vici/2852/'>https://vici.org/vici/2852/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace958.html'>TPPlace958</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.690608, 45.668648]}}, {"type": "Feature", "properties": {"id": "TPPlace959", "name": "Laviscone", "desc": "Les \u00c9chelles<br>Vici.org: <a href='https://vici.org/vici/2853/'>https://vici.org/vici/2853/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace959.html'>TPPlace959</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.754407, 45.436214]}}, {"type": "Feature", "properties": {"id": "TPPlace960", "name": "Leminco", "desc": "Chamb\u00e9ry<br>Vici.org: <a href='https://vici.org/vici/2854/'>https://vici.org/vici/2854/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace960.html'>TPPlace960</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.920987, 45.566704]}}, {"type": "Feature", "properties": {"id": "TPPlace961", "name": "Mantala", "desc": "Saint-Jean-de-la-Porte<br>Vici.org: <a href='https://vici.org/vici/2855/'>https://vici.org/vici/2855/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace961.html'>TPPlace961</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.126334, 45.554207]}}, {"type": "Feature", "properties": {"id": "TPPlace962", "name": "Ad Pvblicanos", "desc": "Albertville-Conflans<br>Vici.org: <a href='https://vici.org/vici/2856/'>https://vici.org/vici/2856/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace962.html'>TPPlace962</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.39723, 45.671021]}}, {"type": "Feature", "properties": {"id": "TPPlace963", "name": "Obilonna", "desc": "La B\u00e2thie<br>Vici.org: <a href='https://vici.org/vici/2857/'>https://vici.org/vici/2857/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace963.html'>TPPlace963</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.44887, 45.625908]}}, {"type": "Feature", "properties": {"id": "TPPlace964", "name": "Darantasia", "desc": "Mo\u00fbtiers<br>Vici.org: <a href='https://vici.org/vici/2858/'>https://vici.org/vici/2858/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace964.html'>TPPlace964</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.53085, 45.484734]}}, {"type": "Feature", "properties": {"id": "TPPlace965", "name": "Axvnam", "desc": "Aime<br>Vici.org: <a href='https://vici.org/vici/2859/'>https://vici.org/vici/2859/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace965.html'>TPPlace965</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.653238, 45.556988]}}, {"type": "Feature", "properties": {"id": "TPPlace966", "name": "Bergintrvm", "desc": "Bourg-Saint-Maurice<br>Vici.org: <a href='https://vici.org/vici/2860/'>https://vici.org/vici/2860/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace966.html'>TPPlace966</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.767077, 45.616951]}}, {"type": "Feature", "properties": {"id": "TPPlace967", "name": "In alpegraia", "desc": "Petit-Saint-Bernard<br>Vici.org: <a href='https://vici.org/vici/2861/'>https://vici.org/vici/2861/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace967.html'>TPPlace967</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.883889, 45.680279]}}, {"type": "Feature", "properties": {"id": "TPPlace970", "name": "Tenedone", "desc": "Zurzach<br>Vici.org: <a href='https://vici.org/vici/2862/'>https://vici.org/vici/2862/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace970.html'>TPPlace970</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.291958, 47.585892]}}, {"type": "Feature", "properties": {"id": "TPPlace971", "name": "Ivlio mago", "desc": "Schleitheim<br>Vici.org: <a href='https://vici.org/vici/2863/'>https://vici.org/vici/2863/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace971.html'>TPPlace971</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.486724, 47.750046]}}, {"type": "Feature", "properties": {"id": "TPPlace972", "name": "Brigobanne", "desc": "H\u00fcfingen<br>Vici.org: <a href='https://vici.org/vici/2864/'>https://vici.org/vici/2864/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace972.html'>TPPlace972</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.488767, 47.923748]}}, {"type": "Feature", "properties": {"id": "TPPlace973", "name": "Aris Flavis", "desc": "Rottweil<br>Vici.org: <a href='https://vici.org/vici/2865/'>https://vici.org/vici/2865/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace973.html'>TPPlace973</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.62793, 48.166683]}}, {"type": "Feature", "properties": {"id": "TPPlace974", "name": "Samvlocenis", "desc": "Rottenburg am Neckar<br>Vici.org: <a href='https://vici.org/vici/2866/'>https://vici.org/vici/2866/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace974.html'>TPPlace974</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.93775, 48.476887]}}, {"type": "Feature", "properties": {"id": "TPPlace975", "name": "Grinarione", "desc": "K\u00f6ngen<br>Vici.org: <a href='https://vici.org/vici/2867/'>https://vici.org/vici/2867/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace975.html'>TPPlace975</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.366568, 48.679749]}}, {"type": "Feature", "properties": {"id": "TPPlace976", "name": "Clarenna", "desc": "R\u00f6merstein-Donnstetten<br>Vici.org: <a href='https://vici.org/vici/2868/'>https://vici.org/vici/2868/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace976.html'>TPPlace976</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.565, 48.51722]}}, {"type": "Feature", "properties": {"id": "TPPlace977", "name": "Adlvnam", "desc": "Lonsee<br>Vici.org: <a href='https://vici.org/vici/2869/'>https://vici.org/vici/2869/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace977.html'>TPPlace977</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.918574, 48.545727]}}, {"type": "Feature", "properties": {"id": "TPPlace978", "name": "Aqvileia", "desc": "Aquileia, Heidenheim<br>Vici.org: <a href='https://vici.org/vici/2870/'>https://vici.org/vici/2870/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace978.html'>TPPlace978</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.153248, 48.678219]}}, {"type": "Feature", "properties": {"id": "TPPlace979", "name": "Opie", "desc": "? Bopfingen<br>Vici.org: <a href='https://vici.org/vici/2871/'>https://vici.org/vici/2871/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace979.html'>TPPlace979</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.353931, 48.859337]}}, {"type": "Feature", "properties": {"id": "TPPlace980", "name": "Septemiaci", "desc": "Zipplingen<br>Vici.org: <a href='https://vici.org/vici/2872/'>https://vici.org/vici/2872/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace980.html'>TPPlace980</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.406681, 48.923157]}}, {"type": "Feature", "properties": {"id": "TPPlace981", "name": "Losodica", "desc": "Munningen<br>Vici.org: <a href='https://vici.org/vici/2873/'>https://vici.org/vici/2873/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace981.html'>TPPlace981</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.602354, 48.921547]}}, {"type": "Feature", "properties": {"id": "TPPlace982", "name": "Medianis", "desc": "Gnotzheim<br>Vici.org: <a href='https://vici.org/vici/2874/'>https://vici.org/vici/2874/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace982.html'>TPPlace982</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.713685, 49.059849]}}, {"type": "Feature", "properties": {"id": "TPPlace983", "name": "Iciniaco", "desc": "Theilenhofen<br>Vici.org: <a href='https://vici.org/vici/2875/'>https://vici.org/vici/2875/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace983.html'>TPPlace983</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.851986, 49.083099]}}, {"type": "Feature", "properties": {"id": "TPPlace984", "name": "Biricianis", "desc": "Wei\u00dfenburg<br>Vici.org: <a href='https://vici.org/vici/2876/'>https://vici.org/vici/2876/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace984.html'>TPPlace984</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.962374, 49.031181]}}, {"type": "Feature", "properties": {"id": "TPPlace985", "name": "Vetonianis", "desc": "Pf\u00fcnz<br>Vici.org: <a href='https://vici.org/vici/2877/'>https://vici.org/vici/2877/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace985.html'>TPPlace985</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.298684, 48.91251]}}, {"type": "Feature", "properties": {"id": "TPPlace986", "name": "Germanico", "desc": "K\u00f6sching<br>Vici.org: <a href='https://vici.org/vici/2878/'>https://vici.org/vici/2878/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace986.html'>TPPlace986</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.499855, 48.810955]}}, {"type": "Feature", "properties": {"id": "TPPlace988", "name": "Arvsena", "desc": "Eining<br>Vici.org: <a href='https://vici.org/vici/2879/'>https://vici.org/vici/2879/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace988.html'>TPPlace988</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.770757, 48.849884]}}, {"type": "Feature", "properties": {"id": "TPPlace989", "name": "Regino", "desc": "Regensburg<br>Vici.org: <a href='https://vici.org/vici/2880/'>https://vici.org/vici/2880/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace989.html'>TPPlace989</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.100904, 49.016491]}}, {"type": "Feature", "properties": {"id": "TPPlace990", "name": "Sorviodvro", "desc": "Straubing<br>Vici.org: <a href='https://vici.org/vici/2881/'>https://vici.org/vici/2881/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace990.html'>TPPlace990</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.570278, 48.879921]}}, {"type": "Feature", "properties": {"id": "TPPlace991", "name": "Petrensibvs", "desc": "Vilshofen<br>Vici.org: <a href='https://vici.org/vici/2882/'>https://vici.org/vici/2882/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace991.html'>TPPlace991</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.184477, 48.633862]}}, {"type": "Feature", "properties": {"id": "TPPlace992", "name": "Castellv\u0304 Bolodvrv\u0304", "desc": "Passau<br>Vici.org: <a href='https://vici.org/vici/2883/'>https://vici.org/vici/2883/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace992.html'>TPPlace992</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.463918, 48.573513]}}, {"type": "Feature", "properties": {"id": "TPPlace993", "name": "Ovilia", "desc": "Wels<br>Vici.org: <a href='https://vici.org/vici/2884/'>https://vici.org/vici/2884/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace993.html'>TPPlace993</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.03664, 48.165421]}}, {"type": "Feature", "properties": {"id": "TPPlace995", "name": "Arbor Felix", "desc": "Arbon<br>Vici.org: <a href='https://vici.org/vici/2885/'>https://vici.org/vici/2885/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace995.html'>TPPlace995</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.421089, 47.510925]}}, {"type": "Feature", "properties": {"id": "TPPlace996", "name": "BRIGANTIO", "desc": "Bregenz<br>Vici.org: <a href='https://vici.org/vici/2886/'>https://vici.org/vici/2886/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace996.html'>TPPlace996</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.74231, 47.500751]}}, {"type": "Feature", "properties": {"id": "TPPlace997", "name": "Ad Renvm", "desc": "Rheineck<br>Vici.org: <a href='https://vici.org/vici/2887/'>https://vici.org/vici/2887/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace997.html'>TPPlace997</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.584133, 47.468498]}}, {"type": "Feature", "properties": {"id": "TPPlace998", "name": "Vemania", "desc": "Bettmauer<br>Vici.org: <a href='https://vici.org/vici/2888/'>https://vici.org/vici/2888/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace998.html'>TPPlace998</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.066729, 47.698936]}}, {"type": "Feature", "properties": {"id": "TPPlace833", "name": "Aquis Sestis", "desc": "Aix-en Provence, Aquae Sextiae<br>Vici.org: <a href='https://vici.org/vici/2889/'>https://vici.org/vici/2889/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace833.html'>TPPlace833</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.453911, 43.536255]}}, {"type": "Feature", "properties": {"id": "TPPlace1532", "name": "Fl. Frigido", "desc": "Ajdov\u0161\u010dina<br>Vici.org: <a href='https://vici.org/vici/2890/'>https://vici.org/vici/2890/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1532.html'>TPPlace1532</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.907833, 45.888573]}}, {"type": "Feature", "properties": {"id": "TPPlace462", "name": "Tyberias", "desc": "Tverya, Tiberias, \u05d8\u05d1\u05e8\u05d9\u05d4\u200e<br>Vici.org: <a href='https://vici.org/vici/2891/'>https://vici.org/vici/2891/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace462.html'>TPPlace462</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.540722, 32.786671]}}, {"type": "Feature", "properties": {"id": "TPPlace1258", "name": "Pyrgos", "desc": "~ Santa Severa<br>Vici.org: <a href='https://vici.org/vici/2892/'>https://vici.org/vici/2892/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1258.html'>TPPlace1258</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.947517, 42.024456]}}, {"type": "Feature", "properties": {"id": "TPPlace712", "name": "Calambrio", "desc": "Saint-Germain-du-Salembre<br>Vici.org: <a href='https://vici.org/vici/2893/'>https://vici.org/vici/2893/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace712.html'>TPPlace712</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.450647, 45.138138]}}, {"type": "Feature", "properties": {"id": "TPPlace787", "name": "Arvsione", "desc": "Orange<br>Vici.org: <a href='https://vici.org/vici/2894/'>https://vici.org/vici/2894/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace787.html'>TPPlace787</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.805803, 44.136181]}}, {"type": "Feature", "properties": {"id": "TPPlace795", "name": "Aptaivlia", "desc": "Apt<br>Vici.org: <a href='https://vici.org/vici/2895/'>https://vici.org/vici/2895/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace795.html'>TPPlace795</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.394015, 43.876198]}}, {"type": "Feature", "properties": {"id": "TPPlace801", "name": "Vapincvm", "desc": "Gap<br>Vici.org: <a href='https://vici.org/vici/2896/'>https://vici.org/vici/2896/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace801.html'>TPPlace801</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.076112, 44.559242]}}, {"type": "Feature", "properties": {"id": "TPPlace813", "name": "Catorissivm", "desc": "Bourg-d'Oisans<br>Vici.org: <a href='https://vici.org/vici/2897/'>https://vici.org/vici/2897/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace813.html'>TPPlace813</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.030779, 45.055126]}}, {"type": "Feature", "properties": {"id": "TPPlace1520", "name": "Ernolatia", "desc": "Sankt Pankraz<br>Vici.org: <a href='https://vici.org/vici/2898/'>https://vici.org/vici/2898/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1520.html'>TPPlace1520</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.20789, 47.765446]}}, {"type": "Feature", "properties": {"id": "TPPlace714", "name": "Fines", "desc": "Firbeix<br>Vici.org: <a href='https://vici.org/vici/2899/'>https://vici.org/vici/2899/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace714.html'>TPPlace714</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.974321, 45.598343]}}, {"type": "Feature", "properties": {"id": "TPPlace722", "name": "Fines", "desc": "Montel-Guillaume<br>Vici.org: <a href='https://vici.org/vici/2900/'>https://vici.org/vici/2900/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace722.html'>TPPlace722</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.365, 45.833241]}}, {"type": "Feature", "properties": {"id": "TPPlace605", "name": "Setvcis", "desc": "~Beaucourt en Santerre<br>Vici.org: <a href='https://vici.org/vici/2901/'>https://vici.org/vici/2901/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace605.html'>TPPlace605</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.574921, 49.788425]}}, {"type": "Feature", "properties": {"id": "TPPlace697", "name": "Burdegalo", "desc": "Bordeaux, Burdigala<br>Vici.org: <a href='https://vici.org/vici/2902/'>https://vici.org/vici/2902/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace697.html'>TPPlace697</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-0.576797, 44.836597]}}, {"type": "Feature", "properties": {"id": "OVPlace1", "name": "Salomaco", "desc": "Salles, Salomacus<br>Vici.org: <a href='https://vici.org/vici/2903/'>https://vici.org/vici/2903/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.869823, 44.551842]}}, {"type": "Feature", "properties": {"id": "OVPlace2", "name": "Telonnum", "desc": "Liposthey?<br>Vici.org: <a href='https://vici.org/vici/2904/'>https://vici.org/vici/2904/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.87862, 44.31852]}}, {"type": "Feature", "properties": {"id": "OVPlace3", "name": "Coequosa", "desc": "Sind\u00e8res<br>Vici.org: <a href='https://vici.org/vici/2905/'>https://vici.org/vici/2905/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.985022, 44.028286]}}, {"type": "Feature", "properties": {"id": "OVPlace4", "name": "Aquis Terebellicis", "desc": "Dax<br>Vici.org: <a href='https://vici.org/vici/2906/'>https://vici.org/vici/2906/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.055059, 43.709988]}}, {"type": "Feature", "properties": {"id": "OVPlace5", "name": "Carasa", "desc": "Garris<br>Vici.org: <a href='https://vici.org/vici/2907/'>https://vici.org/vici/2907/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.059422, 43.340431]}}, {"type": "Feature", "properties": {"id": "OVPlace6", "name": "Imo Pyreneo", "desc": "St. Jean-le-Vieux, Pireneo<br>Vici.org: <a href='https://vici.org/vici/2908/'>https://vici.org/vici/2908/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.193762, 43.165535]}}, {"type": "Feature", "properties": {"id": "OVPlace7", "name": "Atura", "desc": "Aire-sur-l'Adour <br>Vici.org: <a href='https://vici.org/vici/2909/'>https://vici.org/vici/2909/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.261812, 43.701797]}}, {"type": "Feature", "properties": {"id": "TPPlace535", "name": "'Ad tavm'", "desc": "Caistor St. Edmund, Venta Icenorvm<br>Vici.org: <a href='https://vici.org/vici/2910/'>https://vici.org/vici/2910/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace535.html'>TPPlace535</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.299891, 52.586884]}}, {"type": "Feature", "properties": {"id": "TPPlace2017", "name": "Drysiporo", "desc": "~ Kar\u0131\u015ft\u0131ran<br>Vici.org: <a href='https://vici.org/vici/2911/'>https://vici.org/vici/2911/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2017.html'>TPPlace2017</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.543411, 41.299992]}}, {"type": "Feature", "properties": {"id": "TPPlace84", "name": "Tamascani Mvnicipivm", "desc": "Kherbet Zembia<br>Vici.org: <a href='https://vici.org/vici/2912/'>https://vici.org/vici/2912/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace84.html'>TPPlace84</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.851197, 35.991367]}}, {"type": "Feature", "properties": {"id": "TPPlace536", "name": "Sinomagi", "desc": "? Saxmundham, Sitomagus<br>Vici.org: <a href='https://vici.org/vici/2913/'>https://vici.org/vici/2913/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace536.html'>TPPlace536</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.488791, 52.21455]}}, {"type": "Feature", "properties": {"id": "TPPlace537", "name": "Convetoni", "desc": "Baylham House, Conbretovium<br>Vici.org: <a href='https://vici.org/vici/2914/'>https://vici.org/vici/2914/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace537.html'>TPPlace537</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.070795, 52.121895]}}, {"type": "Feature", "properties": {"id": "TPPlace538", "name": "Adansam", "desc": "? Stratford St. Mary, Ad Ansam<br>Vici.org: <a href='https://vici.org/vici/2915/'>https://vici.org/vici/2915/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace538.html'>TPPlace538</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.9795, 51.971767]}}, {"type": "Feature", "properties": {"id": "TPPlace540", "name": "Baromaci", "desc": "Chelmsford, Caesaromagvs<br>Vici.org: <a href='https://vici.org/vici/2916/'>https://vici.org/vici/2916/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace540.html'>TPPlace540</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.466733, 51.736809]}}, {"type": "Feature", "properties": {"id": "TPPlace541", "name": "Cavnonio", "desc": "Kelvedon<br>Vici.org: <a href='https://vici.org/vici/2917/'>https://vici.org/vici/2917/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace541.html'>TPPlace541</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.701566, 51.837368]}}, {"type": "Feature", "properties": {"id": "TPPlace542", "name": "Camvlodvno", "desc": "Colchester, Colonia Camulodunum<br>Vici.org: <a href='https://vici.org/vici/2918/'>https://vici.org/vici/2918/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace542.html'>TPPlace542</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.901298, 51.889851]}}, {"type": "Feature", "properties": {"id": "TPPlace543", "name": "Madvs", "desc": "Crayford, Noviomagus<br>Vici.org: <a href='https://vici.org/vici/2919/'>https://vici.org/vici/2919/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace543.html'>TPPlace543</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [0.177999, 51.451012]}}, {"type": "Feature", "properties": {"id": "TPPlace546", "name": "Dvroavervs", "desc": "Canterbury<br>Vici.org: <a href='https://vici.org/vici/2920/'>https://vici.org/vici/2920/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace546.html'>TPPlace546</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.078348, 51.278027]}}, {"type": "Feature", "properties": {"id": "TPPlace547", "name": "Dvbris", "desc": "Dover, Dubra<br>Vici.org: <a href='https://vici.org/vici/2921/'>https://vici.org/vici/2921/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace547.html'>TPPlace547</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.314039, 51.127121]}}, {"type": "Feature", "properties": {"id": "TPPlace548", "name": "Ratvpis", "desc": "Richborough<br>Vici.org: <a href='https://vici.org/vici/2922/'>https://vici.org/vici/2922/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace548.html'>TPPlace548</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.33672, 51.291981]}}, {"type": "Feature", "properties": {"id": "TPPlace549", "name": "Lemavio", "desc": "Lympne, Lemanio<br>Vici.org: <a href='https://vici.org/vici/2923/'>https://vici.org/vici/2923/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace549.html'>TPPlace549</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.033559, 51.075329]}}, {"type": "Feature", "properties": {"id": "TPPlace550", "name": "Ridvmo", "desc": "Axminster, Moridunum<br>Vici.org: <a href='https://vici.org/vici/2924/'>https://vici.org/vici/2924/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace550.html'>TPPlace550</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-2.998803, 50.782715]}}, {"type": "Feature", "properties": {"id": "TPPlace551", "name": "Iscadvmnoniorv\u0304", "desc": "Exeter<br>Vici.org: <a href='https://vici.org/vici/2925/'>https://vici.org/vici/2925/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace551.html'>TPPlace551</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-3.534172, 50.721245]}}, {"type": "Feature", "properties": {"id": "TPPlace610", "name": "Dvronvm", "desc": "\u00c9troungt, \u00c9tr\u0153ungt<br>Vici.org: <a href='https://vici.org/vici/2926/'>https://vici.org/vici/2926/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace610.html'>TPPlace610</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.926293, 50.058266]}}, {"type": "Feature", "properties": {"id": "TPPlace55", "name": "Vtica Colonia", "desc": "Bou Shater ~ Tunis<br>Vici.org: <a href='https://vici.org/vici/2927/'>https://vici.org/vici/2927/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace55.html'>TPPlace55</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.062168, 37.056519]}}, {"type": "Feature", "properties": {"id": "TPPlace511", "name": "Apamia", "desc": "Kafat el-Mud\u00eek<br>Vici.org: <a href='https://vici.org/vici/2928/'>https://vici.org/vici/2928/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace511.html'>TPPlace511</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.397999, 35.417999]}}, {"type": "Feature", "properties": {"id": "TPPlace1227", "name": "Aqvas Passaras", "desc": "Bagni Giasinelli<br>Vici.org: <a href='https://vici.org/vici/2929/'>https://vici.org/vici/2929/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1227.html'>TPPlace1227</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.064619, 42.468235]}}, {"type": "Feature", "properties": {"id": "TPPlace1626", "name": "Hadre", "desc": "~ Medvi\u0111a?<br>Vici.org: <a href='https://vici.org/vici/2930/'>https://vici.org/vici/2930/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1626.html'>TPPlace1626</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.798683, 44.096432]}}, {"type": "Feature", "properties": {"id": "TPPlace1400", "name": "Aqve Ange", "desc": "? Bagni di Sant'Eufemia<br>Vici.org: <a href='https://vici.org/vici/2931/'>https://vici.org/vici/2931/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1400.html'>TPPlace1400</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.251652, 38.920288]}}, {"type": "Feature", "properties": {"id": "TPPlace1676", "name": "Sarvte", "desc": "Strojice<br>Vici.org: <a href='https://vici.org/vici/2932/'>https://vici.org/vici/2932/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1676.html'>TPPlace1676</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.15139, 44.17889]}}, {"type": "Feature", "properties": {"id": "TPPlace1679", "name": "In Alperio", "desc": "Trnova Poljana<br>Vici.org: <a href='https://vici.org/vici/2933/'>https://vici.org/vici/2933/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1679.html'>TPPlace1679</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.75861, 43.78278]}}, {"type": "Feature", "properties": {"id": "TPPlace1683", "name": "Magno", "desc": "Balina Glavica ~ Kljake<br>Vici.org: <a href='https://vici.org/vici/2934/'>https://vici.org/vici/2934/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1683.html'>TPPlace1683</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.316071, 43.803932]}}, {"type": "Feature", "properties": {"id": "TPPlace1690", "name": "Bistve Vetvs", "desc": "Varvara kod Prozora, \u0412\u0430\u0440\u0432\u0430\u0440\u0430 \u043a\u043e\u0434 \u041f\u0440\u043e\u0437\u043e\u0440\u0430<br>Vici.org: <a href='https://vici.org/vici/2935/'>https://vici.org/vici/2935/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1690.html'>TPPlace1690</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.225018, 43.715382]}}, {"type": "Feature", "properties": {"id": "TPPlace468", "name": "Petris", "desc": "Qasr Firaun, Petra<br>Vici.org: <a href='https://vici.org/vici/2936/'>https://vici.org/vici/2936/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace468.html'>TPPlace468</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.451229, 30.322599]}}, {"type": "Feature", "properties": {"id": "TPPlace1811", "name": "Theranda", "desc": "? Slapu\u017eane<br>Vici.org: <a href='https://vici.org/vici/2937/'>https://vici.org/vici/2937/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1811.html'>TPPlace1811</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.838919, 42.384987]}}, {"type": "Feature", "properties": {"id": "TPPlace181", "name": "Admercvriv\u0304", "desc": "Ksar Gurai<br>Vici.org: <a href='https://vici.org/vici/2938/'>https://vici.org/vici/2938/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace181.html'>TPPlace181</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.285494, 35.47797]}}, {"type": "Feature", "properties": {"id": "TPPlace1898", "name": "Argos", "desc": "Argos, \u0386\u03c1\u03b3\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2939/'>https://vici.org/vici/2939/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1898.html'>TPPlace1898</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.729168, 37.635986]}}, {"type": "Feature", "properties": {"id": "TPPlace2062", "name": "Lappa", "desc": "Aryiro\u00fapolis<br>Vici.org: <a href='https://vici.org/vici/2940/'>https://vici.org/vici/2940/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2062.html'>TPPlace2062</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.33415, 35.285179]}}, {"type": "Feature", "properties": {"id": "TPPlace2063", "name": "Elevterna", "desc": "El\u00e9therna, \u0395\u03bb\u03ad\u03b8\u03b5\u03c1\u03bd\u03b1<br>Vici.org: <a href='https://vici.org/vici/2941/'>https://vici.org/vici/2941/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2063.html'>TPPlace2063</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.66667, 35.333328]}}, {"type": "Feature", "properties": {"id": "TPPlace2067", "name": "Liso", "desc": "Aikir\u00edkos, \u0386\u03b3. \u039a\u03ae\u03c1\u03c5\u03ba\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2942/'>https://vici.org/vici/2942/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2067.html'>TPPlace2067</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.783331, 35.25]}}, {"type": "Feature", "properties": {"id": "TPPlace2071", "name": "Cnoso", "desc": "Knos\u00f3s ~ Ir\u00e1kleion<br>Vici.org: <a href='https://vici.org/vici/2943/'>https://vici.org/vici/2943/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2071.html'>TPPlace2071</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.16304, 35.297989]}}, {"type": "Feature", "properties": {"id": "TPPlace2072", "name": "Cresonesso", "desc": "Chers\u00f3nesos, \u03a7\u03b5\u03c1\u03c3\u03cc\u03bd\u03b7\u03c3\u03bf\u03c2<br>Vici.org: <a href='https://vici.org/vici/2944/'>https://vici.org/vici/2944/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2072.html'>TPPlace2072</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.37112, 35.309029]}}, {"type": "Feature", "properties": {"id": "TPPlace2074", "name": "Arcade", "desc": "Aphr\u00e1ti, \u0391\u03c6\u03c1\u03ac\u03c4\u03b9<br>Vici.org: <a href='https://vici.org/vici/2945/'>https://vici.org/vici/2945/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2074.html'>TPPlace2074</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.35, 35.099998]}}, {"type": "Feature", "properties": {"id": "TPPlace2195", "name": "Cyzico", "desc": "Kyzikos, Cyzicus<br>Vici.org: <a href='https://vici.org/vici/2946/'>https://vici.org/vici/2946/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2195.html'>TPPlace2195</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.976669, 40.352219]}}, {"type": "Feature", "properties": {"id": "TPPlace2269", "name": "Comana Pontica", "desc": "G\u00fcmenek<br>Vici.org: <a href='https://vici.org/vici/2947/'>https://vici.org/vici/2947/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2269.html'>TPPlace2269</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.639748, 40.359657]}}, {"type": "Feature", "properties": {"id": "TPPlace2377", "name": "Gendarv\u0304", "desc": "Djindaris<br>Vici.org: <a href='https://vici.org/vici/2948/'>https://vici.org/vici/2948/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2377.html'>TPPlace2377</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.688889, 36.385555]}}, {"type": "Feature", "properties": {"id": "TPPlace2406", "name": "Apasidam", "desc": "? Tsikhisdziri, Ad Isidem?<br>Vici.org: <a href='https://vici.org/vici/2949/'>https://vici.org/vici/2949/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2406.html'>TPPlace2406</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.7449, 41.756939]}}, {"type": "Feature", "properties": {"id": "TPPlace2475", "name": "Lazo", "desc": "Taht-i-Suleiman, Takht-E Soleyman<br>Vici.org: <a href='https://vici.org/vici/2950/'>https://vici.org/vici/2950/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2475.html'>TPPlace2475</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [47.234776, 36.604557]}}, {"type": "Feature", "properties": {"id": "TPPlace2524", "name": "Zimara", "desc": "\u00c7altu<br>Vici.org: <a href='https://vici.org/vici/2951/'>https://vici.org/vici/2951/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2524.html'>TPPlace2524</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.381878, 39.406502]}}, {"type": "Feature", "properties": {"id": "TPPlace2570", "name": "Cyrro", "desc": "~ Zayt\u016bnak<br>Vici.org: <a href='https://vici.org/vici/2952/'>https://vici.org/vici/2952/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2570.html'>TPPlace2570</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.942989, 36.726212]}}, {"type": "Feature", "properties": {"id": "TPPlace2586", "name": "Apammari", "desc": "~ Abu Daghmah<br>Vici.org: <a href='https://vici.org/vici/2953/'>https://vici.org/vici/2953/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2586.html'>TPPlace2586</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.2789, 36.430389]}}, {"type": "Feature", "properties": {"id": "TPPlace2590", "name": "Orvba", "desc": "Tayibe<br>Vici.org: <a href='https://vici.org/vici/2954/'>https://vici.org/vici/2954/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2590.html'>TPPlace2590</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.918461, 35.09058]}}, {"type": "Feature", "properties": {"id": "TPPlace259", "name": "Svllecti", "desc": "Rass Salakta<br>Vici.org: <a href='https://vici.org/vici/2955/'>https://vici.org/vici/2955/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace259.html'>TPPlace259</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.04841, 35.39307]}}, {"type": "Feature", "properties": {"id": "TPPlace2779", "name": "Persepoliscon Mercivm persarvm", "desc": "Taht-i-Djamshid, Persepolis<br>Vici.org: <a href='https://vici.org/vici/2956/'>https://vici.org/vici/2956/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2779.html'>TPPlace2779</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [52.889999, 29.9368]}}, {"type": "Feature", "properties": {"id": "TPPlace301", "name": "Cercar", "desc": "Ain esc-Scersciara<br>Vici.org: <a href='https://vici.org/vici/2957/'>https://vici.org/vici/2957/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace301.html'>TPPlace301</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.61667, 32.466671]}}, {"type": "Feature", "properties": {"id": "TPPlace307", "name": "Tvbactis Mvn\u0304\u0304", "desc": "Qa\u015fr A\u1e29mad<br>Vici.org: <a href='https://vici.org/vici/2958/'>https://vici.org/vici/2958/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace307.html'>TPPlace307</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.19862, 32.371891]}}, {"type": "Feature", "properties": {"id": "TPPlace331", "name": "Arephilenorvm", "desc": "Ras el Aali<br>Vici.org: <a href='https://vici.org/vici/2959/'>https://vici.org/vici/2959/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace331.html'>TPPlace331</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.791161, 30.383499]}}, {"type": "Feature", "properties": {"id": "TPPlace343", "name": "Ptolomaide", "desc": "Tolmeitha<br>Vici.org: <a href='https://vici.org/vici/2960/'>https://vici.org/vici/2960/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace343.html'>TPPlace343</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.938681, 32.70359]}}, {"type": "Feature", "properties": {"id": "TPPlace3531", "name": "Vatari", "desc": "Fedj es-Siouda<br>Vici.org: <a href='https://vici.org/vici/2961/'>https://vici.org/vici/2961/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3531.html'>TPPlace3531</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.266664, 35.199993]}}, {"type": "Feature", "properties": {"id": "TPPlace374", "name": "Pelvsio", "desc": "Tell Al-Farama ~ El-Qantara<br>Vici.org: <a href='https://vici.org/vici/2962/'>https://vici.org/vici/2962/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace374.html'>TPPlace374</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.539982, 31.042589]}}, {"type": "Feature", "properties": {"id": "TPPlace423", "name": "Babylonia", "desc": "Qasr esh-Sham ~ Al Q\u0101hirah<br>Vici.org: <a href='https://vici.org/vici/2963/'>https://vici.org/vici/2963/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace423.html'>TPPlace423</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.230055, 30.006346]}}, {"type": "Feature", "properties": {"id": "TPPlace452", "name": "Addianam", "desc": "~ Hal Timna | ~ Yotvata, \u05d9\u05d8\u05d1\u05ea\u05d4<br>Vici.org: <a href='https://vici.org/vici/2964/'>https://vici.org/vici/2964/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace452.html'>TPPlace452</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.059345, 29.895498]}}, {"type": "Feature", "properties": {"id": "TPPlace475", "name": "Hatita", "desc": "Khirbet es-Samra<br>Vici.org: <a href='https://vici.org/vici/2965/'>https://vici.org/vici/2965/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace475.html'>TPPlace475</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.164768, 32.1796]}}, {"type": "Feature", "properties": {"id": "TPPlace1293", "name": "Mons imevs", "desc": "Valico di Forca Caruso<br>Vici.org: <a href='https://vici.org/vici/2966/'>https://vici.org/vici/2966/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1293.html'>TPPlace1293</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.7, 42.066669]}}, {"type": "Feature", "properties": {"id": "TPPlace1409", "name": "Levcopetra\u0304", "desc": "Punto di Pellari<br>Vici.org: <a href='https://vici.org/vici/2967/'>https://vici.org/vici/2967/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1409.html'>TPPlace1409</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.636815, 38.01746]}}, {"type": "Feature", "properties": {"id": "TPPlace131", "name": "Aqvis", "desc": "Aquae<br>Vici.org: <a href='https://vici.org/vici/2968/'>https://vici.org/vici/2968/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace131.html'>TPPlace131</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.369939, 36.450214]}}, {"type": "Feature", "properties": {"id": "TPPlace604", "name": "Dvrvico Regvm", "desc": "Duroicoregum<br>Vici.org: <a href='https://vici.org/vici/2969/'>https://vici.org/vici/2969/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace604.html'>TPPlace604</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.048151, 50.113548]}}, {"type": "Feature", "properties": {"id": "TPPlace145", "name": "Bibae", "desc": "A\u00efn Batria<br>Vici.org: <a href='https://vici.org/vici/2970/'>https://vici.org/vici/2970/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace145.html'>TPPlace145</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.25528, 36.269169]}}, {"type": "Feature", "properties": {"id": "TPPlace1487", "name": "Tanno Fl.", "desc": "Fiume Pesipe<br>Vici.org: <a href='https://vici.org/vici/2971/'>https://vici.org/vici/2971/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1487.html'>TPPlace1487</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.278648, 38.896111]}}, {"type": "Feature", "properties": {"id": "TPPlace64", "name": "Ad Aqvas", "desc": "Cataquas<br>Vici.org: <a href='https://vici.org/vici/2972/'>https://vici.org/vici/2972/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace64.html'>TPPlace64</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.336988, 36.525791]}}, {"type": "Feature", "properties": {"id": "TPPlace656", "name": "Aballo", "desc": "Avalon<br>Vici.org: <a href='https://vici.org/vici/2973/'>https://vici.org/vici/2973/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace656.html'>TPPlace656</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.90797, 47.492512]}}, {"type": "Feature", "properties": {"id": "TPPlace654", "name": "Bandritvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2974/'>https://vici.org/vici/2974/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace654.html'>TPPlace654</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.51421, 47.923153]}}, {"type": "Feature", "properties": {"id": "TPPlace2035", "name": "Acerdos", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2975/'>https://vici.org/vici/2975/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2035.html'>TPPlace2035</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.379602, 40.521454]}}, {"type": "Feature", "properties": {"id": "TPPlace490", "name": "Adammontem", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2976/'>https://vici.org/vici/2976/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace490.html'>TPPlace490</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.984489, 33.371925]}}, {"type": "Feature", "properties": {"id": "TPPlace2533", "name": "Adaras", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2977/'>https://vici.org/vici/2977/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2533.html'>TPPlace2533</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.688271, 38.410866]}}, {"type": "Feature", "properties": {"id": "TPPlace153", "name": "Vaccis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2978/'>https://vici.org/vici/2978/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace153.html'>TPPlace153</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.20546, 35.358814]}}, {"type": "Feature", "properties": {"id": "TPPlace1664", "name": "Adbasante", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2979/'>https://vici.org/vici/2979/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1664.html'>TPPlace1664</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.698191, 45.096806]}}, {"type": "Feature", "properties": {"id": "TPPlace323", "name": "Adcapsvmvltimvm", "desc": "Aubereo<br>Vici.org: <a href='https://vici.org/vici/2980/'>https://vici.org/vici/2980/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace323.html'>TPPlace323</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.883257, 30.852127]}}, {"type": "Feature", "properties": {"id": "TPPlace1156", "name": "Adconflventes", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2981/'>https://vici.org/vici/2981/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1156.html'>TPPlace1156</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.39517, 44.089401]}}, {"type": "Feature", "properties": {"id": "TPPlace1668", "name": "Addrinvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2982/'>https://vici.org/vici/2982/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1668.html'>TPPlace1668</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.104153, 44.387978]}}, {"type": "Feature", "properties": {"id": "TPPlace202", "name": "Ad dvo flvmina", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2983/'>https://vici.org/vici/2983/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace202.html'>TPPlace202</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.937906, 35.232403]}}, {"type": "Feature", "properties": {"id": "TPPlace2455", "name": "Ad fontem felicem", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2984/'>https://vici.org/vici/2984/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2455.html'>TPPlace2455</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.377449, 41.833]}}, {"type": "Feature", "properties": {"id": "TPPlace844", "name": "Ad Horrea", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2985/'>https://vici.org/vici/2985/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace844.html'>TPPlace844</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.956062, 43.549999]}}, {"type": "Feature", "properties": {"id": "TPPlace1637", "name": "Ad Labores", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2986/'>https://vici.org/vici/2986/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1637.html'>TPPlace1637</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.76976, 45.540047]}}, {"type": "Feature", "properties": {"id": "TPPlace1687", "name": "Ad Libros", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2987/'>https://vici.org/vici/2987/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1687.html'>TPPlace1687</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.072435, 43.616611]}}, {"type": "Feature", "properties": {"id": "TPPlace827", "name": "Martis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2988/'>https://vici.org/vici/2988/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace827.html'>TPPlace827</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.833543, 45.03323]}}, {"type": "Feature", "properties": {"id": "TPPlace517", "name": "Admedera", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2989/'>https://vici.org/vici/2989/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace517.html'>TPPlace517</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.410099, 33.586594]}}, {"type": "Feature", "properties": {"id": "TPPlace1732", "name": "Admedia\u0304", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2990/'>https://vici.org/vici/2990/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1732.html'>TPPlace1732</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.414171, 44.878605]}}, {"type": "Feature", "properties": {"id": "TPPlace2456", "name": "Ad mercvrivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2991/'>https://vici.org/vici/2991/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2456.html'>TPPlace2456</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.784389, 41.752369]}}, {"type": "Feature", "properties": {"id": "TPPlace114", "name": "Ad molas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2992/'>https://vici.org/vici/2992/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace114.html'>TPPlace114</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.886012, 36.117653]}}, {"type": "Feature", "properties": {"id": "TPPlace268", "name": "Adoleastrvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2993/'>https://vici.org/vici/2993/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace268.html'>TPPlace268</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.256696, 34.411411]}}, {"type": "Feature", "properties": {"id": "TPPlace1320", "name": "Adpactas", "desc": "Macere, Adpictas<br>Vici.org: <a href='https://vici.org/vici/2994/'>https://vici.org/vici/2994/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1320.html'>TPPlace1320</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.860163, 41.750202]}}, {"type": "Feature", "properties": {"id": "TPPlace1734", "name": "Ad Pannonios", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2995/'>https://vici.org/vici/2995/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1734.html'>TPPlace1734</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.283434, 45.149975]}}, {"type": "Feature", "properties": {"id": "TPPlace139", "name": "Adpertvsa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2996/'>https://vici.org/vici/2996/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace139.html'>TPPlace139</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.115375, 36.781395]}}, {"type": "Feature", "properties": {"id": "TPPlace1808", "name": "Adpicaria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2997/'>https://vici.org/vici/2997/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1808.html'>TPPlace1808</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.899973, 42.049915]}}, {"type": "Feature", "properties": {"id": "TPPlace1210", "name": "Adponte\u0304 ivlii", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2998/'>https://vici.org/vici/2998/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1210.html'>TPPlace1210</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.466793, 41.935844]}}, {"type": "Feature", "properties": {"id": "TPPlace1128", "name": "Adportv\u0304", "desc": "<br>Vici.org: <a href='https://vici.org/vici/2999/'>https://vici.org/vici/2999/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1128.html'>TPPlace1128</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.14042, 45.420334]}}, {"type": "Feature", "properties": {"id": "TPPlace1992", "name": "Adpvtea", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3000/'>https://vici.org/vici/3000/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1992.html'>TPPlace1992</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.630613, 43.527592]}}, {"type": "Feature", "properties": {"id": "TPPlace333", "name": "Adpvtevm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3001/'>https://vici.org/vici/3001/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace333.html'>TPPlace333</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.66744, 30.317862]}}, {"type": "Feature", "properties": {"id": "TPPlace2004", "name": "Ad radices", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3002/'>https://vici.org/vici/3002/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2004.html'>TPPlace2004</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.693899, 42.83115]}}, {"type": "Feature", "properties": {"id": "TPPlace2578", "name": "Ad serta", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3003/'>https://vici.org/vici/3003/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2578.html'>TPPlace2578</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.586975, 36.874199]}}, {"type": "Feature", "properties": {"id": "TPPlace1530", "name": "Adsilanos", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3004/'>https://vici.org/vici/3004/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1530.html'>TPPlace1530</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.153857, 46.237293]}}, {"type": "Feature", "properties": {"id": "TPPlace319", "name": "Adspelvncas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3005/'>https://vici.org/vici/3005/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace319.html'>TPPlace319</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.033091, 31.149939]}}, {"type": "Feature", "properties": {"id": "TPPlace1955", "name": "Adstoma", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3006/'>https://vici.org/vici/3006/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1955.html'>TPPlace1955</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.208647, 45.022633]}}, {"type": "Feature", "properties": {"id": "TPPlace1433", "name": "Adtvrres albas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3007/'>https://vici.org/vici/3007/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1433.html'>TPPlace1433</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.923377, 41.386204]}}, {"type": "Feature", "properties": {"id": "TPPlace1435", "name": "Ad tvrres", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3008/'>https://vici.org/vici/3008/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1435.html'>TPPlace1435</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.099955, 41.252487]}}, {"type": "Feature", "properties": {"id": "TPPlace2579", "name": "Ad Zociandem", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3009/'>https://vici.org/vici/3009/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2579.html'>TPPlace2579</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.788277, 37.009789]}}, {"type": "Feature", "properties": {"id": "TPPlace518", "name": "Adarin", "desc": "Atera<br>Vici.org: <a href='https://vici.org/vici/3010/'>https://vici.org/vici/3010/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace518.html'>TPPlace518</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.572544, 33.744488]}}, {"type": "Feature", "properties": {"id": "TPPlace2607", "name": "Adipte", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3011/'>https://vici.org/vici/3011/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2607.html'>TPPlace2607</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.72271, 37.846069]}}, {"type": "Feature", "properties": {"id": "TPPlace2478", "name": "Aegea", "desc": "Elegeia<br>Vici.org: <a href='https://vici.org/vici/3012/'>https://vici.org/vici/3012/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2478.html'>TPPlace2478</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.243561, 39.816334]}}, {"type": "Feature", "properties": {"id": "TPPlace198", "name": "Aeliae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3013/'>https://vici.org/vici/3013/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace198.html'>TPPlace198</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.437678, 35.423199]}}, {"type": "Feature", "properties": {"id": "TPPlace234", "name": "Aggarselnepte", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3014/'>https://vici.org/vici/3014/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace234.html'>TPPlace234</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.916067, 33.867992]}}, {"type": "Feature", "properties": {"id": "TPPlace1738", "name": "Agnavi(a)e", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3015/'>https://vici.org/vici/3015/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1738.html'>TPPlace1738</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.403427, 45.523445]}}, {"type": "Feature", "properties": {"id": "TPPlace339", "name": "Ampalaontes", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3016/'>https://vici.org/vici/3016/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace339.html'>TPPlace339</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.044533, 31.913256]}}, {"type": "Feature", "properties": {"id": "TPPlace332", "name": "Anabvcis Presidivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3017/'>https://vici.org/vici/3017/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace332.html'>TPPlace332</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.188848, 30.261267]}}, {"type": "Feature", "properties": {"id": "TPPlace2117", "name": "Anadynata", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3018/'>https://vici.org/vici/3018/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2117.html'>TPPlace2117</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.177185, 40.87545]}}, {"type": "Feature", "properties": {"id": "TPPlace1623", "name": "Ancvs", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3019/'>https://vici.org/vici/3019/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1623.html'>TPPlace1623</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.50375, 44.524609]}}, {"type": "Feature", "properties": {"id": "TPPlace2391", "name": "Antifillon", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3020/'>https://vici.org/vici/3020/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2391.html'>TPPlace2391</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.637051, 36.202572]}}, {"type": "Feature", "properties": {"id": "TPPlace353", "name": "Antipego", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3021/'>https://vici.org/vici/3021/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace353.html'>TPPlace353</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.96137, 32.076458]}}, {"type": "Feature", "properties": {"id": "TPPlace2116", "name": "Antoniopolis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3022/'>https://vici.org/vici/3022/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2116.html'>TPPlace2116</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.891212, 40.810345]}}, {"type": "Feature", "properties": {"id": "TPPlace1591", "name": "Aqva viva", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3023/'>https://vici.org/vici/3023/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1591.html'>TPPlace1591</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.233015, 46.343945]}}, {"type": "Feature", "properties": {"id": "TPPlace2304", "name": "Arasaxa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3024/'>https://vici.org/vici/3024/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2304.html'>TPPlace2304</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.872169, 38.617428]}}, {"type": "Feature", "properties": {"id": "TPPlace2609", "name": "Arcaiapis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3025/'>https://vici.org/vici/3025/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2609.html'>TPPlace2609</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.533794, 37.826775]}}, {"type": "Feature", "properties": {"id": "TPPlace2612", "name": "Arcamo", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3026/'>https://vici.org/vici/3026/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2612.html'>TPPlace2612</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.639526, 37.262482]}}, {"type": "Feature", "properties": {"id": "TPPlace1406", "name": "Arciade", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3027/'>https://vici.org/vici/3027/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1406.html'>TPPlace1406</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.812382, 38.286331]}}, {"type": "Feature", "properties": {"id": "TPPlace969", "name": "Arebrigivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3028/'>https://vici.org/vici/3028/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace969.html'>TPPlace969</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.984632, 45.764042]}}, {"type": "Feature", "properties": {"id": "TPPlace2546", "name": "Arega", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3029/'>https://vici.org/vici/3029/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2546.html'>TPPlace2546</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.342194, 39.294312]}}, {"type": "Feature", "properties": {"id": "TPPlace2490", "name": "Armanas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3030/'>https://vici.org/vici/3030/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2490.html'>TPPlace2490</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.438572, 39.865662]}}, {"type": "Feature", "properties": {"id": "TPPlace1012", "name": "Artobrige", "desc": "Gro\u00dfr\u00fcckstetten<br>Vici.org: <a href='https://vici.org/vici/3031/'>https://vici.org/vici/3031/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1012.html'>TPPlace1012</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.74932, 47.866585]}}, {"type": "Feature", "properties": {"id": "TPPlace1759", "name": "Arvtela", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3032/'>https://vici.org/vici/3032/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1759.html'>TPPlace1759</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.288086, 45.29052]}}, {"type": "Feature", "properties": {"id": "TPPlace1918", "name": "Asine", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3033/'>https://vici.org/vici/3033/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1918.html'>TPPlace1918</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.962963, 36.792812]}}, {"type": "Feature", "properties": {"id": "TPPlace293", "name": "Assaria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3034/'>https://vici.org/vici/3034/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace293.html'>TPPlace293</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.861553, 32.79047]}}, {"type": "Feature", "properties": {"id": "TPPlace1431", "name": "Astvra", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3035/'>https://vici.org/vici/3035/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1431.html'>TPPlace1431</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.765272, 41.408855]}}, {"type": "Feature", "properties": {"id": "TPPlace2596", "name": "Attas", "desc": "Neocaesarea<br>Vici.org: <a href='https://vici.org/vici/3036/'>https://vici.org/vici/3036/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2596.html'>TPPlace2596</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.198555, 35.976326]}}, {"type": "Feature", "properties": {"id": "TPPlace2566", "name": "Heracome", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3037/'>https://vici.org/vici/3037/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2566.html'>TPPlace2566</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.026745, 37.492458]}}, {"type": "Feature", "properties": {"id": "TPPlace1280", "name": "Avfinvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3038/'>https://vici.org/vici/3038/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1280.html'>TPPlace1280</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.194103, 41.336391]}}, {"type": "Feature", "properties": {"id": "TPPlace321", "name": "Avlazon", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3039/'>https://vici.org/vici/3039/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace321.html'>TPPlace321</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.430088, 31.047155]}}, {"type": "Feature", "properties": {"id": "TPPlace613", "name": "Avxenna", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3040/'>https://vici.org/vici/3040/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace613.html'>TPPlace613</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.039669, 49.441307]}}, {"type": "Feature", "properties": {"id": "TPPlace257", "name": "Avidvvicvs", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3041/'>https://vici.org/vici/3041/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace257.html'>TPPlace257</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.736343, 35.574802]}}, {"type": "Feature", "properties": {"id": "TPPlace141", "name": "Avitta", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3042/'>https://vici.org/vici/3042/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace141.html'>TPPlace141</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.705953, 36.40905]}}, {"type": "Feature", "properties": {"id": "TPPlace1723", "name": "Azizis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3043/'>https://vici.org/vici/3043/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1723.html'>TPPlace1723</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.847881, 45.486656]}}, {"type": "Feature", "properties": {"id": "TPPlace435", "name": "Azoton", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3044/'>https://vici.org/vici/3044/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace435.html'>TPPlace435</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.622372, 31.786516]}}, {"type": "Feature", "properties": {"id": "TPPlace211", "name": "Badias", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3045/'>https://vici.org/vici/3045/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace211.html'>TPPlace211</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.67125, 34.750225]}}, {"type": "Feature", "properties": {"id": "TPPlace2160", "name": "Bagrvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3046/'>https://vici.org/vici/3046/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2160.html'>TPPlace2160</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.048435, 39.025784]}}, {"type": "Feature", "properties": {"id": "TPPlace493", "name": "Balbyblos", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3047/'>https://vici.org/vici/3047/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace493.html'>TPPlace493</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.631035, 33.982327]}}, {"type": "Feature", "properties": {"id": "TPPlace2488", "name": "Barantea", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3048/'>https://vici.org/vici/3048/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2488.html'>TPPlace2488</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.146496, 40.054173]}}, {"type": "Feature", "properties": {"id": "TPPlace2553", "name": "Barsalivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3049/'>https://vici.org/vici/3049/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2553.html'>TPPlace2553</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.196716, 38.08812]}}, {"type": "Feature", "properties": {"id": "TPPlace2258", "name": "Bartae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3050/'>https://vici.org/vici/3050/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2258.html'>TPPlace2258</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.348099, 40.685806]}}, {"type": "Feature", "properties": {"id": "TPPlace1950", "name": "Bereo", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3051/'>https://vici.org/vici/3051/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1950.html'>TPPlace1950</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.164591, 44.934391]}}, {"type": "Feature", "properties": {"id": "TPPlace1722", "name": "Bersovia", "desc": "Berzobis<br>Vici.org: <a href='https://vici.org/vici/3052/'>https://vici.org/vici/3052/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1722.html'>TPPlace1722</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.629395, 45.424652]}}, {"type": "Feature", "properties": {"id": "TPPlace1697", "name": "Bigeste", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3053/'>https://vici.org/vici/3053/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1697.html'>TPPlace1697</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.838322, 43.214714]}}, {"type": "Feature", "properties": {"id": "TPPlace1980", "name": "Bitenas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3054/'>https://vici.org/vici/3054/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1980.html'>TPPlace1980</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.280663, 40.93586]}}, {"type": "Feature", "properties": {"id": "TPPlace1744", "name": "Blandiana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3055/'>https://vici.org/vici/3055/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1744.html'>TPPlace1744</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.385611, 45.979073]}}, {"type": "Feature", "properties": {"id": "TPPlace1923", "name": "Brvcla", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3056/'>https://vici.org/vici/3056/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1923.html'>TPPlace1923</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.729303, 46.312309]}}, {"type": "Feature", "properties": {"id": "TPPlace1757", "name": "Bvrridava", "desc": "Buridava<br>Vici.org: <a href='https://vici.org/vici/3057/'>https://vici.org/vici/3057/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1757.html'>TPPlace1757</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.301708, 45.019211]}}, {"type": "Feature", "properties": {"id": "TPPlace2015", "name": "Bvrtizo", "desc": "Burtudizon<br>Vici.org: <a href='https://vici.org/vici/3058/'>https://vici.org/vici/3058/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2015.html'>TPPlace2015</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.092241, 41.427933]}}, {"type": "Feature", "properties": {"id": "TPPlace1139", "name": "Bvtrio", "desc": "Butrium<br>Vici.org: <a href='https://vici.org/vici/3059/'>https://vici.org/vici/3059/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1139.html'>TPPlace1139</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.154815, 44.543056]}}, {"type": "Feature", "properties": {"id": "TPPlace839", "name": "Calcaria", "desc": "Calcaria Solarium<br>Vici.org: <a href='https://vici.org/vici/3060/'>https://vici.org/vici/3060/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace839.html'>TPPlace839</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.248532, 43.460297]}}, {"type": "Feature", "properties": {"id": "TPPlace344", "name": "Callis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3061/'>https://vici.org/vici/3061/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace344.html'>TPPlace344</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.198315, 32.683025]}}, {"type": "Feature", "properties": {"id": "TPPlace2240", "name": "Camila", "desc": "Ameletos<br>Vici.org: <a href='https://vici.org/vici/3062/'>https://vici.org/vici/3062/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2240.html'>TPPlace2240</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.394871, 41.105354]}}, {"type": "Feature", "properties": {"id": "TPPlace2388", "name": "Cano", "desc": "Caunus<br>Vici.org: <a href='https://vici.org/vici/3063/'>https://vici.org/vici/3063/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2388.html'>TPPlace2388</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.625837, 36.828274]}}, {"type": "Feature", "properties": {"id": "TPPlace1396", "name": "Caprasia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3064/'>https://vici.org/vici/3064/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1396.html'>TPPlace1396</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.271259, 39.621777]}}, {"type": "Feature", "properties": {"id": "TPPlace2728", "name": "Nagae", "desc": "Taq ~ Damghan<br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2728.html'>TPPlace2728</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [54.429775, 36.227657]}}, {"type": "Feature", "properties": {"id": "TPPlace1724", "name": "Capvt bvbali", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3066/'>https://vici.org/vici/3066/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1724.html'>TPPlace1724</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.092367, 45.432495]}}, {"type": "Feature", "properties": {"id": "TPPlace2564", "name": "Carbanvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3067/'>https://vici.org/vici/3067/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2564.html'>TPPlace2564</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.381355, 37.629311]}}, {"type": "Feature", "properties": {"id": "TPPlace1240", "name": "Careias", "desc": "Careiae<br>Vici.org: <a href='https://vici.org/vici/3068/'>https://vici.org/vici/3068/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1240.html'>TPPlace1240</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.308718, 42.037796]}}, {"type": "Feature", "properties": {"id": "TPPlace504", "name": "Carion", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3069/'>https://vici.org/vici/3069/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace504.html'>TPPlace504</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.316257, 34.776974]}}, {"type": "Feature", "properties": {"id": "TPPlace2419", "name": "Carnasso", "desc": "Pharnakeia<br>Vici.org: <a href='https://vici.org/vici/3070/'>https://vici.org/vici/3070/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2419.html'>TPPlace2419</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.39793, 40.919132]}}, {"type": "Feature", "properties": {"id": "TPPlace308", "name": "Casa Rimoniana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3071/'>https://vici.org/vici/3071/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace308.html'>TPPlace308</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.94639, 32.137924]}}, {"type": "Feature", "properties": {"id": "TPPlace108", "name": "Castellvm Fabatianvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3072/'>https://vici.org/vici/3072/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace108.html'>TPPlace108</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.832552, 36.283833]}}, {"type": "Feature", "properties": {"id": "TPPlace2497", "name": "Catispi", "desc": "Hatsiun<br>Vici.org: <a href='https://vici.org/vici/3073/'>https://vici.org/vici/3073/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2497.html'>TPPlace2497</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.665985, 39.360207]}}, {"type": "Feature", "properties": {"id": "TPPlace2502", "name": "Catispi", "desc": "Hatsiun<br>Vici.org: <a href='https://vici.org/vici/3074/'>https://vici.org/vici/3074/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2502.html'>TPPlace2502</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.665985, 39.360207]}}, {"type": "Feature", "properties": {"id": "TPPlace1991", "name": "Cazalet", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3075/'>https://vici.org/vici/3075/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1991.html'>TPPlace1991</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.661802, 42.850487]}}, {"type": "Feature", "properties": {"id": "TPPlace1763", "name": "Cedoni(a)e", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3076/'>https://vici.org/vici/3076/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1763.html'>TPPlace1763</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.156824, 45.781158]}}, {"type": "Feature", "properties": {"id": "TPPlace987", "name": "Celevso", "desc": "Celeusum<br>Vici.org: <a href='https://vici.org/vici/3077/'>https://vici.org/vici/3077/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace987.html'>TPPlace987</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.68892, 48.808048]}}, {"type": "Feature", "properties": {"id": "TPPlace1975", "name": "Cenopvrio", "desc": "Caenophrurium<br>Vici.org: <a href='https://vici.org/vici/3078/'>https://vici.org/vici/3078/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1975.html'>TPPlace1975</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.201399, 41.235241]}}, {"type": "Feature", "properties": {"id": "TPPlace1721", "name": "Centv\u0304 Pvtea", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3079/'>https://vici.org/vici/3079/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1721.html'>TPPlace1721</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.585516, 45.266994]}}, {"type": "Feature", "properties": {"id": "TPPlace1889", "name": "Ceroni", "desc": "Chaeronea<br>Vici.org: <a href='https://vici.org/vici/3080/'>https://vici.org/vici/3080/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1889.html'>TPPlace1889</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.845236, 38.495945]}}, {"type": "Feature", "properties": {"id": "TPPlace1929", "name": "Cersi(a)e", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3081/'>https://vici.org/vici/3081/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1929.html'>TPPlace1929</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.202345, 47.146881]}}, {"type": "Feature", "properties": {"id": "TPPlace223", "name": "Cerva", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3082/'>https://vici.org/vici/3082/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace223.html'>TPPlace223</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.07644, 34.86496]}}, {"type": "Feature", "properties": {"id": "TPPlace2571", "name": "Channvnia", "desc": "Chaonia<br>Vici.org: <a href='https://vici.org/vici/3083/'>https://vici.org/vici/3083/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2571.html'>TPPlace2571</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.26825, 36.879642]}}, {"type": "Feature", "properties": {"id": "TPPlace2555", "name": "Charmodara", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3084/'>https://vici.org/vici/3084/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2555.html'>TPPlace2555</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.764954, 37.651127]}}, {"type": "Feature", "properties": {"id": "TPPlace2091", "name": "Chelas", "desc": "Chelai<br>Vici.org: <a href='https://vici.org/vici/3085/'>https://vici.org/vici/3085/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2091.html'>TPPlace2091</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.337496, 41.18301]}}, {"type": "Feature", "properties": {"id": "TPPlace2591", "name": "Cholle", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3086/'>https://vici.org/vici/3086/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2591.html'>TPPlace2591</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.805367, 35.503815]}}, {"type": "Feature", "properties": {"id": "TPPlace79", "name": "Cicisa", "desc": "Cigisa<br>Vici.org: <a href='https://vici.org/vici/3087/'>https://vici.org/vici/3087/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace79.html'>TPPlace79</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.099599, 36.79961]}}, {"type": "Feature", "properties": {"id": "TPPlace2314", "name": "Cilca novvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3088/'>https://vici.org/vici/3088/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2314.html'>TPPlace2314</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.427338, 37.965584]}}, {"type": "Feature", "properties": {"id": "TPPlace2425", "name": "Citari", "desc": "Chytroi<br>Vici.org: <a href='https://vici.org/vici/3089/'>https://vici.org/vici/3089/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2425.html'>TPPlace2425</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.490692, 35.245773]}}, {"type": "Feature", "properties": {"id": "TPPlace2430", "name": "Cito", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3090/'>https://vici.org/vici/3090/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2430.html'>TPPlace2430</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.629471, 34.929596]}}, {"type": "Feature", "properties": {"id": "TPPlace1625", "name": "Clambetis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3091/'>https://vici.org/vici/3091/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1625.html'>TPPlace1625</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.815436, 44.241734]}}, {"type": "Feature", "properties": {"id": "TPPlace1765", "name": "Clevora", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3092/'>https://vici.org/vici/3092/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1765.html'>TPPlace1765</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.497524, 44.337303]}}, {"type": "Feature", "properties": {"id": "TPPlace1432", "name": "Clostris", "desc": "Clostra Romana<br>Vici.org: <a href='https://vici.org/vici/3093/'>https://vici.org/vici/3093/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1432.html'>TPPlace1432</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.872401, 41.41494]}}, {"type": "Feature", "properties": {"id": "TPPlace76", "name": "Clvcar", "desc": "Cluacaria<br>Vici.org: <a href='https://vici.org/vici/3094/'>https://vici.org/vici/3094/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace76.html'>TPPlace76</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.65, 36.733322]}}, {"type": "Feature", "properties": {"id": "TPPlace1303", "name": "Clvtvrno", "desc": "Cluturnum<br>Vici.org: <a href='https://vici.org/vici/3095/'>https://vici.org/vici/3095/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1303.html'>TPPlace1303</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.373563, 41.533897]}}, {"type": "Feature", "properties": {"id": "TPPlace2539", "name": "Coissa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3096/'>https://vici.org/vici/3096/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2539.html'>TPPlace2539</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.065887, 38.145756]}}, {"type": "Feature", "properties": {"id": "TPPlace3540", "name": "Colchana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3097/'>https://vici.org/vici/3097/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3540.html'>TPPlace3540</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.100018, 37.986637]}}, {"type": "Feature", "properties": {"id": "TPPlace2536", "name": "Colchis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3098/'>https://vici.org/vici/3098/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2536.html'>TPPlace2536</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.228821, 38.525848]}}, {"type": "Feature", "properties": {"id": "TPPlace2022", "name": "Colla", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3099/'>https://vici.org/vici/3099/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2022.html'>TPPlace2022</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.420589, 40.797134]}}, {"type": "Feature", "properties": {"id": "TPPlace2228", "name": "Colofon", "desc": "Colophon<br>Vici.org: <a href='https://vici.org/vici/3100/'>https://vici.org/vici/3100/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2228.html'>TPPlace2228</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.149508, 38.106873]}}, {"type": "Feature", "properties": {"id": "TPPlace364", "name": "Comarv", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3101/'>https://vici.org/vici/3101/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace364.html'>TPPlace364</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.734398, 30.966185]}}, {"type": "Feature", "properties": {"id": "TPPlace2291", "name": "Comassa", "desc": "Kamisa<br>Vici.org: <a href='https://vici.org/vici/3102/'>https://vici.org/vici/3102/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2291.html'>TPPlace2291</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.401154, 39.845768]}}, {"type": "Feature", "properties": {"id": "TPPlace2318", "name": "Comitanasso", "desc": "Comitanassus<br>Vici.org: <a href='https://vici.org/vici/3103/'>https://vici.org/vici/3103/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2318.html'>TPPlace2318</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.331993, 38.154552]}}, {"type": "Feature", "properties": {"id": "TPPlace2722", "name": "Concobas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3104/'>https://vici.org/vici/3104/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2722.html'>TPPlace2722</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [47.955711, 34.502892]}}, {"type": "Feature", "properties": {"id": "TPPlace2149", "name": "Corvevnte", "desc": "Gorbeus<br>Vici.org: <a href='https://vici.org/vici/3105/'>https://vici.org/vici/3105/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2149.html'>TPPlace2149</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.87447, 39.694839]}}, {"type": "Feature", "properties": {"id": "TPPlace1028", "name": "Coveliacas", "desc": "Coveliacae<br>Vici.org: <a href='https://vici.org/vici/3106/'>https://vici.org/vici/3106/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1028.html'>TPPlace1028</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.202012, 47.637352]}}, {"type": "Feature", "properties": {"id": "TPPlace2123", "name": "Cromen", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3107/'>https://vici.org/vici/3107/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2123.html'>TPPlace2123</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.536701, 40.700733]}}, {"type": "Feature", "properties": {"id": "TPPlace32", "name": "Cvlvcitani", "desc": "Culucitanis<br>Vici.org: <a href='https://vici.org/vici/3108/'>https://vici.org/vici/3108/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace32.html'>TPPlace32</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.252483, 37.030022]}}, {"type": "Feature", "properties": {"id": "TPPlace2222", "name": "Cyme", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3109/'>https://vici.org/vici/3109/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2222.html'>TPPlace2222</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.942154, 38.761848]}}, {"type": "Feature", "properties": {"id": "TPPlace2598", "name": "Cymiza", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3110/'>https://vici.org/vici/3110/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2598.html'>TPPlace2598</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.116665, 38.400002]}}, {"type": "Feature", "properties": {"id": "TPPlace454", "name": "Cypsaria", "desc": "Gypsaria<br>Vici.org: <a href='https://vici.org/vici/3111/'>https://vici.org/vici/3111/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace454.html'>TPPlace454</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.683067, 29.992428]}}, {"type": "Feature", "properties": {"id": "TPPlace2132", "name": "Dablis", "desc": "Dableis<br>Vici.org: <a href='https://vici.org/vici/3112/'>https://vici.org/vici/3112/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2132.html'>TPPlace2132</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.682356, 40.269619]}}, {"type": "Feature", "properties": {"id": "TPPlace2133", "name": "Dadastana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3113/'>https://vici.org/vici/3113/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2133.html'>TPPlace2133</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.04986, 40.185467]}}, {"type": "Feature", "properties": {"id": "TPPlace2603", "name": "Dagnevana", "desc": "Arest<br>Vici.org: <a href='https://vici.org/vici/3114/'>https://vici.org/vici/3114/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2603.html'>TPPlace2603</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.65517, 38.925343]}}, {"type": "Feature", "properties": {"id": "TPPlace2272", "name": "Danae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3115/'>https://vici.org/vici/3115/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2272.html'>TPPlace2272</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.444733, 40.385616]}}, {"type": "Feature", "properties": {"id": "TPPlace524", "name": "Danova", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3116/'>https://vici.org/vici/3116/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace524.html'>TPPlace524</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.076565, 34.27512]}}, {"type": "Feature", "properties": {"id": "TPPlace2206", "name": "Dardano", "desc": "Dardanos<br>Vici.org: <a href='https://vici.org/vici/3117/'>https://vici.org/vici/3117/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2206.html'>TPPlace2206</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.37442, 40.079727]}}, {"type": "Feature", "properties": {"id": "TPPlace2477", "name": "Darvcinte", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3118/'>https://vici.org/vici/3118/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2477.html'>TPPlace2477</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.047249, 39.947208]}}, {"type": "Feature", "properties": {"id": "TPPlace2528", "name": "Dasevsa", "desc": "Dascusa<br>Vici.org: <a href='https://vici.org/vici/3119/'>https://vici.org/vici/3119/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2528.html'>TPPlace2528</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.751083, 38.933773]}}, {"type": "Feature", "properties": {"id": "TPPlace520", "name": "Deleda", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3120/'>https://vici.org/vici/3120/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace520.html'>TPPlace520</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.772835, 34.425911]}}, {"type": "Feature", "properties": {"id": "TPPlace1286", "name": "Dertvm", "desc": "Diria<br>Vici.org: <a href='https://vici.org/vici/3121/'>https://vici.org/vici/3121/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1286.html'>TPPlace1286</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.290403, 40.956966]}}, {"type": "Feature", "properties": {"id": "TPPlace329", "name": "Digdida Mvnicipivm Selorvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3122/'>https://vici.org/vici/3122/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace329.html'>TPPlace329</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.16671, 30.697969]}}, {"type": "Feature", "properties": {"id": "TPPlace2414", "name": "Domana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3123/'>https://vici.org/vici/3123/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2414.html'>TPPlace2414</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.65131, 40.212238]}}, {"type": "Feature", "properties": {"id": "TPPlace2279", "name": "Dona", "desc": "Doara<br>Vici.org: <a href='https://vici.org/vici/3124/'>https://vici.org/vici/3124/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2279.html'>TPPlace2279</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.368076, 38.214142]}}, {"type": "Feature", "properties": {"id": "TPPlace2278", "name": "Aqvas Aravenas", "desc": "Aquae Saravenae<br>Vici.org: <a href='https://vici.org/vici/3125/'>https://vici.org/vici/3125/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2278.html'>TPPlace2278</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.160473, 39.146183]}}, {"type": "Feature", "properties": {"id": "TPPlace2599", "name": "Dyzanas", "desc": "Dauduana<br>Vici.org: <a href='https://vici.org/vici/3126/'>https://vici.org/vici/3126/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2599.html'>TPPlace2599</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.297672, 38.477154]}}, {"type": "Feature", "properties": {"id": "TPPlace122", "name": "Drvsiliana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3127/'>https://vici.org/vici/3127/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace122.html'>TPPlace122</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.907667, 36.249546]}}, {"type": "Feature", "properties": {"id": "TPPlace2141", "name": "Eccobriga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3128/'>https://vici.org/vici/3128/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2141.html'>TPPlace2141</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.650368, 40.020912]}}, {"type": "Feature", "properties": {"id": "TPPlace1748", "name": "Egeta", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3129/'>https://vici.org/vici/3129/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1748.html'>TPPlace1748</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.445309, 44.469116]}}, {"type": "Feature", "properties": {"id": "TPPlace1999", "name": "Egirca", "desc": "Egerica<br>Vici.org: <a href='https://vici.org/vici/3130/'>https://vici.org/vici/3130/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1999.html'>TPPlace1999</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.873011, 42.387417]}}, {"type": "Feature", "properties": {"id": "TPPlace2217", "name": "Ela", "desc": "Elaea<br>Vici.org: <a href='https://vici.org/vici/3131/'>https://vici.org/vici/3131/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2217.html'>TPPlace2217</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.055256, 38.941643]}}, {"type": "Feature", "properties": {"id": "TPPlace2522", "name": "Elegarsina", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3132/'>https://vici.org/vici/3132/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2522.html'>TPPlace2522</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.970917, 38.890297]}}, {"type": "Feature", "properties": {"id": "TPPlace1622", "name": "Epidotio", "desc": "Epidotum<br>Vici.org: <a href='https://vici.org/vici/3133/'>https://vici.org/vici/3133/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1622.html'>TPPlace1622</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.420023, 44.726959]}}, {"type": "Feature", "properties": {"id": "TPPlace2585", "name": "Eraciza", "desc": "Eragiza<br>Vici.org: <a href='https://vici.org/vici/3134/'>https://vici.org/vici/3134/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2585.html'>TPPlace2585</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.070797, 36.20731]}}, {"type": "Feature", "properties": {"id": "TPPlace1276", "name": "Ergitiv\u0304", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3135/'>https://vici.org/vici/3135/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1276.html'>TPPlace1276</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.49961, 41.714153]}}, {"type": "Feature", "properties": {"id": "TPPlace1964", "name": "Erite", "desc": "Ereta<br>Vici.org: <a href='https://vici.org/vici/3136/'>https://vici.org/vici/3136/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1964.html'>TPPlace1964</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.549999, 42.75]}}, {"type": "Feature", "properties": {"id": "TPPlace1005", "name": "Escone", "desc": "Esco<br>Vici.org: <a href='https://vici.org/vici/3137/'>https://vici.org/vici/3137/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1005.html'>TPPlace1005</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.637503, 47.813438]}}, {"type": "Feature", "properties": {"id": "TPPlace2287", "name": "Evdagina", "desc": "Euagina<br>Vici.org: <a href='https://vici.org/vici/3138/'>https://vici.org/vici/3138/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2287.html'>TPPlace2287</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.011967, 38.521908]}}, {"type": "Feature", "properties": {"id": "TPPlace956", "name": "Evdracinvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3139/'>https://vici.org/vici/3139/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace956.html'>TPPlace956</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.183885, 45.835682]}}, {"type": "Feature", "properties": {"id": "TPPlace2056", "name": "Evporea", "desc": "Euporia<br>Vici.org: <a href='https://vici.org/vici/3140/'>https://vici.org/vici/3140/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2056.html'>TPPlace2056</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.562336, 41.066769]}}, {"type": "Feature", "properties": {"id": "TPPlace1837", "name": "Evristo", "desc": "Euristus<br>Vici.org: <a href='https://vici.org/vici/3141/'>https://vici.org/vici/3141/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1837.html'>TPPlace1837</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.905472, 41.43375]}}, {"type": "Feature", "properties": {"id": "TPPlace1347", "name": "Ezetiv\u0304", "desc": "Azetium<br>Vici.org: <a href='https://vici.org/vici/3142/'>https://vici.org/vici/3142/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1347.html'>TPPlace1347</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.005772, 41.009167]}}, {"type": "Feature", "properties": {"id": "TPPlace1870", "name": "Falera", "desc": "Phalara<br>Vici.org: <a href='https://vici.org/vici/3143/'>https://vici.org/vici/3143/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1870.html'>TPPlace1870</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.628969, 38.915096]}}, {"type": "Feature", "properties": {"id": "TPPlace1324", "name": "Febrateri(a)e", "desc": "Fabrateria Nova<br>Vici.org: <a href='https://vici.org/vici/3144/'>https://vici.org/vici/3144/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1324.html'>TPPlace1324</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.558107, 41.519291]}}, {"type": "Feature", "properties": {"id": "TPPlace638", "name": "Fixtvinvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3145/'>https://vici.org/vici/3145/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace638.html'>TPPlace638</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.881184, 48.956432]}}, {"type": "Feature", "properties": {"id": "TPPlace101", "name": "Fons Camerata", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3146/'>https://vici.org/vici/3146/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace101.html'>TPPlace101</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.983316, 36.39996]}}, {"type": "Feature", "properties": {"id": "TPPlace1249", "name": "Foro Avreli", "desc": "Forum Aurelii<br>Vici.org: <a href='https://vici.org/vici/3147/'>https://vici.org/vici/3147/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1249.html'>TPPlace1249</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.607969, 42.35146]}}, {"type": "Feature", "properties": {"id": "TPPlace1079", "name": "Foro Clodi", "desc": "Forum Clodi<br>Vici.org: <a href='https://vici.org/vici/3148/'>https://vici.org/vici/3148/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1079.html'>TPPlace1079</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.286228, 44.193657]}}, {"type": "Feature", "properties": {"id": "TPPlace2285", "name": "Foroba", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3149/'>https://vici.org/vici/3149/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2285.html'>TPPlace2285</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.413334, 39.683014]}}, {"type": "Feature", "properties": {"id": "TPPlace1088", "name": "Fossis papirianis", "desc": "Fossae Papirianae<br>Vici.org: <a href='https://vici.org/vici/3150/'>https://vici.org/vici/3150/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1088.html'>TPPlace1088</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.256911, 43.874535]}}, {"type": "Feature", "properties": {"id": "TPPlace2410", "name": "Frigdarivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3151/'>https://vici.org/vici/3151/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2410.html'>TPPlace2410</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.622894, 40.569]}}, {"type": "Feature", "properties": {"id": "TPPlace1369", "name": "Fvrfan(a)e", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3152/'>https://vici.org/vici/3152/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1369.html'>TPPlace1369</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.901436, 41.264996]}}, {"type": "Feature", "properties": {"id": "TPPlace826", "name": "Gadaone", "desc": "Gaesao<br>Vici.org: <a href='https://vici.org/vici/3153/'>https://vici.org/vici/3153/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace826.html'>TPPlace826</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.793592, 44.952969]}}, {"type": "Feature", "properties": {"id": "TPPlace1735", "name": "Gaganis", "desc": "Gaganae<br>Vici.org: <a href='https://vici.org/vici/3154/'>https://vici.org/vici/3154/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1735.html'>TPPlace1735</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.309265, 45.20969]}}, {"type": "Feature", "properties": {"id": "TPPlace2270", "name": "Gagonda", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3155/'>https://vici.org/vici/3155/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2270.html'>TPPlace2270</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.905018, 40.385635]}}, {"type": "Feature", "properties": {"id": "TPPlace1835", "name": "Gallicvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3156/'>https://vici.org/vici/3156/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1835.html'>TPPlace1835</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.820564, 40.790112]}}, {"type": "Feature", "properties": {"id": "TPPlace56", "name": "Gallvm Gallinativm", "desc": "Ad Gall(inaci)um<br>Vici.org: <a href='https://vici.org/vici/3157/'>https://vici.org/vici/3157/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace56.html'>TPPlace56</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.096435, 36.90546]}}, {"type": "Feature", "properties": {"id": "TPPlace2251", "name": "Garsi", "desc": "Carissa<br>Vici.org: <a href='https://vici.org/vici/3158/'>https://vici.org/vici/3158/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2251.html'>TPPlace2251</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.140617, 40.527786]}}, {"type": "Feature", "properties": {"id": "TPPlace1451", "name": "Gazati(a)e", "desc": "Calatia<br>Vici.org: <a href='https://vici.org/vici/3159/'>https://vici.org/vici/3159/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1451.html'>TPPlace1451</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.351473, 41.045982]}}, {"type": "Feature", "properties": {"id": "TPPlace1667", "name": "Gensis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3160/'>https://vici.org/vici/3160/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1667.html'>TPPlace1667</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.311434, 44.652916]}}, {"type": "Feature", "properties": {"id": "TPPlace2376", "name": "Gephyra", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3161/'>https://vici.org/vici/3161/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2376.html'>TPPlace2376</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.352592, 36.249653]}}, {"type": "Feature", "properties": {"id": "TPPlace1743", "name": "Germizera", "desc": "Germisara<br>Vici.org: <a href='https://vici.org/vici/3162/'>https://vici.org/vici/3162/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1743.html'>TPPlace1743</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.164364, 45.897053]}}, {"type": "Feature", "properties": {"id": "TPPlace1746", "name": "Gervlatis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3163/'>https://vici.org/vici/3163/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1746.html'>TPPlace1746</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.250032, 44.463516]}}, {"type": "Feature", "properties": {"id": "TPPlace1729", "name": "Adscrofvlas", "desc": "Ad Scorfulas<br>Vici.org: <a href='https://vici.org/vici/3164/'>https://vici.org/vici/3164/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1729.html'>TPPlace1729</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.982677, 44.604122]}}, {"type": "Feature", "properties": {"id": "TPPlace1546", "name": "Gervlatis", "desc": "Gerulata<br>Vici.org: <a href='https://vici.org/vici/3165/'>https://vici.org/vici/3165/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1546.html'>TPPlace1546</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.142727, 48.057411]}}, {"type": "Feature", "properties": {"id": "TPPlace297", "name": "Getvllv", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3166/'>https://vici.org/vici/3166/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace297.html'>TPPlace297</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.596282, 32.783436]}}, {"type": "Feature", "properties": {"id": "TPPlace2408", "name": "Gizenenica", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3167/'>https://vici.org/vici/3167/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2408.html'>TPPlace2408</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.598492, 40.761646]}}, {"type": "Feature", "properties": {"id": "TPPlace2506", "name": "Gobdi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3168/'>https://vici.org/vici/3168/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2506.html'>TPPlace2506</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.947777, 38.552502]}}, {"type": "Feature", "properties": {"id": "TPPlace354", "name": "Gonia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3169/'>https://vici.org/vici/3169/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace354.html'>TPPlace354</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.957617, 32.066826]}}, {"type": "Feature", "properties": {"id": "TPPlace1783", "name": "Gramrianis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3170/'>https://vici.org/vici/3170/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1783.html'>TPPlace1783</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.795271, 43.449963]}}, {"type": "Feature", "properties": {"id": "TPPlace1798", "name": "Nalata", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3171/'>https://vici.org/vici/3171/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1798.html'>TPPlace1798</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.199598, 42.511799]}}, {"type": "Feature", "properties": {"id": "TPPlace2494", "name": "Hariza", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3172/'>https://vici.org/vici/3172/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2494.html'>TPPlace2494</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.799862, 39.697262]}}, {"type": "Feature", "properties": {"id": "TPPlace2518", "name": "Hassis", "desc": "Haza<br>Vici.org: <a href='https://vici.org/vici/3173/'>https://vici.org/vici/3173/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2518.html'>TPPlace2518</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.333332, 39.983334]}}, {"type": "Feature", "properties": {"id": "TPPlace466", "name": "Havarra", "desc": "Auara<br>Vici.org: <a href='https://vici.org/vici/3174/'>https://vici.org/vici/3174/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace466.html'>TPPlace466</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.289139, 29.959749]}}, {"type": "Feature", "properties": {"id": "TPPlace495", "name": "Heldo", "desc": "Libo<br>Vici.org: <a href='https://vici.org/vici/3175/'>https://vici.org/vici/3175/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace495.html'>TPPlace495</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.361477, 34.208809]}}, {"type": "Feature", "properties": {"id": "TPPlace2233", "name": "Helega", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3176/'>https://vici.org/vici/3176/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2233.html'>TPPlace2233</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.894016, 41.571323]}}, {"type": "Feature", "properties": {"id": "TPPlace526", "name": "Heliaramia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3177/'>https://vici.org/vici/3177/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace526.html'>TPPlace526</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.62048, 34.41114]}}, {"type": "Feature", "properties": {"id": "TPPlace597", "name": "Hermomacvm", "desc": "Hermoniacum<br>Vici.org: <a href='https://vici.org/vici/3178/'>https://vici.org/vici/3178/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace597.html'>TPPlace597</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.529921, 50.249016]}}, {"type": "Feature", "properties": {"id": "TPPlace2182", "name": "Hierapoli", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3179/'>https://vici.org/vici/3179/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2182.html'>TPPlace2182</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.121538, 37.91819]}}, {"type": "Feature", "properties": {"id": "TPPlace506", "name": "iammvra", "desc": "Mariamme<br>Vici.org: <a href='https://vici.org/vici/3180/'>https://vici.org/vici/3180/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace506.html'>TPPlace506</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.494324, 34.906914]}}, {"type": "Feature", "properties": {"id": "TPPlace1659", "name": "idiminio", "desc": "Idiminium<br>Vici.org: <a href='https://vici.org/vici/3181/'>https://vici.org/vici/3181/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1659.html'>TPPlace1659</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.151567, 44.935505]}}, {"type": "Feature", "properties": {"id": "TPPlace1779", "name": "idimo", "desc": "Idimum<br>Vici.org: <a href='https://vici.org/vici/3182/'>https://vici.org/vici/3182/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1779.html'>TPPlace1779</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.355824, 44.131744]}}, {"type": "Feature", "properties": {"id": "TPPlace1833", "name": "Idomenia", "desc": "Idomene<br>Vici.org: <a href='https://vici.org/vici/3183/'>https://vici.org/vici/3183/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1833.html'>TPPlace1833</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.490618, 41.278786]}}, {"type": "Feature", "properties": {"id": "TPPlace2207", "name": "Ilio", "desc": "Ilium<br>Vici.org: <a href='https://vici.org/vici/3184/'>https://vici.org/vici/3184/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2207.html'>TPPlace2207</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.264755, 39.954102]}}, {"type": "Feature", "properties": {"id": "TPPlace1689", "name": "Inmonte Bvlsinio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3185/'>https://vici.org/vici/3185/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1689.html'>TPPlace1689</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.124716, 43.704632]}}, {"type": "Feature", "properties": {"id": "TPPlace136", "name": "Invca", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3186/'>https://vici.org/vici/3186/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace136.html'>TPPlace136</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.012412, 36.72813]}}, {"type": "Feature", "properties": {"id": "TPPlace9", "name": "Iominio Mvnicipio", "desc": "Iomnium<br>Vici.org: <a href='https://vici.org/vici/3187/'>https://vici.org/vici/3187/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace9.html'>TPPlace9</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.123245, 36.891178]}}, {"type": "Feature", "properties": {"id": "TPPlace1597", "name": "Iovia", "desc": "Cardono<br>Vici.org: <a href='https://vici.org/vici/3188/'>https://vici.org/vici/3188/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1597.html'>TPPlace1597</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.510759, 45.854408]}}, {"type": "Feature", "properties": {"id": "TPPlace1778", "name": "Iovis Pago", "desc": "Iovis Pagus<br>Vici.org: <a href='https://vici.org/vici/3189/'>https://vici.org/vici/3189/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1778.html'>TPPlace1778</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.337761, 44.391827]}}, {"type": "Feature", "properties": {"id": "TPPlace2344", "name": "isaria", "desc": "Isaura<br>Vici.org: <a href='https://vici.org/vici/3190/'>https://vici.org/vici/3190/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2344.html'>TPPlace2344</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.662605, 37.331055]}}, {"type": "Feature", "properties": {"id": "TPPlace1009", "name": "Isvnisca", "desc": "Kleinhelfendorf, Isinisca<br>Vici.org: <a href='https://vici.org/vici/20018/'>https://vici.org/vici/20018/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1009.html'>TPPlace1009</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.795772, 47.946274]}}, {"type": "Feature", "properties": {"id": "TPPlace2548", "name": "Lagalasso", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3192/'>https://vici.org/vici/3192/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2548.html'>TPPlace2548</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.051884, 38.183296]}}, {"type": "Feature", "properties": {"id": "TPPlace170", "name": "Lambafvdi", "desc": "Lambafundi<br>Vici.org: <a href='https://vici.org/vici/3193/'>https://vici.org/vici/3193/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace170.html'>TPPlace170</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.465983, 35.481197]}}, {"type": "Feature", "properties": {"id": "TPPlace169", "name": "Lambese", "desc": "Lambaesis<br>Vici.org: <a href='https://vici.org/vici/3194/'>https://vici.org/vici/3194/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace169.html'>TPPlace169</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.255649, 35.491577]}}, {"type": "Feature", "properties": {"id": "TPPlace168", "name": "Lambiridi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3195/'>https://vici.org/vici/3195/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace168.html'>TPPlace168</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.077305, 35.503765]}}, {"type": "Feature", "properties": {"id": "TPPlace1059", "name": "Lambrvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3196/'>https://vici.org/vici/3196/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1059.html'>TPPlace1059</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.527501, 45.158684]}}, {"type": "Feature", "properties": {"id": "TPPlace247", "name": "Lamniana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3197/'>https://vici.org/vici/3197/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace247.html'>TPPlace247</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.471795, 36.275429]}}, {"type": "Feature", "properties": {"id": "TPPlace186", "name": "Larabvs", "desc": "Lares<br>Vici.org: <a href='https://vici.org/vici/3198/'>https://vici.org/vici/3198/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace186.html'>TPPlace186</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.841397, 36.081287]}}, {"type": "Feature", "properties": {"id": "TPPlace1928", "name": "Largiana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3199/'>https://vici.org/vici/3199/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1928.html'>TPPlace1928</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.181679, 47.113403]}}, {"type": "Feature", "properties": {"id": "TPPlace512", "name": "Lavdicia Scabiosa", "desc": "Laodicea ad Libanum<br>Vici.org: <a href='https://vici.org/vici/3200/'>https://vici.org/vici/3200/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace512.html'>TPPlace512</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.54147, 34.572647]}}, {"type": "Feature", "properties": {"id": "TPPlace2227", "name": "Lebedo", "desc": "Lebedos<br>Vici.org: <a href='https://vici.org/vici/3201/'>https://vici.org/vici/3201/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2227.html'>TPPlace2227</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.964722, 38.077885]}}, {"type": "Feature", "properties": {"id": "TPPlace667", "name": "Legedia", "desc": "Avranches, Ingena<br>Vici.org: <a href='https://vici.org/vici/3202/'>https://vici.org/vici/3202/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace667.html'>TPPlace667</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.355406, 48.683552]}}, {"type": "Feature", "properties": {"id": "TPPlace92", "name": "Lemelli presidivm", "desc": "Lemellef<br>Vici.org: <a href='https://vici.org/vici/3203/'>https://vici.org/vici/3203/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace92.html'>TPPlace92</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.898028, 35.901196]}}, {"type": "Feature", "properties": {"id": "TPPlace1041", "name": "Levceris", "desc": "Leucerae<br>Vici.org: <a href='https://vici.org/vici/3204/'>https://vici.org/vici/3204/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1041.html'>TPPlace1041</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.390035, 45.852985]}}, {"type": "Feature", "properties": {"id": "TPPlace2383", "name": "Lince", "desc": "Priene<br>Vici.org: <a href='https://vici.org/vici/3205/'>https://vici.org/vici/3205/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2383.html'>TPPlace2383</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.319042, 37.670464]}}, {"type": "Feature", "properties": {"id": "TPPlace2479", "name": "Lvcvs Basaro", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3206/'>https://vici.org/vici/3206/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2479.html'>TPPlace2479</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.385082, 39.779453]}}, {"type": "Feature", "properties": {"id": "TPPlace455", "name": "Lysa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3207/'>https://vici.org/vici/3207/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace455.html'>TPPlace455</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.357853, 30.409962]}}, {"type": "Feature", "properties": {"id": "TPPlace267", "name": "Macomades Minores", "desc": "Iunci<br>Vici.org: <a href='https://vici.org/vici/3208/'>https://vici.org/vici/3208/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace267.html'>TPPlace267</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.497324, 34.52586]}}, {"type": "Feature", "properties": {"id": "TPPlace317", "name": "Macomadase l(orvm)", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3209/'>https://vici.org/vici/3209/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace317.html'>TPPlace317</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.588337, 31.205048]}}, {"type": "Feature", "properties": {"id": "TPPlace2271", "name": "Magabvla", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3210/'>https://vici.org/vici/3210/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2271.html'>TPPlace2271</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.039089, 40.383949]}}, {"type": "Feature", "properties": {"id": "TPPlace1129", "name": "Maio medvaco", "desc": "Meduacus Maior<br>Vici.org: <a href='https://vici.org/vici/3211/'>https://vici.org/vici/3211/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1129.html'>TPPlace1129</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.102889, 45.41346]}}, {"type": "Feature", "properties": {"id": "TPPlace2368", "name": "Mallo", "desc": "Mallos<br>Vici.org: <a href='https://vici.org/vici/3212/'>https://vici.org/vici/3212/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2368.html'>TPPlace2368</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.486359, 36.74688]}}, {"type": "Feature", "properties": {"id": "TPPlace194", "name": "Manange", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3213/'>https://vici.org/vici/3213/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace194.html'>TPPlace194</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.390765, 35.884304]}}, {"type": "Feature", "properties": {"id": "TPPlace350", "name": "Mandis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3214/'>https://vici.org/vici/3214/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace350.html'>TPPlace350</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.504053, 32.586613]}}, {"type": "Feature", "properties": {"id": "TPPlace2107", "name": "Claudiopolis", "desc": "Eskihisar<br>Vici.org: <a href='https://vici.org/vici/3215/'>https://vici.org/vici/3215/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2107.html'>TPPlace2107</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.541674, 40.7589]}}, {"type": "Feature", "properties": {"id": "TPPlace2114", "name": "Manoris", "desc": "Mandris<br>Vici.org: <a href='https://vici.org/vici/3216/'>https://vici.org/vici/3216/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2114.html'>TPPlace2114</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.984095, 40.797215]}}, {"type": "Feature", "properties": {"id": "TPPlace1600", "name": "Marinianis", "desc": "Magniana<br>Vici.org: <a href='https://vici.org/vici/3217/'>https://vici.org/vici/3217/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1600.html'>TPPlace1600</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.160946, 45.759476]}}, {"type": "Feature", "properties": {"id": "TPPlace1736", "name": "Masclianis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3218/'>https://vici.org/vici/3218/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1736.html'>TPPlace1736</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.28385, 45.25518]}}, {"type": "Feature", "properties": {"id": "TPPlace1232", "name": "Materno", "desc": "Maternum<br>Vici.org: <a href='https://vici.org/vici/3219/'>https://vici.org/vici/3219/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1232.html'>TPPlace1232</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.726716, 42.550457]}}, {"type": "Feature", "properties": {"id": "TPPlace2244", "name": "Matvasco", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3220/'>https://vici.org/vici/3220/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2244.html'>TPPlace2244</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.762314, 40.479748]}}, {"type": "Feature", "properties": {"id": "TPPlace2412", "name": "Medocia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3221/'>https://vici.org/vici/3221/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2412.html'>TPPlace2412</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.650211, 40.520672]}}, {"type": "Feature", "properties": {"id": "TPPlace2293", "name": "Megalasso", "desc": "Megalossos<br>Vici.org: <a href='https://vici.org/vici/3222/'>https://vici.org/vici/3222/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2293.html'>TPPlace2293</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.980042, 40.196835]}}, {"type": "Feature", "properties": {"id": "TPPlace1790", "name": "Meldiis", "desc": "Meldia<br>Vici.org: <a href='https://vici.org/vici/3223/'>https://vici.org/vici/3223/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1790.html'>TPPlace1790</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.930004, 42.922131]}}, {"type": "Feature", "properties": {"id": "TPPlace2373", "name": "Meleagrvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3224/'>https://vici.org/vici/3224/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2373.html'>TPPlace2373</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.385635, 36.519966]}}, {"type": "Feature", "properties": {"id": "TPPlace814", "name": "Mellosecto", "desc": "Mellosedo<br>Vici.org: <a href='https://vici.org/vici/3225/'>https://vici.org/vici/3225/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace814.html'>TPPlace814</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.129668, 45.035942]}}, {"type": "Feature", "properties": {"id": "TPPlace54", "name": "Memblon(a)e", "desc": "Membrone<br>Vici.org: <a href='https://vici.org/vici/3226/'>https://vici.org/vici/3226/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace54.html'>TPPlace54</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.017825, 37.100163]}}, {"type": "Feature", "properties": {"id": "TPPlace1966", "name": "Mesembria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3227/'>https://vici.org/vici/3227/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1966.html'>TPPlace1966</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.7181, 42.660416]}}, {"type": "Feature", "properties": {"id": "TPPlace1379", "name": "Mesochoro", "desc": "Mesochorum<br>Vici.org: <a href='https://vici.org/vici/3228/'>https://vici.org/vici/3228/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1379.html'>TPPlace1379</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.436972, 40.481483]}}, {"type": "Feature", "properties": {"id": "TPPlace2274", "name": "Mesorome", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3229/'>https://vici.org/vici/3229/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2274.html'>TPPlace2274</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.088245, 40.176689]}}, {"type": "Feature", "properties": {"id": "TPPlace2551", "name": "Metita", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3230/'>https://vici.org/vici/3230/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2551.html'>TPPlace2551</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.144192, 38.161076]}}, {"type": "Feature", "properties": {"id": "TPPlace2224", "name": "Metropolis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3231/'>https://vici.org/vici/3231/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2224.html'>TPPlace2224</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.324524, 38.123993]}}, {"type": "Feature", "properties": {"id": "TPPlace2153", "name": "Mideo", "desc": "Midaion<br>Vici.org: <a href='https://vici.org/vici/3232/'>https://vici.org/vici/3232/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2153.html'>TPPlace2153</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.844765, 39.800083]}}, {"type": "Feature", "properties": {"id": "TPPlace1130", "name": "Mino medvaco", "desc": "Meduacus Minor<br>Vici.org: <a href='https://vici.org/vici/3233/'>https://vici.org/vici/3233/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1130.html'>TPPlace1130</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.098723, 45.334351]}}, {"type": "Feature", "properties": {"id": "TPPlace2221", "name": "Mirinna", "desc": "Myrina<br>Vici.org: <a href='https://vici.org/vici/3234/'>https://vici.org/vici/3234/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2221.html'>TPPlace2221</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.985537, 38.840096]}}, {"type": "Feature", "properties": {"id": "TPPlace2256", "name": "Mirones", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3235/'>https://vici.org/vici/3235/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2256.html'>TPPlace2256</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.846088, 40.638905]}}, {"type": "Feature", "properties": {"id": "TPPlace2138", "name": "Mizago", "desc": "Mnizos<br>Vici.org: <a href='https://vici.org/vici/3236/'>https://vici.org/vici/3236/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2138.html'>TPPlace2138</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.332111, 40.019466]}}, {"type": "Feature", "properties": {"id": "TPPlace1979", "name": "Mocasvra", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3237/'>https://vici.org/vici/3237/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1979.html'>TPPlace1979</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.665495, 41.038799]}}, {"type": "Feature", "properties": {"id": "TPPlace2602", "name": "Molchia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3238/'>https://vici.org/vici/3238/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2602.html'>TPPlace2602</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.241024, 38.753948]}}, {"type": "Feature", "properties": {"id": "TPPlace94", "name": "Mopti Mvnicipivm", "desc": "Mopthi<br>Vici.org: <a href='https://vici.org/vici/3239/'>https://vici.org/vici/3239/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace94.html'>TPPlace94</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.567436, 36.247345]}}, {"type": "Feature", "properties": {"id": "TPPlace1777", "name": "Mvnicipio", "desc": "Municipium<br>Vici.org: <a href='https://vici.org/vici/3240/'>https://vici.org/vici/3240/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1777.html'>TPPlace1777</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.311266, 44.503166]}}, {"type": "Feature", "properties": {"id": "TPPlace22", "name": "Mvslvbio Horreta", "desc": "Muslubium<br>Vici.org: <a href='https://vici.org/vici/3241/'>https://vici.org/vici/3241/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace22.html'>TPPlace22</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.246097, 36.636742]}}, {"type": "Feature", "properties": {"id": "TPPlace183", "name": "Mvtia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3242/'>https://vici.org/vici/3242/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace183.html'>TPPlace183</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.562379, 35.697392]}}, {"type": "Feature", "properties": {"id": "TPPlace1517", "name": "Namare", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3243/'>https://vici.org/vici/3243/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1517.html'>TPPlace1517</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.266468, 48.215775]}}, {"type": "Feature", "properties": {"id": "TPPlace118", "name": "Naraggara", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3244/'>https://vici.org/vici/3244/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace118.html'>TPPlace118</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.356079, 36.223438]}}, {"type": "Feature", "properties": {"id": "TPPlace3541", "name": "Nararra", "desc": "Nabaris<br>Vici.org: <a href='https://vici.org/vici/3245/'>https://vici.org/vici/3245/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3541.html'>TPPlace3541</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.442642, 37.961395]}}, {"type": "Feature", "properties": {"id": "TPPlace2558", "name": "Nastae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3246/'>https://vici.org/vici/3246/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2558.html'>TPPlace2558</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.744385, 37.837761]}}, {"type": "Feature", "properties": {"id": "TPPlace384", "name": "Navcrati", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3247/'>https://vici.org/vici/3247/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace384.html'>TPPlace384</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.591778, 30.900709]}}, {"type": "Feature", "properties": {"id": "TPPlace2234", "name": "Navtagino", "desc": "Naustathmos<br>Vici.org: <a href='https://vici.org/vici/3248/'>https://vici.org/vici/3248/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2234.html'>TPPlace2234</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.116604, 41.497627]}}, {"type": "Feature", "properties": {"id": "TPPlace469", "name": "Negla", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3249/'>https://vici.org/vici/3249/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace469.html'>TPPlace469</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.562614, 30.526983]}}, {"type": "Feature", "properties": {"id": "TPPlace595", "name": "Nemetaco", "desc": "Arras, Nemetacum<br>Vici.org: <a href='https://vici.org/vici/3250/'>https://vici.org/vici/3250/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace595.html'>TPPlace595</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.782338, 50.292572]}}, {"type": "Feature", "properties": {"id": "TPPlace2673", "name": "Nisibi", "desc": "Nisibis<br>Vici.org: <a href='https://vici.org/vici/3251/'>https://vici.org/vici/3251/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2673.html'>TPPlace2673</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.216667, 37.066666]}}, {"type": "Feature", "properties": {"id": "TPPlace2145", "name": "Nitazo", "desc": "Nitazi<br>Vici.org: <a href='https://vici.org/vici/3252/'>https://vici.org/vici/3252/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2145.html'>TPPlace2145</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.91259, 38.709572]}}, {"type": "Feature", "properties": {"id": "TPPlace304", "name": "Nivirgitab", "desc": "Nivirgi Tabernae<br>Vici.org: <a href='https://vici.org/vici/3253/'>https://vici.org/vici/3253/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace304.html'>TPPlace304</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.765234, 32.432964]}}, {"type": "Feature", "properties": {"id": "TPPlace337", "name": "Noetv", "desc": "Chorotus<br>Vici.org: <a href='https://vici.org/vici/3254/'>https://vici.org/vici/3254/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace337.html'>TPPlace337</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.174408, 31.394966]}}, {"type": "Feature", "properties": {"id": "TPPlace1567", "name": "Noreia (1)", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3255/'>https://vici.org/vici/3255/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1567.html'>TPPlace1567</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.526732, 47.013809]}}, {"type": "Feature", "properties": {"id": "TPPlace1568", "name": "Noreia (2)", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3256/'>https://vici.org/vici/3256/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1568.html'>TPPlace1568</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.526732, 47.013809]}}, {"type": "Feature", "properties": {"id": "TPPlace71", "name": "Novisaqvilianis", "desc": "Novae Aquilianae<br>Vici.org: <a href='https://vici.org/vici/3257/'>https://vici.org/vici/3257/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace71.html'>TPPlace71</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.024258, 36.64053]}}, {"type": "Feature", "properties": {"id": "TPPlace75", "name": "Clefantaria", "desc": "Elephantaria<br>Vici.org: <a href='https://vici.org/vici/3258/'>https://vici.org/vici/3258/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace75.html'>TPPlace75</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.521908, 36.645786]}}, {"type": "Feature", "properties": {"id": "TPPlace105", "name": "Nvmitvriana", "desc": "Saltus Caeliae Maximae<br>Vici.org: <a href='https://vici.org/vici/3259/'>https://vici.org/vici/3259/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace105.html'>TPPlace105</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.3229, 36.396996]}}, {"type": "Feature", "properties": {"id": "TPPlace2559", "name": "Octacvscvm", "desc": "Scasuson<br>Vici.org: <a href='https://vici.org/vici/3260/'>https://vici.org/vici/3260/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2559.html'>TPPlace2559</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.861862, 37.69339]}}, {"type": "Feature", "properties": {"id": "TPPlace519", "name": "Ocvrvra", "desc": "Otthara<br>Vici.org: <a href='https://vici.org/vici/3261/'>https://vici.org/vici/3261/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace519.html'>TPPlace519</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.173069, 34.422928]}}, {"type": "Feature", "properties": {"id": "TPPlace62", "name": "Odiana", "desc": "Onellaba<br>Vici.org: <a href='https://vici.org/vici/3262/'>https://vici.org/vici/3262/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace62.html'>TPPlace62</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.175841, 36.624496]}}, {"type": "Feature", "properties": {"id": "TPPlace1927", "name": "Optatiana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3263/'>https://vici.org/vici/3263/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1927.html'>TPPlace1927</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.251665, 46.986084]}}, {"type": "Feature", "properties": {"id": "TPPlace252", "name": "Orbita", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3264/'>https://vici.org/vici/3264/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace252.html'>TPPlace252</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.448014, 36.126163]}}, {"type": "Feature", "properties": {"id": "TPPlace2231", "name": "Orgibate", "desc": "Garzoubanthon<br>Vici.org: <a href='https://vici.org/vici/3265/'>https://vici.org/vici/3265/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2231.html'>TPPlace2231</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.222214, 41.735786]}}, {"type": "Feature", "properties": {"id": "TPPlace432", "name": "Ostracine", "desc": "Ostrakine<br>Vici.org: <a href='https://vici.org/vici/3266/'>https://vici.org/vici/3266/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace432.html'>TPPlace432</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.430637, 31.115931]}}, {"type": "Feature", "properties": {"id": "TPPlace28", "name": "Paccianis Matiz(a)e", "desc": "Paccianis Matidiae<br>Vici.org: <a href='https://vici.org/vici/3267/'>https://vici.org/vici/3267/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace28.html'>TPPlace28</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.103208, 36.864719]}}, {"type": "Feature", "properties": {"id": "TPPlace1884", "name": "Pache", "desc": "Pagai<br>Vici.org: <a href='https://vici.org/vici/3268/'>https://vici.org/vici/3268/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1884.html'>TPPlace1884</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.197117, 38.084923]}}, {"type": "Feature", "properties": {"id": "TPPlace2310", "name": "Pagrvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3269/'>https://vici.org/vici/3269/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2310.html'>TPPlace2310</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.301559, 38.238865]}}, {"type": "Feature", "properties": {"id": "TPPlace2253", "name": "Palalce", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3270/'>https://vici.org/vici/3270/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2253.html'>TPPlace2253</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.091805, 40.716373]}}, {"type": "Feature", "properties": {"id": "TPPlace1987", "name": "Palmatis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3271/'>https://vici.org/vici/3271/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1987.html'>TPPlace1987</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.440561, 43.942066]}}, {"type": "Feature", "properties": {"id": "TPPlace528", "name": "Palto", "desc": "Paltos<br>Vici.org: <a href='https://vici.org/vici/3272/'>https://vici.org/vici/3272/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace528.html'>TPPlace528</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.927406, 35.272667]}}, {"type": "Feature", "properties": {"id": "TPPlace411", "name": "Panopoli", "desc": "Panopolis<br>Vici.org: <a href='https://vici.org/vici/3273/'>https://vici.org/vici/3273/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace411.html'>TPPlace411</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.744276, 26.563896]}}, {"type": "Feature", "properties": {"id": "TPPlace31", "name": "Paratianis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3274/'>https://vici.org/vici/3274/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace31.html'>TPPlace31</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.156637, 36.91671]}}, {"type": "Feature", "properties": {"id": "TPPlace1701", "name": "Pardva", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3275/'>https://vici.org/vici/3275/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1701.html'>TPPlace1701</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.083704, 42.941391]}}, {"type": "Feature", "properties": {"id": "TPPlace2787", "name": "Paricea", "desc": "Alexandrou Limen<br>Vici.org: <a href='https://vici.org/vici/3276/'>https://vici.org/vici/3276/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2787.html'>TPPlace2787</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [67.919998, 24.649668]}}, {"type": "Feature", "properties": {"id": "TPPlace2192", "name": "Parivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3277/'>https://vici.org/vici/3277/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2192.html'>TPPlace2192</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.069096, 40.420498]}}, {"type": "Feature", "properties": {"id": "TPPlace2600", "name": "Patansana", "desc": "Isumbo<br>Vici.org: <a href='https://vici.org/vici/3278/'>https://vici.org/vici/3278/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2600.html'>TPPlace2600</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.866665, 39.233334]}}, {"type": "Feature", "properties": {"id": "TPPlace2411", "name": "Patara", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3279/'>https://vici.org/vici/3279/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2411.html'>TPPlace2411</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.648354, 40.543938]}}, {"type": "Feature", "properties": {"id": "TPPlace1775", "name": "Pedonianis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3280/'>https://vici.org/vici/3280/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1775.html'>TPPlace1775</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.354876, 43.662998]}}, {"type": "Feature", "properties": {"id": "TPPlace2163", "name": "Pegella", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3281/'>https://vici.org/vici/3281/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2163.html'>TPPlace2163</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.666279, 38.541328]}}, {"type": "Feature", "properties": {"id": "TPPlace1875", "name": "Perthoricto", "desc": "Perdioricto<br>Vici.org: <a href='https://vici.org/vici/3282/'>https://vici.org/vici/3282/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1875.html'>TPPlace1875</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.748123, 38.820961]}}, {"type": "Feature", "properties": {"id": "TPPlace1876", "name": "Halisso", "desc": "Alyzeia<br>Vici.org: <a href='https://vici.org/vici/3283/'>https://vici.org/vici/3283/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1876.html'>TPPlace1876</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.951656, 38.713371]}}, {"type": "Feature", "properties": {"id": "TPPlace2316", "name": "Petra", "desc": "Pertap<br>Vici.org: <a href='https://vici.org/vici/3284/'>https://vici.org/vici/3284/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2316.html'>TPPlace2316</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.076656, 38.167721]}}, {"type": "Feature", "properties": {"id": "TPPlace1742", "name": "Petris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3285/'>https://vici.org/vici/3285/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1742.html'>TPPlace1742</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.032228, 45.86438]}}, {"type": "Feature", "properties": {"id": "TPPlace450", "name": "Phara", "desc": "Pharan<br>Vici.org: <a href='https://vici.org/vici/3286/'>https://vici.org/vici/3286/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace450.html'>TPPlace450</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.609634, 28.717525]}}, {"type": "Feature", "properties": {"id": "TPPlace2214", "name": "Phemenio", "desc": "Poimanenon<br>Vici.org: <a href='https://vici.org/vici/3287/'>https://vici.org/vici/3287/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2214.html'>TPPlace2214</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.8923, 40.078972]}}, {"type": "Feature", "properties": {"id": "TPPlace336", "name": "Phenica", "desc": "Attici<br>Vici.org: <a href='https://vici.org/vici/3288/'>https://vici.org/vici/3288/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace336.html'>TPPlace336</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.183329, 31.133295]}}, {"type": "Feature", "properties": {"id": "TPPlace2417", "name": "Philocalia", "desc": "Philokaleia<br>Vici.org: <a href='https://vici.org/vici/3289/'>https://vici.org/vici/3289/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2417.html'>TPPlace2417</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.984959, 41.034351]}}, {"type": "Feature", "properties": {"id": "TPPlace2170", "name": "Philomelo", "desc": "Philomelion<br>Vici.org: <a href='https://vici.org/vici/3290/'>https://vici.org/vici/3290/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2170.html'>TPPlace2170</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.429823, 38.356716]}}, {"type": "Feature", "properties": {"id": "TPPlace72", "name": "Picvs", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3291/'>https://vici.org/vici/3291/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace72.html'>TPPlace72</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.142701, 36.615627]}}, {"type": "Feature", "properties": {"id": "TPPlace2765", "name": "Pileiam", "desc": "Peukelaotis<br>Vici.org: <a href='https://vici.org/vici/3292/'>https://vici.org/vici/3292/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2765.html'>TPPlace2765</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [71.616852, 34.143959]}}, {"type": "Feature", "properties": {"id": "TPPlace1840", "name": "Pistvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3293/'>https://vici.org/vici/3293/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1840.html'>TPPlace1840</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.737162, 41.516171]}}, {"type": "Feature", "properties": {"id": "TPPlace683", "name": "Pocrinio", "desc": "Pocrinium<br>Vici.org: <a href='https://vici.org/vici/3294/'>https://vici.org/vici/3294/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace683.html'>TPPlace683</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.978186, 46.480495]}}, {"type": "Feature", "properties": {"id": "TPPlace1756", "name": "Ponte Alvti", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3295/'>https://vici.org/vici/3295/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1756.html'>TPPlace1756</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.240744, 44.866474]}}, {"type": "Feature", "properties": {"id": "TPPlace1356", "name": "Ponte Avfidi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3296/'>https://vici.org/vici/3296/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1356.html'>TPPlace1356</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.539506, 41.068195]}}, {"type": "Feature", "properties": {"id": "TPPlace1739", "name": "Ponte Avgvsti", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3297/'>https://vici.org/vici/3297/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1739.html'>TPPlace1739</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.518892, 45.504578]}}, {"type": "Feature", "properties": {"id": "TPPlace1761", "name": "Ponte vetere", "desc": "Pons Vetus<br>Vici.org: <a href='https://vici.org/vici/3298/'>https://vici.org/vici/3298/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1761.html'>TPPlace1761</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.306776, 45.509468]}}, {"type": "Feature", "properties": {"id": "TPPlace290", "name": "Pontos", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3299/'>https://vici.org/vici/3299/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace290.html'>TPPlace290</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.725499, 32.759388]}}, {"type": "Feature", "properties": {"id": "TPPlace1592", "name": "Popvlos", "desc": "Populi<br>Vici.org: <a href='https://vici.org/vici/3300/'>https://vici.org/vici/3300/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1592.html'>TPPlace1592</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.33391, 46.30991]}}, {"type": "Feature", "properties": {"id": "TPPlace2562", "name": "Pordonnivm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3301/'>https://vici.org/vici/3301/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2562.html'>TPPlace2562</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.275501, 37.766163]}}, {"type": "Feature", "properties": {"id": "TPPlace2046", "name": "Porsvlis", "desc": "Porsulae<br>Vici.org: <a href='https://vici.org/vici/3302/'>https://vici.org/vici/3302/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2046.html'>TPPlace2046</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.333323, 41.13781]}}, {"type": "Feature", "properties": {"id": "TPPlace2115", "name": "Potomia Cepora", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3303/'>https://vici.org/vici/3303/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2115.html'>TPPlace2115</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.538021, 40.897583]}}, {"type": "Feature", "properties": {"id": "TPPlace1781", "name": "Presidio dasmini", "desc": "Praesidium Dasmini<br>Vici.org: <a href='https://vici.org/vici/3304/'>https://vici.org/vici/3304/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1781.html'>TPPlace1781</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.506851, 43.721809]}}, {"type": "Feature", "properties": {"id": "TPPlace1782", "name": "Presidio Pompei", "desc": "Praesidium Pompei<br>Vici.org: <a href='https://vici.org/vici/3305/'>https://vici.org/vici/3305/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1782.html'>TPPlace1782</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.617729, 43.58955]}}, {"type": "Feature", "properties": {"id": "TPPlace334", "name": "Priscv taberna", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3306/'>https://vici.org/vici/3306/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace334.html'>TPPlace334</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.099176, 30.573931]}}, {"type": "Feature", "properties": {"id": "TPPlace2739", "name": "Propasta", "desc": "Prophthasia<br>Vici.org: <a href='https://vici.org/vici/3307/'>https://vici.org/vici/3307/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2739.html'>TPPlace2739</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [61.490616, 32.45269]}}, {"type": "Feature", "properties": {"id": "TPPlace2261", "name": "Ptemari", "desc": "Pleuramis<br>Vici.org: <a href='https://vici.org/vici/3308/'>https://vici.org/vici/3308/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2261.html'>TPPlace2261</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.559666, 40.103363]}}, {"type": "Feature", "properties": {"id": "TPPlace1973", "name": "Pvdizo", "desc": "Tarpodizo<br>Vici.org: <a href='https://vici.org/vici/3309/'>https://vici.org/vici/3309/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1973.html'>TPPlace1973</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.354053, 41.846661]}}, {"type": "Feature", "properties": {"id": "TPPlace246", "name": "Pvdpvt", "desc": "Pupput<br>Vici.org: <a href='https://vici.org/vici/3310/'>https://vici.org/vici/3310/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace246.html'>TPPlace246</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.614698, 36.395149]}}, {"type": "Feature", "properties": {"id": "TPPlace316", "name": "Pvtea niga", "desc": "Putea Nigrorum<br>Vici.org: <a href='https://vici.org/vici/3311/'>https://vici.org/vici/3311/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace316.html'>TPPlace316</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.36664, 31.199947]}}, {"type": "Feature", "properties": {"id": "TPPlace283", "name": "Pvtea pallene", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3312/'>https://vici.org/vici/3312/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace283.html'>TPPlace283</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.1998, 33.316715]}}, {"type": "Feature", "properties": {"id": "TPPlace298", "name": "Qvintiliana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3313/'>https://vici.org/vici/3313/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace298.html'>TPPlace298</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.926716, 32.708351]}}, {"type": "Feature", "properties": {"id": "TPPlace2399", "name": "Reila", "desc": "Rhizaion<br>Vici.org: <a href='https://vici.org/vici/3314/'>https://vici.org/vici/3314/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2399.html'>TPPlace2399</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.508671, 41.023556]}}, {"type": "Feature", "properties": {"id": "TPPlace1770", "name": "Remetodia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3315/'>https://vici.org/vici/3315/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1770.html'>TPPlace1770</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.095003, 43.777718]}}, {"type": "Feature", "properties": {"id": "TPPlace140", "name": "Risca", "desc": "Bisica Lucana<br>Vici.org: <a href='https://vici.org/vici/3316/'>https://vici.org/vici/3316/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace140.html'>TPPlace140</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.634267, 36.397968]}}, {"type": "Feature", "properties": {"id": "TPPlace1753", "name": "Romvla", "desc": "Malva<br>Vici.org: <a href='https://vici.org/vici/3317/'>https://vici.org/vici/3317/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1753.html'>TPPlace1753</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.400272, 44.175816]}}, {"type": "Feature", "properties": {"id": "TPPlace2375", "name": "Rosos", "desc": "Rhosos<br>Vici.org: <a href='https://vici.org/vici/3318/'>https://vici.org/vici/3318/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2375.html'>TPPlace2375</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.882534, 36.427307]}}, {"type": "Feature", "properties": {"id": "TPPlace1343", "name": "Rvdas", "desc": "Budas<br>Vici.org: <a href='https://vici.org/vici/3319/'>https://vici.org/vici/3319/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1343.html'>TPPlace1343</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.295366, 41.201233]}}, {"type": "Feature", "properties": {"id": "TPPlace11", "name": "Rvsazv Mvnicipivm", "desc": "Rusazus<br>Vici.org: <a href='https://vici.org/vici/3320/'>https://vici.org/vici/3320/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace11.html'>TPPlace11</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.418971, 36.894089]}}, {"type": "Feature", "properties": {"id": "TPPlace1", "name": "Rvsibricari Matidi(a)e", "desc": "Rusubbicari Matidiae<br>Vici.org: <a href='https://vici.org/vici/3321/'>https://vici.org/vici/3321/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1.html'>TPPlace1</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.5646, 36.801018]}}, {"type": "Feature", "properties": {"id": "TPPlace1755", "name": "Rvsidava", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3322/'>https://vici.org/vici/3322/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1755.html'>TPPlace1755</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.280043, 44.702843]}}, {"type": "Feature", "properties": {"id": "TPPlace10", "name": "Rvsippisir Mvnicipio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3323/'>https://vici.org/vici/3323/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace10.html'>TPPlace10</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.156907, 36.897602]}}, {"type": "Feature", "properties": {"id": "TPPlace264", "name": "Rvspe", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3324/'>https://vici.org/vici/3324/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace264.html'>TPPlace264</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.000971, 35.01429]}}, {"type": "Feature", "properties": {"id": "TPPlace255", "name": "Rvspina", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3325/'>https://vici.org/vici/3325/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace255.html'>TPPlace255</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.829677, 35.773643]}}, {"type": "Feature", "properties": {"id": "TPPlace2527", "name": "Saba", "desc": "Sabus<br>Vici.org: <a href='https://vici.org/vici/3326/'>https://vici.org/vici/3326/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2527.html'>TPPlace2527</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.595371, 39.113979]}}, {"type": "Feature", "properties": {"id": "TPPlace1945", "name": "Sagadava", "desc": "Sacidava<br>Vici.org: <a href='https://vici.org/vici/3327/'>https://vici.org/vici/3327/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1945.html'>TPPlace1945</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.754713, 44.18919]}}, {"type": "Feature", "properties": {"id": "TPPlace2620", "name": "Sahal", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3328/'>https://vici.org/vici/3328/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2620.html'>TPPlace2620</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.412666, 36.898945]}}, {"type": "Feature", "properties": {"id": "TPPlace2294", "name": "Salaberina", "desc": "Salambriai<br>Vici.org: <a href='https://vici.org/vici/3329/'>https://vici.org/vici/3329/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2294.html'>TPPlace2294</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [34.035152, 38.120701]}}, {"type": "Feature", "properties": {"id": "TPPlace1665", "name": "Saldis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3330/'>https://vici.org/vici/3330/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1665.html'>TPPlace1665</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.830811, 44.946812]}}, {"type": "Feature", "properties": {"id": "TPPlace1279", "name": "Salinis", "desc": "Salinae<br>Vici.org: <a href='https://vici.org/vici/3331/'>https://vici.org/vici/3331/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1279.html'>TPPlace1279</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.9933, 41.403381]}}, {"type": "Feature", "properties": {"id": "TPPlace1924", "name": "Salinis", "desc": "Salinae<br>Vici.org: <a href='https://vici.org/vici/3332/'>https://vici.org/vici/3332/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1924.html'>TPPlace1924</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.864109, 46.38868]}}, {"type": "Feature", "properties": {"id": "TPPlace1797", "name": "Sallvnto (2)", "desc": "Salluntum<br>Vici.org: <a href='https://vici.org/vici/3333/'>https://vici.org/vici/3333/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1797.html'>TPPlace1797</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.003654, 42.721455]}}, {"type": "Feature", "properties": {"id": "TPPlace1793", "name": "Sallvnto (1)", "desc": "Salthua<br>Vici.org: <a href='https://vici.org/vici/3334/'>https://vici.org/vici/3334/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1793.html'>TPPlace1793</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.653543, 42.766415]}}, {"type": "Feature", "properties": {"id": "TPPlace2476", "name": "Salmalasso", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3335/'>https://vici.org/vici/3335/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2476.html'>TPPlace2476</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.864861, 39.929108]}}, {"type": "Feature", "properties": {"id": "TPPlace1954", "name": "Salsovia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3336/'>https://vici.org/vici/3336/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1954.html'>TPPlace1954</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.123993, 45.066463]}}, {"type": "Feature", "properties": {"id": "TPPlace2549", "name": "Sama", "desc": "Samma Castorum<br>Vici.org: <a href='https://vici.org/vici/3337/'>https://vici.org/vici/3337/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2549.html'>TPPlace2549</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.25462, 38.38467]}}, {"type": "Feature", "properties": {"id": "TPPlace2532", "name": "Melentenis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3338/'>https://vici.org/vici/3338/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2532.html'>TPPlace2532</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.316669, 38.350182]}}, {"type": "Feature", "properties": {"id": "TPPlace2610", "name": "Sammachi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3339/'>https://vici.org/vici/3339/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2610.html'>TPPlace2610</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.535194, 37.694393]}}, {"type": "Feature", "properties": {"id": "TPPlace1795", "name": "Sanderva", "desc": "Anderva<br>Vici.org: <a href='https://vici.org/vici/3340/'>https://vici.org/vici/3340/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1795.html'>TPPlace1795</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.944147, 42.773243]}}, {"type": "Feature", "properties": {"id": "TPPlace2675", "name": "Sapham", "desc": "Sapha<br>Vici.org: <a href='https://vici.org/vici/3341/'>https://vici.org/vici/3341/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2675.html'>TPPlace2675</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.981888, 37.264168]}}, {"type": "Feature", "properties": {"id": "TPPlace2674", "name": "Sarbane", "desc": "Sisara<br>Vici.org: <a href='https://vici.org/vici/3342/'>https://vici.org/vici/3342/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2674.html'>TPPlace2674</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.628014, 37.131645]}}, {"type": "Feature", "properties": {"id": "TPPlace2608", "name": "Sardebar", "desc": "Sardeoua<br>Vici.org: <a href='https://vici.org/vici/3343/'>https://vici.org/vici/3343/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2608.html'>TPPlace2608</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.511356, 37.585014]}}, {"type": "Feature", "properties": {"id": "TPPlace1998", "name": "Sarto", "desc": "Sparata<br>Vici.org: <a href='https://vici.org/vici/3344/'>https://vici.org/vici/3344/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1998.html'>TPPlace1998</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [23.710684, 42.555912]}}, {"type": "Feature", "properties": {"id": "TPPlace258", "name": "Sassvravicvs", "desc": "Sarsura<br>Vici.org: <a href='https://vici.org/vici/3345/'>https://vici.org/vici/3345/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace258.html'>TPPlace258</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.688677, 35.443802]}}, {"type": "Feature", "properties": {"id": "TPPlace2631", "name": "Sathena", "desc": "Batnae<br>Vici.org: <a href='https://vici.org/vici/3346/'>https://vici.org/vici/3346/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2631.html'>TPPlace2631</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.424236, 36.976074]}}, {"type": "Feature", "properties": {"id": "TPPlace2243", "name": "Savronisena", "desc": "Saurania<br>Vici.org: <a href='https://vici.org/vici/3347/'>https://vici.org/vici/3347/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2243.html'>TPPlace2243</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.599819, 40.697918]}}, {"type": "Feature", "properties": {"id": "TPPlace1873", "name": "Scarpias", "desc": "Skarpheia<br>Vici.org: <a href='https://vici.org/vici/3348/'>https://vici.org/vici/3348/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1873.html'>TPPlace1873</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.644194, 38.807465]}}, {"type": "Feature", "properties": {"id": "TPPlace1874", "name": "Elatia", "desc": "Elatia, Elateia<br>Vici.org: <a href='https://vici.org/vici/3349/'>https://vici.org/vici/3349/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1874.html'>TPPlace1874</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.764982, 38.62635]}}, {"type": "Feature", "properties": {"id": "TPPlace1410", "name": "Scyle", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3350/'>https://vici.org/vici/3350/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1410.html'>TPPlace1410</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.918462, 37.931419]}}, {"type": "Feature", "properties": {"id": "TPPlace1933", "name": "Secvrispa", "desc": "Securisca<br>Vici.org: <a href='https://vici.org/vici/3351/'>https://vici.org/vici/3351/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1933.html'>TPPlace1933</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.834372, 43.702591]}}, {"type": "Feature", "properties": {"id": "TPPlace692", "name": "Segvra", "desc": "Segora<br>Vici.org: <a href='https://vici.org/vici/3352/'>https://vici.org/vici/3352/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace692.html'>TPPlace692</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [-1.043266, 47.208679]}}, {"type": "Feature", "properties": {"id": "TPPlace1416", "name": "Semnvm", "desc": "Scinasium<br>Vici.org: <a href='https://vici.org/vici/3353/'>https://vici.org/vici/3353/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1416.html'>TPPlace1416</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.635885, 40.17086]}}, {"type": "Feature", "properties": {"id": "TPPlace1375", "name": "Brindisi", "desc": "Brundisium<br>Vici.org: <a href='https://vici.org/vici/3354/'>https://vici.org/vici/3354/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1375.html'>TPPlace1375</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.938955, 40.636189]}}, {"type": "Feature", "properties": {"id": "TPPlace2264", "name": "Seramisa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3355/'>https://vici.org/vici/3355/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2264.html'>TPPlace2264</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.740295, 40.461693]}}, {"type": "Feature", "properties": {"id": "TPPlace245", "name": "Siagv", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3356/'>https://vici.org/vici/3356/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace245.html'>TPPlace245</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.571652, 36.429379]}}, {"type": "Feature", "properties": {"id": "TPPlace3534", "name": "Sibvs", "desc": "Aubuzza<br>Vici.org: <a href='https://vici.org/vici/3357/'>https://vici.org/vici/3357/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3534.html'>TPPlace3534</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.598432, 35.952389]}}, {"type": "Feature", "properties": {"id": "TPPlace135", "name": "Sicilibba", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3358/'>https://vici.org/vici/3358/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace135.html'>TPPlace135</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.873597, 36.685879]}}, {"type": "Feature", "properties": {"id": "TPPlace121", "name": "Sigvese", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3359/'>https://vici.org/vici/3359/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace121.html'>TPPlace121</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.930003, 36.209896]}}, {"type": "Feature", "properties": {"id": "TPPlace3519", "name": "Sigvs", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3360/'>https://vici.org/vici/3360/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3519.html'>TPPlace3519</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.78528, 36.122311]}}, {"type": "Feature", "properties": {"id": "TPPlace225", "name": "Silesva", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3361/'>https://vici.org/vici/3361/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace225.html'>TPPlace225</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.566695, 34.066662]}}, {"type": "Feature", "properties": {"id": "TPPlace305", "name": "Simnana", "desc": "Simadana<br>Vici.org: <a href='https://vici.org/vici/3362/'>https://vici.org/vici/3362/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace305.html'>TPPlace305</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.94413, 32.407318]}}, {"type": "Feature", "properties": {"id": "TPPlace2667", "name": "Sirgora", "desc": "Singara<br>Vici.org: <a href='https://vici.org/vici/3363/'>https://vici.org/vici/3363/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2667.html'>TPPlace2667</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.864399, 36.323601]}}, {"type": "Feature", "properties": {"id": "TPPlace2209", "name": "Sminthivm", "desc": "Smintheion<br>Vici.org: <a href='https://vici.org/vici/3364/'>https://vici.org/vici/3364/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2209.html'>TPPlace2209</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.11478, 39.53017]}}, {"type": "Feature", "properties": {"id": "TPPlace2413", "name": "Solonenica", "desc": "Sedisca<br>Vici.org: <a href='https://vici.org/vici/3365/'>https://vici.org/vici/3365/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2413.html'>TPPlace2413</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [39.584629, 40.428814]}}, {"type": "Feature", "properties": {"id": "TPPlace1594", "name": "Sonista", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3366/'>https://vici.org/vici/3366/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1594.html'>TPPlace1594</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.765678, 46.185978]}}, {"type": "Feature", "properties": {"id": "TPPlace2762", "name": "Spatvra", "desc": "Peukelaotis<br>Vici.org: <a href='https://vici.org/vici/3367/'>https://vici.org/vici/3367/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2762.html'>TPPlace2762</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [71.616852, 34.143959]}}, {"type": "Feature", "properties": {"id": "TPPlace2273", "name": "Spelvncis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3368/'>https://vici.org/vici/3368/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2273.html'>TPPlace2273</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.752632, 40.292416]}}, {"type": "Feature", "properties": {"id": "TPPlace1374", "name": "Spelvnis", "desc": "Ad Speluncas<br>Vici.org: <a href='https://vici.org/vici/3369/'>https://vici.org/vici/3369/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1374.html'>TPPlace1374</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.703709, 40.756508]}}, {"type": "Feature", "properties": {"id": "TPPlace1548", "name": "Stailvco", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3370/'>https://vici.org/vici/3370/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1548.html'>TPPlace1548</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.390375, 47.736027]}}, {"type": "Feature", "properties": {"id": "TPPlace1304", "name": "Statvle", "desc": "Statulae<br>Vici.org: <a href='https://vici.org/vici/3371/'>https://vici.org/vici/3371/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1304.html'>TPPlace1304</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.773125, 42.087578]}}, {"type": "Feature", "properties": {"id": "TPPlace1762", "name": "Stenarvm", "desc": "Caput Stenarum<br>Vici.org: <a href='https://vici.org/vici/3372/'>https://vici.org/vici/3372/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1762.html'>TPPlace1762</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.633011, 45.633011]}}, {"type": "Feature", "properties": {"id": "TPPlace1832", "name": "Stenas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3373/'>https://vici.org/vici/3373/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1832.html'>TPPlace1832</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.384157, 41.351246]}}, {"type": "Feature", "properties": {"id": "TPPlace1993", "name": "Storgosia", "desc": "Pleven<br>Vici.org: <a href='https://vici.org/vici/3374/'>https://vici.org/vici/3374/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1993.html'>TPPlace1993</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.620705, 43.408333]}}, {"type": "Feature", "properties": {"id": "TPPlace1294", "name": "Svblacio", "desc": "Sublaqueum<br>Vici.org: <a href='https://vici.org/vici/3375/'>https://vici.org/vici/3375/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1294.html'>TPPlace1294</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.094996, 41.926403]}}, {"type": "Feature", "properties": {"id": "TPPlace36", "name": "Svblvcv", "desc": "Sulluctu<br>Vici.org: <a href='https://vici.org/vici/3376/'>https://vici.org/vici/3376/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace36.html'>TPPlace36</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.33233, 37.038567]}}, {"type": "Feature", "properties": {"id": "TPPlace302", "name": "Svbvtvttv", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3377/'>https://vici.org/vici/3377/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace302.html'>TPPlace302</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.920485, 32.442204]}}, {"type": "Feature", "properties": {"id": "TPPlace2574", "name": "Svgga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3378/'>https://vici.org/vici/3378/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2574.html'>TPPlace2574</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.958344, 37.637703]}}, {"type": "Feature", "properties": {"id": "TPPlace303", "name": "Svgolin", "desc": "Seggera<br>Vici.org: <a href='https://vici.org/vici/3379/'>https://vici.org/vici/3379/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace303.html'>TPPlace303</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.566667, 32.466721]}}, {"type": "Feature", "properties": {"id": "TPPlace16", "name": "Tigisi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3380/'>https://vici.org/vici/3380/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace16.html'>TPPlace16</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [3.947273, 36.793308]}}, {"type": "Feature", "properties": {"id": "TPPlace18", "name": "Syda Mvnicipivm", "desc": "Bida<br>Vici.org: <a href='https://vici.org/vici/3381/'>https://vici.org/vici/3381/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace18.html'>TPPlace18</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.282988, 36.682304]}}, {"type": "Feature", "properties": {"id": "TPPlace391", "name": "Syene", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3382/'>https://vici.org/vici/3382/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace391.html'>TPPlace391</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.904942, 24.095991]}}, {"type": "Feature", "properties": {"id": "TPPlace2025", "name": "Syrascelle", "desc": "Sirogellis<br>Vici.org: <a href='https://vici.org/vici/3383/'>https://vici.org/vici/3383/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2025.html'>TPPlace2025</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.926367, 40.884037]}}, {"type": "Feature", "properties": {"id": "TPPlace330", "name": "Tagvlis", "desc": "Tugulus<br>Vici.org: <a href='https://vici.org/vici/3384/'>https://vici.org/vici/3384/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace330.html'>TPPlace330</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.466667, 30.549906]}}, {"type": "Feature", "properties": {"id": "TPPlace2427", "name": "Tamiso", "desc": "Tamassos<br>Vici.org: <a href='https://vici.org/vici/3385/'>https://vici.org/vici/3385/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2427.html'>TPPlace2427</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.238045, 35.027493]}}, {"type": "Feature", "properties": {"id": "TPPlace1065", "name": "Tannetvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3386/'>https://vici.org/vici/3386/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1065.html'>TPPlace1065</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.455169, 44.771748]}}, {"type": "Feature", "properties": {"id": "TPPlace901", "name": "Tanomia", "desc": "Fanum Minervae<br>Vici.org: <a href='https://vici.org/vici/3387/'>https://vici.org/vici/3387/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace901.html'>TPPlace901</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.501944, 49.050556]}}, {"type": "Feature", "properties": {"id": "TPPlace366", "name": "Tapostri", "desc": "Taposiris<br>Vici.org: <a href='https://vici.org/vici/3388/'>https://vici.org/vici/3388/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace366.html'>TPPlace366</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.519356, 30.946035]}}, {"type": "Feature", "properties": {"id": "TPPlace2575", "name": "Tarsa", "desc": "Tharsa<br>Vici.org: <a href='https://vici.org/vici/3389/'>https://vici.org/vici/3389/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2575.html'>TPPlace2575</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.226395, 37.506344]}}, {"type": "Feature", "properties": {"id": "TPPlace394", "name": "Tentira", "desc": "Tentyra<br>Vici.org: <a href='https://vici.org/vici/3390/'>https://vici.org/vici/3390/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace394.html'>TPPlace394</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.670097, 26.141775]}}, {"type": "Feature", "properties": {"id": "TPPlace831", "name": "Tericias", "desc": "Tericiae<br>Vici.org: <a href='https://vici.org/vici/3391/'>https://vici.org/vici/3391/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace831.html'>TPPlace831</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [4.862225, 43.69046]}}, {"type": "Feature", "properties": {"id": "TPPlace210", "name": "Thabvdeos", "desc": "Tabudium Oppidum<br>Vici.org: <a href='https://vici.org/vici/3392/'>https://vici.org/vici/3392/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace210.html'>TPPlace210</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.007213, 34.723293]}}, {"type": "Feature", "properties": {"id": "TPPlace123", "name": "Thacia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3393/'>https://vici.org/vici/3393/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace123.html'>TPPlace123</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.050218, 36.30267]}}, {"type": "Feature", "properties": {"id": "TPPlace3514", "name": "Thadvte", "desc": "Taduttit<br>Vici.org: <a href='https://vici.org/vici/3394/'>https://vici.org/vici/3394/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3514.html'>TPPlace3514</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.374227, 35.711899]}}, {"type": "Feature", "properties": {"id": "TPPlace2605", "name": "Thalbasaris", "desc": "Thelbalane<br>Vici.org: <a href='https://vici.org/vici/3395/'>https://vici.org/vici/3395/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2605.html'>TPPlace2605</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.170132, 37.866039]}}, {"type": "Feature", "properties": {"id": "TPPlace472", "name": "Thamaro", "desc": "Thamara<br>Vici.org: <a href='https://vici.org/vici/3396/'>https://vici.org/vici/3396/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace472.html'>TPPlace472</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.230423, 30.82262]}}, {"type": "Feature", "properties": {"id": "TPPlace476", "name": "Thantia", "desc": "Thainatha<br>Vici.org: <a href='https://vici.org/vici/3397/'>https://vici.org/vici/3397/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace476.html'>TPPlace476</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.228985, 32.269978]}}, {"type": "Feature", "properties": {"id": "TPPlace2484", "name": "Tharsidarate", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3398/'>https://vici.org/vici/3398/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2484.html'>TPPlace2484</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.490078, 39.974358]}}, {"type": "Feature", "properties": {"id": "TPPlace2441", "name": "Theleda", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3399/'>https://vici.org/vici/3399/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2441.html'>TPPlace2441</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [37.103176, 35.137478]}}, {"type": "Feature", "properties": {"id": "TPPlace2617", "name": "Thiar", "desc": "Thiara<br>Vici.org: <a href='https://vici.org/vici/3400/'>https://vici.org/vici/3400/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2617.html'>TPPlace2617</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.213009, 36.986279]}}, {"type": "Feature", "properties": {"id": "TPPlace3520", "name": "Thigisi", "desc": "Tigisis<br>Vici.org: <a href='https://vici.org/vici/3401/'>https://vici.org/vici/3401/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3520.html'>TPPlace3520</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [6.942475, 36.110683]}}, {"type": "Feature", "properties": {"id": "TPPlace470", "name": "Thornia", "desc": "Thoana<br>Vici.org: <a href='https://vici.org/vici/3402/'>https://vici.org/vici/3402/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace470.html'>TPPlace470</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.717667, 30.770346]}}, {"type": "Feature", "properties": {"id": "TPPlace78", "name": "Thvraria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3403/'>https://vici.org/vici/3403/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace78.html'>TPPlace78</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.940136, 36.834927]}}, {"type": "Feature", "properties": {"id": "TPPlace130", "name": "THVRRIS", "desc": "Turris<br>Vici.org: <a href='https://vici.org/vici/3404/'>https://vici.org/vici/3404/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace130.html'>TPPlace130</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.793709, 36.656956]}}, {"type": "Feature", "properties": {"id": "TPPlace233", "name": "Thvsvros", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3405/'>https://vici.org/vici/3405/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace233.html'>TPPlace233</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.143573, 33.917648]}}, {"type": "Feature", "properties": {"id": "TPPlace1731", "name": "Tiertva", "desc": "Dierna<br>Vici.org: <a href='https://vici.org/vici/3406/'>https://vici.org/vici/3406/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1731.html'>TPPlace1731</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.396173, 44.725159]}}, {"type": "Feature", "properties": {"id": "TPPlace1786", "name": "Timaco Minori", "desc": "Timacum Minus<br>Vici.org: <a href='https://vici.org/vici/3407/'>https://vici.org/vici/3407/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1786.html'>TPPlace1786</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.258335, 43.618824]}}, {"type": "Feature", "properties": {"id": "TPPlace1937", "name": "Trimamio", "desc": "Trimammium<br>Vici.org: <a href='https://vici.org/vici/3408/'>https://vici.org/vici/3408/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1937.html'>TPPlace1937</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [25.831078, 43.70805]}}, {"type": "Feature", "properties": {"id": "TPPlace155", "name": "Tvbonis", "desc": "Thubunae<br>Vici.org: <a href='https://vici.org/vici/3409/'>https://vici.org/vici/3409/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace155.html'>TPPlace155</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.350311, 35.350845]}}, {"type": "Feature", "properties": {"id": "TPPlace1243", "name": "Tvrres", "desc": "Ad Turres<br>Vici.org: <a href='https://vici.org/vici/3410/'>https://vici.org/vici/3410/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1243.html'>TPPlace1243</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.155385, 41.936077]}}, {"type": "Feature", "properties": {"id": "TPPlace214", "name": "Vbaza Castellv\u0304", "desc": "Turris Ubaza<br>Vici.org: <a href='https://vici.org/vici/3411/'>https://vici.org/vici/3411/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace214.html'>TPPlace214</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.734771, 34.91206]}}, {"type": "Feature", "properties": {"id": "TPPlace2319", "name": "Vbinnaca", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3412/'>https://vici.org/vici/3412/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2319.html'>TPPlace2319</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.562889, 38.173859]}}, {"type": "Feature", "properties": {"id": "TPPlace148", "name": "Vlisippira", "desc": "Uluzibbira<br>Vici.org: <a href='https://vici.org/vici/3413/'>https://vici.org/vici/3413/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace148.html'>TPPlace148</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.453276, 35.949436]}}, {"type": "Feature", "properties": {"id": "TPPlace1974", "name": "Vt Svrgas", "desc": "Utsurgae<br>Vici.org: <a href='https://vici.org/vici/3414/'>https://vici.org/vici/3414/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1974.html'>TPPlace1974</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.8703, 41.514965]}}, {"type": "Feature", "properties": {"id": "TPPlace193", "name": "Vzappa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3415/'>https://vici.org/vici/3415/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace193.html'>TPPlace193</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.330468, 35.924034]}}, {"type": "Feature", "properties": {"id": "TPPlace196", "name": "Aqvas Regias", "desc": "Aquae Regiae<br>Vici.org: <a href='https://vici.org/vici/3416/'>https://vici.org/vici/3416/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace196.html'>TPPlace196</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.718677, 35.58292]}}, {"type": "Feature", "properties": {"id": "TPPlace1796", "name": "Varis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3417/'>https://vici.org/vici/3417/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1796.html'>TPPlace1796</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.026846, 42.670162]}}, {"type": "Feature", "properties": {"id": "TPPlace115", "name": "Vasidice", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3418/'>https://vici.org/vici/3418/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace115.html'>TPPlace115</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [7.96098, 36.151794]}}, {"type": "Feature", "properties": {"id": "TPPlace2601", "name": "Vastavna", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3419/'>https://vici.org/vici/3419/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2601.html'>TPPlace2601</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.103176, 38.305756]}}, {"type": "Feature", "properties": {"id": "TPPlace424", "name": "Venne", "desc": "Peme<br>Vici.org: <a href='https://vici.org/vici/3420/'>https://vici.org/vici/3420/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace424.html'>TPPlace424</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.237597, 29.586777]}}, {"type": "Feature", "properties": {"id": "TPPlace1038", "name": "Vennv\u0304", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3421/'>https://vici.org/vici/3421/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1038.html'>TPPlace1038</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.823126, 45.547363]}}, {"type": "Feature", "properties": {"id": "TPPlace1039", "name": "Verona", "desc": "Verona<br>Vici.org: <a href='https://vici.org/vici/3422/'>https://vici.org/vici/3422/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1039.html'>TPPlace1039</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.994371, 45.438953]}}, {"type": "Feature", "properties": {"id": "TPPlace2526", "name": "Vereisso", "desc": "Vereuso<br>Vici.org: <a href='https://vici.org/vici/3423/'>https://vici.org/vici/3423/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2526.html'>TPPlace2526</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.496056, 39.250542]}}, {"type": "Feature", "properties": {"id": "TPPlace2677", "name": "Vica", "desc": "Vicat<br>Vici.org: <a href='https://vici.org/vici/3424/'>https://vici.org/vici/3424/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2677.html'>TPPlace2677</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.36404, 36.4049]}}, {"type": "Feature", "properties": {"id": "TPPlace1040", "name": "Vice\u0304tia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3425/'>https://vici.org/vici/3425/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1040.html'>TPPlace1040</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.540277, 45.545773]}}, {"type": "Feature", "properties": {"id": "TPPlace1812", "name": "Viciano", "desc": "Vicianum<br>Vici.org: <a href='https://vici.org/vici/3426/'>https://vici.org/vici/3426/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1812.html'>TPPlace1812</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.141542, 42.639107]}}, {"type": "Feature", "properties": {"id": "TPPlace73", "name": "Vico Avgvsti", "desc": "Vicus Augusti<br>Vici.org: <a href='https://vici.org/vici/3427/'>https://vici.org/vici/3427/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace73.html'>TPPlace73</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.238986, 36.636646]}}, {"type": "Feature", "properties": {"id": "TPPlace1393", "name": "Vico mendicoleo", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3428/'>https://vici.org/vici/3428/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1393.html'>TPPlace1393</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.744834, 40.122486]}}, {"type": "Feature", "properties": {"id": "TPPlace860", "name": "Vico Virginis", "desc": "Vicus Virginis<br>Vici.org: <a href='https://vici.org/vici/3429/'>https://vici.org/vici/3429/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace860.html'>TPPlace860</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.477232, 44.311085]}}, {"type": "Feature", "properties": {"id": "TPPlace1133", "name": "VII Maria", "desc": "Septem Maria<br>Vici.org: <a href='https://vici.org/vici/3430/'>https://vici.org/vici/3430/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1133.html'>TPPlace1133</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.227829, 45.0242]}}, {"type": "Feature", "properties": {"id": "TPPlace244", "name": "Vinavicvs", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3431/'>https://vici.org/vici/3431/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace244.html'>TPPlace244</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.550673, 36.510509]}}, {"type": "Feature", "properties": {"id": "TPPlace1813", "name": "Vindenis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3432/'>https://vici.org/vici/3432/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1813.html'>TPPlace1813</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.190577, 42.866798]}}, {"type": "Feature", "properties": {"id": "TPPlace1931", "name": "vio", "desc": "Utus<br>Vici.org: <a href='https://vici.org/vici/3433/'>https://vici.org/vici/3433/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1931.html'>TPPlace1931</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [24.728167, 43.641651]}}, {"type": "Feature", "properties": {"id": "TPPlace2121", "name": "Virasia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3434/'>https://vici.org/vici/3434/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2121.html'>TPPlace2121</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.578594, 40.615459]}}, {"type": "Feature", "properties": {"id": "TPPlace306", "name": "Virga", "desc": "Berge<br>Vici.org: <a href='https://vici.org/vici/3435/'>https://vici.org/vici/3435/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace306.html'>TPPlace306</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.880159, 32.248646]}}, {"type": "Feature", "properties": {"id": "TPPlace2701", "name": "Volocesia", "desc": "Vologesias<br>Vici.org: <a href='https://vici.org/vici/3436/'>https://vici.org/vici/3436/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2701.html'>TPPlace2701</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [44.580482, 33.045979]}}, {"type": "Feature", "properties": {"id": "TPPlace2185", "name": "Ypepa", "desc": "Hypaipa<br>Vici.org: <a href='https://vici.org/vici/3437/'>https://vici.org/vici/3437/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2185.html'>TPPlace2185</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [27.962914, 38.248459]}}, {"type": "Feature", "properties": {"id": "TPPlace2232", "name": "Zacoria", "desc": "Zagora<br>Vici.org: <a href='https://vici.org/vici/3438/'>https://vici.org/vici/3438/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2232.html'>TPPlace2232</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.411098, 41.677746]}}, {"type": "Feature", "properties": {"id": "TPPlace2655", "name": "Zagvrae", "desc": "Zogorra<br>Vici.org: <a href='https://vici.org/vici/3439/'>https://vici.org/vici/3439/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2655.html'>TPPlace2655</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.111057, 36.359138]}}, {"type": "Feature", "properties": {"id": "TPPlace2597", "name": "Zanserio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3440/'>https://vici.org/vici/3440/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2597.html'>TPPlace2597</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [41.78722, 38.163887]}}, {"type": "Feature", "properties": {"id": "TPPlace338", "name": "Zavtaberna", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3441/'>https://vici.org/vici/3441/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace338.html'>TPPlace338</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.092993, 31.706039]}}, {"type": "Feature", "properties": {"id": "TPPlace2020", "name": "Zirinis", "desc": "Zirinae<br>Vici.org: <a href='https://vici.org/vici/3442/'>https://vici.org/vici/3442/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2020.html'>TPPlace2020</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.311937, 41.160843]}}, {"type": "Feature", "properties": {"id": "TPPlace2668", "name": "Zogorra", "desc": "Zagurae<br>Vici.org: <a href='https://vici.org/vici/3443/'>https://vici.org/vici/3443/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2668.html'>TPPlace2668</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [42.111057, 36.359138]}}, {"type": "Feature", "properties": {"id": "TPPlace318", "name": "Zvre", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3444/'>https://vici.org/vici/3444/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace318.html'>TPPlace318</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.828865, 31.191298]}}, {"type": "Feature", "properties": {"id": "TPPlace769", "name": "Voconi", "desc": "Aquae Voconiae<br>Vici.org: <a href='https://vici.org/vici/3445/'>https://vici.org/vici/3445/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace769.html'>TPPlace769</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.752102, 41.846176]}}, {"type": "Feature", "properties": {"id": "TPPlace770", "name": "Gervnda", "desc": "Girona<br>Vici.org: <a href='https://vici.org/vici/3446/'>https://vici.org/vici/3446/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace770.html'>TPPlace770</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.826608, 41.987347]}}, {"type": "Feature", "properties": {"id": "TPPlace772", "name": "Ivncaria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3447/'>https://vici.org/vici/3447/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace772.html'>TPPlace772</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.966727, 42.275356]}}, {"type": "Feature", "properties": {"id": "TPPlace773", "name": "Declana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3448/'>https://vici.org/vici/3448/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace773.html'>TPPlace773</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.87374, 42.41486]}}, {"type": "Feature", "properties": {"id": "TPPlace505", "name": "Raphanis", "desc": "Raphaneai<br>Vici.org: <a href='https://vici.org/vici/3449/'>https://vici.org/vici/3449/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace505.html'>TPPlace505</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.392979, 34.966351]}}, {"type": "Feature", "properties": {"id": "TPPlace282", "name": "Ziza Mvnicipivm", "desc": "Zitha<br>Vici.org: <a href='https://vici.org/vici/3450/'>https://vici.org/vici/3450/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace282.html'>TPPlace282</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [11.112905, 33.503895]}}, {"type": "Feature", "properties": {"id": "TPPlace2246", "name": "Nicopoli", "desc": "Ye\u015filyayla<br>Vici.org: <a href='https://vici.org/vici/3451/'>https://vici.org/vici/3451/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2246.html'>TPPlace2246</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [38.135262, 40.14201]}}, {"type": "Feature", "properties": {"id": "TPPlace2199", "name": "Appollonia", "desc": "G\u00f6lyaz\u0131, Apollonia ad Rhyndacum<br>Vici.org: <a href='https://vici.org/vici/3452/'>https://vici.org/vici/3452/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2199.html'>TPPlace2199</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [28.677067, 40.189503]}}, {"type": "Feature", "properties": {"id": "TPPlace1867", "name": "Stenas", "desc": "? ~ Perataria<br>Vici.org: <a href='https://vici.org/vici/3453/'>https://vici.org/vici/3453/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1867.html'>TPPlace1867</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [22.612053, 39.897686]}}, {"type": "Feature", "properties": {"id": "TPPlace1845", "name": "Addianam", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3454/'>https://vici.org/vici/3454/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1845.html'>TPPlace1845</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.333752, 41.155769]}}, {"type": "Feature", "properties": {"id": "TPPlace1849", "name": "Nicea", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3455/'>https://vici.org/vici/3455/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1849.html'>TPPlace1849</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [21.17795, 41.056992]}}, {"type": "Feature", "properties": {"id": "TPPlace1853", "name": "Amatria", "desc": "Amantia<br>Vici.org: <a href='https://vici.org/vici/3456/'>https://vici.org/vici/3456/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1853.html'>TPPlace1853</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [19.617769, 40.467945]}}, {"type": "Feature", "properties": {"id": "TPPlace1810", "name": "Gabvleo", "desc": "Gabuleum<br>Vici.org: <a href='https://vici.org/vici/3457/'>https://vici.org/vici/3457/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1810.html'>TPPlace1810</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [20.724176, 42.21236]}}, {"type": "Feature", "properties": {"id": "TPPlace1682", "name": "Promona", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3458/'>https://vici.org/vici/3458/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1682.html'>TPPlace1682</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [16.199379, 43.896187]}}, {"type": "Feature", "properties": {"id": "TPPlace1677", "name": "Iovnaria", "desc": "Ionnaria<br>Vici.org: <a href='https://vici.org/vici/3459/'>https://vici.org/vici/3459/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1677.html'>TPPlace1677</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [17.149805, 44.082371]}}, {"type": "Feature", "properties": {"id": "TPPlace1624", "name": "Avsancalione", "desc": "Ausancalio<br>Vici.org: <a href='https://vici.org/vici/3460/'>https://vici.org/vici/3460/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1624.html'>TPPlace1624</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.686781, 44.391685]}}, {"type": "Feature", "properties": {"id": "TPPlace1621", "name": "Arypio", "desc": "Arupium<br>Vici.org: <a href='https://vici.org/vici/3461/'>https://vici.org/vici/3461/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1621.html'>TPPlace1621</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.268748, 44.848511]}}, {"type": "Feature", "properties": {"id": "TPPlace1452", "name": "Calatie", "desc": "Calatia<br>Vici.org: <a href='https://vici.org/vici/3462/'>https://vici.org/vici/3462/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1452.html'>TPPlace1452</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.351473, 41.045982]}}, {"type": "Feature", "properties": {"id": "TPPlace1201", "name": "Ereto", "desc": "Eretum<br>Vici.org: <a href='https://vici.org/vici/3463/'>https://vici.org/vici/3463/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1201.html'>TPPlace1201</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.626047, 42.101135]}}, {"type": "Feature", "properties": {"id": "TPPlace1166", "name": "Adintercisa", "desc": "Passo di Furlo<br>Vici.org: <a href='https://vici.org/vici/3464/'>https://vici.org/vici/3464/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1166.html'>TPPlace1166</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.73317, 43.654259]}}, {"type": "Feature", "properties": {"id": "TPPlace1076", "name": "In Alpe pennino", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3465/'>https://vici.org/vici/3465/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1076.html'>TPPlace1076</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.567696, 44.249752]}}, {"type": "Feature", "properties": {"id": "TPPlace325", "name": "Zacazama", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3466/'>https://vici.org/vici/3466/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace325.html'>TPPlace325</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.068426, 30.792652]}}, {"type": "Feature", "properties": {"id": "TPPlace2213", "name": "Adrimitio", "desc": "Adramyttium<br>Vici.org: <a href='https://vici.org/vici/3467/'>https://vici.org/vici/3467/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2213.html'>TPPlace2213</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [26.938091, 39.500698]}}, {"type": "Feature", "properties": {"id": "TPPlace1192", "name": "Narnia", "desc": "Nequinum<br>Vici.org: <a href='https://vici.org/vici/3468/'>https://vici.org/vici/3468/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1192.html'>TPPlace1192</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.515737, 42.519924]}}, {"type": "Feature", "properties": {"id": "TPPlace1614", "name": "Nesatio", "desc": "Nesactium<br>Vici.org: <a href='https://vici.org/vici/3469/'>https://vici.org/vici/3469/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1614.html'>TPPlace1614</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.969585, 44.916779]}}, {"type": "Feature", "properties": {"id": "TPPlace2150", "name": "Coloniam Arcilaida", "desc": "Colonia Claudia Archelais<br>Vici.org: <a href='https://vici.org/vici/3470/'>https://vici.org/vici/3470/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2150.html'>TPPlace2150</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [33.862164, 38.430817]}}, {"type": "Feature", "properties": {"id": "TPPlace291", "name": "Villa Repentina", "desc": "Vax<br>Vici.org: <a href='https://vici.org/vici/3471/'>https://vici.org/vici/3471/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace291.html'>TPPlace291</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [12.796766, 32.760754]}}, {"type": "Feature", "properties": {"id": "TPPlace3564", "name": "Crypta Neapolitana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3472/'>https://vici.org/vici/3472/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3564.html'>TPPlace3564</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [14.21755, 40.829594]}}, {"type": "Feature", "properties": {"id": "TPPlace367", "name": "Alexandria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3473/'>https://vici.org/vici/3473/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace367.html'>TPPlace367</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [29.909773, 31.201435]}}, {"type": "Feature", "properties": {"id": "TPPlace2401", "name": "Athenis", "desc": "Athenai<br>Vici.org: <a href='https://vici.org/vici/3474/'>https://vici.org/vici/3474/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2401.html'>TPPlace2401</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.874222, 41.172314]}}, {"type": "Feature", "properties": {"id": "TPPlace372", "name": "Heracleo", "desc": "Herakleopolis Mikra<br>Vici.org: <a href='https://vici.org/vici/3475/'>https://vici.org/vici/3475/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace372.html'>TPPlace372</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.167572, 30.98214]}}, {"type": "Feature", "properties": {"id": "TPPlace396", "name": "Diospolis Magna", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3476/'>https://vici.org/vici/3476/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace396.html'>TPPlace396</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.647282, 25.694777]}}, {"type": "Feature", "properties": {"id": "TPPlace419", "name": "Fenchi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3477/'>https://vici.org/vici/3477/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace419.html'>TPPlace419</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.879436, 28.752638]}}, {"type": "Feature", "properties": {"id": "TPPlace420", "name": "Heracleo", "desc": "Herakleopolis<br>Vici.org: <a href='https://vici.org/vici/3478/'>https://vici.org/vici/3478/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace420.html'>TPPlace420</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [30.934614, 29.085459]}}, {"type": "Feature", "properties": {"id": "TPPlace429", "name": "Phacaiv\u0304", "desc": "Phakoussa<br>Vici.org: <a href='https://vici.org/vici/3479/'>https://vici.org/vici/3479/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace429.html'>TPPlace429</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.672165, 30.72051]}}, {"type": "Feature", "properties": {"id": "TPPlace449", "name": "Medeia", "desc": "Marah<br>Vici.org: <a href='https://vici.org/vici/3480/'>https://vici.org/vici/3480/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace449.html'>TPPlace449</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.815029, 29.419451]}}, {"type": "Feature", "properties": {"id": "TPPlace723", "name": "Vbrivvm", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3481/'>https://vici.org/vici/3481/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace723.html'>TPPlace723</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [2.866794, 45.744644]}}, {"type": "Feature", "properties": {"id": "TPPlace758", "name": "Fines", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3482/'>https://vici.org/vici/3482/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace758.html'>TPPlace758</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.359924, 44.003078]}}, {"type": "Feature", "properties": {"id": "TPPlace760", "name": "Badera", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3483/'>https://vici.org/vici/3483/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace760.html'>TPPlace760</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [1.612796, 43.455036]}}, {"type": "Feature", "properties": {"id": "TPPlace793", "name": "Cavalline", "desc": "Cabellio<br>Vici.org: <a href='https://vici.org/vici/3484/'>https://vici.org/vici/3484/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace793.html'>TPPlace793</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [5.034166, 43.829884]}}, {"type": "Feature", "properties": {"id": "TPPlace2398", "name": "Opivnte", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3485/'>https://vici.org/vici/3485/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2398.html'>TPPlace2398</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [40.264282, 40.93795]}}, {"type": "Feature", "properties": {"id": "TPPlace2604", "name": "Flegoana", "desc": "Elegoana<br>Vici.org: <a href='https://vici.org/vici/3486/'>https://vici.org/vici/3486/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2604.html'>TPPlace2604</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [43.353333, 39.026535]}}, {"type": "Feature", "properties": {"id": "TPPlace2736", "name": "Antiochia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3487/'>https://vici.org/vici/3487/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2736.html'>TPPlace2736</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [62.19278, 37.669739]}}, {"type": "Feature", "properties": {"id": "TPPlace380", "name": "Atribi", "desc": "Athribis<br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace380.html'>TPPlace380</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [31.184021, 30.468973]}}, {"type": "Feature", "properties": {"id": "TPPlace2807", "name": "Cabacos", "desc": "Kazeka<br>Vici.org: <a href='https://vici.org/vici/3489/'>https://vici.org/vici/3489/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2807.html'>TPPlace2807</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [35.843674, 45.023586]}}, {"type": "Feature", "properties": {"id": "TPPlace2935", "name": "Caralis", "desc": "Carales<br>Vici.org: <a href='https://vici.org/vici/3490/'>https://vici.org/vici/3490/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2935.html'>TPPlace2935</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.109522, 39.214886]}}, {"type": "Feature", "properties": {"id": "TPPlace2828", "name": "Cepos", "desc": "Kepoi<br>Vici.org: <a href='https://vici.org/vici/3491/'>https://vici.org/vici/3491/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2828.html'>TPPlace2828</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.997341, 45.299423]}}, {"type": "Feature", "properties": {"id": "TPPlace2814", "name": "Chimerivm", "desc": "Kimmerikon<br>Vici.org: <a href='https://vici.org/vici/3492/'>https://vici.org/vici/3492/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2814.html'>TPPlace2814</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.22459, 45.04232]}}, {"type": "Feature", "properties": {"id": "TPPlace2800", "name": "Cotiara", "desc": "Kottiara<br>Vici.org: <a href='https://vici.org/vici/3493/'>https://vici.org/vici/3493/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2800.html'>TPPlace2800</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [76.777702, 8.991778]}}, {"type": "Feature", "properties": {"id": "TPPlace2919", "name": "Crvcis", "desc": "Cornus<br>Vici.org: <a href='https://vici.org/vici/3494/'>https://vici.org/vici/3494/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2919.html'>TPPlace2919</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.492635, 40.104389]}}, {"type": "Feature", "properties": {"id": "TPPlace3016", "name": "Girba", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3495/'>https://vici.org/vici/3495/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3016.html'>TPPlace3016</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.857207, 33.877937]}}, {"type": "Feature", "properties": {"id": "TPPlace2829", "name": "HERMONASSA", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3496/'>https://vici.org/vici/3496/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2829.html'>TPPlace2829</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.711624, 45.217358]}}, {"type": "Feature", "properties": {"id": "TPPlace2914", "name": "Marianis", "desc": "Mariana<br>Vici.org: <a href='https://vici.org/vici/3497/'>https://vici.org/vici/3497/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2914.html'>TPPlace2914</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.51256, 42.528942]}}, {"type": "Feature", "properties": {"id": "TPPlace2818", "name": "Monim", "desc": "Satyrou Mnema<br>Vici.org: <a href='https://vici.org/vici/3498/'>https://vici.org/vici/3498/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2818.html'>TPPlace2818</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.818031, 45.344212]}}, {"type": "Feature", "properties": {"id": "TPPlace2798", "name": "Mvzeris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3499/'>https://vici.org/vici/3499/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2798.html'>TPPlace2798</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [76.213142, 10.153976]}}, {"type": "Feature", "properties": {"id": "TPPlace3543", "name": "Nvra", "desc": "Nora<br>Vici.org: <a href='https://vici.org/vici/3500/'>https://vici.org/vici/3500/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3543.html'>TPPlace3543</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [9.016164, 38.984455]}}, {"type": "Feature", "properties": {"id": "TPPlace2824", "name": "Phamacorivm", "desc": "Phanagoreia<br>Vici.org: <a href='https://vici.org/vici/3501/'>https://vici.org/vici/3501/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2824.html'>TPPlace2824</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.983963, 45.272594]}}, {"type": "Feature", "properties": {"id": "TPPlace2806", "name": "Salolime", "desc": "Kalos Limen<br>Vici.org: <a href='https://vici.org/vici/3502/'>https://vici.org/vici/3502/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2806.html'>TPPlace2806</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [32.703316, 45.520931]}}, {"type": "Feature", "properties": {"id": "TPPlace2918", "name": "Svlci", "desc": "Sulcis<br>Vici.org: <a href='https://vici.org/vici/3503/'>https://vici.org/vici/3503/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2918.html'>TPPlace2918</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.4547, 39.061745]}}, {"type": "Feature", "properties": {"id": "TPPlace1505", "name": "Tavromenio", "desc": "Tauromenium<br>Vici.org: <a href='https://vici.org/vici/3504/'>https://vici.org/vici/3504/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace1505.html'>TPPlace1505</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [15.292135, 37.85247]}}, {"type": "Feature", "properties": {"id": "TPPlace3017", "name": "Tipasa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3505/'>https://vici.org/vici/3505/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3017.html'>TPPlace3017</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [10.747552, 33.72382]}}, {"type": "Feature", "properties": {"id": "TPPlace2796", "name": "Tvndis", "desc": "Tyndis<br>Vici.org: <a href='https://vici.org/vici/3506/'>https://vici.org/vici/3506/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2796.html'>TPPlace2796</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [75.926476, 10.763548]}}, {"type": "Feature", "properties": {"id": "TPPlace2920", "name": "Vttea", "desc": "Bitia<br>Vici.org: <a href='https://vici.org/vici/3507/'>https://vici.org/vici/3507/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2920.html'>TPPlace2920</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.875849, 38.902691]}}, {"type": "Feature", "properties": {"id": "TPPlace3074", "name": "Arephilenorvm fines affrice et cyrenensivm", "desc": "Arae Philaenorum<br>Vici.org: <a href='https://vici.org/vici/3508/'>https://vici.org/vici/3508/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3074.html'>TPPlace3074</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [18.788189, 30.293896]}}, {"type": "Feature", "properties": {"id": "TPPlace2797", "name": "Templ Avgvsti", "desc": "Templum Augusti<br>Vici.org: <a href='https://vici.org/vici/3509/'>https://vici.org/vici/3509/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2797.html'>TPPlace2797</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [76.20723, 10.157551]}}, {"type": "Feature", "properties": {"id": "TPPlace2934", "name": "Tvrribvs", "desc": "Turris Libisonis<br>Vici.org: <a href='https://vici.org/vici/3510/'>https://vici.org/vici/3510/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2934.html'>TPPlace2934</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [8.410012, 40.834568]}}, {"type": "Feature", "properties": {"id": "TPPlace3566", "name": "Caieta", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3511/'>https://vici.org/vici/3511/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace3566.html'>TPPlace3566</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [13.57099, 41.214073]}}, {"type": "Feature", "properties": {"id": "TPPlace2812", "name": "Nimphi", "desc": "Nymphaion<br>Vici.org: <a href='https://vici.org/vici/3512/'>https://vici.org/vici/3512/</a><br>Rome's world: <a href='http://www.cambridge.org/us/talbert/talbertdatabase/TPPlace2812.html'>TPPlace2812</a>", "source": "Tabula Peutingeriana"}, "geometry": {"type": "Point", "coordinates": [36.412521, 45.227547]}}, {"type": "Feature", "properties": {"id": "OVPlace11", "name": "Augusta Bracaria", "desc": "Braga, Bracara Augusta<br>Vici.org: <a href='https://vici.org/vici/3513/'>https://vici.org/vici/3513/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.422933, 41.551739]}}, {"type": "Feature", "properties": {"id": "OVPlace12", "name": "Limea", "desc": "~ Ponte de Lima, Limia<br>Vici.org: <a href='https://vici.org/vici/3514/'>https://vici.org/vici/3514/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.583327, 41.767078]}}, {"type": "Feature", "properties": {"id": "OVPlace13", "name": "Tude", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3515/'>https://vici.org/vici/3515/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.643756, 42.046196]}}, {"type": "Feature", "properties": {"id": "OVPlace14", "name": "Burbida", "desc": "Bonisana<br>Vici.org: <a href='https://vici.org/vici/3516/'>https://vici.org/vici/3516/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.531584, 42.293831]}}, {"type": "Feature", "properties": {"id": "OVPlace15", "name": "Turoqua", "desc": "Turaqua<br>Vici.org: <a href='https://vici.org/vici/3517/'>https://vici.org/vici/3517/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.527426, 42.400452]}}, {"type": "Feature", "properties": {"id": "OVPlace16", "name": "Aquae Celenae", "desc": "Quecelenis<br>Vici.org: <a href='https://vici.org/vici/3518/'>https://vici.org/vici/3518/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.643331, 42.605503]}}, {"type": "Feature", "properties": {"id": "OVPlace18", "name": "Glandimarium", "desc": "Glandimirum<br>Vici.org: <a href='https://vici.org/vici/3519/'>https://vici.org/vici/3519/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.654909, 42.725582]}}, {"type": "Feature", "properties": {"id": "OVPlace20", "name": "Brigantium", "desc": "A Coru\u00f1a, Bricantia<br>Vici.org: <a href='https://vici.org/vici/3520/'>https://vici.org/vici/3520/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.395968, 43.371487]}}, {"type": "Feature", "properties": {"id": "OVPlace33", "name": "Alantone", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3521/'>https://vici.org/vici/3521/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.815214, 42.879215]}}, {"type": "Feature", "properties": {"id": "OVPlace34", "name": "Pompelone", "desc": "Pamplona, Pompelo<br>Vici.org: <a href='https://vici.org/vici/3522/'>https://vici.org/vici/3522/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.644224, 42.817989]}}, {"type": "Feature", "properties": {"id": "OVPlace35", "name": "Turissa", "desc": "Iturisa<br>Vici.org: <a href='https://vici.org/vici/3523/'>https://vici.org/vici/3523/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.386239, 42.97065]}}, {"type": "Feature", "properties": {"id": "OVPlace36", "name": "Summo Pyreneo", "desc": "Summus Pyreneus<br>Vici.org: <a href='https://vici.org/vici/3524/'>https://vici.org/vici/3524/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.324058, 43.019859]}}, {"type": "Feature", "properties": {"id": "OVPlace37", "name": "Carta", "desc": "Santacara, Cara<br>Vici.org: <a href='https://vici.org/vici/3525/'>https://vici.org/vici/3525/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.553244, 42.375252]}}, {"type": "Feature", "properties": {"id": "OVPlace39", "name": "Segla", "desc": "Ejea de los Caballeros, Segia<br>Vici.org: <a href='https://vici.org/vici/3526/'>https://vici.org/vici/3526/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.137115, 42.129368]}}, {"type": "Feature", "properties": {"id": "OVPlace40", "name": "Caesaraugusta", "desc": "Zaragoza, Caesarea Augusta<br>Vici.org: <a href='https://vici.org/vici/3527/'>https://vici.org/vici/3527/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.876643, 41.656246]}}, {"type": "Feature", "properties": {"id": "OVPlace41", "name": "Foro Gallorum", "desc": "Forum Gallorum<br>Vici.org: <a href='https://vici.org/vici/3528/'>https://vici.org/vici/3528/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.760288, 42.011616]}}, {"type": "Feature", "properties": {"id": "OVPlace32", "name": "Ossaron", "desc": "Irun, Oiasso<br>Vici.org: <a href='https://vici.org/vici/3529/'>https://vici.org/vici/3529/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.789233, 43.338169]}}, {"type": "Feature", "properties": {"id": "OVPlace44", "name": "Ebelino", "desc": "Ebelinum<br>Vici.org: <a href='https://vici.org/vici/3530/'>https://vici.org/vici/3530/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.696297, 42.31675]}}, {"type": "Feature", "properties": {"id": "OVPlace47", "name": "Summo Pyreneo", "desc": "Summus Pyreneus<br>Vici.org: <a href='https://vici.org/vici/3531/'>https://vici.org/vici/3531/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.82811, 42.757526]}}, {"type": "Feature", "properties": {"id": "OVPlace50", "name": "Tarracone", "desc": "Tarragona, Tarraco<br>Vici.org: <a href='https://vici.org/vici/3532/'>https://vici.org/vici/3532/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.258617, 41.11459]}}, {"type": "Feature", "properties": {"id": "OVPlace51", "name": "Palturia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3533/'>https://vici.org/vici/3533/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.514955, 41.203712]}}, {"type": "Feature", "properties": {"id": "OVPlace52", "name": "Antistiana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3534/'>https://vici.org/vici/3534/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.647899, 41.3106]}}, {"type": "Feature", "properties": {"id": "OVPlace53", "name": "Fines", "desc": "Martorell<br>Vici.org: <a href='https://vici.org/vici/3535/'>https://vici.org/vici/3535/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.927242, 41.473473]}}, {"type": "Feature", "properties": {"id": "OVPlace54", "name": "Arragona", "desc": "Sabadell<br>Vici.org: <a href='https://vici.org/vici/3536/'>https://vici.org/vici/3536/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.107509, 41.548424]}}, {"type": "Feature", "properties": {"id": "OVPlace56", "name": "Barcenone", "desc": "Barcelona, Colonia Barcino<br>Vici.org: <a href='https://vici.org/vici/3537/'>https://vici.org/vici/3537/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.169911, 41.387913]}}, {"type": "Feature", "properties": {"id": "OVPlace57", "name": "Steras", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3538/'>https://vici.org/vici/3538/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.2635, 41.746471]}}, {"type": "Feature", "properties": {"id": "OVPlace58", "name": "Salaniana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3539/'>https://vici.org/vici/3539/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.272959, 41.717426]}}, {"type": "Feature", "properties": {"id": "OVPlace60", "name": "Aquis Querquennis", "desc": "Ba\u00f1os de Bande<br>Vici.org: <a href='https://vici.org/vici/3540/'>https://vici.org/vici/3540/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.980556, 41.973888]}}, {"type": "Feature", "properties": {"id": "OVPlace61", "name": "Geminis", "desc": "Geminiae<br>Vici.org: <a href='https://vici.org/vici/3541/'>https://vici.org/vici/3541/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.756988, 42.113075]}}, {"type": "Feature", "properties": {"id": "OVPlace62", "name": "Salientibus", "desc": "Salientes<br>Vici.org: <a href='https://vici.org/vici/3542/'>https://vici.org/vici/3542/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.672263, 42.2416]}}, {"type": "Feature", "properties": {"id": "OVPlace63", "name": "Praesidio", "desc": "Praesidium<br>Vici.org: <a href='https://vici.org/vici/3543/'>https://vici.org/vici/3543/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.402275, 42.352169]}}, {"type": "Feature", "properties": {"id": "OVPlace64", "name": "Nemetobrica", "desc": "A Pobra de Trives<br>Vici.org: <a href='https://vici.org/vici/3544/'>https://vici.org/vici/3544/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.252762, 42.33984]}}, {"type": "Feature", "properties": {"id": "OVPlace65", "name": "Foro Gigurnion", "desc": "Forum Gigurrorum<br>Vici.org: <a href='https://vici.org/vici/3545/'>https://vici.org/vici/3545/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.120542, 42.39254]}}, {"type": "Feature", "properties": {"id": "OVPlace66", "name": "Gemestarium", "desc": "Ginistaria<br>Vici.org: <a href='https://vici.org/vici/3546/'>https://vici.org/vici/3546/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.904559, 42.485119]}}, {"type": "Feature", "properties": {"id": "OVPlace67", "name": "Bergido", "desc": "Cacabelos, Bergidum Flavium<br>Vici.org: <a href='https://vici.org/vici/3547/'>https://vici.org/vici/3547/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.725657, 42.599819]}}, {"type": "Feature", "properties": {"id": "OVPlace68", "name": "Interamnio Fluvio", "desc": "Interamnium Flavium<br>Vici.org: <a href='https://vici.org/vici/3548/'>https://vici.org/vici/3548/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.591282, 42.546124]}}, {"type": "Feature", "properties": {"id": "OVPlace69", "name": "Asturica", "desc": "Astorga<br>Vici.org: <a href='https://vici.org/vici/3549/'>https://vici.org/vici/3549/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.063573, 42.458649]}}, {"type": "Feature", "properties": {"id": "OVPlace17", "name": "Tria", "desc": "Iria Flavia<br>Vici.org: <a href='https://vici.org/vici/3550/'>https://vici.org/vici/3550/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.654768, 42.746696]}}, {"type": "Feature", "properties": {"id": "OVPlace70", "name": "Brevis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3551/'>https://vici.org/vici/3551/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.998794, 42.911091]}}, {"type": "Feature", "properties": {"id": "OVPlace71", "name": "Assegonia", "desc": "Assegonion<br>Vici.org: <a href='https://vici.org/vici/3552/'>https://vici.org/vici/3552/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.546374, 42.88036]}}, {"type": "Feature", "properties": {"id": "OVPlace72", "name": "Luco Augusti", "desc": "Lugo, Lucus Augusti<br>Vici.org: <a href='https://vici.org/vici/3553/'>https://vici.org/vici/3553/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.555831, 43.012085]}}, {"type": "Feature", "properties": {"id": "OVPlace73", "name": "Timalino", "desc": "Timalinum<br>Vici.org: <a href='https://vici.org/vici/3554/'>https://vici.org/vici/3554/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.260016, 42.891567]}}, {"type": "Feature", "properties": {"id": "OVPlace74", "name": "Ponte Neviae", "desc": "Ponte Abei<br>Vici.org: <a href='https://vici.org/vici/3555/'>https://vici.org/vici/3555/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.162148, 42.853401]}}, {"type": "Feature", "properties": {"id": "OVPlace75", "name": "Uttaris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3556/'>https://vici.org/vici/3556/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.882122, 42.649464]}}, {"type": "Feature", "properties": {"id": "OVPlace76", "name": "Vallata", "desc": "Balsata<br>Vici.org: <a href='https://vici.org/vici/3557/'>https://vici.org/vici/3557/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.766403, 42.517506]}}, {"type": "Feature", "properties": {"id": "OVPlace78", "name": "Legio", "desc": "L\u00e9on, Legio VII Gemina<br>Vici.org: <a href='https://vici.org/vici/3558/'>https://vici.org/vici/3558/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.57175, 42.599865]}}, {"type": "Feature", "properties": {"id": "OVPlace79", "name": "Memoriana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3559/'>https://vici.org/vici/3559/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.828947, 43.158501]}}, {"type": "Feature", "properties": {"id": "OVPlace80", "name": "Luco Asturum", "desc": "Lucus Asturum<br>Vici.org: <a href='https://vici.org/vici/3560/'>https://vici.org/vici/3560/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.812984, 43.449192]}}, {"type": "Feature", "properties": {"id": "OVPlace81", "name": "Lance", "desc": "Lancia<br>Vici.org: <a href='https://vici.org/vici/3561/'>https://vici.org/vici/3561/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.41393, 42.533592]}}, {"type": "Feature", "properties": {"id": "OVPlace82", "name": "Palantia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3562/'>https://vici.org/vici/3562/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.297387, 42.474731]}}, {"type": "Feature", "properties": {"id": "OVPlace84", "name": "Viminacio", "desc": "Viminacium<br>Vici.org: <a href='https://vici.org/vici/3563/'>https://vici.org/vici/3563/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.803655, 42.329159]}}, {"type": "Feature", "properties": {"id": "OVPlace83", "name": "Camala", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3564/'>https://vici.org/vici/3564/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.910139, 42.41494]}}, {"type": "Feature", "properties": {"id": "OVPlace85", "name": "Lacobrigam", "desc": "Carri\u00f3n de los Condes, Lacobriga<br>Vici.org: <a href='https://vici.org/vici/3565/'>https://vici.org/vici/3565/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.601768, 42.338959]}}, {"type": "Feature", "properties": {"id": "OVPlace86", "name": "Ambinon", "desc": "Castrillo de Villavega<br>Vici.org: <a href='https://vici.org/vici/3566/'>https://vici.org/vici/3566/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.480256, 42.454288]}}, {"type": "Feature", "properties": {"id": "OVPlace87", "name": "Pistoraca", "desc": "Herrera de Pisuerga, Pisoraca<br>Vici.org: <a href='https://vici.org/vici/3567/'>https://vici.org/vici/3567/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.33076, 42.594547]}}, {"type": "Feature", "properties": {"id": "OVPlace88", "name": "Legisamone", "desc": "Sasam\u00f3n, Legisamo<br>Vici.org: <a href='https://vici.org/vici/3568/'>https://vici.org/vici/3568/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.043492, 42.417843]}}, {"type": "Feature", "properties": {"id": "OVPlace90", "name": "Virovesca", "desc": "Briviesca, Virovenna<br>Vici.org: <a href='https://vici.org/vici/3569/'>https://vici.org/vici/3569/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.32337, 42.550297]}}, {"type": "Feature", "properties": {"id": "OVPlace91", "name": "Antequia", "desc": "Pancorbo<br>Vici.org: <a href='https://vici.org/vici/3570/'>https://vici.org/vici/3570/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.110597, 42.635242]}}, {"type": "Feature", "properties": {"id": "OVPlace92", "name": "Deobriga", "desc": "Sobobriga<br>Vici.org: <a href='https://vici.org/vici/3571/'>https://vici.org/vici/3571/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.912018, 42.707897]}}, {"type": "Feature", "properties": {"id": "OVPlace93", "name": "Beleia", "desc": "Iru\u00f1a de Oca, Belegia<br>Vici.org: <a href='https://vici.org/vici/3572/'>https://vici.org/vici/3572/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.807792, 42.819042]}}, {"type": "Feature", "properties": {"id": "OVPlace94", "name": "Seussatio", "desc": "Suessatium<br>Vici.org: <a href='https://vici.org/vici/3573/'>https://vici.org/vici/3573/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.634802, 42.841427]}}, {"type": "Feature", "properties": {"id": "OVPlace95", "name": "Alba", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3574/'>https://vici.org/vici/3574/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.290949, 42.856037]}}, {"type": "Feature", "properties": {"id": "OVPlace96", "name": "Bedunia", "desc": "Baedunia<br>Vici.org: <a href='https://vici.org/vici/3575/'>https://vici.org/vici/3575/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.737469, 42.303368]}}, {"type": "Feature", "properties": {"id": "OVPlace97", "name": "Brigicon", "desc": "Benavente, Brigaecium<br>Vici.org: <a href='https://vici.org/vici/3576/'>https://vici.org/vici/3576/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.674123, 42.002777]}}, {"type": "Feature", "properties": {"id": "OVPlace98", "name": "Preterion", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3577/'>https://vici.org/vici/3577/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.738391, 41.881672]}}, {"type": "Feature", "properties": {"id": "OVPlace99", "name": "Vico Aquario", "desc": "Vicus Aquarius<br>Vici.org: <a href='https://vici.org/vici/3578/'>https://vici.org/vici/3578/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.796624, 41.723297]}}, {"type": "Feature", "properties": {"id": "OVPlace100", "name": "Ocelodorum", "desc": "Zamora, Ocelum Duri<br>Vici.org: <a href='https://vici.org/vici/3579/'>https://vici.org/vici/3579/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.746286, 41.503338]}}, {"type": "Feature", "properties": {"id": "OVPlace101", "name": "Intercatia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3580/'>https://vici.org/vici/3580/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.405021, 41.98634]}}, {"type": "Feature", "properties": {"id": "OVPlace102", "name": "Mancellus", "desc": "Lerma<br>Vici.org: <a href='https://vici.org/vici/3581/'>https://vici.org/vici/3581/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.755962, 42.025829]}}, {"type": "Feature", "properties": {"id": "OVPlace103", "name": "Turbes", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3582/'>https://vici.org/vici/3582/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.620031, 41.87347]}}, {"type": "Feature", "properties": {"id": "OVPlace109", "name": "Bellisone", "desc": "Mall\u00e9n, Belsion<br>Vici.org: <a href='https://vici.org/vici/3583/'>https://vici.org/vici/3583/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.418493, 41.900517]}}, {"type": "Feature", "properties": {"id": "OVPlace108", "name": "Turiassone", "desc": "Tarazona, Turiaso<br>Vici.org: <a href='https://vici.org/vici/3584/'>https://vici.org/vici/3584/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.725329, 41.902824]}}, {"type": "Feature", "properties": {"id": "OVPlace105", "name": "Vasamam", "desc": "Burgo de Osma, Uxama<br>Vici.org: <a href='https://vici.org/vici/3585/'>https://vici.org/vici/3585/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.082109, 41.585278]}}, {"type": "Feature", "properties": {"id": "OVPlace107", "name": "Augustobriga", "desc": "Agreda, Aug' Rabrica<br>Vici.org: <a href='https://vici.org/vici/3586/'>https://vici.org/vici/3586/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.920698, 41.854794]}}, {"type": "Feature", "properties": {"id": "OVPlace104", "name": "Cluniam", "desc": "Clunia<br>Vici.org: <a href='https://vici.org/vici/3587/'>https://vici.org/vici/3587/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.368683, 41.782883]}}, {"type": "Feature", "properties": {"id": "OVPlace106", "name": "Numantia", "desc": "Garray, Numaniam<br>Vici.org: <a href='https://vici.org/vici/3588/'>https://vici.org/vici/3588/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.446775, 41.815178]}}, {"type": "Feature", "properties": {"id": "OVPlace110", "name": "Beturri", "desc": "Bitouris<br>Vici.org: <a href='https://vici.org/vici/3589/'>https://vici.org/vici/3589/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.836091, 42.774677]}}, {"type": "Feature", "properties": {"id": "OVPlace113", "name": "Graccuris", "desc": "Alfaro, Gracuse<br>Vici.org: <a href='https://vici.org/vici/3590/'>https://vici.org/vici/3590/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.749327, 42.178585]}}, {"type": "Feature", "properties": {"id": "OVPlace116", "name": "Langobriga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3591/'>https://vici.org/vici/3591/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.532558, 40.991695]}}, {"type": "Feature", "properties": {"id": "OVPlace114", "name": "Calem", "desc": "Porto, Calo<br>Vici.org: <a href='https://vici.org/vici/3592/'>https://vici.org/vici/3592/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.610232, 41.149975]}}, {"type": "Feature", "properties": {"id": "OVPlace117", "name": "Talabrica", "desc": "Terebrica<br>Vici.org: <a href='https://vici.org/vici/3593/'>https://vici.org/vici/3593/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.654652, 40.641705]}}, {"type": "Feature", "properties": {"id": "OVPlace118", "name": "Olisipona", "desc": "Lisboa, Olisipo<br>Vici.org: <a href='https://vici.org/vici/3594/'>https://vici.org/vici/3594/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-9.135507, 38.707165]}}, {"type": "Feature", "properties": {"id": "OVPlace119", "name": "Ierabriga", "desc": "Perbrigam<br>Vici.org: <a href='https://vici.org/vici/3595/'>https://vici.org/vici/3595/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-9.062142, 39.066875]}}, {"type": "Feature", "properties": {"id": "OVPlace120", "name": "Aretio Pretorion", "desc": "Aritium Praetorium<br>Vici.org: <a href='https://vici.org/vici/3596/'>https://vici.org/vici/3596/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.139531, 39.351746]}}, {"type": "Feature", "properties": {"id": "OVPlace121", "name": "Abelterion", "desc": "Abelterium<br>Vici.org: <a href='https://vici.org/vici/3597/'>https://vici.org/vici/3597/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.659131, 39.200306]}}, {"type": "Feature", "properties": {"id": "OVPlace122", "name": "Massusaria", "desc": "Matusarum<br>Vici.org: <a href='https://vici.org/vici/3598/'>https://vici.org/vici/3598/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.282425, 39.12413]}}, {"type": "Feature", "properties": {"id": "OVPlace123", "name": "Plagearia", "desc": "Plagiaria<br>Vici.org: <a href='https://vici.org/vici/3599/'>https://vici.org/vici/3599/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.901471, 38.922607]}}, {"type": "Feature", "properties": {"id": "OVPlace124", "name": "Emerita", "desc": "M\u00e9rida, Emerita Augusta<br>Vici.org: <a href='https://vici.org/vici/3600/'>https://vici.org/vici/3600/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.34567, 38.916161]}}, {"type": "Feature", "properties": {"id": "OVPlace125", "name": "Ad Sorores", "desc": "Sorores<br>Vici.org: <a href='https://vici.org/vici/3601/'>https://vici.org/vici/3601/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.329776, 39.224644]}}, {"type": "Feature", "properties": {"id": "OVPlace126", "name": "Castris Caecili", "desc": "Castris<br>Vici.org: <a href='https://vici.org/vici/3602/'>https://vici.org/vici/3602/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.371727, 39.475956]}}, {"type": "Feature", "properties": {"id": "OVPlace127", "name": "Turmulos", "desc": "Turmula<br>Vici.org: <a href='https://vici.org/vici/3603/'>https://vici.org/vici/3603/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.549076, 39.709812]}}, {"type": "Feature", "properties": {"id": "OVPlace128", "name": "Rusticiana", "desc": "Bustiana<br>Vici.org: <a href='https://vici.org/vici/3604/'>https://vici.org/vici/3604/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.264954, 39.971859]}}, {"type": "Feature", "properties": {"id": "OVPlace130", "name": "Caelionicco", "desc": "Coloricum<br>Vici.org: <a href='https://vici.org/vici/3605/'>https://vici.org/vici/3605/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.54411, 40.475864]}}, {"type": "Feature", "properties": {"id": "OVPlace131", "name": "Ad Lippos", "desc": "Appos<br>Vici.org: <a href='https://vici.org/vici/3606/'>https://vici.org/vici/3606/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.530274, 40.56118]}}, {"type": "Feature", "properties": {"id": "OVPlace132", "name": "Sentice", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3607/'>https://vici.org/vici/3607/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.488376, 40.794479]}}, {"type": "Feature", "properties": {"id": "OVPlace133", "name": "Salmatice", "desc": "Salmantica<br>Vici.org: <a href='https://vici.org/vici/3608/'>https://vici.org/vici/3608/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.663086, 40.964966]}}, {"type": "Feature", "properties": {"id": "OVPlace134", "name": "Sebarium", "desc": "Sabaria<br>Vici.org: <a href='https://vici.org/vici/3609/'>https://vici.org/vici/3609/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.71091, 41.254974]}}, {"type": "Feature", "properties": {"id": "OVPlace136", "name": "Lacipea", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3610/'>https://vici.org/vici/3610/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.947713, 39.128754]}}, {"type": "Feature", "properties": {"id": "OVPlace138", "name": "Turcalion", "desc": "Trujillo, Turgalium<br>Vici.org: <a href='https://vici.org/vici/3611/'>https://vici.org/vici/3611/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.881494, 39.458454]}}, {"type": "Feature", "properties": {"id": "OVPlace141", "name": "Lebura", "desc": "Caesarobriga<br>Vici.org: <a href='https://vici.org/vici/3612/'>https://vici.org/vici/3612/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.833813, 39.959885]}}, {"type": "Feature", "properties": {"id": "OVPlace142", "name": "Toleton", "desc": "Toledo, Toletum<br>Vici.org: <a href='https://vici.org/vici/3613/'>https://vici.org/vici/3613/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.024491, 39.856682]}}, {"type": "Feature", "properties": {"id": "OVPlace140", "name": "Augustobriga", "desc": "Aug. Bria<br>Vici.org: <a href='https://vici.org/vici/3614/'>https://vici.org/vici/3614/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.404994, 39.803017]}}, {"type": "Feature", "properties": {"id": "OVPlace143", "name": "Titulciam", "desc": "Titulcia<br>Vici.org: <a href='https://vici.org/vici/3615/'>https://vici.org/vici/3615/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.570531, 40.136593]}}, {"type": "Feature", "properties": {"id": "OVPlace144", "name": "Conplutum", "desc": "Alcal\u00e1 de Henares, Complutum<br>Vici.org: <a href='https://vici.org/vici/3616/'>https://vici.org/vici/3616/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.364135, 40.481663]}}, {"type": "Feature", "properties": {"id": "OVPlace145", "name": "Amallobriga", "desc": "Abulobrica<br>Vici.org: <a href='https://vici.org/vici/3617/'>https://vici.org/vici/3617/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.999241, 41.501446]}}, {"type": "Feature", "properties": {"id": "OVPlace146", "name": "Nivaria", "desc": "Nibaria<br>Vici.org: <a href='https://vici.org/vici/3618/'>https://vici.org/vici/3618/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.791481, 41.414661]}}, {"type": "Feature", "properties": {"id": "OVPlace147", "name": "Cauca", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3619/'>https://vici.org/vici/3619/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.519114, 41.218346]}}, {"type": "Feature", "properties": {"id": "OVPlace150", "name": "Arriaca", "desc": "Arentia<br>Vici.org: <a href='https://vici.org/vici/3620/'>https://vici.org/vici/3620/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.196797, 40.650875]}}, {"type": "Feature", "properties": {"id": "OVPlace151", "name": "Caesada", "desc": "Espinosa de Henares, Cesaram<br>Vici.org: <a href='https://vici.org/vici/3621/'>https://vici.org/vici/3621/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.073496, 40.903961]}}, {"type": "Feature", "properties": {"id": "OVPlace153", "name": "Arcobriga", "desc": "Monreal d'Ariza, Arcobrica<br>Vici.org: <a href='https://vici.org/vici/3622/'>https://vici.org/vici/3622/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.110515, 41.290092]}}, {"type": "Feature", "properties": {"id": "OVPlace154", "name": "Bilbili", "desc": "Bilbilis<br>Vici.org: <a href='https://vici.org/vici/3623/'>https://vici.org/vici/3623/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.603219, 41.382011]}}, {"type": "Feature", "properties": {"id": "OVPlace155", "name": "Netorbriga", "desc": "Nertobriga<br>Vici.org: <a href='https://vici.org/vici/3624/'>https://vici.org/vici/3624/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.428502, 41.498962]}}, {"type": "Feature", "properties": {"id": "OVPlace152", "name": "Segontia", "desc": "Sig\u00fcenza, Seguntia<br>Vici.org: <a href='https://vici.org/vici/3625/'>https://vici.org/vici/3625/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.642246, 41.069584]}}, {"type": "Feature", "properties": {"id": "OVPlace156", "name": "Aquabona", "desc": "Abona<br>Vici.org: <a href='https://vici.org/vici/3626/'>https://vici.org/vici/3626/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-9.05038, 38.601189]}}, {"type": "Feature", "properties": {"id": "OVPlace157", "name": "Catobrica", "desc": "Caetobriga<br>Vici.org: <a href='https://vici.org/vici/3627/'>https://vici.org/vici/3627/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.893066, 38.524513]}}, {"type": "Feature", "properties": {"id": "OVPlace160", "name": "Aranni", "desc": "Arani<br>Vici.org: <a href='https://vici.org/vici/3628/'>https://vici.org/vici/3628/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.223956, 37.651016]}}, {"type": "Feature", "properties": {"id": "OVPlace159", "name": "Malateca", "desc": "Malabiste<br>Vici.org: <a href='https://vici.org/vici/3629/'>https://vici.org/vici/3629/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.66066, 38.613518]}}, {"type": "Feature", "properties": {"id": "OVPlace161", "name": "Ossonoba", "desc": "Faro<br>Vici.org: <a href='https://vici.org/vici/3630/'>https://vici.org/vici/3630/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.935108, 37.01535]}}, {"type": "Feature", "properties": {"id": "OVPlace162", "name": "Salacia", "desc": "Salatia<br>Vici.org: <a href='https://vici.org/vici/3631/'>https://vici.org/vici/3631/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.519503, 38.371151]}}, {"type": "Feature", "properties": {"id": "OVPlace163", "name": "Ebora", "desc": "\u00c9vora<br>Vici.org: <a href='https://vici.org/vici/3632/'>https://vici.org/vici/3632/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.909615, 38.570847]}}, {"type": "Feature", "properties": {"id": "OVPlace166", "name": "Euandriana", "desc": "Evandria<br>Vici.org: <a href='https://vici.org/vici/3633/'>https://vici.org/vici/3633/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.4556, 38.85276]}}, {"type": "Feature", "properties": {"id": "OVPlace167", "name": "Metellinum", "desc": "Metilinon<br>Vici.org: <a href='https://vici.org/vici/3634/'>https://vici.org/vici/3634/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.957706, 38.962971]}}, {"type": "Feature", "properties": {"id": "OVPlace168", "name": "Artigi", "desc": "Artibon<br>Vici.org: <a href='https://vici.org/vici/3635/'>https://vici.org/vici/3635/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.545601, 38.722599]}}, {"type": "Feature", "properties": {"id": "OVPlace169", "name": "Mellaria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3636/'>https://vici.org/vici/3636/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.419829, 38.266754]}}, {"type": "Feature", "properties": {"id": "OVPlace170", "name": "Corduba", "desc": "C\u00f3rdoba<br>Vici.org: <a href='https://vici.org/vici/3637/'>https://vici.org/vici/3637/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.779171, 37.884682]}}, {"type": "Feature", "properties": {"id": "OVPlace173", "name": "Castulone", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3638/'>https://vici.org/vici/3638/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.624424, 38.037914]}}, {"type": "Feature", "properties": {"id": "OVPlace175", "name": "Solaria", "desc": "Ad Duo Solaria<br>Vici.org: <a href='https://vici.org/vici/3639/'>https://vici.org/vici/3639/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.103507, 38.342213]}}, {"type": "Feature", "properties": {"id": "OVPlace174", "name": "Morum", "desc": "Ad Morum<br>Vici.org: <a href='https://vici.org/vici/3640/'>https://vici.org/vici/3640/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.315366, 38.1847]}}, {"type": "Feature", "properties": {"id": "OVPlace172", "name": "Nobiam", "desc": "Ad Novlas<br>Vici.org: <a href='https://vici.org/vici/3641/'>https://vici.org/vici/3641/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.919521, 38.004982]}}, {"type": "Feature", "properties": {"id": "OVPlace176", "name": "Mariana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3642/'>https://vici.org/vici/3642/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.92748, 38.547359]}}, {"type": "Feature", "properties": {"id": "OVPlace177", "name": "Lamini", "desc": "Laminium<br>Vici.org: <a href='https://vici.org/vici/3643/'>https://vici.org/vici/3643/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.053453, 38.899452]}}, {"type": "Feature", "properties": {"id": "OVPlace178", "name": "Consabro", "desc": "Consabura<br>Vici.org: <a href='https://vici.org/vici/3644/'>https://vici.org/vici/3644/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.606772, 39.4603]}}, {"type": "Feature", "properties": {"id": "OVPlace179", "name": "Murum", "desc": "Ad Murum<br>Vici.org: <a href='https://vici.org/vici/3645/'>https://vici.org/vici/3645/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.360099, 39.181618]}}, {"type": "Feature", "properties": {"id": "OVPlace180", "name": "Caraca", "desc": "Caracca<br>Vici.org: <a href='https://vici.org/vici/3646/'>https://vici.org/vici/3646/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.298619, 40.351028]}}, {"type": "Feature", "properties": {"id": "OVPlace181", "name": "Sigobrica", "desc": "Segobriga<br>Vici.org: <a href='https://vici.org/vici/3647/'>https://vici.org/vici/3647/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.81302, 39.885323]}}, {"type": "Feature", "properties": {"id": "OVPlace182", "name": "Ad Putea", "desc": "Puteis<br>Vici.org: <a href='https://vici.org/vici/3648/'>https://vici.org/vici/3648/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.71902, 39.356506]}}, {"type": "Feature", "properties": {"id": "OVPlace183", "name": "Libisosia", "desc": "Lebinosa<br>Vici.org: <a href='https://vici.org/vici/3649/'>https://vici.org/vici/3649/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.353783, 38.94902]}}, {"type": "Feature", "properties": {"id": "OVPlace184", "name": "Saltici", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3650/'>https://vici.org/vici/3650/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.722773, 38.918644]}}, {"type": "Feature", "properties": {"id": "OVPlace187", "name": "Balsa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3651/'>https://vici.org/vici/3651/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.649884, 37.125797]}}, {"type": "Feature", "properties": {"id": "OVPlace188", "name": "Mirtilin", "desc": "M\u00e9rtola, Iulia Myrtilis<br>Vici.org: <a href='https://vici.org/vici/3652/'>https://vici.org/vici/3652/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.662155, 37.638905]}}, {"type": "Feature", "properties": {"id": "OVPlace189", "name": "Besurin", "desc": "Castra Maris, Aesuris<br>Vici.org: <a href='https://vici.org/vici/3653/'>https://vici.org/vici/3653/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.445494, 37.217564]}}, {"type": "Feature", "properties": {"id": "OVPlace190", "name": "Pace Iulia", "desc": "Beja, Pax Iulia<br>Vici.org: <a href='https://vici.org/vici/3654/'>https://vici.org/vici/3654/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.865225, 38.015602]}}, {"type": "Feature", "properties": {"id": "OVPlace191", "name": "Seria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3655/'>https://vici.org/vici/3655/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.771094, 38.319328]}}, {"type": "Feature", "properties": {"id": "OVPlace192", "name": "Fines", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3656/'>https://vici.org/vici/3656/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.299434, 37.946835]}}, {"type": "Feature", "properties": {"id": "OVPlace193", "name": "Serpa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3657/'>https://vici.org/vici/3657/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.593028, 37.940796]}}, {"type": "Feature", "properties": {"id": "OVPlace194", "name": "Urion", "desc": "Urium<br>Vici.org: <a href='https://vici.org/vici/3658/'>https://vici.org/vici/3658/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.591834, 37.693935]}}, {"type": "Feature", "properties": {"id": "OVPlace195", "name": "Arucci", "desc": "Aruci<br>Vici.org: <a href='https://vici.org/vici/3659/'>https://vici.org/vici/3659/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.13148, 37.963737]}}, {"type": "Feature", "properties": {"id": "OVPlace196", "name": "Perceiana", "desc": "Pergelana<br>Vici.org: <a href='https://vici.org/vici/3660/'>https://vici.org/vici/3660/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.397232, 38.570671]}}, {"type": "Feature", "properties": {"id": "OVPlace197", "name": "Contributa", "desc": "Contributa Iulia Ugultunia<br>Vici.org: <a href='https://vici.org/vici/3661/'>https://vici.org/vici/3661/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.411544, 38.343552]}}, {"type": "Feature", "properties": {"id": "OVPlace198", "name": "Lacunis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3662/'>https://vici.org/vici/3662/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.274346, 38.086788]}}, {"type": "Feature", "properties": {"id": "OVPlace199", "name": "Curica", "desc": "Curiga<br>Vici.org: <a href='https://vici.org/vici/3663/'>https://vici.org/vici/3663/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.27437, 38.086815]}}, {"type": "Feature", "properties": {"id": "OVPlace200", "name": "Hilipa", "desc": "Ilipa Magna<br>Vici.org: <a href='https://vici.org/vici/3664/'>https://vici.org/vici/3664/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.978254, 37.518215]}}, {"type": "Feature", "properties": {"id": "OVPlace201", "name": "Italica", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3665/'>https://vici.org/vici/3665/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.046795, 37.443901]}}, {"type": "Feature", "properties": {"id": "OVPlace202", "name": "Gadis", "desc": "C\u00e1diz, Gadeira<br>Vici.org: <a href='https://vici.org/vici/3666/'>https://vici.org/vici/3666/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.292458, 36.529728]}}, {"type": "Feature", "properties": {"id": "OVPlace204", "name": "Asta", "desc": "Hasta<br>Vici.org: <a href='https://vici.org/vici/3667/'>https://vici.org/vici/3667/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.172572, 36.788002]}}, {"type": "Feature", "properties": {"id": "OVPlace205", "name": "Onoba", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3668/'>https://vici.org/vici/3668/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.949713, 37.257072]}}, {"type": "Feature", "properties": {"id": "OVPlace227", "name": "Ostippo", "desc": "Osipon<br>Vici.org: <a href='https://vici.org/vici/3669/'>https://vici.org/vici/3669/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.878531, 37.291477]}}, {"type": "Feature", "properties": {"id": "OVPlace207", "name": "Tusci", "desc": "Itucci<br>Vici.org: <a href='https://vici.org/vici/3670/'>https://vici.org/vici/3670/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.363638, 37.448109]}}, {"type": "Feature", "properties": {"id": "OVPlace209", "name": "Hispali", "desc": "Sevilla, Hispalis<br>Vici.org: <a href='https://vici.org/vici/3671/'>https://vici.org/vici/3671/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.996293, 37.382668]}}, {"type": "Feature", "properties": {"id": "OVPlace210", "name": "Regiana", "desc": "Regina<br>Vici.org: <a href='https://vici.org/vici/3672/'>https://vici.org/vici/3672/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.953512, 38.203079]}}, {"type": "Feature", "properties": {"id": "OVPlace212", "name": "Astigi", "desc": "Astigin<br>Vici.org: <a href='https://vici.org/vici/3673/'>https://vici.org/vici/3673/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.079949, 37.540932]}}, {"type": "Feature", "properties": {"id": "OVPlace213", "name": "Obucula", "desc": "Obulcula<br>Vici.org: <a href='https://vici.org/vici/3674/'>https://vici.org/vici/3674/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.348392, 37.462227]}}, {"type": "Feature", "properties": {"id": "OVPlace214", "name": "Carmone", "desc": "Carmo<br>Vici.org: <a href='https://vici.org/vici/3675/'>https://vici.org/vici/3675/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.642257, 37.471001]}}, {"type": "Feature", "properties": {"id": "OVPlace215", "name": "Mercablum", "desc": "Merifabion<br>Vici.org: <a href='https://vici.org/vici/3676/'>https://vici.org/vici/3676/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.088556, 36.276482]}}, {"type": "Feature", "properties": {"id": "OVPlace216", "name": "Besippone", "desc": "Baesippo<br>Vici.org: <a href='https://vici.org/vici/3677/'>https://vici.org/vici/3677/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.91903, 36.192554]}}, {"type": "Feature", "properties": {"id": "OVPlace217", "name": "Assidone", "desc": "Asido<br>Vici.org: <a href='https://vici.org/vici/3678/'>https://vici.org/vici/3678/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.927867, 36.467793]}}, {"type": "Feature", "properties": {"id": "OVPlace218", "name": "Saguntia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3679/'>https://vici.org/vici/3679/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.834164, 36.552105]}}, {"type": "Feature", "properties": {"id": "OVPlace219", "name": "Burdoga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3680/'>https://vici.org/vici/3680/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.812472, 36.750824]}}, {"type": "Feature", "properties": {"id": "OVPlace220", "name": "Saudone", "desc": "Sandone<br>Vici.org: <a href='https://vici.org/vici/3681/'>https://vici.org/vici/3681/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.813403, 36.833191]}}, {"type": "Feature", "properties": {"id": "OVPlace221", "name": "Cappa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3682/'>https://vici.org/vici/3682/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.781271, 36.90749]}}, {"type": "Feature", "properties": {"id": "OVPlace223", "name": "Orippo", "desc": "Oripon<br>Vici.org: <a href='https://vici.org/vici/3683/'>https://vici.org/vici/3683/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.922275, 37.283161]}}, {"type": "Feature", "properties": {"id": "OVPlace222", "name": "Ugia", "desc": "Urgia<br>Vici.org: <a href='https://vici.org/vici/3684/'>https://vici.org/vici/3684/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.82933, 36.990067]}}, {"type": "Feature", "properties": {"id": "OVPlace224", "name": "Basilippo", "desc": "Balsilippa<br>Vici.org: <a href='https://vici.org/vici/3685/'>https://vici.org/vici/3685/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.54279, 37.264099]}}, {"type": "Feature", "properties": {"id": "OVPlace226", "name": "Ilipa", "desc": "Ilipula Minor<br>Vici.org: <a href='https://vici.org/vici/3686/'>https://vici.org/vici/3686/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.010418, 37.147602]}}, {"type": "Feature", "properties": {"id": "OVPlace225", "name": "Cirsone", "desc": "Urso<br>Vici.org: <a href='https://vici.org/vici/3687/'>https://vici.org/vici/3687/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.10278, 37.236984]}}, {"type": "Feature", "properties": {"id": "OVPlace228", "name": "Urgapa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3688/'>https://vici.org/vici/3688/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.658062, 37.20784]}}, {"type": "Feature", "properties": {"id": "OVPlace229", "name": "Anticaria", "desc": "Antigaria<br>Vici.org: <a href='https://vici.org/vici/3689/'>https://vici.org/vici/3689/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.562887, 37.019375]}}, {"type": "Feature", "properties": {"id": "OVPlace230", "name": "Rataspen", "desc": "Aratispi<br>Vici.org: <a href='https://vici.org/vici/3690/'>https://vici.org/vici/3690/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.465945, 36.91254]}}, {"type": "Feature", "properties": {"id": "OVPlace232", "name": "Ipagro", "desc": "Ipagrum<br>Vici.org: <a href='https://vici.org/vici/3691/'>https://vici.org/vici/3691/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.656039, 37.515022]}}, {"type": "Feature", "properties": {"id": "OVPlace231", "name": "Ulia", "desc": "Ulia Fidentia<br>Vici.org: <a href='https://vici.org/vici/3692/'>https://vici.org/vici/3692/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.698889, 37.648659]}}, {"type": "Feature", "properties": {"id": "OVPlace233", "name": "Ad Gemellas", "desc": "Ad Gemella<br>Vici.org: <a href='https://vici.org/vici/3693/'>https://vici.org/vici/3693/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.540411, 37.267334]}}, {"type": "Feature", "properties": {"id": "OVPlace234", "name": "Contrebia", "desc": "Botorrita, Contrebia Belaisca<br>Vici.org: <a href='https://vici.org/vici/3694/'>https://vici.org/vici/3694/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.030536, 41.509148]}}, {"type": "Feature", "properties": {"id": "OVPlace235", "name": "Auci", "desc": "La Puebla de Hijar, Arsi<br>Vici.org: <a href='https://vici.org/vici/3695/'>https://vici.org/vici/3695/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.443911, 41.220894]}}, {"type": "Feature", "properties": {"id": "OVPlace236", "name": "Leonica", "desc": "Mazal\u00e9on<br>Vici.org: <a href='https://vici.org/vici/3696/'>https://vici.org/vici/3696/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.103083, 41.051331]}}, {"type": "Feature", "properties": {"id": "OVPlace240", "name": "Saguntum", "desc": "Sagunto, Arse<br>Vici.org: <a href='https://vici.org/vici/3697/'>https://vici.org/vici/3697/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.278608, 39.680031]}}, {"type": "Feature", "properties": {"id": "OVPlace243", "name": "Belone Claudia", "desc": "Bolonia, Belo<br>Vici.org: <a href='https://vici.org/vici/3698/'>https://vici.org/vici/3698/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.774433, 36.09026]}}, {"type": "Feature", "properties": {"id": "OVPlace244", "name": "Melaria", "desc": "Mellaria<br>Vici.org: <a href='https://vici.org/vici/3699/'>https://vici.org/vici/3699/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.683253, 36.06646]}}, {"type": "Feature", "properties": {"id": "OVPlace247", "name": "Calpe Carteia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3700/'>https://vici.org/vici/3700/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.410359, 36.183163]}}, {"type": "Feature", "properties": {"id": "OVPlace246", "name": "Transducta", "desc": "Iulia Traducta<br>Vici.org: <a href='https://vici.org/vici/3701/'>https://vici.org/vici/3701/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.447744, 36.129768]}}, {"type": "Feature", "properties": {"id": "OVPlace245", "name": "Cetraria", "desc": "Cetaria<br>Vici.org: <a href='https://vici.org/vici/3702/'>https://vici.org/vici/3702/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.433107, 36.072491]}}, {"type": "Feature", "properties": {"id": "OVPlace248", "name": "Barbariana", "desc": "Bamaliana<br>Vici.org: <a href='https://vici.org/vici/3703/'>https://vici.org/vici/3703/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.272343, 36.296986]}}, {"type": "Feature", "properties": {"id": "OVPlace249", "name": "Saltum", "desc": "Salduba<br>Vici.org: <a href='https://vici.org/vici/3704/'>https://vici.org/vici/3704/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.061, 36.463413]}}, {"type": "Feature", "properties": {"id": "OVPlace251", "name": "Suel", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3705/'>https://vici.org/vici/3705/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.628919, 36.525436]}}, {"type": "Feature", "properties": {"id": "OVPlace252", "name": "Malaca", "desc": "M\u00e1laga<br>Vici.org: <a href='https://vici.org/vici/3706/'>https://vici.org/vici/3706/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.420538, 36.722031]}}, {"type": "Feature", "properties": {"id": "OVPlace253", "name": "Lenubar", "desc": "Maenuba<br>Vici.org: <a href='https://vici.org/vici/3707/'>https://vici.org/vici/3707/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.100678, 36.778641]}}, {"type": "Feature", "properties": {"id": "OVPlace255", "name": "Abdera", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3708/'>https://vici.org/vici/3708/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.022514, 36.74807]}}, {"type": "Feature", "properties": {"id": "OVPlace256", "name": "Barria", "desc": "Baria<br>Vici.org: <a href='https://vici.org/vici/3709/'>https://vici.org/vici/3709/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.774899, 37.245407]}}, {"type": "Feature", "properties": {"id": "OVPlace257", "name": "Carthago Partaria", "desc": "Cartagena, Carthago Spartaria<br>Vici.org: <a href='https://vici.org/vici/3710/'>https://vici.org/vici/3710/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.991387, 37.605679]}}, {"type": "Feature", "properties": {"id": "OVPlace258", "name": "Hilice", "desc": "Ilici<br>Vici.org: <a href='https://vici.org/vici/3711/'>https://vici.org/vici/3711/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.697769, 38.267185]}}, {"type": "Feature", "properties": {"id": "OVPlace259", "name": "Leonos", "desc": "Ad Leones<br>Vici.org: <a href='https://vici.org/vici/3712/'>https://vici.org/vici/3712/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.533052, 38.277576]}}, {"type": "Feature", "properties": {"id": "OVPlace260", "name": "Lucentes", "desc": "Alicante, Lucentum<br>Vici.org: <a href='https://vici.org/vici/3713/'>https://vici.org/vici/3713/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.484794, 38.34602]}}, {"type": "Feature", "properties": {"id": "OVPlace261", "name": "Dionio", "desc": "Dianium<br>Vici.org: <a href='https://vici.org/vici/3714/'>https://vici.org/vici/3714/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.107511, 38.842796]}}, {"type": "Feature", "properties": {"id": "OVPlace263", "name": "Eloe", "desc": "Elda, Ad Ello<br>Vici.org: <a href='https://vici.org/vici/3715/'>https://vici.org/vici/3715/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.790495, 38.478016]}}, {"type": "Feature", "properties": {"id": "OVPlace264", "name": "Turres", "desc": "Ad Turres<br>Vici.org: <a href='https://vici.org/vici/3716/'>https://vici.org/vici/3716/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.92493, 38.781094]}}, {"type": "Feature", "properties": {"id": "OVPlace265", "name": "Setavum", "desc": "X\u00e0tiva, Saetabis<br>Vici.org: <a href='https://vici.org/vici/3717/'>https://vici.org/vici/3717/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.515639, 38.988846]}}, {"type": "Feature", "properties": {"id": "OVPlace267", "name": "Portum Sucrone", "desc": "Culera, Portus Sucronis<br>Vici.org: <a href='https://vici.org/vici/3718/'>https://vici.org/vici/3718/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.255923, 39.165104]}}, {"type": "Feature", "properties": {"id": "OVPlace268", "name": "Valentia", "desc": "Valencia<br>Vici.org: <a href='https://vici.org/vici/3719/'>https://vici.org/vici/3719/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.376813, 39.470371]}}, {"type": "Feature", "properties": {"id": "OVPlace269", "name": "Hilldum", "desc": "Villanova d'Alcolea, Ildum<br>Vici.org: <a href='https://vici.org/vici/3720/'>https://vici.org/vici/3720/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.073556, 40.231686]}}, {"type": "Feature", "properties": {"id": "OVPlace270", "name": "Allon", "desc": "Alonis<br>Vici.org: <a href='https://vici.org/vici/3721/'>https://vici.org/vici/3721/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.555223, 38.192287]}}, {"type": "Feature", "properties": {"id": "OVPlace272", "name": "Dertusa", "desc": "Tortosa, Dertosa<br>Vici.org: <a href='https://vici.org/vici/3722/'>https://vici.org/vici/3722/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.520955, 40.811005]}}, {"type": "Feature", "properties": {"id": "OVPlace273", "name": "Orea Capita", "desc": "L'Ampolla, Tria Capita<br>Vici.org: <a href='https://vici.org/vici/3723/'>https://vici.org/vici/3723/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.700237, 40.804813]}}, {"type": "Feature", "properties": {"id": "OVPlace275", "name": "Saltum", "desc": "Sub Saltu<br>Vici.org: <a href='https://vici.org/vici/3724/'>https://vici.org/vici/3724/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.813909, 40.917423]}}, {"type": "Feature", "properties": {"id": "OVPlace48", "name": "Ad Novas", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3725/'>https://vici.org/vici/3725/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.975294, 41.42918]}}, {"type": "Feature", "properties": {"id": "OVPlace8", "name": "Oppido Novo", "desc": "Lourdes, Novum Oppidum<br>Vici.org: <a href='https://vici.org/vici/3726/'>https://vici.org/vici/3726/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.045659, 43.097858]}}, {"type": "Feature", "properties": {"id": "OVPlace9", "name": "Benearno", "desc": "Lescar, Benearnum<br>Vici.org: <a href='https://vici.org/vici/3727/'>https://vici.org/vici/3727/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.043466, 43.33268]}}, {"type": "Feature", "properties": {"id": "OVPlace10", "name": "Illurone", "desc": "Oloron-Ste-Marie, Illuro<br>Vici.org: <a href='https://vici.org/vici/3728/'>https://vici.org/vici/3728/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.604491, 43.193233]}}, {"type": "Feature", "properties": {"id": "OVPlace366", "name": "Gallicum", "desc": "Zuera<br>Vici.org: <a href='https://vici.org/vici/3729/'>https://vici.org/vici/3729/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.788248, 41.869038]}}, {"type": "Feature", "properties": {"id": "OVPlace276", "name": "Oleastrum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3730/'>https://vici.org/vici/3730/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.912577, 41.006039]}}, {"type": "Feature", "properties": {"id": "OVPlace242", "name": "Intibili", "desc": "Indibilis<br>Vici.org: <a href='https://vici.org/vici/3731/'>https://vici.org/vici/3731/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.423109, 40.418701]}}, {"type": "Feature", "properties": {"id": "OVPlace277", "name": "Sebelaci", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3732/'>https://vici.org/vici/3732/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.138097, 39.959583]}}, {"type": "Feature", "properties": {"id": "OVPlace280", "name": "Thiar", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3733/'>https://vici.org/vici/3733/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.765831, 37.878101]}}, {"type": "Feature", "properties": {"id": "OVPlace281", "name": "Eliocroca", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3734/'>https://vici.org/vici/3734/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.698809, 37.671352]}}, {"type": "Feature", "properties": {"id": "OVPlace282", "name": "Ad Morum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3735/'>https://vici.org/vici/3735/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.051097, 37.691956]}}, {"type": "Feature", "properties": {"id": "OVPlace283", "name": "Basti", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3736/'>https://vici.org/vici/3736/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.774569, 37.490494]}}, {"type": "Feature", "properties": {"id": "OVPlace284", "name": "Acci", "desc": "Col. Iulia Gemella<br>Vici.org: <a href='https://vici.org/vici/3737/'>https://vici.org/vici/3737/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.134636, 37.300308]}}, {"type": "Feature", "properties": {"id": "OVPlace285", "name": "Agatucci", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3738/'>https://vici.org/vici/3738/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.1811, 37.591728]}}, {"type": "Feature", "properties": {"id": "OVPlace287", "name": "Mentesa Bastiam", "desc": "Mentesa Bastia<br>Vici.org: <a href='https://vici.org/vici/3739/'>https://vici.org/vici/3739/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.692715, 37.741634]}}, {"type": "Feature", "properties": {"id": "OVPlace288", "name": "Calpurniana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3740/'>https://vici.org/vici/3740/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.318842, 37.867374]}}, {"type": "Feature", "properties": {"id": "OVPlace289", "name": "Vircaone", "desc": "Vircao<br>Vici.org: <a href='https://vici.org/vici/3741/'>https://vici.org/vici/3741/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.054925, 37.936451]}}, {"type": "Feature", "properties": {"id": "OVPlace290", "name": "Iliturgis", "desc": "Iliturgi<br>Vici.org: <a href='https://vici.org/vici/3742/'>https://vici.org/vici/3742/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.80883, 37.968342]}}, {"type": "Feature", "properties": {"id": "OVPlace291", "name": "Epora", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3743/'>https://vici.org/vici/3743/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.381896, 38.026031]}}, {"type": "Feature", "properties": {"id": "OVPlace292", "name": "Uciense", "desc": "Ucia<br>Vici.org: <a href='https://vici.org/vici/3744/'>https://vici.org/vici/3744/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.186553, 38.074265]}}, {"type": "Feature", "properties": {"id": "OVPlace293", "name": "Tugia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3745/'>https://vici.org/vici/3745/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.152365, 37.877689]}}, {"type": "Feature", "properties": {"id": "OVPlace294", "name": "Fraxinum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3746/'>https://vici.org/vici/3746/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.047757, 37.727146]}}, {"type": "Feature", "properties": {"id": "OVPlace295", "name": "Bactara", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3747/'>https://vici.org/vici/3747/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.090227, 37.556622]}}, {"type": "Feature", "properties": {"id": "OVPlace296", "name": "Alba", "desc": "Abla<br>Vici.org: <a href='https://vici.org/vici/3748/'>https://vici.org/vici/3748/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.78011, 37.141163]}}, {"type": "Feature", "properties": {"id": "OVPlace297", "name": "Urci", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3749/'>https://vici.org/vici/3749/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.450598, 36.913021]}}, {"type": "Feature", "properties": {"id": "OVPlace298", "name": "Turaniana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3750/'>https://vici.org/vici/3750/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.571884, 36.814465]}}, {"type": "Feature", "properties": {"id": "OVPlace299", "name": "Murgi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3751/'>https://vici.org/vici/3751/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.812733, 36.775074]}}, {"type": "Feature", "properties": {"id": "OVPlace300", "name": "Saxetanum", "desc": "Sexi<br>Vici.org: <a href='https://vici.org/vici/3752/'>https://vici.org/vici/3752/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.690755, 36.734589]}}, {"type": "Feature", "properties": {"id": "OVPlace301", "name": "Caviclum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3753/'>https://vici.org/vici/3753/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.952759, 36.758484]}}, {"type": "Feature", "properties": {"id": "OVPlace302", "name": "Cilniana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3754/'>https://vici.org/vici/3754/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.993434, 36.468338]}}, {"type": "Feature", "properties": {"id": "OVPlace304", "name": "Ad Herculem", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3755/'>https://vici.org/vici/3755/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.163431, 36.35162]}}, {"type": "Feature", "properties": {"id": "OVPlace306", "name": "Carula", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3756/'>https://vici.org/vici/3756/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.312382, 37.224464]}}, {"type": "Feature", "properties": {"id": "OVPlace307", "name": "Barba", "desc": "Singilia Barba<br>Vici.org: <a href='https://vici.org/vici/3757/'>https://vici.org/vici/3757/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.630364, 37.03249]}}, {"type": "Feature", "properties": {"id": "OVPlace211", "name": "Celtum", "desc": "Celti<br>Vici.org: <a href='https://vici.org/vici/3758/'>https://vici.org/vici/3758/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.346426, 37.707291]}}, {"type": "Feature", "properties": {"id": "OVPlace309", "name": "Ad Septem Aras", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3759/'>https://vici.org/vici/3759/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.161004, 39.030987]}}, {"type": "Feature", "properties": {"id": "OVPlace310", "name": "Budua", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3760/'>https://vici.org/vici/3760/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.970312, 38.878586]}}, {"type": "Feature", "properties": {"id": "OVPlace311", "name": "Scallabis", "desc": "Praesidium Iulium<br>Vici.org: <a href='https://vici.org/vici/3761/'>https://vici.org/vici/3761/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.687059, 39.236176]}}, {"type": "Feature", "properties": {"id": "OVPlace312", "name": "Tabucci", "desc": "Tubucci<br>Vici.org: <a href='https://vici.org/vici/3762/'>https://vici.org/vici/3762/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.281265, 39.445538]}}, {"type": "Feature", "properties": {"id": "OVPlace315", "name": "Sellium", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3763/'>https://vici.org/vici/3763/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.412825, 39.603672]}}, {"type": "Feature", "properties": {"id": "OVPlace316", "name": "Conembriga", "desc": "Conimbriga<br>Vici.org: <a href='https://vici.org/vici/3764/'>https://vici.org/vici/3764/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.493333, 40.099445]}}, {"type": "Feature", "properties": {"id": "OVPlace317", "name": "Aeminium", "desc": "Aeminio<br>Vici.org: <a href='https://vici.org/vici/3765/'>https://vici.org/vici/3765/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.429124, 40.21151]}}, {"type": "Feature", "properties": {"id": "OVPlace318", "name": "Salacia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3766/'>https://vici.org/vici/3766/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.091423, 41.681549]}}, {"type": "Feature", "properties": {"id": "OVPlace320", "name": "Caladuno", "desc": "Caladunum<br>Vici.org: <a href='https://vici.org/vici/3767/'>https://vici.org/vici/3767/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.634577, 41.856331]}}, {"type": "Feature", "properties": {"id": "OVPlace324", "name": "Compleutica", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3768/'>https://vici.org/vici/3768/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.697416, 41.8036]}}, {"type": "Feature", "properties": {"id": "OVPlace325", "name": "Veniatia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3769/'>https://vici.org/vici/3769/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.443154, 41.868626]}}, {"type": "Feature", "properties": {"id": "OVPlace326", "name": "Petavonium", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3770/'>https://vici.org/vici/3770/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.983374, 42.089958]}}, {"type": "Feature", "properties": {"id": "OVPlace327", "name": "Argentiolum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3771/'>https://vici.org/vici/3771/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.972986, 42.312847]}}, {"type": "Feature", "properties": {"id": "OVPlace59", "name": "Aquae Originae", "desc": "Ba\u00f1os de Riocaldo, Aquis Oreginis<br>Vici.org: <a href='https://vici.org/vici/3772/'>https://vici.org/vici/3772/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-8.10843, 41.884361]}}, {"type": "Feature", "properties": {"id": "OVPlace329", "name": "Caranicum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3773/'>https://vici.org/vici/3773/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.900202, 43.181614]}}, {"type": "Feature", "properties": {"id": "OVPlace330", "name": "ostio fluminis Anae", "desc": "Ostium fl. Anae<br>Vici.org: <a href='https://vici.org/vici/3774/'>https://vici.org/vici/3774/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.409914, 37.214638]}}, {"type": "Feature", "properties": {"id": "OVPlace331", "name": "Ad Rubras", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3775/'>https://vici.org/vici/3775/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-7.021606, 37.271137]}}, {"type": "Feature", "properties": {"id": "OVPlace334", "name": "Albocela", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3776/'>https://vici.org/vici/3776/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.394988, 41.525944]}}, {"type": "Feature", "properties": {"id": "OVPlace335", "name": "Septimanca", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3777/'>https://vici.org/vici/3777/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.826722, 41.590221]}}, {"type": "Feature", "properties": {"id": "OVPlace336", "name": "Segovia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3778/'>https://vici.org/vici/3778/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.119338, 40.949192]}}, {"type": "Feature", "properties": {"id": "OVPlace337", "name": "Miaccum", "desc": "Madrid<br>Vici.org: <a href='https://vici.org/vici/3779/'>https://vici.org/vici/3779/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.772038, 40.401913]}}, {"type": "Feature", "properties": {"id": "OVPlace338", "name": "Aquae Bilbitanorum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3780/'>https://vici.org/vici/3780/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.894044, 41.296295]}}, {"type": "Feature", "properties": {"id": "OVPlace339", "name": "Segontia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3781/'>https://vici.org/vici/3781/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.191459, 41.633492]}}, {"type": "Feature", "properties": {"id": "OVPlace341", "name": "Tela", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3782/'>https://vici.org/vici/3782/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.73505, 41.98407]}}, {"type": "Feature", "properties": {"id": "OVPlace342", "name": "Pintiam", "desc": "Pintia<br>Vici.org: <a href='https://vici.org/vici/3783/'>https://vici.org/vici/3783/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.499698, 41.777534]}}, {"type": "Feature", "properties": {"id": "OVPlace343", "name": "Rauda", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3784/'>https://vici.org/vici/3784/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.928015, 41.697102]}}, {"type": "Feature", "properties": {"id": "OVPlace344", "name": "Voluce", "desc": "Voluca<br>Vici.org: <a href='https://vici.org/vici/3785/'>https://vici.org/vici/3785/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.817623, 41.699615]}}, {"type": "Feature", "properties": {"id": "OVPlace345", "name": "Caravi", "desc": "Caravis<br>Vici.org: <a href='https://vici.org/vici/3786/'>https://vici.org/vici/3786/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.461182, 41.833115]}}, {"type": "Feature", "properties": {"id": "OVPlace346", "name": "Allobone", "desc": "Alag\u00f3n, Allobo<br>Vici.org: <a href='https://vici.org/vici/3787/'>https://vici.org/vici/3787/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.121939, 41.770382]}}, {"type": "Feature", "properties": {"id": "OVPlace347", "name": "Contosolia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3788/'>https://vici.org/vici/3788/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.734114, 38.895832]}}, {"type": "Feature", "properties": {"id": "OVPlace348", "name": "Mirobriga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3789/'>https://vici.org/vici/3789/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.084293, 38.82045]}}, {"type": "Feature", "properties": {"id": "OVPlace349", "name": "Sisalone", "desc": "Sisalo<br>Vici.org: <a href='https://vici.org/vici/3790/'>https://vici.org/vici/3790/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.517906, 38.645382]}}, {"type": "Feature", "properties": {"id": "OVPlace350", "name": "Carcuvium", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3791/'>https://vici.org/vici/3791/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.063616, 38.845821]}}, {"type": "Feature", "properties": {"id": "OVPlace351", "name": "Ad Turres", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3792/'>https://vici.org/vici/3792/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.362121, 38.640167]}}, {"type": "Feature", "properties": {"id": "OVPlace352", "name": "Alces", "desc": "Alce<br>Vici.org: <a href='https://vici.org/vici/3793/'>https://vici.org/vici/3793/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.154963, 39.611885]}}, {"type": "Feature", "properties": {"id": "OVPlace353", "name": "Vico Cuminario", "desc": "Vicus Cuminarius<br>Vici.org: <a href='https://vici.org/vici/3794/'>https://vici.org/vici/3794/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.499679, 39.960388]}}, {"type": "Feature", "properties": {"id": "OVPlace354", "name": "Caput fluminis Anae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3795/'>https://vici.org/vici/3795/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.745402, 38.963348]}}, {"type": "Feature", "properties": {"id": "OVPlace355", "name": "Parietinis", "desc": "Parietinae<br>Vici.org: <a href='https://vici.org/vici/3796/'>https://vici.org/vici/3796/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.008396, 38.962482]}}, {"type": "Feature", "properties": {"id": "OVPlace359", "name": "Agiria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3797/'>https://vici.org/vici/3797/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.30095, 40.920296]}}, {"type": "Feature", "properties": {"id": "OVPlace360", "name": "Carae", "desc": "Caraca<br>Vici.org: <a href='https://vici.org/vici/3798/'>https://vici.org/vici/3798/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.314129, 41.08704]}}, {"type": "Feature", "properties": {"id": "OVPlace361", "name": "Sermonae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3799/'>https://vici.org/vici/3799/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.224122, 41.336956]}}, {"type": "Feature", "properties": {"id": "OVPlace362", "name": "Dessobriga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3800/'>https://vici.org/vici/3800/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.247897, 42.412125]}}, {"type": "Feature", "properties": {"id": "OVPlace363", "name": "Tritium", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3801/'>https://vici.org/vici/3801/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.484908, 42.459335]}}, {"type": "Feature", "properties": {"id": "OVPlace364", "name": "Atiliana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3802/'>https://vici.org/vici/3802/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.795062, 42.488453]}}, {"type": "Feature", "properties": {"id": "OVPlace365", "name": "Barbariana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3803/'>https://vici.org/vici/3803/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.290618, 42.44669]}}, {"type": "Feature", "properties": {"id": "OVPlace367", "name": "Bortinae", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3804/'>https://vici.org/vici/3804/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.579741, 42.037144]}}, {"type": "Feature", "properties": {"id": "OVPlace368", "name": "Oscam", "desc": "Huesca, Osca<br>Vici.org: <a href='https://vici.org/vici/3805/'>https://vici.org/vici/3805/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.408948, 42.140011]}}, {"type": "Feature", "properties": {"id": "OVPlace369", "name": "Caum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3806/'>https://vici.org/vici/3806/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.001435, 41.961262]}}, {"type": "Feature", "properties": {"id": "OVPlace370", "name": "Mendiculeia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3807/'>https://vici.org/vici/3807/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.328559, 41.812771]}}, {"type": "Feature", "properties": {"id": "OVPlace371", "name": "Ilerda", "desc": "Lleida, L\u00e9rida<br>Vici.org: <a href='https://vici.org/vici/3808/'>https://vici.org/vici/3808/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.62579, 41.614117]}}, {"type": "Feature", "properties": {"id": "OVPlace372", "name": "Ad Septimum Decimum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3809/'>https://vici.org/vici/3809/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.176063, 41.336205]}}, {"type": "Feature", "properties": {"id": "OVPlace373", "name": "Foro Ligneo", "desc": "Forum Ligneum<br>Vici.org: <a href='https://vici.org/vici/3810/'>https://vici.org/vici/3810/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.635378, 42.934044]}}, {"type": "Feature", "properties": {"id": "OVPlace374", "name": "Aspalluga", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3811/'>https://vici.org/vici/3811/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.599317, 42.974541]}}, {"type": "Feature", "properties": {"id": "OVPlace375", "name": "Vindeleia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3812/'>https://vici.org/vici/3812/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.20674, 42.640427]}}, {"type": "Feature", "properties": {"id": "OVPlace376", "name": "Tullonio", "desc": "Tullonium<br>Vici.org: <a href='https://vici.org/vici/3813/'>https://vici.org/vici/3813/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.512587, 42.839977]}}, {"type": "Feature", "properties": {"id": "OVPlace377", "name": "Aracaeli", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3814/'>https://vici.org/vici/3814/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.961419, 42.919811]}}, {"type": "Feature", "properties": {"id": "OVPlace378", "name": "Mosconnum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3815/'>https://vici.org/vici/3815/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.253946, 44.03133]}}, {"type": "Feature", "properties": {"id": "OVPlace379", "name": "Segosa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3816/'>https://vici.org/vici/3816/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.151586, 44.224361]}}, {"type": "Feature", "properties": {"id": "OVPlace380", "name": "Losa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3817/'>https://vici.org/vici/3817/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.075107, 44.499744]}}, {"type": "Feature", "properties": {"id": "OVPlace381", "name": "Boios", "desc": "Boii<br>Vici.org: <a href='https://vici.org/vici/3818/'>https://vici.org/vici/3818/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.971141, 44.627926]}}, {"type": "Feature", "properties": {"id": "OVPlace382", "name": "Stabulo Novo", "desc": "Stabulum Novum<br>Vici.org: <a href='https://vici.org/vici/3819/'>https://vici.org/vici/3819/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.603518, 41.265369]}}, {"type": "Feature", "properties": {"id": "OVPlace383", "name": "Tolous", "desc": "Telobis<br>Vici.org: <a href='https://vici.org/vici/3820/'>https://vici.org/vici/3820/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.194653, 41.910355]}}, {"type": "Feature", "properties": {"id": "OVPlace384", "name": "Pertusa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3821/'>https://vici.org/vici/3821/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.127352, 42.00206]}}, {"type": "Feature", "properties": {"id": "OVPlace385", "name": "Cascanto", "desc": "Cascantum<br>Vici.org: <a href='https://vici.org/vici/3822/'>https://vici.org/vici/3822/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.679195, 41.998966]}}, {"type": "Feature", "properties": {"id": "OVPlace43", "name": "Julia", "desc": "Calagurris Iulia<br>Vici.org: <a href='https://vici.org/vici/3823/'>https://vici.org/vici/3823/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.965033, 42.303703]}}, {"type": "Feature", "properties": {"id": "OVPlace386", "name": "Vereia", "desc": "Vareia<br>Vici.org: <a href='https://vici.org/vici/3824/'>https://vici.org/vici/3824/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.406884, 42.461895]}}, {"type": "Feature", "properties": {"id": "OVPlace388", "name": "Lybia", "desc": "Libia<br>Vici.org: <a href='https://vici.org/vici/3825/'>https://vici.org/vici/3825/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.046514, 42.503666]}}, {"type": "Feature", "properties": {"id": "OVPlace389", "name": "Segesamunclo", "desc": "Segesamunculum<br>Vici.org: <a href='https://vici.org/vici/3826/'>https://vici.org/vici/3826/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.135624, 42.491241]}}, {"type": "Feature", "properties": {"id": "OVPlace390", "name": "Bremenio", "desc": "Bremenium<br>Vici.org: <a href='https://vici.org/vici/3827/'>https://vici.org/vici/3827/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.264845, 55.281422]}}, {"type": "Feature", "properties": {"id": "OVPlace391", "name": "Corstopitum", "desc": "Coriosopitum<br>Vici.org: <a href='https://vici.org/vici/3828/'>https://vici.org/vici/3828/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.028789, 54.978401]}}, {"type": "Feature", "properties": {"id": "OVPlace392", "name": "Vindomora", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3829/'>https://vici.org/vici/3829/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.840334, 54.894012]}}, {"type": "Feature", "properties": {"id": "OVPlace393", "name": "Cataractoni", "desc": "Cataractonium<br>Vici.org: <a href='https://vici.org/vici/1481/'>https://vici.org/vici/1481/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.654301, 54.387405]}}, {"type": "Feature", "properties": {"id": "OVPlace395", "name": "Vinovia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3831/'>https://vici.org/vici/3831/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.637826, 54.679451]}}, {"type": "Feature", "properties": {"id": "OVPlace394", "name": "Isurium", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3832/'>https://vici.org/vici/3832/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.3816, 54.090801]}}, {"type": "Feature", "properties": {"id": "OVPlace396", "name": "Eburacum", "desc": "York", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.082304, 53.957672]}}, {"type": "Feature", "properties": {"id": "OVPlace397", "name": "Derventione", "desc": "Derventio<br>Vici.org: <a href='https://vici.org/vici/3833/'>https://vici.org/vici/3833/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.796326, 54.134781]}}, {"type": "Feature", "properties": {"id": "OVPlace398", "name": "Delgovicia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3834/'>https://vici.org/vici/3834/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.735462, 53.95615]}}, {"type": "Feature", "properties": {"id": "OVPlace400", "name": "Blatobulgio", "desc": "Blatobulgium<br>Vici.org: <a href='https://vici.org/vici/3835/'>https://vici.org/vici/3835/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.233097, 55.073406]}}, {"type": "Feature", "properties": {"id": "OVPlace401", "name": "Castra Exploratorum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3836/'>https://vici.org/vici/3836/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.945877, 55.036648]}}, {"type": "Feature", "properties": {"id": "OVPlace402", "name": "Lugovallo", "desc": "Carlisle, Luguvalium<br>Vici.org: <a href='https://vici.org/vici/3837/'>https://vici.org/vici/3837/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.933584, 54.895088]}}, {"type": "Feature", "properties": {"id": "OVPlace403", "name": "Voreda", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3838/'>https://vici.org/vici/3838/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.75494, 54.666687]}}, {"type": "Feature", "properties": {"id": "OVPlace405", "name": "Verteris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3839/'>https://vici.org/vici/3839/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.318673, 54.525616]}}, {"type": "Feature", "properties": {"id": "OVPlace406", "name": "Lavatris", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3840/'>https://vici.org/vici/3840/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.007831, 54.51701]}}, {"type": "Feature", "properties": {"id": "OVPlace407", "name": "Calcaria", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3841/'>https://vici.org/vici/3841/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.263805, 53.883083]}}, {"type": "Feature", "properties": {"id": "OVPlace409", "name": "Mamucio", "desc": "Manchester, Mamcunio<br>Vici.org: <a href='https://vici.org/vici/3842/'>https://vici.org/vici/3842/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.23438, 53.480682]}}, {"type": "Feature", "properties": {"id": "OVPlace411", "name": "Deva", "desc": "Chester<br>Vici.org: <a href='https://vici.org/vici/3843/'>https://vici.org/vici/3843/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.894999, 53.191437]}}, {"type": "Feature", "properties": {"id": "OVPlace412", "name": "Bovio", "desc": "Bovium<br>Vici.org: <a href='https://vici.org/vici/3844/'>https://vici.org/vici/3844/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.806329, 53.056309]}}, {"type": "Feature", "properties": {"id": "OVPlace408", "name": "Camboduno", "desc": "Camulodum<br>Vici.org: <a href='https://vici.org/vici/3845/'>https://vici.org/vici/3845/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.883258, 53.654613]}}, {"type": "Feature", "properties": {"id": "OVPlace404", "name": "Brovonacis", "desc": "Bravoniacum<br>Vici.org: <a href='https://vici.org/vici/3846/'>https://vici.org/vici/3846/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.566792, 54.621944]}}, {"type": "Feature", "properties": {"id": "OVPlace414", "name": "Rutunio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3847/'>https://vici.org/vici/3847/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.645845, 52.846008]}}, {"type": "Feature", "properties": {"id": "OVPlace416", "name": "Uxacona", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3848/'>https://vici.org/vici/3848/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.402825, 52.695038]}}, {"type": "Feature", "properties": {"id": "OVPlace417", "name": "Pennocrucio", "desc": "Pennocrucium<br>Vici.org: <a href='https://vici.org/vici/3849/'>https://vici.org/vici/3849/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.115899, 52.723888]}}, {"type": "Feature", "properties": {"id": "OVPlace418", "name": "Etoceto", "desc": "Letocetum<br>Vici.org: <a href='https://vici.org/vici/3850/'>https://vici.org/vici/3850/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.851016, 52.655807]}}, {"type": "Feature", "properties": {"id": "OVPlace419", "name": "Manduesedo", "desc": "Manduessedum<br>Vici.org: <a href='https://vici.org/vici/3851/'>https://vici.org/vici/3851/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.52951, 52.566795]}}, {"type": "Feature", "properties": {"id": "OVPlace420", "name": "Venonis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3852/'>https://vici.org/vici/3852/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.301384, 52.49445]}}, {"type": "Feature", "properties": {"id": "OVPlace421", "name": "Bannaventa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3853/'>https://vici.org/vici/3853/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.068986, 52.277412]}}, {"type": "Feature", "properties": {"id": "OVPlace422", "name": "Lactodoro", "desc": "Lactodorum<br>Vici.org: <a href='https://vici.org/vici/3854/'>https://vici.org/vici/3854/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.988461, 52.131966]}}, {"type": "Feature", "properties": {"id": "OVPlace423", "name": "Magiovinto", "desc": "Magiovinium<br>Vici.org: <a href='https://vici.org/vici/3855/'>https://vici.org/vici/3855/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.716167, 51.998623]}}, {"type": "Feature", "properties": {"id": "OVPlace424", "name": "Durocobrivis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3856/'>https://vici.org/vici/3856/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.523125, 51.887619]}}, {"type": "Feature", "properties": {"id": "OVPlace425", "name": "Verolamio", "desc": "Verulamium<br>Vici.org: <a href='https://vici.org/vici/3857/'>https://vici.org/vici/3857/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.354941, 51.746304]}}, {"type": "Feature", "properties": {"id": "OVPlace426", "name": "Sulloniacis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3858/'>https://vici.org/vici/3858/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.315192, 51.640553]}}, {"type": "Feature", "properties": {"id": "OVPlace427", "name": "Londinio", "desc": "London, Londinium<br>Vici.org: <a href='https://vici.org/vici/1484/'>https://vici.org/vici/1484/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.088949, 51.513351]}}, {"type": "Feature", "properties": {"id": "OVPlace428", "name": "Varis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3859/'>https://vici.org/vici/3859/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.442326, 53.258026]}}, {"type": "Feature", "properties": {"id": "OVPlace432", "name": "Camborico", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3860/'>https://vici.org/vici/3860/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.623598, 52.303699]}}, {"type": "Feature", "properties": {"id": "OVPlace433", "name": "Duroliponte", "desc": "Cambridge<br>Vici.org: <a href='https://vici.org/vici/3861/'>https://vici.org/vici/3861/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.131236, 52.202557]}}, {"type": "Feature", "properties": {"id": "OVPlace435", "name": "Causennis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3862/'>https://vici.org/vici/3862/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.57809, 52.8974]}}, {"type": "Feature", "properties": {"id": "OVPlace437", "name": "Segeloci", "desc": "Segelocum<br>Vici.org: <a href='https://vici.org/vici/3863/'>https://vici.org/vici/3863/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.761772, 53.333668]}}, {"type": "Feature", "properties": {"id": "OVPlace438", "name": "Dano", "desc": "Danum<br>Vici.org: <a href='https://vici.org/vici/3864/'>https://vici.org/vici/3864/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.133781, 53.523018]}}, {"type": "Feature", "properties": {"id": "OVPlace436", "name": "Lindo", "desc": "Licoln, Lindum<br>Vici.org: <a href='https://vici.org/vici/1483/'>https://vici.org/vici/1483/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.538425, 53.234856]}}, {"type": "Feature", "properties": {"id": "OVPlace440", "name": "Tripontio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3865/'>https://vici.org/vici/3865/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.214105, 52.407158]}}, {"type": "Feature", "properties": {"id": "OVPlace441", "name": "Ratas", "desc": "Leicester, Ratae<br>Vici.org: <a href='https://vici.org/vici/3866/'>https://vici.org/vici/3866/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.12946, 52.634575]}}, {"type": "Feature", "properties": {"id": "OVPlace442", "name": "Verometo", "desc": "Vernemeto<br>Vici.org: <a href='https://vici.org/vici/3867/'>https://vici.org/vici/3867/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.0559, 52.821583]}}, {"type": "Feature", "properties": {"id": "OVPlace443", "name": "Margiduno", "desc": "Margidunum<br>Vici.org: <a href='https://vici.org/vici/3868/'>https://vici.org/vici/3868/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.968229, 52.979546]}}, {"type": "Feature", "properties": {"id": "OVPlace445", "name": "Crococalana", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3869/'>https://vici.org/vici/3869/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.745907, 53.121319]}}, {"type": "Feature", "properties": {"id": "OVPlace429", "name": "Muridono", "desc": "Moridunum<br>Vici.org: <a href='https://vici.org/vici/3870/'>https://vici.org/vici/3870/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.307499, 51.856194]}}, {"type": "Feature", "properties": {"id": "OVPlace439", "name": "Legeolio", "desc": "Castelford, Lagentium<br>Vici.org: <a href='https://vici.org/vici/3871/'>https://vici.org/vici/3871/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.356271, 53.725864]}}, {"type": "Feature", "properties": {"id": "OVPlace448", "name": "Venta Belgarum", "desc": "Winchester<br>Vici.org: <a href='https://vici.org/vici/3872/'>https://vici.org/vici/3872/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.317, 51.063]}}, {"type": "Feature", "properties": {"id": "OVPlace447", "name": "Clausentum", "desc": "Southampton<br>Vici.org: <a href='https://vici.org/vici/3873/'>https://vici.org/vici/3873/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.361704, 50.914536]}}, {"type": "Feature", "properties": {"id": "OVPlace446", "name": "Regno", "desc": "Chichester, Noviomagus Regnorum<br>Vici.org: <a href='https://vici.org/vici/3874/'>https://vici.org/vici/3874/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.7793, 50.83646]}}, {"type": "Feature", "properties": {"id": "OVPlace449", "name": "Calleva Attrebatum", "desc": "Galleva Attrebatum<br>Vici.org: <a href='https://vici.org/vici/3875/'>https://vici.org/vici/3875/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.100539, 51.353699]}}, {"type": "Feature", "properties": {"id": "OVPlace450", "name": "Pontibus", "desc": "Staines, Pontes<br>Vici.org: <a href='https://vici.org/vici/3876/'>https://vici.org/vici/3876/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.510178, 51.434265]}}, {"type": "Feature", "properties": {"id": "OVPlace451", "name": "Durolito", "desc": "Staines, Durolitum<br>Vici.org: <a href='https://vici.org/vici/3877/'>https://vici.org/vici/3877/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.006928, 51.558449]}}, {"type": "Feature", "properties": {"id": "OVPlace452", "name": "Clanoventa", "desc": "Glannoventa<br>Vici.org: <a href='https://vici.org/vici/3878/'>https://vici.org/vici/3878/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.410628, 54.355499]}}, {"type": "Feature", "properties": {"id": "OVPlace453", "name": "Galava", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3879/'>https://vici.org/vici/3879/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.966392, 54.422867]}}, {"type": "Feature", "properties": {"id": "OVPlace454", "name": "Alone", "desc": "Alauna<br>Vici.org: <a href='https://vici.org/vici/3880/'>https://vici.org/vici/3880/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.746936, 54.308235]}}, {"type": "Feature", "properties": {"id": "OVPlace455", "name": "Galacum", "desc": "Calacum<br>Vici.org: <a href='https://vici.org/vici/3881/'>https://vici.org/vici/3881/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.590272, 54.171658]}}, {"type": "Feature", "properties": {"id": "OVPlace456", "name": "Bremetonnaci", "desc": "Bremetennacum Veteranorum<br>Vici.org: <a href='https://vici.org/vici/3882/'>https://vici.org/vici/3882/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.531878, 53.813702]}}, {"type": "Feature", "properties": {"id": "OVPlace457", "name": "Coccio", "desc": "Coccium<br>Vici.org: <a href='https://vici.org/vici/3883/'>https://vici.org/vici/3883/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.628822, 53.544594]}}, {"type": "Feature", "properties": {"id": "OVPlace410", "name": "Condate", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3884/'>https://vici.org/vici/3884/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.518101, 53.258846]}}, {"type": "Feature", "properties": {"id": "OVPlace413", "name": "Medialano", "desc": "Mediolanum<br>Vici.org: <a href='https://vici.org/vici/3885/'>https://vici.org/vici/3885/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.682981, 52.968597]}}, {"type": "Feature", "properties": {"id": "OVPlace415", "name": "Urioconio", "desc": "Viroconium<br>Vici.org: <a href='https://vici.org/vici/3886/'>https://vici.org/vici/3886/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.647095, 52.670361]}}, {"type": "Feature", "properties": {"id": "OVPlace434", "name": "Durobrivas", "desc": "Durobrivae<br>Vici.org: <a href='https://vici.org/vici/3887/'>https://vici.org/vici/3887/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.364437, 52.561222]}}, {"type": "Feature", "properties": {"id": "OVPlace458", "name": "Segontio", "desc": "Seguntium<br>Vici.org: <a href='https://vici.org/vici/3888/'>https://vici.org/vici/3888/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.275755, 53.144424]}}, {"type": "Feature", "properties": {"id": "OVPlace459", "name": "Conovio", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3889/'>https://vici.org/vici/3889/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.839017, 53.218567]}}, {"type": "Feature", "properties": {"id": "OVPlace431", "name": "Brovaco", "desc": "Brovacum<br>Vici.org: <a href='https://vici.org/vici/3890/'>https://vici.org/vici/3890/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.718965, 54.653946]}}, {"type": "Feature", "properties": {"id": "OVPlace460", "name": "Leucaro", "desc": "Leucarum<br>Vici.org: <a href='https://vici.org/vici/3891/'>https://vici.org/vici/3891/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-4.065542, 51.663666]}}, {"type": "Feature", "properties": {"id": "OVPlace461", "name": "Nido", "desc": "Nidum<br>Vici.org: <a href='https://vici.org/vici/3892/'>https://vici.org/vici/3892/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.803765, 51.661095]}}, {"type": "Feature", "properties": {"id": "OVPlace462", "name": "Bomio", "desc": "Bomium<br>Vici.org: <a href='https://vici.org/vici/3893/'>https://vici.org/vici/3893/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.44741, 51.461781]}}, {"type": "Feature", "properties": {"id": "OVPlace463", "name": "Iscae", "desc": "Isca<br>Vici.org: <a href='https://vici.org/vici/3894/'>https://vici.org/vici/3894/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.95885, 51.615299]}}, {"type": "Feature", "properties": {"id": "OVPlace464", "name": "Burrio", "desc": "Burrium<br>Vici.org: <a href='https://vici.org/vici/3895/'>https://vici.org/vici/3895/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.902543, 51.703884]}}, {"type": "Feature", "properties": {"id": "OVPlace465", "name": "Gobannio", "desc": "Gobannium<br>Vici.org: <a href='https://vici.org/vici/3896/'>https://vici.org/vici/3896/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-3.020907, 51.824841]}}, {"type": "Feature", "properties": {"id": "OVPlace466", "name": "Bravonio", "desc": "Bravonium<br>Vici.org: <a href='https://vici.org/vici/3897/'>https://vici.org/vici/3897/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.877388, 52.360088]}}, {"type": "Feature", "properties": {"id": "OVPlace467", "name": "Magnis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3898/'>https://vici.org/vici/3898/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.821946, 52.081306]}}, {"type": "Feature", "properties": {"id": "OVPlace468", "name": "Blestio", "desc": "Blestium<br>Vici.org: <a href='https://vici.org/vici/3899/'>https://vici.org/vici/3899/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.712896, 51.814232]}}, {"type": "Feature", "properties": {"id": "OVPlace469", "name": "Ariconio", "desc": "Ariconium<br>Vici.org: <a href='https://vici.org/vici/3900/'>https://vici.org/vici/3900/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.537213, 51.907757]}}, {"type": "Feature", "properties": {"id": "OVPlace470", "name": "Clevo", "desc": "Gloucester, Glevum<br>Vici.org: <a href='https://vici.org/vici/3901/'>https://vici.org/vici/3901/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.248674, 51.866737]}}, {"type": "Feature", "properties": {"id": "OVPlace471", "name": "Cironium", "desc": "Cirencester, Corinium Dobunnorum<br>Vici.org: <a href='https://vici.org/vici/3902/'>https://vici.org/vici/3902/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.971026, 51.711269]}}, {"type": "Feature", "properties": {"id": "OVPlace472", "name": "Durocornivio", "desc": "Durocornovium<br>Vici.org: <a href='https://vici.org/vici/3903/'>https://vici.org/vici/3903/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.698317, 51.542648]}}, {"type": "Feature", "properties": {"id": "OVPlace473", "name": "Spinis", "desc": "Spinae<br>Vici.org: <a href='https://vici.org/vici/3904/'>https://vici.org/vici/3904/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.343928, 51.411961]}}, {"type": "Feature", "properties": {"id": "OVPlace474", "name": "Venta Silurum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3905/'>https://vici.org/vici/3905/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.765207, 51.610714]}}, {"type": "Feature", "properties": {"id": "OVPlace475", "name": "Abone", "desc": "Abona<br>Vici.org: <a href='https://vici.org/vici/3906/'>https://vici.org/vici/3906/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.650537, 51.487396]}}, {"type": "Feature", "properties": {"id": "OVPlace476", "name": "Trajectus", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3907/'>https://vici.org/vici/3907/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.461281, 51.42506]}}, {"type": "Feature", "properties": {"id": "OVPlace477", "name": "Aquis Sulis", "desc": "Bath, Aquae Sulis<br>Vici.org: <a href='https://vici.org/vici/3908/'>https://vici.org/vici/3908/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.357446, 51.38142]}}, {"type": "Feature", "properties": {"id": "OVPlace478", "name": "Verlucione", "desc": "Verlucio<br>Vici.org: <a href='https://vici.org/vici/3909/'>https://vici.org/vici/3909/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.052027, 51.411694]}}, {"type": "Feature", "properties": {"id": "OVPlace479", "name": "Cunetione", "desc": "Marlborough, Cunetio<br>Vici.org: <a href='https://vici.org/vici/3910/'>https://vici.org/vici/3910/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.730186, 51.42112]}}, {"type": "Feature", "properties": {"id": "OVPlace482", "name": "Sorbiodoni", "desc": "Sorviodunum<br>Vici.org: <a href='https://vici.org/vici/3911/'>https://vici.org/vici/3911/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.804765, 51.093102]}}, {"type": "Feature", "properties": {"id": "OVPlace483", "name": "Vindocladia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3912/'>https://vici.org/vici/3912/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.05251, 50.826393]}}, {"type": "Feature", "properties": {"id": "OVPlace484", "name": "Durnonovaria", "desc": "Dorchester<br>Vici.org: <a href='https://vici.org/vici/3913/'>https://vici.org/vici/3913/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.434066, 50.710548]}}, {"type": "Feature", "properties": {"id": "OVPlace485", "name": "Sala colonia", "desc": "Rabat<br>Vici.org: <a href='https://vici.org/vici/3914/'>https://vici.org/vici/3914/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.832732, 34.015038]}}, {"type": "Feature", "properties": {"id": "OVPlace486", "name": "Thamusida", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3915/'>https://vici.org/vici/3915/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.490176, 34.33511]}}, {"type": "Feature", "properties": {"id": "OVPlace487", "name": "Banasa", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3916/'>https://vici.org/vici/3916/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.115264, 34.601986]}}, {"type": "Feature", "properties": {"id": "OVPlace488", "name": "Frigidis", "desc": "Frigidae<br>Vici.org: <a href='https://vici.org/vici/3917/'>https://vici.org/vici/3917/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.150002, 34.960011]}}, {"type": "Feature", "properties": {"id": "OVPlace489", "name": "Lix colonia", "desc": "Lixus<br>Vici.org: <a href='https://vici.org/vici/3918/'>https://vici.org/vici/3918/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-6.11037, 35.198727]}}, {"type": "Feature", "properties": {"id": "OVPlace490", "name": "Tabernis", "desc": "Tarbernae<br>Vici.org: <a href='https://vici.org/vici/3919/'>https://vici.org/vici/3919/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.981627, 35.333691]}}, {"type": "Feature", "properties": {"id": "OVPlace491", "name": "Zili", "desc": "Zilis<br>Vici.org: <a href='https://vici.org/vici/3920/'>https://vici.org/vici/3920/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.912359, 35.514183]}}, {"type": "Feature", "properties": {"id": "OVPlace492", "name": "Ad Mercurios", "desc": "Ad Mercuri<br>Vici.org: <a href='https://vici.org/vici/3921/'>https://vici.org/vici/3921/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.839493, 35.508423]}}, {"type": "Feature", "properties": {"id": "OVPlace493", "name": "Tingi colonia", "desc": "Tanger<br>Vici.org: <a href='https://vici.org/vici/3922/'>https://vici.org/vici/3922/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.810048, 35.787926]}}, {"type": "Feature", "properties": {"id": "OVPlace495", "name": "Oppido Novo", "desc": "Oppidum Novum<br>Vici.org: <a href='https://vici.org/vici/3923/'>https://vici.org/vici/3923/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.902791, 35.008499]}}, {"type": "Feature", "properties": {"id": "OVPlace499", "name": "Aquis Dacicis", "desc": "Aquae Dacicae<br>Vici.org: <a href='https://vici.org/vici/3924/'>https://vici.org/vici/3924/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.800742, 34.146568]}}, {"type": "Feature", "properties": {"id": "OVPlace500", "name": "Volubilis colonia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3925/'>https://vici.org/vici/3925/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.505987, 34.084114]}}, {"type": "Feature", "properties": {"id": "OVPlace501", "name": "Tocolosida", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3926/'>https://vici.org/vici/3926/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-5.599922, 34.03006]}}, {"type": "Feature", "properties": {"id": "OVPlace502", "name": "Rusguniae colonia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3927/'>https://vici.org/vici/3927/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [3.231468, 36.808483]}}, {"type": "Feature", "properties": {"id": "OVPlace503", "name": "Icosium colonia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3928/'>https://vici.org/vici/3928/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [3.056709, 36.771801]}}, {"type": "Feature", "properties": {"id": "OVPlace504", "name": "Casae Calventi", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3929/'>https://vici.org/vici/3929/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.68789, 36.641598]}}, {"type": "Feature", "properties": {"id": "OVPlace505", "name": "Tipasa colonia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3930/'>https://vici.org/vici/3930/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.440944, 36.593952]}}, {"type": "Feature", "properties": {"id": "OVPlace506", "name": "Caesarea colonia", "desc": "Iol Caesarea<br>Vici.org: <a href='https://vici.org/vici/3931/'>https://vici.org/vici/3931/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.196871, 36.606831]}}, {"type": "Feature", "properties": {"id": "OVPlace507", "name": "Gunugus", "desc": "Gunugu<br>Vici.org: <a href='https://vici.org/vici/3932/'>https://vici.org/vici/3932/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.90305, 36.570984]}}, {"type": "Feature", "properties": {"id": "OVPlace508", "name": "Cartili", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3933/'>https://vici.org/vici/3933/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.700044, 36.549862]}}, {"type": "Feature", "properties": {"id": "OVPlace509", "name": "Iar castellum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3934/'>https://vici.org/vici/3934/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.568591, 36.53072]}}, {"type": "Feature", "properties": {"id": "OVPlace510", "name": "Cartenna colonia", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3935/'>https://vici.org/vici/3935/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [1.3131, 36.510307]}}, {"type": "Feature", "properties": {"id": "OVPlace511", "name": "Arsenaria", "desc": "Arsennaria<br>Vici.org: <a href='https://vici.org/vici/3936/'>https://vici.org/vici/3936/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.873111, 36.334328]}}, {"type": "Feature", "properties": {"id": "OVPlace512", "name": "Quiza municipum", "desc": "Quiza Cenitana<br>Vici.org: <a href='https://vici.org/vici/3937/'>https://vici.org/vici/3937/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [0.216778, 36.033962]}}, {"type": "Feature", "properties": {"id": "OVPlace513", "name": "Portus Magnos", "desc": "Portus Magnus<br>Vici.org: <a href='https://vici.org/vici/3938/'>https://vici.org/vici/3938/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.266018, 35.807919]}}, {"type": "Feature", "properties": {"id": "OVPlace514", "name": "Divinos", "desc": "Oran, Portus Divinus<br>Vici.org: <a href='https://vici.org/vici/3939/'>https://vici.org/vici/3939/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.637317, 35.705063]}}, {"type": "Feature", "properties": {"id": "OVPlace515", "name": "Castra Puerorum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3940/'>https://vici.org/vici/3940/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-0.896073, 35.704288]}}, {"type": "Feature", "properties": {"id": "OVPlace520", "name": "Portu Sigensi", "desc": "Portus Sigensis<br>Vici.org: <a href='https://vici.org/vici/3941/'>https://vici.org/vici/3941/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.46751, 35.29689]}}, {"type": "Feature", "properties": {"id": "OVPlace519", "name": "Camarata", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3942/'>https://vici.org/vici/3942/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.298801, 35.346512]}}, {"type": "Feature", "properties": {"id": "OVPlace521", "name": "Siga municipum", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3943/'>https://vici.org/vici/3943/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.454551, 35.23991]}}, {"type": "Feature", "properties": {"id": "OVPlace524", "name": "Ad Fratres", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3944/'>https://vici.org/vici/3944/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-1.858203, 35.101894]}}, {"type": "Feature", "properties": {"id": "OVPlace525", "name": "Lemnis", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3945/'>https://vici.org/vici/3945/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [-2.102887, 35.073105]}}, {"type": "Feature", "properties": {"id": "OVPlace526", "name": "Perdices", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3946/'>https://vici.org/vici/3946/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [5.390069, 35.931999]}}, {"type": "Feature", "properties": {"id": "OVPlace527", "name": "Cellas", "desc": "Castellum Cellense<br>Vici.org: <a href='https://vici.org/vici/3947/'>https://vici.org/vici/3947/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [5.319487, 35.66983]}}, {"type": "Feature", "properties": {"id": "OVPlace528", "name": "Macri", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3948/'>https://vici.org/vici/3948/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [5.094743, 35.637737]}}, {"type": "Feature", "properties": {"id": "OVPlace529", "name": "Zabi", "desc": "Zabi Iustiniana<br>Vici.org: <a href='https://vici.org/vici/3949/'>https://vici.org/vici/3949/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [4.545042, 35.700153]}}, {"type": "Feature", "properties": {"id": "OVPlace530", "name": "Aras", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3950/'>https://vici.org/vici/3950/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [4.292015, 35.818752]}}, {"type": "Feature", "properties": {"id": "OVPlace531", "name": "Tatilti", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3951/'>https://vici.org/vici/3951/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [3.989498, 36.019806]}}, {"type": "Feature", "properties": {"id": "OVPlace532", "name": "Auza", "desc": "Auzia<br>Vici.org: <a href='https://vici.org/vici/3952/'>https://vici.org/vici/3952/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [3.692601, 36.143276]}}, {"type": "Feature", "properties": {"id": "OVPlace533", "name": "Rapidi", "desc": "Rapidum<br>Vici.org: <a href='https://vici.org/vici/3953/'>https://vici.org/vici/3953/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [3.424132, 36.137253]}}, {"type": "Feature", "properties": {"id": "OVPlace535", "name": "Caput Cilani", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3954/'>https://vici.org/vici/3954/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.836188, 36.139721]}}, {"type": "Feature", "properties": {"id": "OVPlace536", "name": "Sufasar", "desc": "<br>Vici.org: <a href='https://vici.org/vici/3955/'>https://vici.org/vici/3955/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.515064, 36.192329]}}, {"type": "Feature", "properties": {"id": "OVPlace537", "name": "Aquis", "desc": "Aquae Calidae<br>Vici.org: <a href='https://vici.org/vici/3956/'>https://vici.org/vici/3956/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.39736, 36.378708]}}, {"type": "Feature", "properties": {"id": "OVPlace539", "name": "Tanaramusa castra", "desc": "Thanaramusa Castra<br>Vici.org: <a href='https://vici.org/vici/3957/'>https://vici.org/vici/3957/</a>", "source": "Itinerarium Antonini"}, "geometry": {"type": "Point", "coordinates": [2.914292, 36.135628]}}, {"type": "Feature", "properties": {"id": "OVPlace541", "name": "Maliana", "desc": "Manliana<br>Vici.org: <a href='https://vici.org/vici/3958/'>https://vici.org/vici/3958/</a>", "source": "It
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment