-
Notifications
You must be signed in to change notification settings - Fork 3
/
sheet.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 48 columns, instead of 45 in line 1.
1338 lines (1338 loc) · 284 KB
/
sheet.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"id","name","dedicatee","type","setting","location","modernplace","ancientplace","pleiadesplace","country","latitude","longitude","orientation","compass","geocertainty","vowed","date","startdateearly","startdatelate","century","enddate","preceded","succeeded","sex","dedicationday","deitytype","culture","style","extant","source","meetings","note","vici","pleiades","dare","arachne","livius","wikipedia","wikidata","digitalromanforum","digitalesforumromanum","trismegistos","ads","cona","topostext","sls","patrimonium","url"
"1000001","Temple of Aesculapius","Aesculapius","temple","","Tiber Island","Rome","Rome","423025","IT","41.890278","12.478333","","","0","-292","-291","-291","","-3","","","","M","January 1","hero","Roman","","","Ziolkowski","","","23444","","","","","Temple_of_Asclepius,_Rome","Q3983243","","","","","","419125SAsc"
"1000002","Temple of Apollo Palatinus","Apollo","temple","","Palatine Hill","Rome","Rome","423025","IT","41.888854","12.485741","227","SW","0","","-28","-28","","-1","","","","M","October 9","god","Roman","","","Blake, Stamper","","","","","","8606","","Temple_of_Apollo_Palatinus","Q1236860","","","","","","419125SApP"
"1000003","Temple of Apollo Sosianus/Medicus","Apollo","temple","","Circus Flaminius","Rome","Rome","423025","IT","41.8923136","12.4795912","180","S","0","","-431","-431","","-5","","","","M","June 13","god","Roman","","","Stamper","senate","vici.org; coords modified","15038","740034026","","5665","","Temple_of_Apollo_Sosianus","Q582353","","","","","","419125SApo"
"1000004","Temple of Bellona","Bellona","temple","","Circus Flaminius","Rome","Rome","423025","IT","41.89238","12.47989","180","S","0","-296","-292-280","-292","-280","-3","","","","F","June 3","god","Roman","","","Ziolkowski","senate","","","","","3467477","","Temple_of_Bellona,_Rome","Q2595680","","","","","","419125SBel"
"1000005","Temple of Bona Dea","Bona Dea","temple","","Lesser Aventine","Rome","Rome","423025","IT","41.880581","12.48979","","","0","","","-123","","-2","","","","F","May 1","god","Roman","","","Blake/Ziolkowski","","","","","","","","Temple_of_Bona_Dea","Q541336"
"1000007","Temple of Castor(es)","Castor(es)","temple","forum","Forum","Rome","Rome","423025","IT","41.891773","12.485755","24","NE","0","","-484","-484","","-5","","","","M","January 27/July 15","hero","Roman","","","blake","senate","Vici.org","15011","","","5807","","","Q380530","CastorAedes_1","","","","","419125SCas"
"1000008","Temple of Castor and Pollux","Castor, Pollux","temple","","Circus Flaminius","Rome","Rome","423025","IT","41.8923","12.477","30","NE","0","","-179-91","-179","-91","-2","","","","M","August 13","hero","Roman","","","Coarelli","","","","","","4052753"
"1000009","Temple of Ceres and Faustina","Ceres, Faustina","temple","","","Rome","Rome","423025","IT","41.857844","12.524306","","","0","","","","","","","","","F","","family, god","Roman","","","","","Vici.org, DARE","","422889","22917"
"1000010","Temple of Ceres, Liber, and Libera","Ceres, Liber, Libera","temple","","Aventine","Rome","Rome","423025","IT","41.885303","12.482435","","","1","","-493","-493","","-5","","","","M/F","","god","Roman","","","","","","","","","","","Sanctuary_of_Ceres,_Liber_and_Libera","Q3949870","","","","","","419125SCer"
"1000011","Temple","","temple","","Cessati Spiriti","Rome","Rome","423025","IT","41.862522","12.533184","","","0","","","","","","","","","","","","Roman","","","","","DARE","","422892"
"1000012","Temple of the Divine Claudius","Claudius","temple","","Caelian Hill","Rome","Rome","423025","IT","41.887594","12.493367","247","SW","0","","40-60","40","60","1","","","","M","","emperor","Roman","","","","","","","","","6228","","Temple_of_Claudius","Q523765","","","","","","419125SCla"
"1000013","Temple of Concord","Concord","temple","forum","Forum","Rome","Rome","423025","IT","41.89293","12.484245","123","SE","0","","-121","-121","","-2","","","","F","22 July/16 January","concept","Roman","","","Blake","senate","","","","","5742","","","","ConcordiaAedes_1","","","","","419125SCon"
"1000014","Temple of Cybele/Magna Mater","Cybele/Magna Mater","temple","","Palatine Hill","Rome","Rome","423025","IT","41.889554","12.484984","203","SW","0","","-191","-191","","-2","","","","F","April 11","god","Roman","","","Stamper","senate","Vici.org","17956","","","9110","","Temple_of_Cybele_(Palatine)","Q383609","","","","","","419125SMMT"
"1000015","Temple of Dea Dia","Dea Dia","temple","","Magliana","Rome","Rome","423025","IT","41.83462","12.432137","","","0","","","","","","","","","F","","god","Roman","","","","","DARE","","422916","37153"
"1000016","Temple of Diana","Diana","temple","","Aventine","Rome","Rome","423025","IT","41.882828","12.483194","","","0","","-499-400","-499","-400","-5","","","","F","August 13","god","Roman","","","","","","","","","","","","","","","","","","","","57364"
"1000017","Temple of the Divine Antoninus and the Divine Faustina","Antoninus, Faustina","temple","forum","Forum","Rome","Rome","423025","IT","41.892139","12.486689","217","SW","0","","141","141","","2","","","","M/F","","emperor, family","Roman","","","Blake","","Vici.org","15009","","","5645","","Temple_of_Antoninus_and_Faustina","Q752555","AntoninusetFaustinaTemplum_1","","","","","419125SFas"
"1000018","Temple of the Divine Augustus","Augustus","temple","","","Rome","Rome","423025","IT","41.891616","12.484471","","","0","","","","","","","","","M","","emperor","Roman","","","Blake","","","","","","5743","","Temple_of_Divus_Augustus","Q927222","","","","","","419125SDAT"
"1000019","Temple of the Divine Julius","Julius","temple","forum","Forum","Rome","Rome","423025","IT","41.892019","12.486128","300","NW","0","","-29","-29","","-1","","","","M","August 18","emperor","Roman","","","Stamper","","","15048","","","5744","","","Q1133288","IuliusDivusAedes_1","","","","","419125SJul"
"1000020","Temple of the Divine Romulus","Romulus","temple","forum","Forum","Rome","Rome","423025","IT","41.891846","12.487166","205","SW","0","","","","","","","","","M","","family","Roman","","","","","Vici.org","15044","","","10545","","Temple_of_Romulus","","","","","","","419125SRom"
"1000021","Temple of the Divine Trajan","Trajan","temple","forum","Forum of Trajan","Rome","Rome","423025","IT","","","","","","","128","128","","2","","","","M","","emperor","Roman","","","Stamper"
"1000022","Temple of Elagabal","Sol Invictus Elagabal","temple","hill","Palatine Hill","Rome","Rome","423025","IT","41.889603","12.488894","295","NW","0","","221","221","","3","","","","M","","god","Roman","","","","","Vici.org","11503","","","","rome-temple-of-elagabal","Elagabalium","Q969344"
"1000023","Temple of Feronia","Feronia","temple","","Campus Martius","Rome","Rome","423025","IT","41.895163","12.476723","90","E","0","-292-219","-292-219","-292","-219","-3","","","","F","November 13","god","Roman","","","Stamper/Ziolkowski","","Pleiades: Temple C","39266","","","5865","","","Q1541068"
"1000024","Temple of Fides","Fides","temple","","Capitoline","Rome","Rome","423025","IT","41.8914","12.4812","","","0","","-254","-254","","-3","","","","F","October 1","concept","Roman","","","Ziolkowski","senate","","","","","","","Temple_of_Fides","Q3983246"
"1000025","Temple of Flora","Flora","temple","","Circus Maximus","Rome","Rome","423025","IT","","","","","","","-240","-240","","-3","","","","F","April 28","nature","Roman","","","","","","","","","","","Temple_of_Flora","Q3983248"
"1000026","Temple of Flora","Flora","temple","","Quirinal Hill","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","F","May 3","nature","Roman"
"1000027","Temple of Fons/Fontus","Fons/Fontus","temple","","extra portam fontinalem","Rome","Rome","423025","IT","","","","","","","-231","-231","-219","-3","","","","M","October 13","nature","Roman"
"1000028","Temple of Fors Fortuna","Fors Fortuna","temple","","Right bank of Tiber","Rome","Rome","423025","IT","","","","","","","-293","-292","-280","-3","","","","F","June 24","concept","Roman","","","","","Vici.org","","422925"
"1000029","Temple of Fortuna Huiusce Diei","Fortuna","temple","","Campus Martius","Rome","Rome","423025","IT","41.895387","12.476839","90","E","0","","-101-99","-101","-99","-2","","","","F","June 30","concept","Roman","","yes","Stamper","","Pleiades: Temple B","39264","635795593","","6515","","","","","","","","","419125SFor"
"1000030","Temple of Fortuna","Fortuna","temple","forum","Forum Boarium","Rome","Rome","423025","IT","41.890791","12.481069","183","S","0","","-396","-396","","-4","","","","F","June 11","concept","Roman","","","Platner and Ashby"
"1000031","Temple of Fortuna Muliebris","Fortuna","temple","","","Rome","Rome","423025","IT","41.843745","12.555806","","","0","","","","","","","","","F","","concept","Roman","","","","","DARE","","","37154","","","Temple_of_Fortuna_Muliebris","Q3983205"
"1000032","Temple of the Divine Hadrian","Hadrian","temple","","Campus Martius","Rome","Rome","423025","IT","41.899876","12.479621","90","E","0","","145","145","","2","","","","M","","emperor","Roman","","","Blake","","Vici.org","15032","","","5651","","Temple_of_Hadrian","Q431062","","","","","","419125SHad"
"1000033","Temple of Hercules Magnus Custos","Hercules","temple","","Circus Flaminius","Rome","Rome","423025","IT","","","","","","-225-223","-220","-220","","-3","","","","M","June 4","hero","Roman","","","Ziolkowski","","Pleiades","","805897375","","","","Temple_of_Hercules_Custos","Q2441536"
"1000034","Temple of Hercules Musarum","Hercules","temple","","Circus Flaminius","Rome","Rome","423025","IT","41.8931188","12.477733","208","SW","0","","-187","-187","","-2","","","","M","June 30","hero","Roman","","","Arachne","","","","","","3467458"
"1000035","Temple of Hercules Victor","Hercules","temple","","ad portam trigeminam","Rome","Rome","423025","IT","41.8887057","12.4806393","93","E","0","","-142","-142","","-2","","","","M","","hero","Roman","","yes","","","","15006","825969667","","10771","","Temple_of_Hercules_Victor","Q576929","","","","","","419125SHrc"
"1000036","Temple of Hercules Victor","Hercules","temple","","","Tivoli","Tibur","423081","IT","41.963553","12.792638","246","SW","0","","-89-82","-89","-82","-1","","","","M","","hero","Roman","","","Stamper"
"1000037","Temple of Hercules Invictus (Victor; Pompeianus)","Hercules","temple","","ad circum maximum","Rome","Rome","423025","IT","","","","","","-292-219","-292","-219","","-3","","","","M","August 13","hero","Roman"
"1000038","Temple of Honos and Virtus","Honor, Virtue","temple","","ad Portam Capenam","Rome","Rome","423025","IT","","","","","","-222","-205","-205","","-3","","","1000154","F","July 17","concept","Roman","","","","senate","","","","","","","Temple_of_Honor_and_Virtue","Q16612729"
"1000039","Temple","","temple","","Il Torraccio","Rome","Rome","423025","IT","41.994283","12.492366","","","0","","","","","","","","","","","","Roman","","","","","DARE","","3467477","37165"
"1000040","Temple of Isis","Isis","temple","","via Labicana","Rome","Rome","423025","IT","41.890049","12.501237","","","0","","","","","","","","","F","","god","Roman","","","","","Pleiades","19353","","","","","","Q16612725"
"1000041","Temple of Isis/Serapis","Isis, Serapis","temple","suburban","Campus Martius","Rome","Rome","423025","IT","41.897221","12.479167","","","0","","","","","","","","","M/F","","god","Roman","","","Blake","","Pleiades","17963","","","","","Temple_of_Isis_and_Serapis","Q2288275","","","","","","419125SIsS"
"1000042","Temple of Janus","Janus","temple","forum","Forum Holitorium","Rome","Rome","423025","IT","41.891289","12.479947","71","E","0","-260","-260","-240","","-3","","","","M","August 17","god","Roman","","","","","","","","","10761","","Temple_of_Janus_(Forum_Holitorium)","Q3983253"
"1000043","Temple of Juno Curritis","Juno","temple","","Campus Martius","Rome","Rome","423025","IT","41.894862","12.476906","","","0","","-292-219","-292","-219","-3","","","","F","October 7","god","Roman","","","Ziolkowski"
"1000044","Temple of Juno Lucina","Juno","temple","","Esquiline Hill","Rome","Rome","423025","IT","","","","","","","-375","-375","","-4","","","","F","March 1","god","Roman","","","Ziolkowski","","","","","","","","Temple_of_Juno_Lucina","Q20009485"
"1000045","Temple of Juno Moneta","Juno","temple","","Capitoline Hill","Rome","Rome","423025","IT","41.894009","12.483497","","","0","-345","-344","-344","","-4","","","","F","June 1","god","Roman","","","","","","","","","3910432","","Temple_of_Juno_Moneta","Q951089","","","","","","419125SJuM"
"1000046","Temple of Juno Regina","Juno","temple","","Aventine Hill","Rome","Rome","423025","IT","41.88444","12.47972","","","0","-396","-392","-392","","-4","","","","F","September 1","god","Roman","","","Ziolkowski"
"1000047","Temple of Juno Regina","Juno","temple","","Circus Flaminius","Rome","Rome","423025","IT","41.893141","12.478602","208","SW","0","","-179","-179","","-2","","","","F","December 23","god","Roman","","","","","","","","","3467454"
"1000048","Temple of Juno Sospita","Juno","temple","forum","Forum Holitorium","Rome","Rome","423025","IT","41.891093","12.479937","71","E","0","","-197-194","-197","-194","-2","","","","F","February 1","god","Roman","","","","","","","","","","","","","","","","","","419125SJuS"
"1000049","Temple of Jupiter","Jupiter","temple","","","Rome","Rome","423025","IT","41.840026","12.536854","","","0","","","","","","","","","M","","god","Roman","","","","","DARE","","422950","37156","","","","","","","","","","","","","https://www.parcoarcheologicoappiaantica.it/luoghi/via-appia-antica/tempio-di-giove/"
"1000050","Capitolium","Jupiter, Juno, Minerva","temple","","","Jerusalem","Ierusalem","687928","IL","31.776306","35.235619","349","N","0","","130","130","","2","","","","M/F","","god","Roman","","no"
"1000051","Temple of Jupiter Damascenus","Jupiter","temple","","","Damascus","Damascus","678106","SY","33.51158","36.3067318","84","E","0","","14","14","","1","","","","M","","god","Roman","","yes","Segal2013","","","11934","245122016","21809","","","Temple_of_Jupiter,_Damascus","Q7698734"
"1000052","Temple of Jupiter","Jupiter","temple","","","Yabrud","Iabrouda","678196","SY","33.966667","36.666667","","","0","","","","","","","","","M","","god","Roman"
"1000053","Temple of Jupiter Heliopolitanus","Jupiter","temple","","","Baalbek","Heliopolis","678179","LB","34.006839","36.203397","76","E","0","","135","135","","2","","","","M","","god","Roman","","yes","","","","16415","758001563","","","place/heliopolis-baalbek/baalbek-photos/baalbek-temple-of-jupiter/","Temple_of_Jupiter_(Roman_Heliopolis)","Q21079381"
"1000054","Temple of Jupiter Anxur","Jupiter","temple","","","Terracina","Tarracina","433143","IT","41.290787","13.26011","175","S","0","","","","","","","","","M","","god","Roman","","","","","Coord from Google maps","10868","433143","42343","","","","Q3983252","","","","","","413133SJAn"
"1000055","Temple of Jupiter Conservator","Jupiter","temple","","Capitoline Hill","Rome","Rome","423025","IT","","","","","","","","","","","","","","M","","god","Roman","","","Stamper"
"1000056","Temple of Jupiter Custos","Jupiter","temple","","Capitoline Hill","Rome","Rome","423025","IT","41.891825","12.481892","","","0","","","","","","","","","M","","god","Roman"
"1000057","Temple of Jupiter Dolichenus","Jupiter","temple","","Aventine Hill","Rome","Rome","423025","IT","41.88319","12.4804","","","0","","","","","","","","","M","","god","Roman","","","Blake","","Location from Arachne","","","","6074"
"1000058","Temple of Jupiter Feretrius","Jupiter","temple","","Capitoline Hill","Rome","Rome","423025","IT","","","","","","","-752-751","-752","-751","-8","","","","M","","god","Roman"
"1000059","Temple of Jupiter Heliopolitanus","Jupiter","temple","","Janiculum","Rome","Rome","423025","IT","","","","","","","late 1st c. CE","75","100","1","","","","M","November 29","god","Roman","","","Blake"
"1000060","Temple of Jupiter Invictus","Jupiter","temple","","Palatine Hill","Rome","Rome","423025","IT","","","","","","","-180-167","-180","-167","-2","","","","M","","god","Roman","","","Ziolkowski"
"1000061","Temple of Jupiter Libertas","Jupiter","temple","","Aventine Hill","Rome","Rome","423025","IT","","","","","","","-246","-246","","-3","","","","M","April 13","god","Roman","","","Ziolkowski"
"1000062","Temple of Jupiter Capitolinus/Optimus Maximus","Jupiter","temple","","Capitoline Hill","Rome","Rome","423025","IT","41.892222","12.481667","152","SE","0","","-509","-509","","-6","","","","M","September 13","god","Roman","","","Blake","senate","","17971","871801169","","3910430","","Temple_of_Jupiter_Optimus_Maximus","Q586468","","","","","","419125SJCa"
"1000063","Temple of Jupiter Patulaeius","Jupiter","temple","","","Ostia Antica","Ostia","422995","IT","","","","","","","-299-200","-299","-200","-3","","","","M","","god","Roman"
"1000064","Temple of Jupiter","Jupiter","temple","","","Pompei","Pompeii","433032","IT","40.7499","14.4845","157","SE","0","","mid-2nd c. BCE","-175","-125","-2","","","","M","","god","Roman","","yes","","","","","367026512"
"1000066","Temple of Jupiter Stator","Jupiter","temple","forum","ad portam Mugoniam","Rome","Rome","423025","IT","41.890487","12.488793","","","0","-294","-294","-292","-218","-3","","","","M","June 27","god","Roman","","","","senate","Tenative coordinates"
"1000067","Temple of Jupiter Stator","Jupiter","temple","urban","Porticus Metelli, Circus Flaminius","Rome","Rome","423025","IT","41.892897","12.479021","208","SW","0","","-146","-146","","-2","","","","M","September 5","god","Roman"
"1000068","Temple of Jupiter Tonans","Jupiter","temple","","Capitoline Hill","Rome","Rome","423025","IT","","","","","","","-22","-22","","-1","","","","M","September 1","god","Roman"
"1000069","Temple of Jupiter Victor","Jupiter","temple","","Quirinal Hill","Rome","Rome","423025","IT","","","","","","-295","-292-219","-295","-291","-3","","","","M","April 13","god","Roman","","","Blake"
"1000070","Temple of Jupiter/Baalshamin","Jupiter, Baalshamin","temple","","","Kedesh","Kadasa","678215","IL","33.112906","35.531175","","","0","","","","","","","","","M","","god","Roman"
"1000071","Temple of Juturna","Juturna","temple","","Campus Martius","Rome","Rome","423025","IT","41.895664","12.476876","90","E","0","-242","-242-219","-242","-219","-3","","","","F","January 11","god","Roman","","","Ziolkowski","","Pleiades: Temple A","39261","","","5864","","","","","","","","","419125SFer"
"1000072","Temple of Juventas","Juventas","temple","","Circus Maximus","Rome","Rome","423025","IT","","","","","","","-193","-193","","-2","","","","F","","concept","Roman"
"1000073","Temple of the Lares","Lares","temple","","in summa Sacra Via","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","M","June 27","god","Roman"
"1000074","Temple of the Lares Permarini","Lares Permarini","temple","","Campus Martius","Rome","Rome","423025","IT","41.894983","12.476957","90","E","0","","-179","-179","","-2","","","","M","December 22","god","Roman","","","","","Pleiades: Temple D","39263","","","6516","","","","","","","","","419125SLPe"
"1000075","Temple of Luna","Luna","temple","","Aventine Hill","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","F","March 31","nature","Roman"
"1000076","Temple of Mars","Mars","temple","","Circus Flaminius","Rome","Rome","423025","IT","","","","","","","-138","-138","","-2","","","","M","May 14","god","Roman","","","","","","","","","","","Temple_of_Mars","Q18415446"
"1000077","Temple of Mars","Mars","temple","","North Via Appia","Rome","Rome","423025","IT","","","","","","-390","-388","-388","","-4","","","","M","June 1","god","Roman"
"1000078","Temple of Mars Ultor","Mars","temple","forum","Forum of Augustus","Rome","Rome","423025","IT","41.894444","12.486944","233","SW","0","","-2","-2","","-1","","","","M","","god","Roman","","","Stamper","","","","823121346","","5747","","it=Tempio_di_Marte_Ultore","Q679665","","","43987","","","419125SMUl"
"1000079","Temple of Mater Matuta","Mater Matuta","temple","forum","Forum Boarium","Rome","Rome","423025","IT","41.89081","12.481398","183","S","0","","-368","-368","","-4","","","","F","June 11","god","Roman","","","Stamper","","","","","","","","","","","","","","","419125SMMa"
"1000080","Temple of Matidia","Matidia","temple","","Campus Martius","Rome","Rome","423025","IT","41.899964","12.478081","","","0","","119","119","","2","","","","F","","family","Roman","","","Stamper"
"1000081","Mausoleum of Romulus","","tomb","","","Rome","Rome","423025","IT","41.8550631","12.5181785","","","0","","early 4th c. CE","","","4","","","","","","family","Roman","","","","","DARE","","","23842"
"1000082","Temple of Mercury","Mercury","temple","","Aventine Hill","Rome","Rome","423025","IT","","","","","","","-495","-495","","-5","","","May 15","M","","god","Roman","","","","","","","107133090"
"1000083","Temple of Minerva","Minerva","temple","","Aventine Hill","Rome","Rome","423025","IT","","","","","","-263-262","-263-260","-263","-260","-3","","","","F","June 19","god","Roman","","","","","Vici.org"
"1000084","Temple of Minerva Medica","Minerva","temple","","Esquiline Hill","Rome","Rome","423025","IT","","","","","","","-399-300","-399","-300","-4","","","","F","","god","Roman"
"1000085","Temple of Minerva","Minerva","temple","forum","Forum of Nerva","Rome","Rome","423025","IT","41.893664","12.487089","228","SW","0","","","","","","","","","F","","god","Roman","","","Arachne","","","","","","8405"
"1000086","Mithraeum Barberini","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.902964","12.4891","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45672"
"1000087","Mithraeum of Orazio Muti","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.89981","12.485662","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45673"
"1000088","Mithraeum of San Clemente","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.889675","12.497281","","","0","","","","","","","","","","","hero","Roman","","","","","Vici.org; DARE","23522","","45666"
"1000089","Mithraeum of Santa Prisca","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.883213","12.483655","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45667"
"1000090","Mithraeum of Santo Stefano Rotondo","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.884655","12.496744","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45669"
"1000091","Mithraeum of the Baths of Caracalla","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.879922","12.493118","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45668"
"1000092","Mithraeum of the Campidoglio","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.89291","12.482628","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45675"
"1000093","Mithraeum of the Circus Maximus","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.888114","12.482856","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45670"
"1000094","Mithraeum of the Crypta Balbi","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.894242","12.479176","","","0","","","","","","","","","","","hero","Roman","","","","","DARE; coords updated","","","45674"
"1000095","Mithraeum of the Esquiline","Mithras","mithraeum","","","Rome","Rome","423025","IT","41.894894","12.501063","","","0","","","","","","","","","","","hero","Roman","","","","","DARE","","","45671"
"1000096","Temple","","temple","","Monte del Grano","Rome","Rome","423025","IT","41.865272","12.549292","","","0","","","","","","","","","","","","Roman","","","","","","","422973"
"1000097","Temple of Neptune","Neptune","temple","","Circus Flaminius","Rome","Rome","423025","IT","41.8934143","12.4770876","186","S","0","-257-229","-257-229","-257","-229","-3","","","","M","December 1","god","Roman","","","","","","","","","3467478","","Temple_of_Neptune_(Rome)","Q2489646","","","","","","419125SNpt"
"1000098","Nymphaeum of the Villa dei Quintili","Nymphs","temple","","","Rome","Rome","423025","IT","41.8279699","12.5480362","","","0","","","","","","","","","F","","god","Roman","","","","","DARE","","","23839"
"1000099","Nymphaeum Septizodium","Nymphs","temple","","Campus Martius","Rome","Rome","423025","IT","41.885632","12.488719","","","0","","","","","","","","","F","","god","Roman","","","","","Vici.org","17962","","","","","","Q1234446"
"1000100","Temple of the Nymphs","Nymphs","temple","","","Rome","Rome","423025","IT","41.895163","12.478714","","","0","","","","","","","","","F","August 23","god","Roman","","","","","","","","","6079"
"1000101","Temple of Ops Opifera","Ops Opifera","temple","","Capitoline Hill","Rome","Rome","423025","IT","41.895163","12.478714","","","0","-250","-250-219","-250","-219","-3","","","","F","August 23","concept","Roman"
"1000102","Temple of Pales","Pales","temple","","Palatine Hill","Rome","Rome","423025","IT","","","","","","-267","-267-219","-267","-219","-3","","","","F","July 7","god","Roman"
"1000103","Pantheon","Pantheon","temple","","Campus Martius","Rome","Rome","423025","IT","41.89856","12.47685","354","N","0","","126","126","","2","","","","M/F","","god","Roman","","","","","Vici.org","7853","128044615","","5664","","Pantheon,_Rome","Q99309","","","","","700000158","419125SPan"
"1000104","Temple of Pax","Peace","temple","","","Rome","Rome","423025","IT","41.8926","12.4876","323","NW","0","","75","75","","1","","","","F","","concept","Roman","","","","","Orientation = Mars Ultor + 90","","","","","","Temple_of_Peace,_Rome","Q1456939","","","","","","419125SPax"
"1000105","Temple of the Penates","Penates","temple","","Velian Hill","Rome","Rome","423025","IT","41.892546","12.488707","","","1","","-292-219","-292","-219","-3","","","","M","October 14","god","Roman","","no","","","Location following Ziolkowski1992","","","","10557"
"1000106","Temple of Portunus","Portunus","temple","forum","Forum Boarium","Rome","Rome","423025","IT","41.889232","12.480883","347","N","0","-292-260","-292-260","-292","-219","-3","","","","M","August 17","god","Roman","","","Stamper","","Vici.org; DARE","11602","494660670","22924","5932","rome/rome-photos/rome-temple-of-portunus","Temple_of_Portunus","Q849241","","","","","","419125SFoV"
"1000107","Temple of Quirinus","Quirinus","temple","","Quirinal Hill","Rome","Rome","423025","IT","41.904998","12.494201","125","SE","1","-325","-293","-293","","-3","","","","M","February 17","god","Roman","","no","","","Location following Ziolkowski1992","","524616090","","","","Temple_of_Quirinus","Q3983278"
"1000108","Temple of Robigo","Robigo","sanctuary","","","Rome","Rome","423025","IT","41.959271","12.447668","","","0","","","","","","","","","F","","nature","Roman","","","","","DARE","","423024","37158"
"1000109","Temple of Salus","Salus","temple","","Quirinal Hill","Rome","Rome","423025","IT","","","","","","-311","-303","-303","","-4","","","","F","August 5","concept","Roman"
"1000110","Temple of Saturn","Saturn","temple","forum","Forum","Rome","Rome","423025","IT","41.892468","12.484181","32","NE","0","","-498","-498","","-5","","","","M","December 17","god","Roman","","","","","Pleiades","15012","","","5644","","Temple_of_Saturn","Q746721","SaturnusAedes_1","saturntempel","","","","419125SSat"
"1000111","Temple of Sol","Sol","temple","","Campus Agrippae","Rome","Rome","423025","IT","41.9017","12.483152","","","1","","273","273","","3","600","","","M","December 25","nature","Roman","","no","","","","","217100040","","","","Temple_of_the_Sun_(Rome)","Q4536138"
"1000112","Temple of Sol and Luna","Sol, Luna","temple","","Circus Maximus","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","M/F","August 28","nature","Roman"
"1000113","Temple of Spes","Spes","temple","forum","Forum Holitorium","Rome","Rome","423025","IT","41.890962","12.480052","71","E","0","-258-257, -254, -249","-258-249","-258","-249","-3","","","","F","August 1","concept","Roman","","","","","","","","","10760","","","","","","","","","419125SSpe"
"1000114","Temple of Summanus","Summanus","temple","","Circus Maximus","Rome","Rome","423025","IT","41.88619868","12.4851202","","","1","","-278-275","-278","-275","-3","","","","M","June 20","god","Roman","","","","","","","408534259"
"1000115","Temple of Sybil","Sybil","temple","","","Tivoli","Tibur","423081","IT","41.966809","12.800843","","","0","","-150-125","-150","-125","-2","","","","F","","god","Roman","","","Stamper","","Vici.org"
"1000116","Temple of Tellus","Tellus","temple","","Carinae (Esquiline Hill)","Rome","Rome","423025","IT","41.89238","12.490058","","","1","-268","-268-219","-268","-219","-3","","","","F","December 13","nature","Roman","","no","","senate","Location following Ziolkowski1992","","","","","","Temple_of_Tellus","Q16612739","","","","","","419125STel"
"1000117","Temple of the Tempestates","Tempestates","temple","","extra Portam Capenam","Rome","Rome","423025","IT","","","","","","-259","-259-240","-259","-240","-3","","","","F","December 23","nature","Roman"
"1000118","Temple","","temple","","Campus Martius (S. Salvatore in Campo)","Rome","Rome","423025","IT","41.893685","12.474003","121","SE","0","","","","","","","","","M","","","Roman","","","","","","","","","3467479"
"1000119","Temple of Tiberinus","Tiberinus","temple","","Tiber Island","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","M","December 8","nature","Roman"
"1000120","Tomb of Cecilia Metella","","tomb","","Via Appia","Rome","Rome","423025","IT","41.852196","12.520981","","","0","","","","","","","","","F","","","Roman","","","","","Pleiades; vici.org","","423064"
"1000121","Temple of Veiovis","Veiovis","temple","","Inter duos lucos","Rome","Rome","423025","IT","41.892776","12.483611","220","SW","0","","","","","","","","","M","March 7","god","Roman","","","","","Pleiades","17964","","","1319962","","","Q764141"
"1000122","Temple of Venus and Roma","Venus, Rome","temple","","","Rome","Rome","423025","IT","41.890812","12.490168","113","SE","0","","140-145","140","145","2","","","","F","","city, god","Roman","","","","","Pleiades","15008","","","7481","","Temple_of_Venus_and_Roma","Q430792","","","","","","419125SVeR"
"1000123","Temple of Venus Genetrix","Venus","temple","forum","Forum of Julius","Rome","Rome","423025","IT","41.8942","12.4848","130","SE","0","","-46","-46","","-1","","","","F","September 26","god","Roman","","","Blake","","Pleiades","","","","5656","","Temple_of_Venus_Genetrix","Q2459870","","","","","","419125SVeG"
"1000124","Temple of Venus Obsequens","Venus","temple","","Circus Maximus","Rome","Rome","423025","IT","","","","","","-295","-290","-290","","-3","","","","F","August 19","god","Roman"
"1000125","Temple of Venus Victrix","Venus","temple","","Campus Martius","Rome","Rome","423025","IT","41.895335","12.473014","90","E","0","","-55","-55","","-1","","","","F","","god","Roman","","yes","Stamper","senate","Pleiades; coords modified"
"1000126","Temple of the Divine Vespasian and the Divine Titus","Vespasian, Titus","temple","forum","Forum","Rome","Rome","423025","IT","41.892876","12.484081","119","SE","0","","","","","","","","","M","","emperor","Roman","","","","","Pleiades","15042","","","5643","","","Q731284","VespianusDivusTemplum_1"
"1000127","Temple of Vesta","Vesta","temple","forum","Forum","Rome","Rome","423025","IT","41.891792","12.486141","35","NE","0","","-575","-575","","-6","","","","F","","god","Roman","","","Stamper","","Pleiades","15010","","","8407","","Temple_of_Vesta","Q753791","VestaAedes_1","","","","","419125SVes"
"1000128","Temple of Vesta","Vesta","temple","","","Tivoli","Tibur","423081","IT","41.9667","12.8009","190","S","0","","early 1st c. BCE","-99","-75","-1","","","","F","","god","Roman","","","","","Pleiades","4381","","","11457","","Temple_of_Vesta,_Tivoli","Q1219688"
"1000129","Temple of Vica Pota","Vica Pota","temple","","Velian Hill","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","F","January 9","god","Roman"
"1000130","Temple of Victory","Victoria","temple","","Palatine Hill","Rome","Rome","423025","IT","41.889418","12.48521","219","SW","0","-305","-294","-294","","-3","","","","F","August 1","concept","Roman","","","Stamper","","Pleiades","","","","","","Temple_of_Victory","Q1517031","","","","","","419125SViT"
"1000131","Temple of Volcanus","Volcanus","temple","","Campus Martius","Rome","Rome","423025","IT","","","","","","","-292-219","-292","-219","-3","","","","M","August 23","god","Roman"
"1000132","Temple of Vortumnus","Vortumnus","temple","","Aventine Hill","Rome","Rome","423025","IT","","","","","","-264","-264-219","-264","-219","-3","","","","M","August 13","god","Roman"
"1000133","Temple of Moneta","Moneta","temple","","","Monte Cavo","Alban Mount","422826","IT","","","","","","","-168","-168","","-2","","","","F","June 1","god","Roman"
"1000134","Temple of Janus Quadrifons","Janus","temple","forum","Forum Transitorium","Rome","Rome","423025","IT","","","","","","","81-96","81","","1","","","","M","","god","Roman"
"1000135","Temple of Veiovis","Veiovis","temple","","Tiber Island","Rome","Rome","423025","IT","","","","","","","","","","","","","","M","","god","Roman"
"1000136","Temple of Aesculapius","Aesculapius","temple","","Esquiline","Rome","Rome","423025","IT","","","","","","","","","","","","","","M","","hero","Roman","","no"
"1000137","Capitolium","Jupiter, Juno, Minerva","temple","arx","","Ansedonia","Cosa","413107","IT","42.410911","11.286364","68","E","0","","","","","","","","","M/F","","god","Roman","","yes","","","","","387686949","","","","it=Tempio_di_Giove_(Cosa)","Q3983250"
"1000138","Capitolium","Jupiter, Juno, Minerva","temple","","","Cuma","Cumae","432808","IT","40.848488","14.057007","105","E","0","","26","","","","","","","M/F","","god","Roman","","yes","","","","14783"
"1000139","Capitolium","Jupiter, Juno, Minerva","temple","","","Verona","Verona","383816","IT","45.443872","10.996195","144","SE","0","","","","","","","","","M/F","","god","Roman","prostyle, hexastyle, periptero sine postico, 3 cellae"
"1000140","Capitolium","Jupiter, Juno, Minerva","temple","","","Sopron","Scarbantia","197501","HU","47.68489","16.58305","208","SW","0","","","","","","","","","M/F","","god","Roman"
"1000141","Capitolium","Jupiter, Juno, Minerva","temple","","","Istanbul","Constantinople","520998","TR","41.013342","28.956067","","","0","","330","330","","4","","","","M/F","","god","Roman","","no"
"1000142","Temple of Augustus","Augustus, Rome","temple","forum","","Pula","Pola","197448","HR","44.870213","13.841842","156","SE","0","","2 BCE - 14 CE","-2","14","-1","","","","M/F","","emperor, city","Roman","","yes","","","","","391553443","","","","Temple_of_Augustus,_Pula","Q770030"
"1000143","Temple of Augustus","","temple","","","Barcelona","Colonia Barcino","246343","ES","41.383351","2.177103","314","NW","0","","1st c. BCE","-99","0","-1","","","","M","","emperor","Roman","","yes","","","","","592223249","","","","Temple_of_Augustus,_Barcelona","Q3819019"
"1000144","Temple of Augustus","Augustus","temple","","","Pozzuoli","Puteoli","432815","IT","40.821276","14.120447","178","S","0","","","","","","","","","M","","emperor","Roman","","yes","","","","","390040629"
"1000145","Capitolium","Jupiter, Juno, Minerva","temple","","","Dahmani","Althiburos","324664","TN","35.873886","8.785101","43","NE","0","","","","","","","","","M/F","","god","Roman","","yes"
"1000146","Unknown","","temple","","","Dahmani","Althiburos","324664","TN","35.874468","8.785616","224","SW","0","","","","","","","","","","","","Roman","","yes"
"1000147","Temple of Minerva","Minerva","temple","","","Tebessa","Theveste","324831","DZ","35.404638","8.122492","121","SE","0","","","","","","","","","F","","god","Roman","","yes"
"1000148","Temple A","Apollo, Artemis, Aphrodite","temple","","","Goncalı","Laodicea on the Lycus","638955","TR","37.836269","29.109676","27","NE","0","","2nd c. CE","101","200","2","","","","M/F","","god","Roman","","yes","","","","18182"
"1000149","Temple of Trajan","Trajan","temple","","","Bergama","Pergamum","550812","TR","39.132812","27.183256","201","S","0","","2nd c. CE","101","200","2","","","","M","","emperor","Roman","","yes"
"1000150","Temple of Dionysus","Dionysus","temple","","","Bergama","Pergamum","550812","TR","39.132283","27.182573","166","S","0","","early 3rd c. CE","201","233","3","","","","M","","god","Roman","","yes"
"1000151","Temple of Consus","Consus","temple","","Aventine","Rome","Rome","423025","IT","","","","","","-272","-272","-272","-218","-3","","","","M","December 12","god","Roman","","no","Ziolkowski"
"1000152","Temple of Hercules","Hercules","temple","","ad portam collinam","Rome","Rome","423025","IT","","","","","","","","","-211","","","","","M","","hero","Roman","","no","Ziolkowski"
"1000153","Temple of Honos","Honor","temple","","extra portam collinam","Rome","Rome","423025","IT","41.906487","12.498676","","","0","","-292-219","-292","-219","-3","","","","M","July 14","concept","Roman","","no","Ziolkowski"
"1000154","Temple of Honos","Honor","temple","","ad Portam Capenam","Rome","Rome","423025","IT","","","","","","-233","-232-209","-232","-209","-3","-205","1000038","","F","July 17","concept","Roman","","no","Ziolkowski"
"1000155","Portonaccio Temple","Apollo","temple","","","Veio","Veii","423116","IT","42.021223","12.390661","97","E","0","","-510","-510","-510","-6","","","","M","","god","Etruscan","","yes","","","","23458","","","","","","","","","","","","420124SPoA"
"1000156","Temple","","temple","","","Great Chesterford","","79488","UK","52.07048","0.208052084","","","0","","","1","","1","350","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","1002"
"1000157","Harlow Roman Temple","","temple","","","Harlow","","79502","UK","51.790161","0.127094","115","SE","0","","last quarter 1st c. CE","76","100","1","late 4th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","1045","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=370088"
"1000158","Temple","","temple","","","Gosbecks","","79486","UK","51.86582","0.856901856","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","1106","","","","","http://www.pastscape.org.uk/hob.aspx?hob_id=384017"
"1000159","Temple","","temple","","","Stonea Grange","","79696","UK","52.52174","0.134535711","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","2042"
"1000160","Temple","","temple","","","Waste Management Park, Waterbeach, Cambridge","","","UK","52.2972","0.1791583","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","2068"
"1000161","Temple","","temple","","","Baldock","","79311","UK","51.99054","-0.184278987","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","3012"
"1000162","Temple","","temple","","","Wood End Lane/Buncefield Lane","","","UK","51.7593","-0.433190999","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","3031"
"1000163","Temple","","temple","","","Friars Wash, Redbourn","","","UK","51.81901","-0.404061466","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","73935","503058494","","","","","","","","","3073"
"1000164","Temple","","temple","","","Caistor St. Edmund","Venta","79735","UK","52.58692","1.304821414","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","4023"
"1000165","Temple","","temple","","A143 Scole-Stuston Bypass","Scole","Villa Faustini","79675","UK","52.36266","1.159824025","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","4031","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=389015"
"1000166","Temple","","temple","","","Crownthorpe, Wicklewood","","","UK","52.58352","1.080879369","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","4083"
"1000167","Temple","","temple","","","Lancing Down","","","UK","50.84807","-0.328010681","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","7006"
"1000168","Temple","","temple","","","Greenwich Park","","","UK","51.48127","0.001558654","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","8036"
"1000169","Temple-Mausoleum","","temple","","","Lullingstone","","79582","UK","51.36418","0.196533335","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9013"
"1000170","Temple","","temple","","","Castle Field, Worth","","","UK","51.25017","1.3458945","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9015"
"1000171","Temple-Mausoleum","","temple","","","Keston","","79544","UK","51.3505","0.028999999","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9016"
"1000172","Sanctuary complex","","temple","","","Springhead","Vagniacis","79729","UK","51.43066","0.32613761","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9020"
"1000173","Roadside settlement","","temple","","","Springhead","","","UK","51.4307","0.323981736","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9021"
"1000174","Temple","","temple","","","Thurnham","","","UK","51.2847","0.579052952","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9069"
"1000175","Temples","","temple","","","Richborough","Rutupiae","79664","UK","51.28995","1.329420998","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9106"
"1000176","Temple","","temple","","","Boxted, Upchurch","","","UK","51.36451","0.658099701","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","9126"
"1000177","Temple and temenos","","temple","","","Farley Heath","","","UK","51.193714","-0.496281","13","N","0","","","","","","early 5th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79459","","","","","","","","","10005"
"1000178","Roman Temple","","temple","","","Wanborough","","","UK","51.23794","-0.683091189","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79746","","","","","","","","","10027","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=250569"
"1000179","Temple","","temple","","","Church Field, Titsey","","","UK","51.27624","0.035920719","","","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","10035"
"1000180","Temple","","temple","","","Chanctonbury Ring","","","UK","50.89682","-0.381227592","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","11012"
"1000181","Temple","","temple","","Broadbridge","Bosham","","110448342","UK","50.83983","-0.852303555","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","11023"
"1000182","Temple","","temple","","Ratham Mill","Funtington","","","UK","50.85183","-0.852122691","","","1","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","11062"
"1000183","Octagonal Temple","","temple","","","Weycock Hill","","","UK","51.49287","-0.817942","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79755","","","","","","","","","12055","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=248004"
"1000184","Temple-Mausoleum","","temple","","Roman villa","Bancroft","","79312","UK","52.05657","-0.797733369","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","13002"
"1000185","Temple","","temple","","","Bourton Grounds","","","UK","51.99158","-0.939216473","90","E","0","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","13039"
"1000186","Temple","","temple","","","Chedworth","","79383","UK","51.81811","-1.91261855","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","14072","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=327595"
"1000187","Temple","","temple","","","Lydney Park","","79583","UK","51.720922","-2.558005","138","SE","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","14074"
"1000188","Temple","","temple","","","Uley","","","UK","51.6960311","-2.30516351","63","NE","1","","","","","","","","","M","","god","Romano-Celtic","","","The Rural Settlement of Roman Britain","","Perhaps dedicated to Mercury","","79726","","","","","","","","","14103","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=205240"
"1000189","Temple","","temple","","","Hayling Island","","79504","UK","50.82193","-0.972536725","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79504","","","","","","","","","15044","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=242295"
"1000190","Temple","","temple","","","Sansom's Platt","","","UK","51.86778","-1.343901034","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","16063"
"1000191","Temple","","temple","","","Woodeaton","","","UK","51.80893","-1.223670327","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79769","","","","","","","","","16093"
"1000192","Temple","","temple","","","Marcham/Frilford","","79470","UK","51.6633","-1.366780827","","","","","later 1st c. CE","51","100","1","early 5th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","16099","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=234025"
"1000193","Temple of Apollo Cunomaglos","Apollo Cunomaglos","temple","","","Nettleton","","","UK","51.49076","-2.257769643","","","","","mid/late 2nd c CE","151","400","2","late 4th c. CE","","","M","","god","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79609","","","","","","","","","17001","","","","","http://www.pastscape.org.uk/hob.aspx?hob_id=208294"
"1000194","Temple","","temple","","","Badbury","Vindocladia","79740","UK","50.82652","-2.057591749","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","20014","","","","","http://www.pastscape.org.uk/hob.aspx?hob_id=209560"
"1000195","Temple","","temple","","","Maiden Castle","","82240559","UK","50.69488","-2.46999813","","","","","4th c. CE","301","400","4","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","20035"
"1000196","Temple","","temple","","","Poundbury","","","UK","50.71896","-2.451285648","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","20060"
"1000197","Temple","","temple","","","Jordan Hill","","","UK","50.63755","-2.427115997","179","S","","","","69","79","1","4th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79540","","","","Jordan_Hill_Roman_Temple","Q6276614","","","","20079"
"1000198","Temple","","temple","","","Brean Down","","","UK","51.32421","-3.015511638","","","","","4th c. CE","340","","4","late 4th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79351","","","","","","","","","21004","","","","","http://www.pastscape.org.uk/hob.aspx?hob_id=191317"
"1000199","Temple","","temple","","","Henley Wood","","","UK","51.3831","-2.801914168","","","","","4th c. CE","301","400","4","late 4th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79507","","","","","","","","","21047"
"1000200","Temple","","temple","","Pagans Hill","Chew Stoke","","","UK","51.36073","-2.637358019","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","Pagans_Hill_Roman_temple","Q7124196","","","","21106"
"1000201","Temple","","temple","","","Lamyatt Beacon","","79554","UK","51.12394","-2.473626892","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","21127","","","","","https://www.pastscape.org.uk/hob.aspx?hob_id=199898"
"1000202","Temple","","temple","","","Redhill, Ratcliffe on Soar","","","UK","52.86942","-1.269562233","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","461726240","","","","","Q17646230","","","","25035"
"1000203","Villa temple","","temple","","","Cosgrove","","79404","UK","52.07176","-0.841971487","","","","","late 2nd c.","167","","2","5th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","26043"
"1000204","Religious complex/town","","temple","","","Thistleton","","79712","UK","52.74453","-0.65474716","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","27005"
"1000205","Temple","","temple","","Grimstock Hill","Coleshill","","","UK","52.51183","-1.714308514","","","","","","120","","2","4th c. CE","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","79397","","","","","","","","","32006"
"1000206","Temples","","temple","","","Maryport","Alauna","89097","UK","54.72287","-3.489841344","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","41043"
"1000207","Temple","","temple","","","Great Bulmore","","972561590","UK","51.61875","-2.927248119","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","43021"
"1000208","Temple","","temple","","","Caersws","","79363","UK","52.5169","-3.428691514","","","","","","","","","","","","","","","Romano-Celtic","","","The Rural Settlement of Roman Britain","","","","","","","","","","","","","45019"
"1000209","Temple of Saturn","Saturn","temple","","","Dougga","Thugga","315223","TN","36.42555","9.22063","109","E","0","","","","","","","","","M","","god","Roman","","","","","","11588"
"1000210","Temple of Saturn","Saturn","temple","","","El Fahs","Thuburbo Majus","315220","TN","36.400753","9.907412","132","SE","0","","","","","","","","","M","","god","Roman","","","","","","31251"
"1000211","Temple of Saturn","Saturn","temple","","","Tiddis","Tiddis","305167","DZ","36.463333","6.483889","75","E","0","","","","","","","","","M","","god","Roman"
"1000212","Temple of Hercules","Hercules","temple","","","Amman","Philadelphia","697728","JO","31.9538","35.9349","76","E","0","","","162","","2","166","","","M","","hero","Roman","","","Wikipedia","","","","","","","","Temple_of_Hercules_(Amman)","Q20423672"
"1000213","Temple of Herakles","Hercules","temple","","","Agrigento","Akragas","462086","IT","37.290252","13.586221","89","E","0","","","-599","-500","-6","","","","M","","hero","Greek","","yes","Wikipedia","","","","","","","","Temple_of_Heracles,_Agrigento","Q3983242"
"1000214","Temple of Hera Lakinia","Juno","temple","","","Agrigento","Akragas","462086","IT","37.288662","13.600197","82","E","0","","ca. 450 BCE","-475","-425","-5","","","","F","","god","Greek","","yes","Wikipedia","","","","","","","","Temple_of_Hera_Lacinia","Q3983262"
"1000215","Temple of Concord","","temple","","","Agrigento","Akragas","462086","IT","37.289747","13.592005","89","E","0","","ca. 440-430 BCE","-440","-430","-5","","","","","","concept","Greek","","yes","Wikipedia","","","","","","","","Temple_of_Concordia,_Agrigento","Q3983202"
"1000216","Temple of Asclepius","","temple","","","Agrigento","Akragas","462086","IT","37.282531","13.589582","89","E","0","","late 5th c. BCE","-425","-400","-5","","","","","","hero","Greek","","yes","Wikipedia"
"1000217","Temple of Olympian Zeus","Jupiter","temple","","","Agrigento","Akragas","462086","IT","37.290982","13.584423","77","E","0","","5th c. BCE","-499","-400","-5","","","","M","","god","Greek","","yes","Wikipedia","","","","","","","","Temple_of_Olympian_Zeus,_Agrigento","Q2000309"
"1000218","Temple of Hephaistos","Vulcan","temple","","","Agrigento","Akragas","462086","IT","37.292956","13.578769","86","E","0","","ca. 430 BCE","-440","-420","-5","","","","M","","god","Greek","","yes","Wikipedia"
"1000219","Sacellum","","temple","","","Agrigento","Akragas","462086","IT","37.292956","13.578769","82","E","0","","ca. 530-520 BCE","-530","-520","-6","","","","","","","Greek","","yes","Wikipedia"
"1000220","Temple of the Dioscuri","","temple","","","Agrigento","Akragas","462086","IT","37.291344","13.581507","83","E","0","","mid-5th c. BCE","-475","-425","-5","","","","","","hero","Greek","","yes","Wikipedia"
"1000221","Temple L","","temple","","","Agrigento","Akragas","462086","IT","37.291043","13.581401","77","E","0","","late 5th c. BCE","-425","-400","-5","","","","","","","Greek","","yes"
"1000222","Temple of Demeter","","temple","","","Agrigento","Akragas","462086","IT","37.299241","13.603379","123","SE","0","","ca. 480-470 BCE","-480","-470","-5","","","","","","god","Greek","","yes"
"1000223","Temple of Isis","","temple","","","Agrigento","Akragas","462086","IT","37.298272","13.589222","167","S","0","","late 1st c. BCE","-25","1","-1","","","","","","god","Roman","","yes"
"1000224","Temple of Poseidon","Neptune","temple","","","Sounio","Sounion","580107","GR","37.650153","24.024573","103","E","0","","444-440 BCE","-444","-440","-5","","","","M","","god","Greek","Peripteral Hexastyle","yes","Wikipedia","","","","","","","","Temple_of_Poseidon_at_Sounion","Q49819204","","","","","","377240SSou"
"1000225","Temple of Athena","Minerva","temple","","","Sounio","Sounion","580107","GR","37.652933","24.027015","98","E","0","","470 BCE","470","470","5","1st c. CE","","","F","","god","Greek","","yes","","","","","","","","","","Q24204542","","","","","","377240SAth"
"1000226","Heroon of Phrontis","Phrontis","temple","","","Sounio","Sounion","580107","GR","37.653068","24.02716","102","E","0","","5th c. BCE","-499","-400","-5","","","","M","","hero","Greek","","yes"
"1000227","Capitolium","Jupiter, Juno, Minerva","temple","","","Terracina","Tarracina","433143","IT","41.29215","13.248628","224","SW","0","","","","","","","","","M/F","","god","Roman","Tuscan tripartite","yes","Wikipedia","","","19795","","","","","","Q30524229"
"1000228","Tempio Maggiore","","temple","","","Terracina","Tarracina","433143","IT","41.291923","13.248411","132","SE","0","","","","","","","","","","","","Roman","","yes","PECS","","","19797"
"1000229","Temple of Apollo","Apollo","temple","","","Pompei","Pompeii","433032","IT","40.749257","14.484377","155","SE","0","","","","","","","","","M","","god","","","yes","Vici.org","","","4349","780913480","","","","Temple_of_Apollo_(Pompeii)","Q2699249"
"1000230","Temple of Bellona","Bellona","temple","","","Ostia Antica","Ostia","422995","IT","41.752632","12.291518","292","W","0","","117-138","117","138","2","","","","F","","god","Roman","","","Vici.org","","","4380","","","","","Temple_of_Bellona,_Ostia","Q3983235","","","","","","","","","https://www.ostia-antica.org/regio4/1/1-4.htm"
"1000231","Tharros","","temple","","","San Giovanni di Sinis","","472032","IT","39.873825","8.440263","","","0","","","","","","","","","","","","","","","Vici.org","","","7846"
"1000232","Temple of Juno","Juno","temple","","","","Gabii","422932","IT","41.887016","12.71593","154","SE","0","","","","","","","","","F","","god","Roman","","yes","Vici.org","","","7912","377820068"
"1000233","Temple of Antas (Punic)","Sid Addir","temple","","","Fluminimaggiore","Metalla","471971","IT","39.393952","8.500437","113","SE","0","","Late 5th c. BCE","-450","-401","-5","","1000781","","M","","god","Punic","","yes","Vici.org","","","8129","","","","","Tempio_di_Antas","Q689104","","","","","","394085SAdd"
"1000234","Punico-Roman Temple","","temple","","","Cagliari","Caralis","471899","IT","39.222012","9.106047","","","0","","","","","","","","","","","","","","","Vici.org","","","8476"
"1000235","Capitolium","Jupiter, Juno, Minerva","temple","forum","","Brescia","Brixia","383603","IT","45.539905","10.225802","187","S","0","","73 CE","73","73","1","4th c. CE","","","M/F","","god","Roman","","yes","Vici.org","","Built by Vespasian in AD 73","8480","444468888","","","","Capitolium_of_Brixia","Q3657072"
"1000236","Temple of Jupiter","Jupiter","temple","","","Bidoni","","","IT","40.121441","8.94209","","","0","","","","","","","","","","","god","","","","Vici.org","","","8492"
"1000237","Temple B","","temple","","","Pietrabbondante","","433025","IT","41.740016","14.386879","118","SE","0","","2nd half 2nd c. BCE","-149","-100","-2","1st. c. CE","","","","","","Samnite","","yes","Vici.org","","","10919"
"1000238","Temple of Hera Lacinia","Hera","temple","","","Capo Colonna","","452356","IT","39.02651","17.204949","","","0","","","","","","","","","","","god","","","","Vici.org","","","10966","452332"
"1000239","Temple A","Apollo","temple","urban sanctuary","","Pantanello","Metapontum","442658","IT","40.383713","16.82361","126","SE","0","","mid-5th c. BCE","-540","-520","-6","","","","M","","god","Greek","Doric","yes","","","Dates for second version"
"1000240","Temple of Venus Erycina","Venus","temple","","","","Segesta","462487","IT","37.941475","12.832296","84","E","0","","","","","","","","","F","","god","","","","Vici.org","","","11596","963441586","","","place/segesta/segesta-temple","it=Tempio_di_Segesta","Q3983280"
"1000241","Temple of Diana","","temple","","Lake Nemi","Ariccia","Aricia","422984","IT","41.723934","12.710217","","","0","","","","","","","","","","","god","","","","Vici.org","","","11609","422917","","","place/aricia","it=Tempio_di_Diana_(Nemi)","Q18590113","","","","","","417127SDiN"
"1000242","Western forum temple","","temple","forum","","","Carsulae","413065","IT","42.639541","12.557359","5","N","0","","","","","","","","","","","","Roman","","yes","","","","11625","721328707"
"1000243","Acropolis","","temple","acropolis","","Populonia","Populonium","403212","IT","42.988754","10.5092","","","0","","","","","","","","","","","","","","yes","Vici.org","","","11649"
"1000244","Temple of Fortuna","Fortuna","temple","","","Palestrina","Praeneste","423013","IT","41.840709","12.892591","195","S","0","","","","","","","","","","","concept","Italic","","Yes","Vici.org","","","11650","7963799","","","","Palestrina#Sanctuary_of_Fortuna_Primigenia","Q3949669"
"1000245","Temple of Minerva","Dioscuroi","temple","","","Assisi","Assisium","413037","IT","43.071224","12.614974","211","SW","0","","","","","","","","","M","","hero","Roman","","yes","Vici.org","","","11658","","","","","Temple_of_Minerva,_Assisi","Q11836"
"1000246","Temple of Athena","Athena","temple","","","Siracusa","Syracuse","462503","IT","37.05965","15.29354","","","0","","","","","","","","","F","","god","Greek","","","Vici.org","","Part of the structure is incorporated in Siracusa Cathedral","11869"
"1000247","Temple of Apollo","Apollo","temple","","","Siracusa","Syracuse","462503","IT","37.063938","15.29297","","","0","","","","","","","","","M","","god","Greek","","","Vici.org","","","11870"
"1000248","Temple of Diana Nemorensis","Diana","temple","","rural sanctuary","Nemi","Lake Nemi","422984","IT","41.724496","12.709257","214","SW","0","","end 4th - beg 3rd c BCE","-325","275","-4","","","","F","","god","Roman","","","","","","11609","422917","22227","","","Temple_of_Diana_(Nemi)","Q18590113","","","","","","417127SDiN"
"1000249","Temple of Venus, Baiae","Venus","temple","","","Bacoli","Baiae","432716","IT","40.816093","14.071485","","","0","","","","","","","","","F","","god","","","","Vici.org","","","13916"
"1000250","Temple of Diana, Baiae","Diana","temple","","","Bacoli","Baiae","432716","IT","40.819092","14.070563","","","0","","","","","","","","","","","god","","","","Vici.org","","","13917"
"1000251","Temple of Jupiter","Jupiter","temple","acropolis","","Cuma","Cumae","432808","IT","40.849385","14.051347","91","E","0","","6th c BCE","-599","-500","-6","","","","","","god","Greek","","yes","Vici.org","","","14781","","42938","","","","Q2185877"
"1000252","Temple of Apollo","Apollo","temple","acropolis","","Cuma","Cumae","432808","IT","40.848538","14.053502","42","NE","0","","","","","","","","","M","","god","","","","Vici.org","","","14782"
"1000253","Temple of Apollo","Apollo","temple","","","Lago d'Averno","Lake Avernus","432712","IT","40.839336","14.082209","","","0","","","","","","","","","M","","god","","","","Vici.org","","Lake Avernus was seen as an entrance to Hades","16310"
"1000254","Temple of Hera I","Hera","temple","urban sanctuary","","Paestum","Poseidonia","442733","IT","40.41927859","15.0054544","93","E","0","","","","","","","","","F","","god","Greek","Doric","yes","Vici.org","","","16774","608476833"
"1000255","Temple of Hera II","Hera","temple","urban sanctuary","","Paestum","Poseidonia","442733","IT","40.419971","15.0054544","93","E","0","","","","","","","","","F","","god","Greek","Doric","yes","Vici.org","","","16775","42219804"
"1000256","Sanctuary of Minerva","Minerva","temple","","","Breno","Civitas Cammunorum","383617","IT","45.954277","10.284884","","","0","","","","","","","","","F","","god","Roman","","yes","Vici.org","","","17499","","","","","Sanctuary_of_Minerva","Q3949899"
"1000257","Temple A","","temple","","","Grumento Nova","Grumentum","442603","IT","40.283588","15.905447","311","NW","0","","","","","","","","","","","","","","","Vici.org","","","17600"
"1000258","Temple B","","temple","","","Grumento Nova","Grumentum","442603","IT","40.283955","15.906185","","","0","","","","","","","","","","","","","","","Vici.org","","","17601"
"1000259","Temple C","","temple","forum","","Grumento Nova","Grumentum","442603","IT","40.285208","15.906916","37","NE","0","","","","","","","","","","","","","","","Vici.org","","","17602"
"1000260","Temple D","","temple","forum","","Grumento Nova","Grumentum","442603","IT","40.285797","15.907416","218","SW","0","","Claudian-Flavian era","41","96","1","","","","","","","Roman","","yes","Vici.org","","","17603"
"1000261","Oratorio di Falaride","","temple","","","Agrigento","Akragas","462086","IT","37.296696","13.58861","","","0","","","","","","","","","","","","","","","Vici.org","","","17664"
"1000262","Temple of Demeter","Demeter","temple","","","Terraseo","","","IT","39.20137","8.635581","100","E","0","","","","","","","","","","","god","","","","Vici.org","","","17725","","","","","","","","","","","","392863STer"
"1000263","Temple of Victory","Victory","temple","","","Imera","Himera","462244","IT","37.973946","13.82408","","","0","","","","","","","","","","","concept","","","","Vici.org","","","17910","37484455","","","battle/himera-480-bce","Temple_of_Victory_%28Himera%29","Q3983217"
"1000264","Capitolium","Jupiter, Juno, Minerva","temple","","","Ostia Antica","Ostia","422995","IT","41.754478","12.28806","150","SE","0","","","","","","","","","M/F","","god","Roman","","","Vici.org","","","17919"
"1000265","Nymphaeum","Nymphs","temple","","","Ostia Antica","Ostia","422995","IT","41.757095","12.295577","","","0","","","","","","","","","F","","god","Roman","","","Vici.org","","","17927"
"1000266","Temple of Rome and Augustus","Rome, Augustus","temple","","","Ostia Antica","Ostia","422995","IT","41.753574","12.288665","329","NW","0","","Tiberius","14","37","1","","","","M/F","","city, emperor","Roman","","yes","Vici.org","","","17928","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio1/forum/temprom.htm"
"1000267","Temple C","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.583158","12.825287","94","E","0","","540 BCE","-540","","-6","","","","","","","Greek","Peripteral Hexastyle","yes","Vici.org","","","17972","795363785","","5676","","Temple_C_(Selinus)","Q3983175"
"1000268","Temple A","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.582567","12.825334","97","E","0","","","","","","","","","","","","Greek","","yes","Vici.org","","","17974","","","5902"
"1000269","Temple B","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.582959","12.825719","94","E","0","","","","","","","","","","","","Greek","","yes","Vici.org","","","17975"
"1000270","Temple D","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.583687","12.825046","95","E","0","","","","","","","","","","","","Greek","","yes","Vici.org","","","17976","502577471","","4075946"
"1000271","Temple E","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.58662","12.834819","95","E","0","","","","","","","","","","","","Greek","","yes","Vici.org","","","17977","502577470","","5675","","Temple_E_(Selinus)","Q3983181"
"1000272","Temple F","","temple","","","Selinunte","Selinus","462489","IT","37.587279","12.834955","95","E","0","","","","","","","","","","","","Greek","","yes","Vici.org","","","17978","71706222","","12050","","Temple_F_(Selinus)","Q3983186"
"1000273","Temple G","","temple","","","Selinunte","Selinus","462489","IT","37.588183","12.834944","94","E","0","","520 BCE","-520","-450","-6","","","","","","","Greek","","yes","Vici.org","","","17979","283133307","","11044"
"1000274","Temple of Demeter","Demeter","temple","","","Selinunte","Selinus","462489","IT","37.586776","12.816947","65","NE","0","","","","","","","","","F","","god","Greek","","yes","Vici.org","","","17980","502577471","","","","","","","","","","","376128SDeM"
"1000275","Greek temple","","temple","","","Taranto","Tarentum","442810","IT","40.473709","17.233036","","","0","","","","","","","","","","","","","","","Vici.org","","","17981"
"1000276","Temple of Venus","Venus","temple","","","Tivoli","Tibur","423081","IT","41.944672","12.774768","","","0","","","","","","","","","F","","god","","","","Vici.org","","","17984"
"1000277","Temple of Demeter","Demeter","temple","","","Palazzolo Acreide","Acrae","462068","IT","37.057495","14.89367","","","0","","","","","","","","","F","","god","Greek","","","Vici.org","","","17988"
"1000278","Sanctuary","Hera","temple","","","Locri","Locri Epizephiri","452369","IT","38.211281","16.238371","","","0","","","","","","","","","","","","","","","Vici.org","","","17993","629225363"
"1000279","Tavole Palatine","Hera","temple","rural sanctuary","","Tavole Palatine","Metapontum","442658","IT","40.416053","16.816765","97","E","0","","520 BCE","-520","-510","-6","","","","F","","god","Greek","Doric","yes","Vici.org","","","17996","442611","21308","","","Tavole_Palatine","Q3981620","","","","","","404168SHer"
"1000280","Temple A","","temple","","","Santa Severa","Pyrgi","433061","IT","42.015227","11.963455","233","SW","0","","","","","","","","","","","","","","","Vici.org","","","17997"
"1000281","Temple B","","temple","","","Santa Severa","Pyrgi","433061","IT","42.015064","11.963823","233","SW","0","","","","","","","","","","","","","","","Vici.org","","","17998"
"1000282","Sanctuary of Apollo","","temple","","","Santa Severa","Pyrgi","433061","IT","42.014652","11.964618","","","0","","","","","","","","","M","","god","","","","Vici.org","","","17999"
"1000283","Temple of Venus Erycina","Venus","temple","","","Erice","Eryx","462201","IT","38.036556","12.583742","","","0","","","","","","","","","F","","god","","","","Vici.org","","","18316","","","","place/eryx"
"1000284","Talamonaccio","","temple","","Poggio Talamonaccio","Talamone","Telamon","403280","IT","42.551804","11.169796","","","0","","","","","","","","","","","","","","","Vici.org","","Etruscan/Roman temple","18371","254082752","","","","","","","","","","","426112STal"
"1000285","Cult Site","","temple","","","Monte S. Martino","","","IT","45.917473","10.817933","","","0","","","","","","","","","","","","","","","Vici.org","","Luogo die culto preromano e romano","18758","383713"
"1000286","Temple of Clitumnus","","temple","","","Pissignano","","","IT","42.842201","12.7569","","","0","","","","","","","","","","","","","","","Vici.org","","","19791","413140","","","","Temple_of_Clitumnus","Q3983167"
"1000287","Temple of Flora","","temple","","","Madonna della Libera","","","IT","41.305756","14.562722","","","0","","","","","","","","","F","","concept","","","","Vici.org","","","19792","","","","","it=Tempio_di_Flora_(Cerreto_Sannita)","Q3983249"
"1000288","Temple of the Dioscuri","","temple","","","Napoli","Neapolis","433014","IT","40.85144","14.25683","","","0","","","","","","","","","","","hero","","","","Vici.org","","","19793"
"1000289","Temple of Diana Tifatina","Diana","temple","","","Sant'Angelo In Formis","","","IT","41.118251","14.260432","256","W","0","","","-399","-300","-4","","","","F","","god","","","","Vici.org","","","19794","432813","22559"
"1000290","Temple","","temple","urban","","Bevagna","Mevania","413200","IT","42.934608","12.609744","345","N","0","","","","","","","","","","","","Roman","","yes","Vici.org","","","19799"
"1000291","Temple","","temple","forum","","Prata d'Ansidonia","Peltuinum","413247","IT","42.28349","13.623889","19","N","0","","","","","","","","","","","","","","yes","Vici.org","","","20380","109342090"
"1000292","Temple","","temple","","Castel Focognano","Pieve a Socano","","413254","IT","43.652519","11.787855","","","0","","","","","","","","","","","","","","","Vici.org","","Etruscan sanctuary","20522"
"1000293","Large Temple","","temple","","urban","Luni","Luna","403235","IT","44.065837","10.017376","205","SW","0","","Mid 2nd c. BCE","-176","","-2","-125","","","","","","Roman","Tuscan tripartite","yes","Vici.org","","","22164"
"1000294","Sanctuary","","temple","","Lake of the Idols","","","","IT","43.866669","11.683333","","","0","","","","","","","","","","","","Etruscan","","","Vici.org","","Lago degli Idoli","22684"
"1000295","Temple","","temple","","La Pieve-Molino","Montemignaio","","","IT","43.740524","11.621438","","","0","","","","","","","","","","","","","","","Vici.org","","Esp. beautifull are the capitals on the pillars, made by local and Lombard artrist - workers","22686"
"1000296","Temple of Athena","Athena","temple","","urban sanctuary","Paestum","Poseidonia","442733","IT","40.42453","15.005402","92","E","0","","","","","","","","","F","","god","Greek","Doric","yes","Vici.org","","","23309","375591100"
"1000297","Temple of Diana","","temple","","","Cefalú","Cephaloedium","462154","IT","38.038563","14.02475","","","0","","","","","","","","","","","god","","","","Vici.org","","","23670"
"1000298","Large Temple","","temple","","forum","Montalto di Castro","Vulci","413393","IT","42.419648","11.628294","194","S","0","","","","","","","","","","","","Etruscan","","","Vici.org","","","23894","48210386"
"1000299","Temple of Hercules","","temple","","","Montalto di Castro","Vulci","413393","IT","42.418175","11.631992","","","0","","","","","","","","","","","hero","Etruscan","","","Vici.org","","Small temple (sacellum) dedicated to Hercules","23895"
"1000300","Etrusco-Roman temple","","temple","","","Fiesole","Faesulae","413124","IT","43.808659","11.292974","111","E","0","","","","","","","","","","","","","","","Vici.org","","","24190"
"1000301","Asclepieion","Asclepius","temple","urban","","Noto","Heloros","462234","IT","36.8418188","15.10599398","43","NE","0","","","","","","","","","M","","hero","","","","Vici.org","","","24464"
"1000302","Temple of Jupiter","","temple","extra-urban","","Tuscolo","Tusculum","423108","IT","41.798317","12.704335","222","SW","0","","","","","","","","","","","god","","","yes","Vici.org","","","24929"
"1000303","Temple","","temple","","","","Megara Hyblaea","462307","IT","37.204262","15.175998","","","0","","","","","","","","","","","","","","","Vici.org","","Extra mural temple","25276"
"1000304","Temple","","temple","","","Paestum","Paestum","442733","IT","40.423512","15.006211","269","W","0","","","","","","","","","","","","","","","Vici.org","","Roman Temple - santuario romano","25323"
"1000305","Temple of Peace","","temple","","forum","Paestum","Paestum","442733","IT","40.421938","15.005541","177","S","0","","","","","","","","","","","concept","Roman","Corinthian","yes","Vici.org","","","25325"
"1000306","Agora sanctuary","","temple","","","Serra Orlando","Morgantina","462372","IT","37.430794","14.479367","","","0","","","","","","","","","","","","","","","Vici.org","","","25516"
"1000307","Temple of Demeter and Kore","","temple","","","Serra Orlando","Morgantina","462372","IT","37.43034","14.479649","","","0","","","","","","","","","","","god","","","","Vici.org","","Morgantia, Murgantia and Morgantium - temple","25518"
"1000308","Citadel","","temple","","","Serra Orlando","Morgantina","462372","IT","37.437569","14.48876","","","0","","","","","","","","","","","","","","","Vici.org","","Ruins of a temple","25626"
"1000309","Rock of Ceres","","temple","","","Enna","Henna","462236","IT","37.569225","14.289181","","","0","","","","","","","","","","","","","","","Vici.org","","Rock shrine of Demeter - Ceres.Rocca di Cerere","25627"
"1000310","Templi Ferali","","temple","","","Palazzolo Acreide","Acrae","462068","IT","37.05713","14.895352","","","0","","","","","","","","","","","hero","Greek","","","Vici.org","","Heroon. Temple dedicated to the cult of the dead heroes","25686"
"1000311","Temple","","temple","","","","Casmenae","462269","IT","37.076412","14.82563","","","0","","","","","","","","","","","","Greek","","","Vici.org","","Temple pre Kasmenai","25689","","","","","","","","","","","","371148SKas"
"1000312","Temple","","temple","","Monte Casale","","Casmenae","462269","IT","37.076519","14.826977","","","0","","","","","","","","","","","","","","","Vici.org","","Temple","25690"
"1000313","Temple of Hercules","Hercules","temple","","","Ostia Antica","Ostia","422995","IT","41.753782","12.286157","76","E","0","","4th qu. 2nd - 1st qu. 1st c. BCE","-124","-75","-2","","","","M","","hero","Roman","","yes","Vici.org","","","27354","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio1/15/15-5.htm"
"1000314","Serapeum","Serapis","temple","","","Ostia Antica","Ostia","422995","IT","41.753315","12.283876","","","0","","","","","","","","","M","","hero","","","","Vici.org","","","27355","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio3/17/17-4.htm"
"1000315","Temple of Ceres","Ceres","temple","","","Ostia Antica","Ostia","422995","IT","41.756348","12.291035","150","SE","0","","","","","","","","","F","","god","","","","Vici.org","","","27359","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/7/7-5.htm"
"1000316","Temple I of Four Small Temples","Venus","temple","","","Ostia Antica","Ostia","422995","IT","41.755735","12.290713","149","SE","0","","early 2nd c. BCE","-199","-150","-2","","","","F","","god","Roman","","yes","Vici.org","","Quatro Tempietti","27361","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/8/8-2.htm"
"1000317","Shrine of the Altar of the Twins","Romulus and Remus","temple","","","Ostia Antica","Ostia","422995","IT","41.756107","12.29099","","","0","","","","","","","","","","","","","","","Vici.org","","Regio II - Insula VII - Sacello dell'Ara dei Gemelli (II,VII,3)","27363","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/7/7-3.htm"
"1000318","Shrine to Jupiter","Jupiter","temple","","","Ostia Antica","Ostia","422995","IT","41.755539","12.290882","240","SW","0","","late 1st c. BCE","-50","-1","-1","","","","M","","god","","","","Vici.org","","","27364","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/8/8-4.htm"
"1000319","Temple of the Mensores","","temple","","","Ostia Antica","Ostia","422995","IT","41.75373","12.285083","170","S","0","","","","","","","","","","","","Roman","","yes","Vici.org","","Probably temple was dedicated to Ceres","27380","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio1/19/19-2.htm"
"1000320","Temple of Bona Dea","Bona Dea","temple","","","Ostia Antica","Ostia","422995","IT","41.750622","12.285329","99","E","0","","1st half 1st c. CE","1","50","1","","","","F","","god","Roman","","yes","Vici.org","","","27393","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio4/8/8-3.htm"
"1000321","Temple of the Fabri Navales","","temple","","","Ostia Antica","Ostia","422995","IT","41.752764","12.286052","104","E","0","","late 2nd c. CE","161","192","2","","","","","","","Roman","","yes","Vici.org","","","27409","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio3/2/2-1.htm"
"1000322","Temple of Isis","","temple","","","Isola Sacra","Portus","423012","IT","41.772774","12.255305","","","0","","","","","","","","","F","","god","Roman","","","Vici.org","","Isola Sacra","27423","","","","","","","","","","","","","","","http://www.ostia-antica.org/portus/s009.htm"
"1000323","Temple of Portumnus","","temple","","","Fiumicino","Portus","423012","IT","41.780937","12.27154","","","0","","","","","","","","","M","","god","Roman","","","Vici.org","","","27428","","","12016","","","","","","","","","","","","http://www.ostia-antica.org/portus/t021.htm"
"1000324","Round Temple","","temple","","","Ostia Antica","Ostia","422995","IT","41.75335","12.288047","329","NW","0","","2nd qu. 3rd c. CE","225","249","3","","","","","","","Roman","","yes","Vici.org","","","27444","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio1/11/11-1.htm"
"1000325","Temple of the Round Altar","","temple","","","Ostia Antica","Ostia","422995","IT","41.753693","12.286317","","","0","","","","","","","","","","","","","","","Vici.org","","","27449","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio1/15/15-6.htm"
"1000326","Temple with portico","","temple","","","Cuma","Cumae","432808","IT","40.847906","14.057575","16","N","0","","early 1st c. CE","1","25","1","","","","","","","Roman"
"1000327","Masseria del Gigante","","temple","","","Cuma","Cumae","432808","IT","40.847826","14.058799","280","W","0","","late 1st c. CE","75","100","1","","","","","","","Roman"
"1000328","Temple","","temple","","Sanctuary Alto da Vigia","Colares","","","PT","38.824299","-9.47159","","","","","","","","","","","","","","","","","","Vici.org","","","10721","256172","36997"
"1000329","Temple","","temple","","","Santiago do Cacém","Mirobriga Celticorum","256303","PT","38.010284","-8.683709","","","","","","","","","","","","","","","","","","Vici.org","","","10725"
"1000330","Temple","","temple","","","Évora","Ebora","256151","PT","38.572571","-7.907287","150","SE","","","1st c. CE","1","100","1","","","","","","","","","","Vici.org","","","10744","862813573","","","","Roman_Temple_of_Évora","Q737441"
"1000331","Temple","","temple","","S. Miguel de Mota","Bairro dos Andorinhos","","","PT","38.64328","-7.44304","","","","","","","","","","","","","","","","","","Vici.org","","","15153","256429","37000"
"1000332","Temple","","temple","","","Santana do Campo","Calanatia","","PT","38.76722","-8.03341","","","","","","","","","","","","","","","","","","Vici.org","","","15154","256042","37145"
"1000333","Temple","","temple","","","Cabeço de Fráguas","","","PT","40.419579","-7.22432","","","","","","","","","","","","","","","","","","Vici.org","","","15250","","40134"
"1000334","Temple","","temple","","Santuário da Ns. das Cabeças","","","","PT","40.339989","-7.41788","","","","","","","","","","","","","","","","","","Vici.org","","","15251","","40135"
"1000335","Temple","","temple","","Sra. do Granja","","","","PT","40.05547","-7.25653","","","","","","","","","","","","","","","","","","Vici.org","","","15252","","40136"
"1000336","Temple","","temple","","Santuário da Sra. do Almortão","Idanha a Nova","","","PT","39.907059","-7.17339","","","","","","","","","","","","","","","","","","Vici.org","","","15253","","40137"
"1000337","Temple","","temple","","Santuário de S. Pedro de Almuro","","","","PT","38.997742","-7.48622","","","","","","","","","","","","","","","","","","Vici.org","","","15254","","40138"
"1000338","Roman Temple","","temple","","","Vic","Auso","246212","ES","41.929189","2.256857","271","W","0","","2nd c. CE","101","200","2","","","","","","","Roman","","yes","Vici.org","","","10779","383321670","","","","Roman_temple_of_Vic","Q2294240"
"1000339","Temple","","temple","","","Córdoba","Colonia Patricia","256128","ES","37.884762","-4.77628","","","","","1st c. CE","1","100","1","","","","","","","","","","Vici.org","","","10794","415113284","","","","Roman_temple_of_Córdoba","Q1106385"
"1000340","Temple of Diana","","temple","","","Mérida","Emerita Augusta","256155","ES","38.91658","-6.34435","143","SE","","","","","","","","","","","","","Roman","","yes","Vici.org","","","11493","","","","place/augusta-emerita/augusta-emerita-photos/augusta-emerita-civic-forum"
"1000341","Temple","Trajan and the Roman Gods","temple","","","Alcántara","","","ES","39.721661","-6.891493","","","","","2nd c. CE","101","200","2","","","","M/F","","emperor, god","","","","Vici.org","","","14476","255966","25494","","","Roman_temple_of_Alcántara","Q7362337"
"1000342","Fortuna","Fortuna","temple","","","Los Baños de Fortuna","","","ES","38.209648","-1.11363","","","","","","","","","","","","F","","god","","","","Vici.org","","","15389","265899","36550"
"1000343","Temple","","temple","","Cerro de los Santos","Montealegre del Castillo","","","ES","38.732769","-1.27022","","","","","","","","","","","","","","","","","","Vici.org","","","15394","265862","37001","","","es=Cerro_de_los_Santos","Q5486840"
"1000344","Sanctuary","","temple","","Cancho Roano","Zalamea de la Serena","Iulipa","256236","ES","38.701099","-5.68604","","","","","","","","","","","","","","","","","","Vici.org","","","15498","","39956","","","es=Cancho_Roano","Q2060316"
"1000345","Temple","","temple","","Los Cuadriales","Burguillos del Cerro","","","ES","38.432659","-6.59005","","","","","","","","","","","","","","","","","","Vici.org","","","15552","256139","36995"
"1000346","Sanctuary of Santa Eulalia de Bóveda","","temple","","","Bóveda de Mera","","","ES","42.980151","-7.686026","","","","","","","","","","","","","","","","","","Vici.org","","","15822","236646","37167","","","es=Santa_Eulalia_de_Bóveda","Q3284580"
"1000347","Temple of Serapis","Serapis","temple","","","L'Escala","Emporiae","246382","ES","42.133911","3.121315","","","0","","","","","","","","","","","god","","","","Vici.org","","","17713"
"1000348","Forum Temple","","temple","forum","","L'Escala","Emporiae","246382","ES","42.132835","3.117041","156","SE","0","","","","","","","","","","","","","","","Vici.org","","","17714"
"1000349","Temple columns","","temple","","","Sevilla","Colonia Iulia Romula","256210","ES","37.400253","-5.993706","","","","","","","","","","","","","","","","","","Vici.org","","","23659"
"1000350","Temple Noviodunum","","temple","","","Jublains","Noiodounon Diablintum","69539","FR","48.26062","-0.498666","","","","","","","","","","","","","","","","","","Vici.org","","","429","","18750"
"1000351","Nymphaeum Aquae Segetae","Nymphs","temple","","","Sceaux-du-Gâtinais","Aquae Segetae","109330","FR","48.115402","2.622707","","","0","","","","","","","","","F","","god","","","","Vici.org","","","4326","","7863"
"1000352","Temple","","temple","","","Sanxay","","138575","FR","46.496559","-0.024869","85","E","","","2nd c. CE","101","200","2","","","","","","","Gallo-Roman","","","Vici.org","","","6364","","","","","","","","","","","","","","","https://www.tourisme-vienne.com/en/activite/291/site-gallo-romain-de-sanxay"
"1000353","Maison Carrée","","temple","","","Nîmes","Nemausus","148142","FR","43.838333","4.356111","349","N","0","","","","","","","","","","","","","","","Vici.org","","","7858","","39300","","place/nemausus-nimes/nemausus-nimes-maison-carree","Maison_Carrée","Q677659"
"1000354","Small Twin Temple","","temple","","","Saint-Rémy-de-Provence","Glanum","148093","FR","43.773114","4.832766","80","E","0","","20-15 BCE","-20","-15","-1","Last quarter 3rd c. CE","","","","","","","","yes","Vici.org","","","7903"
"1000355","Temple","","temple","","","Pouillé","Tasciaca(?)","138608","FR","47.324047","1.299076","","","0","","","","","","","","","","","","","","","Vici.org","","","8017","","20524"
"1000356","Roman Temple","","temple","","","Orange","Colonia Arausio","148054","FR","44.135654","4.807766","","","0","","","","","","","","","","","","","","","Vici.org","","","8511"
"1000357","Temple of Mercury","Mercury","temple","","","Paris","Lutetia","109126","FR","48.843395","2.327117","","","0","","","","","","","","","M","","god","","","","Vici.org","","","9849"
"1000358","Temple 'le Palais'","","temple","","","Alba-la-Romaine","Alba Helviorum","167629","FR","44.561203","4.600079","","","0","","","","","","","","","","","","","","","Vici.org","","","10164"
"1000359","Temple of Augustus and Livia","","temple","","","Vienne","Colonia Vienna","167719","FR","45.525478","4.874246","90","E","0","","","","","","","","","M/F","","emperor, family","","","yes","Vici.org","","","10170","306618381","202070","","","Temple_of_Augustus_and_Livia","Q3517516"
"1000360","Temple of Cybele","","temple","","","Vienne","Colonia Vienna","167719","FR","45.524319","4.875925","107","E","0","","","","","","","","","F","","god","","","yes","Vici.org","","","10172"
"1000361","Temple of Diana","Diana","temple","","","Roppeviller","","","FR","49.103539","7.52761","","","0","","","","","","","","","F","","god","","","","Vici.org","","","10354"
"1000362","Temple of Diana","Diana","temple","","","Nîmes","Nemausus","148142","FR","43.839947","4.348574","","","0","","","","","","","","","F","","god","","","","Vici.org","","","10622","439736209","393010"
"1000363","Sanctuary","","temple","","","Le Vieil-Évreux","","","FR","49.003063","1.235978","","","0","","","","","","","","","","","","","","","Vici.org","","","10640","109007","","","","","Q2243148"
"1000364","Temple of Mercury","Mercury","temple","","","Niederbronn-les-Bains","","109209","FR","48.960583","7.616738","","","0","","","","","","","","","M","","god","","","","Vici.org","","","10648","","39152"
"1000365","Sanctuary","","temple","","","Villards-d'Héria","","","FR","46.423141","5.742032","","","0","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","10659","177659"
"1000366","Sanctuary","","temple","","Mont Rivel","Équevillon","","","FR","46.76136","5.922335","","","0","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","10661","177583"
"1000367","Sanctuary","","temple","","","Flaviers - Mouzon","Mosomagus","109183","FR","49.580894","5.105447","","","0","","","","","","","","","","","","","","","Vici.org","","","10663","","20618"
"1000368","Temple of Mercury","","temple","","","Izernore","Isarnodurum","177545","FR","46.2234","5.558579","","","0","","","","","","","","","","","","","","","Vici.org","","","10667","","20105"
"1000369","Temple","","temple","","Fâ","Barzan","Novioregum","138496","FR","45.535458","-0.879348","99","E","","","","","","","","","","","","","Gallo-Roman","","yes","Vici.org","","","10672"
"1000370","Roman temple of Château-Bas","","temple","","Vineyard Château-Bas","Vernègues","","","FR","43.681936","5.197151","327","NW","0","","1st BCE","-99","-9","-1","","","","","","","Roman","","yes","Vici.org","","","10684","148046","18074","","","fr=Temple_romain_de_Château-Bas","Q516783","","","","","","","","","http://www.chateaubas.com/en/pages/history/temple.html"
"1000371","Temple of Apollo","","temple","","","Riez","Alebaece Reiorum Apollinarium","157805","FR","43.817055","6.088223","","","0","","","","","","","","","M","","god","","","","Vici.org","","","10697","","","","","fr=Colonnes_de_Riez","Q1272940"
"1000372","Forum Temple","","temple","forum","","Saint-Bertrand-de-Comminges","Lugdunum Convenarum","246477","FR","43.029742","0.572945","","","0","","","","","","","","","","","","","","","Vici.org","","","10770"
"1000373","Temple","","temple","","","Eu","Augusta Ambianorum","108771","FR","50.021584","1.462042","","","0","","","","","","","","","","","","","","","Vici.org","","","10923","","13746"
"1000374","Temple complex","","temple","","Les Vaux de la Celle","Genainville","Petromantalum(?)","","FR","49.120399","1.771297","","","0","","","","","","","","","","","","","","","Vici.org","","","11313","109004","18747"
"1000375","Temple of Mars","Mars","temple","","Haut Bécherel","Corseul","Civitas Coriosolitum","69507","FR","48.471673","-2.14693","99","E","0","","1st c CE","51","100","1","end of 3rd c. CE","","","M","","god","Gallo-Roman","","yes","Vici.org","","","11360","636775194","20763","","","fr=Temple_de_Mars_(Corseul)","Q14628539"
"1000376","Temple of Janus","Janus","temple","","","Autun","Augustodunum","177460","FR","46.96125","4.288465","","","0","","","","","","","","","M","","god","","","","Vici.org","","","11367","","207950","","","Temple_of_Janus_(Autun)","Q1526555"
"1000377","Sanctuary","","temple","","","Châteaubleau","","","FR","48.593163","3.109161","","","0","","","","","","","","","","","","","","","Vici.org","","","11418","108879","2130"
"1000378","Temple","","temple","","Cherré","Aubigné-Racan","","492111677","FR","47.660224","0.235457","74","E","0","","","","","","","","","","","","","","","Vici.org","","","11881","","393800"
"1000379","Temple","","temple","","","Saint-Marcel","Argentomagus","138192","FR","46.599777","1.51518","","","0","","","","","","","","","","","","","","","Vici.org","","","11950"
"1000380","Tour de Vesone","","temple","","","Périgueux","Vesunna","138650","FR","45.179405","0.714345","","","0","","","","","","","","","","","","","","","Vici.org","","","11979","","206160","","","","Q3533474"
"1000381","Temple","","temple","","","Offemont","","","FR","47.658772","6.866085","","","0","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","14562","","170040"
"1000382","Temple","","temple","","forêt Halatte","Ognon","","","FR","49.242058","2.625384","","","0","","","","","","","","","","","","","","","Vici.org","","","14563","335533616","18751"
"1000383","Temple","","temple","","","Dax","Aquae Terebellicae","246173","FR","43.709648","-1.052306","","","","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","14566","","206190","","","","Q3517676"
"1000384","Sanctuary","","temple","","","Margerides","","","FR","45.450756","2.426149","","","0","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","14568","138447","16974"
"1000385","Temple of Mercury","","temple","","Forêt de Tannière","Archettes","","","FR","48.131313","6.57349","","","0","","","","","","","","","","","god","","","","Vici.org","","","14571","","20758"
"1000386","Tour de Grisset","","temple","","","Fréteval","","","FR","47.896442","1.183712","","","0","","","","","","","","","","","","","","","Vici.org","","","14574","138623","18152"
"1000387","Sanctuary of Mercury","Mercury","temple","","Donon","Grandfontaine","","","FR","48.512527","7.164421","","","0","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","14577","822279250","15774"
"1000388","Temple Cathédrale St Jean","","temple","","","Alès","","147988","FR","44.123901","4.0761","","","0","","","","","","","","","","","","","","","Vici.org","","","14586"
"1000389","Fanum","","temple","","","Civaux","Exidualum","138351","FR","46.444412","0.664659","","","0","","","","","","","","","","","","","","","Vici.org","","","14591"
"1000390","Temple","Apollo Grannus","temple","","","Grand","Grannum","109016","FR","48.383953","5.48573","","","0","","","","","","","","","M","","god","Roman","","","Vici.org","","","14743","","7783"
"1000391","Temple complex","","temple","","","Castelnau-Montratier","","138277","FR","44.272472","1.294166","","","0","","","","","","","","","","","","","","","Vici.org","","","15033","","17730"
"1000392","Sanctuary","","temple","","","Drevant","Derventum","138327","FR","46.694786","2.520366","","","0","","","","","","","","","","","","","","","Vici.org","","","16293"
"1000393","Fanum","","temple","","","Bennecourt","","","FR","49.04372","1.570312","","","0","","","","","","","","","","","","","","","Vici.org","","","16326"
"1000394","Sanctuary","","temple","","","La Bâtie-Montsaléon","Mons Seleucus","167836","FR","44.456219","5.748653","","","0","","","","","","","","","","","","","","","Vici.org","","","16332"
"1000395","Nymphaeum","Nymphs","temple","","","Gennes","Geinum","138371","FR","47.337536","-0.232876","","","","","","","","","","","","F","","god","","","","Vici.org","","","16398","","393910"
"1000396","Summit Sanctuary","Jupiter","temple","","","Mont Sacon","Nistos","","FR","42.981285","0.537025","","","0","","","","","","","","","","","","","","","Vici.org","","","16568","246520","18233"
"1000397","Temple","","temple","","","Saint-Pé-d'Ardet","","","FR","42.983734","0.669335","","","0","","","","","","","","","","","","","","","Vici.org","","","16569","","20154"
"1000398","Temple","","temple","","","Saint-Plancard","","","FR","43.171619","0.576446","","","0","","","","","","","","","","","","","","","Vici.org","","","16577","","20156"
"1000400","Temple","","temple","","","Vaugrenier","","","FR","43.623562","7.128598","","","0","","","","","","","","","","","","","","","Vici.org","","","16608","157943","17386"
"1000401","Temple","","temple","","","Rognes","","","FR","43.663326","5.347199","","","0","","","","","","","","","","","","","","","Vici.org","","","16612","148169","18072"
"1000402","Temple Sainte Eulalie","","temple","","Puech Caut","Lapanouse-de-Cernon","","127288246","FR","43.970982","3.099904","281","W","0","","Later Augustan","1","14","1","end of 2nd. c. CE","","","","","","","","","Vici.org","","","16632","","18276"
"1000403","Temple","","temple","","","La Réole","","","FR","44.586464","-0.029494","","","","","","","","","","","","","","","","","","Vici.org","","","16660","","39399"
"1000404","Fanum of Aron","","temple","","","Aurillac","","","FR","44.926109","2.440561","","","0","","","","","","","","","","","","","","","Vici.org","","","16667","138193","8396","","","","Q3066668"
"1000405","Temple","","temple","","Le Combalou","Roquefort-sur-Soulzon","","","FR","43.974461","2.987631","","","0","","","","","","","","","","","","","","","Vici.org","","","16700","","19340"
"1000406","Tour de Eysses","","temple","","","Villeneuve-sur-Lot","Excisum","138349","FR","44.419743","0.721229","","","0","","","","","","","","","","","","","","","Vici.org","","","16703"
"1000407","Temple","","temple","","Châtelet","Saint-Désirat","","","FR","45.249901","4.79432","","","0","","","","","","","","","","","","","","","Vici.org","","","16715","","39298"
"1000408","Temple","","temple","","","Brion","Nouiomagos","138492","FR","45.282433","-0.838219","","","","","","","","","","","","","","","","","","Vici.org","","","16717","","20175"
"1000409","Sanctuary","","temple","","Rajat","Murol","","","FR","45.591797","2.948923","","","0","","","","","","","","","","","","","","","Vici.org","","","16745","","20137"
"1000410","Temple of Diana","","temple","","","Aix-les-Bains","Aquae Sextiae","167650","FR","45.688812","5.914636","","","0","","","","","","","","","","","god","","","","Vici.org","","","16758"
"1000411","Temple of Cybele","","temple","","","Lyon","Colonia Lugdunum","167717","FR","45.759602","4.818432","","","0","","","","","","","","","","","god","","","","Vici.org","","","16770","","39462"
"1000412","Temple","","temple","","Côtes de Clermont","Blanzat","","","FR","45.806771","3.078248","","","0","","","","","","","","","","","","","","","Vici.org","","","16776"
"1000413","Temple of Mercury","","temple","","Puy de Dôme","Orcines","","","FR","45.771854","2.964456","103","E","0","","","","","","","","","","","god","","","","Vici.org","","","16779","138464","17715","","","fr=Temple_de_Mercure_(puy_de_Dôme)","Q3517583"
"1000414","Temple","","temple","","","Chassenon","Cassinomagus","138275","FR","45.849098","0.767463","","","0","","","","","","","","","","","","","","","Vici.org","","","16795","","39339"
"1000415","Fanum","Puy Lautard","temple","","","Saint-Pardoux-Morterolles","","","FR","45.929768","1.869932","","","0","","","","","","","","","","","","","","","Vici.org","","","16805","138527","18100"
"1000416","Temple","","temple","","Puy-de-Joue","Saint-Goussaud","","","FR","46.033264","1.569519","","","0","","","","","","","","","","","","","","","Vici.org","","","16808","138556","37144"
"1000417","Temple","","temple","","Chez Rigros, Saint-Pardoux","Saint-Pardoux","","","FR","46.07193","1.3012","","","0","","","","","","","","","","","","","","","Vici.org","","","16814","","39297"
"1000418","Sanctuary of Mars Mullo","","temple","","","Allonnes","","","FR","47.968758","0.166472","","","0","","","","","","","","","","","god","Gallo-Roman","","","Vici.org","","","16820","","20731"
"1000419","Twin Temples","","temple","","Masamas","Saint-Léomer","","","FR","46.399273","0.972868","","","0","","","","","","","","","","","","","","","Vici.org","","","16834","138451","17638"
"1000420","Temple","","temple","","","Villards-d'Héria","","177659","FR","46.415447","5.752648","","","0","","","","","","","","","","","","","","","Vici.org","","","16835","","39331"
"1000421","Sanctuary","","temple","","Tours Mirandes","Vendeuvre-du-Poitou","","138624","FR","46.740086","0.293782","106","E","0","","Late 1st c. CE","51","100","1","","","","","","","Gallo-Roman","","yes","Vici.org","","","16850"
"1000422","Temple","","temple","","Les Fons Clairins","Uzay-le-Venon","","","FR","46.813335","2.411545","","","0","","","","","","","","","","","","","","","Vici.org","","","16855","","20624"
"1000423","Sanctuary","","temple","","Moulin des Gaumins","Thaumiers","","","FR","46.81356","2.639874","","","0","","","","","","","","","","","","","","","Vici.org","","","16856","138615","17703"
"1000424","Temple","","temple","","Le Bioulet","Pupillin","","","FR","46.869949","5.7476","","","0","","","","","","","","","","","","","","","Vici.org","","","16861","","39459","","","","Q15648078"
"1000425","Sanctuary of Alléant","","temple","","","Baugy","","138216","FR","47.0793","2.749274","","","0","","","","","","","","","","","","","","","Vici.org","","","16865"
"1000426","Temple","","temple","","La Touratte","Dun-sur-Auron","","","FR","46.903824","2.548355","","","0","","","","","","","","","","","","","","","Vici.org","","","16868","","20622"
"1000427","North temple","","temple","","Pied de Bourges","Clion","Claudiomagus","138299","FR","46.947024","1.229261","90","E","0","","","","","","","","","","","","Gallo-Roman","","no","Vici.org","","","16874","","20503"
"1000428","Sanctuaries","","temple","","","Boncourt-le-Bois","","","FR","47.139778","5.001985","","","0","","","","","","","","","","","","","","","Vici.org","","","16892"
"1000429","Temple","","temple","","Fourneaux","Montreuil-Bellay","","","FR","47.102268","-0.08869","","","","","","","","","","","","","","","","","","Vici.org","","","16901","138471","17457"
"1000430","Temple","","temple","","","Chênehutte-Trèves-Cunault","","","FR","47.305702","-0.161236","","","","","","","","","","","","","","","","","","Vici.org","","","16920","","20780"
"1000431","Temple","","temple","","","Neuvy-sur-Barangeon","","","FR","47.307056","2.297843","","","0","","","","","","","","","","","","","","","Vici.org","","","16921","138484","20623"
"1000432","Sanctuary","","temple","","","Petit-Mars","","","FR","47.390633","-1.468336","","","","","","","","","","","","","","","","","","Vici.org","","","16928","138512","18115"
"1000433","Temple","","temple","","","Tours","Caesarodunum","138255","FR","47.3936","0.68807","","","0","","","","","","","","","","","","","","","Vici.org","","","16930","","7874"
"1000434","Temple","","temple","","Head of the Seine","Poncey-sur-l'Ignon","","","FR","47.484905","4.719573","","","0","","","","","","","","","","","","","","","Vici.org","","","16939","","20161"
"1000435","Temple","","temple","","","Vannes","Darioritum","138323","FR","47.671444","-2.750201","","","","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","16954","","39461"
"1000436","Temple","","temple","","Nal, La Vraie-Croix","La Vraie-Croix","","","FR","47.700558","-2.505833","","","","","","","","","","","","","","","","","","Vici.org","","","16959","","39101"
"1000437","Temple","","temple","","","Briou","","","FR","47.821045","1.476534","","","0","","","","","","","","","","","","","","","Vici.org","","","16970","138290","18151"
"1000438","Sanctuary","","temple","","La Tour","Sablé-sur-Sarthe","","","FR","47.83168","-0.353501","","","","","","","","","","","","","","","","","","Vici.org","","","16971","","20733"
"1000439","Heptagonal Temple","","temple","","","Comblessac","","","FR","47.845501","-2.099815","","","","","","","","","","","","","","","","","","Vici.org","","","16973","44707452","39457"
"1000440","Fanum","","temple","","","Montbouy","","138468","FR","47.869492","2.828017","","","0","","","","","","","","","","","","","","","Vici.org","","","16981","","16983"
"1000441","Temple","","temple","","Membrey","Savoyeux","","","FR","47.5644","5.734408","","","0","","","","","","","","","","","","","","","Vici.org","","","16983"
"1000442","Temple","","temple","","Les Clairs Chênes","Faverolles","","","FR","47.964176","5.222123","","","0","","","","","","","","","","","","","","","Vici.org","","","16994","177521","17579"
"1000443","Temple","","temple","","","Plombières-les-Bains","","","FR","47.965816","6.460263","","","0","","","","","","","","","","","","","","","Vici.org","","","16995","","20759"
"1000444","Temple","","temple","","Clos du Détour","Pannes","","","FR","47.996143","2.676318","","","0","","","","","","","","","","","","","","","Vici.org","","","16996","","20553"
"1000445","Temple","","temple","","La Furetière","Entrammes","Inter Amnes","138342","FR","47.998966","-0.705822","","","","","","","","","","","","","","","","","","Vici.org","","","16997","","20737"
"1000446","Temple","","temple","","","Bains-les-Bains","","","FR","48.001415","6.26457","","","0","","","","","","","","","","","","","","","Vici.org","","","16999","","20760"
"1000447","Temple","","temple","","Bouexière","Bréal-sous-Montfort","","","FR","48.049622","-1.900603","","","","","","","","","","","","","","","","","","Vici.org","","","17005","","39091"
"1000448","Temple","","temple","","Trouguer","Cléden-Cap-Sizun","","","FR","48.058224","-4.705246","","","","","","","","","","","","","","","","","","Vici.org","","","17006","","39095"
"1000449","Temple","","temple","","Trogouzel","Douarnenez","","69500","FR","48.075298","-4.314423","","","","","","","","","","","","","","","","","","Vici.org","","","17009","","39456"
"1000450","Fanum","","temple","","","Pithiviers-le-Vieil","","","FR","48.163734","2.202981","","","0","","","","","","","","","","","","","","","Vici.org","","","17014","109248","20635"
"1000451","Temple","","temple","","","Juillé","","","FR","48.244579","0.12194","","","0","","","","","","","","","","","","","","","Vici.org","","","17022","","3650"
"1000452","Fanum","","temple","","","Oisseau-le-Petit","","","FR","48.346451","0.075101","","","0","","","","","","","","","","","","","","","Vici.org","","","17025","69544","18166"
"1000453","Temple","","temple","","La Ferme d'Isle","Grisy-sur-Seine","","","FR","48.433331","3.31667","","","0","","","","","","","","","","","","","","","Vici.org","","","17029","","21014"
"1000454","Temple","","temple","","","Deneuvre","","","FR","48.441734","6.73517","","","0","","","","","","","","","","","","","","","Vici.org","","","17030","108922","1834"
"1000455","Temple","","temple","","","Taden","","69574","FR","48.471024","-2.011823","","","","","","","","","","","","","","","","","","Vici.org","","","17032","","39092"
"1000456","Temple","","temple","","Les Grèves","La Villeneuve-au-Châtelot","","109431","FR","48.549187","3.606701","","","0","","","","","","","","","","","","","","","Vici.org","","","17036","","39451"
"1000457","Temple","","temple","","","Naix-aux-Forges, Saint-Amand-sur-Ornain","Nasium","109190","FR","48.632435","5.386586","","","0","","","","","","","","","","","","","","","Vici.org","","","17043","534922362","18748"
"1000458","Fanum","","temple","","Wasserwald","Haegen","","109026","FR","48.713898","7.289902","","","0","","","","","","","","","","","","","","","Vici.org","","","17048","","20761"
"1000459","Temple","","temple","","La Butte Ronde","Saint-Forget","","","FR","48.714252","1.984475","","","0","","","","","","","","","","","","","","","Vici.org","","","17049","","20895"
"1000460","Arnières-sur-Iton","","temple","","","Arnières-sur-Iton","","","FR","48.999615","1.110515","","","0","","","","","","","","","","","","","","","Vici.org","","","17064","108757","18147"
"1000461","Sanctuary","","temple","","","Épiais-Rhus","","","FR","49.133663","2.085254","","","0","","","","","","","","","","","","","","","Vici.org","","","17075","108962","18140"
"1000462","Sanctuary","","temple","","","Saint-Aubin-sur-Gaillon","","","FR","49.148079","1.32437","","","0","","","","","","","","","","","","","","","Vici.org","","","17077","109305","18145"
"1000463","Sanctuary of Mercury Canetonnessis","","temple","","","Berthouville","Canetonum","108852","FR","49.173302","0.621389","","","0","","","","","","","","","","","","","","","Vici.org","","","17079","","18124"
"1000464","Temple","","temple","","Les Régales","Louviers","","","FR","49.246918","1.129583","","","0","","","","","","","","","","","","","","","Vici.org","","","17081","","39455"
"1000465","Temple","","temple","","Mare-du-Puits","Oissel","","","FR","49.338657","1.049869","","","0","","","","","","","","","","","","","","","Vici.org","","","17085","","39384"
"1000466","Temple","","temple","","Les Essarts","Grand-Couronne","","","FR","49.345848","1.021025","","","0","","","","","","","","","","","","","","","Vici.org","","","17086","","39385"
"1000467","Sanctuary","","temple","","","Estrées-Saint-Denis","","","FR","49.4259","2.644821","","","0","","","","","","","","","","","","","","","Vici.org","","","17093","108968","2144"
"1000468","Sanctuary","","temple","","Les Muguets","Songeons","","","FR","49.564636","1.835476","","","0","","","","","","","","","","","","","","","Vici.org","","","17100","109349","18132"
"1000469","Temple","","temple","","Ecâtelet","Saint-Maur","","","FR","49.624222","1.906107","","","0","","","","","","","","","","","","","","","Vici.org","","","17107","","20259"
"1000470","Sanctuary","","temple","","Le Catillon","Rouvroy-les-Merles","","","FR","49.656013","2.36636","","","0","","","","","","","","","","","","","","","Vici.org","","","17111","109289","17408"
"1000471","Temple to the waters or nymphs","","temple","","","Septeuil","","","FR","48.897812","1.671292","352","N","0","","","","","","","","","","","","","","","Vici.org","","","17124","109339","16270"
"1000472","Temple","","temple","","Bois Titran","Caix","","","FR","49.816505","2.646559","","","0","","","","","","","","","","","","","","","Vici.org","","","17127","","26629"
"1000473","Sanctuary","","temple","","Le Moulin","Fluy","","","FR","49.854774","2.10009","","","0","","","","","","","","","","","","","","","Vici.org","","","17136","108987","17409"
"1000474","Temple","","temple","","","Cartigny","","","FR","49.904331","3.01797","","","0","","","","","","","","","","","","","","","Vici.org","","","17148","","26636"
"1000475","Sanctuary","","temple","","","Bracquemont","","","FR","49.943413","1.123369","","","0","","","","","","","","","","","","","","","Vici.org","","","17159","108822","26649"
"1000476","Sanctuary","","temple","","","Ribemont-sur-Ancre","","109278","FR","49.96442","2.55404","","","0","","","","","","","","","","","","","","","Vici.org","","","17166","","17404","","","fr=Sanctuaire_de_Ribemont-sur-Ancre"
"1000477","Temple","","temple","","","Bailleul","","","FR","50.033588","1.87157","","","0","","","","","","","","","","","","","","","Vici.org","","","17178","","26624"
"1000478","Temple","","temple","","Les Huit Journaux","Beauval","","","FR","50.132519","2.34789","","","0","","","","","","","","","","","","","","","Vici.org","","","17188","","26626"
"1000479","Small fanum","","temple","","","Cocquerel","","","FR","50.05582","1.938265","","","0","","","","","","","","","","","","","","","Vici.org","","","17190"
"1000480","Temple","","temple","","Le Fief du Bac","Proyart","","","FR","49.887169","2.702727","","","0","","","","","","","","","","","","","","","Vici.org","","","17191","","42228"
"1000481","Sanctuary","","temple","","","Pont-Sainte-Maxence","","","FR","49.316475","2.604453","","","0","","","","","","","","","","","","","","","Vici.org","","","18732"
"1000482","Temple","","temple","","","Remiencourt","","","FR","49.779976","2.392164","","","0","","","","","","","","","","","","Gallo-Roman","","","Vici.org","","","18807"
"1000483","Fanum","","temple","","","Sorcy-Saint-Martin","","","FR","48.697834","5.63705","","","0","","","","","","","","","","","","","","","Vici.org","","","19368"
"1000484","Cultic complex","","temple","","","Amel-sur-l'Étang","","","FR","49.26498","5.642999","","","0","","","","","","","","","","","","","","","Vici.org","","","19374"
"1000485","Fanum","","temple","","Pont-Verdunois","Lachalade","","","FR","49.158867","4.960401","","","0","","","","","","","","","","","","","","","Vici.org","","","19381"
"1000486","Temple","","temple","","Le Herapel","Cocheren","","108893","FR","49.152973","6.860515","","","0","","","","","","","","","","","","","","","Vici.org","","","19418"
"1000487","Temple","","temple","","Les cinq fontaines","Laneuveville-devant-Nancy","","","FR","48.656166","6.215222","","","0","","","","","","","","","","","","","","","Vici.org","","","19473"
"1000488","Temple","","temple","","Lascaux","Montignac","","","FR","45.049168","1.176111","","","0","","","","","","","","","","","","","","","Vici.org","","","20790"
"1000489","Celtic camp","","temple","","","Niederbronn-les-Bains","","109209","FR","48.969513","7.619184","","","0","","","","","","","","","","","","","","","Vici.org","","","21801"
"1000490","Mithraeum","Mithras","mithraeum","","","Sarrebourg","Pons Saravi","109254","FR","48.730274","7.053757","","","0","","","","","","","","","M","","hero","","","","Vici.org","","","23978"
"1000491","Harbor Temple","","temple","","","Xanten","Colonia Ulpia Traiana","108896","DE","51.66938","6.446255","","","0","","","","","","","","","","","","","","","","","Hafentempel","102"
"1000492","Capitolium","","temple","","","Cologne","Colonia Claudia Ara Agrippinensium","108751","DE","50.934589","6.958396","","","0","","","","","","","","","","","","","","","","","Tempel voor Jupiter, Juno en Minerva.","357"
"1000493","Temple of Mars","","temple","","","Cologne","Colonia Claudia Ara Agrippinensium","108751","DE","50.937386","6.958447","","","0","","","","","","","","","","","","","","","","","Tempel voor Mars, naast de marspoort.","358"
"1000494","Temples","","temple","","","Cologne","Colonia Claudia Ara Agrippinensium","108751","DE","50.934933","6.94602","","","0","","","","","","","","","","","","Gallo-Roman","","","","","Gallo-romeinse tempels, gelegen aan de stadmuur.","359"
"1000495","Temple of the Matrons","","temple","","Görresburg","Nettersheim","","109013","DE","50.482342","6.618147","","","0","","","","","","","","","","","","","","","","","Matronentempel Nettersheim, Kult für Fruchtbarkeits- und Muttergottheiten","4905"
"1000496","Temple","","temple","","Görresburg","Nettersheim","","109013","DE","50.482292","6.618158","","","0","","","","","","","","","","","","Gallo-Roman","","","","","Gallorömischer Umgangstempel Görresburg","4906"
"1000497","Temple","Intarabus","temple","","","Ernzen","","","DE","49.84346","6.42365","","","0","","","","","","","","","","","","","","","","","","4907"
"1000498","Juddekirchhof","","temple","","Sarresdorf","Gerolstein","","597847356","DE","50.230743","6.674787","148","SE","0","","","","","","","","","","","","","","","","","Judenkirchhof - Römischer Tempelbezirk - Pelm -point imported from roscheiderhof.de","5696"
"1000499","Temple of Sirona","Sirona","temple","","","Hochscheid","","","DE","49.864198","7.232936","","","0","","","","","","","","","","","","Gallo-Roman","","","","","Pilgerheiligtum von Hochscheid - Sirona-Tempel - Forsthaus Hochscheid -point imported from roscheiderhof.de","5697","109046"
"1000500","Roman temple","","temple","","Borstadt - Schleidweiler","Zemmer","","","DE","49.885769","6.658008","","","0","","","","","","","","","","","","","","","","","Römische Tempelanlage Auf Borstadt - Schleidweiler -point imported from roscheiderhof.de","5699"
"1000501","Temple","","temple","","Otzenhausen","Hermeskeil","","109042","DE","49.642498","6.925347","","","0","","","","","","","","","","","","","","","","","Römische Tempelanlage - Gusenburg -point imported from roscheiderhof.de","5700"
"1000502","Roman temple building","","temple","","","Schalkenmehren","","","DE","50.151859","6.843915","","","0","","","","","","","","","","","","","","","","","Römische Tempelanlage - Schalkenmehren -point imported from roscheiderhof.de","5701"
"1000503","Roman Temple","","temple","","","Niersbach","","","DE","49.942722","6.755594","","","0","","","","","","","","","","","","","","","","","Römischer Tempel - Niersbach -point imported from roscheiderhof.de","5702"
"1000504","Roman temple building","","temple","","Metzenberg","Tawern","","645513764","DE","49.664539","6.509661","","","0","","","","","","","","","","","","","","","","","Römischer Tempelbezirk auf dem Metzenberg - Tawern -point imported from roscheiderhof.de","5703","","","","","de=Römischer_Tempelbezirk_Tawern","Q1460725"
"1000505","Roman temple district","","temple","","","Nattenheim","","","DE","50.020042","6.518407","","","0","","","","","","","","","","","","","","","","","Römischer Tempelbezirk - Nattenheim -point imported from roscheiderhof.de","5704"
"1000506","Roman temple district","","temple","","Villa Otrang","Fließem","","108982","DE","50.013863","6.546174","","","0","","","","","","","","","","","","","","","","","Römischer Tempelbezirk - Otrang -point imported from roscheiderhof.de","5705"
"1000507","Temple","","temple","","Herrenbrünnchen - Neu-Heiligkreuz","Trier","Colonia Augusta Treverorum","108894","DE","49.745407","6.646463","","","0","","","","","","","","","","","","","","","","","Tempel am Herrenbrünnchen - Neu-Heiligkreuz -point imported from roscheiderhof.de","5707"
"1000508","Temple","","temple","","Mutterhaus - Altstadt","Trier","Colonia Augusta Treverorum","108894","DE","49.754078","6.630699","","","0","","","","","","","","","","","","","","","","","Tempel auf dem Gelände des Mutterhauses - Altstadt -point imported from roscheiderhof.de","5708","","","","","","Q723125"
"1000509","Temple with portico","","temple","","Alt-Heiligkreuz","Trier","Colonia Augusta Treverorum","108894","DE","49.746544","6.642509","","","0","","","","","","","","","","","","","","","","","Tempel mit Säulenvorbau - Alt-Heiligkreuz -point imported from roscheiderhof.de","5709"
"1000510","Temple with porch","","temple","","Alt-Heiligkreuz","Trier","Colonia Augusta Treverorum","108894","DE","49.746704","6.642539","","","0","","","","","","","","","","","","","","","","","Tempel mit Vorhalle - Alt-Heiligkreuz -point imported from roscheiderhof.de","5710"
"1000511","Temple complex","","temple","","","Gusterath","","","DE","49.703876","6.705217","","","0","","","","","","","","","","","","","","","","","Tempelanlage Beim Lindenkreuz - Münzschatz - Gusterath -point imported from roscheiderhof.de","5711"
"1000512","Temple area","","temple","","Lindenkreuz","Gusterath","","","DE","49.703884","6.705037","","","0","","","","","","","","","","","","","Umgangstempel","","","","Tempelanlage Beim Lindenkreuz - Umgangstempel - Gusterath -point imported from roscheiderhof.de","5712"
"1000513","Temple area","","temple","","","Neidenbach","","","DE","50.107349","6.563914","","","0","","","","","","","","","","","","","","","","","Tempelanlage - Neidenbach -point imported from roscheiderhof.de","5713"
"1000514","Temple area","Mars-Lenus","temple","","Trier-West","Trier","Colonia Augusta Treverorum","108894","DE","49.749973","6.613711","","","0","","","","","","","","","","","","","","","","","Tempelbezirk des Lenus Mars - Trier-West -point imported from roscheiderhof.de","5714"
"1000515","Temple area","","temple","","","Heckenmünster","","","DE","49.89975","6.787938","","","0","","","","","","","","","","","","","","","","","Tempelbezirk - Heckenmünster -point imported from roscheiderhof.de","5715","109034"
"1000516","Temple area","","temple","","Hinzerath","Morbach","Belginum","108802","DE","49.855228","7.165844","","","0","","","","","","","","","","","","","","","","","Tempelbezirk - Hinzerath -point imported from roscheiderhof.de","5716"
"1000517","Temple Sanctuary","","temple","","Butzweiler","Newel","","109203","DE","49.809135","6.606158","","","0","","","","","","","","","","","","","","","","","Tempelheiligtum - Butzweiler -point imported from roscheiderhof.de","5717"
"1000518","Presumed temple area","","temple","","","Aach","","","DE","49.779331","6.582847","","","0","","","","","","","","","","","","","","","","","Vermutete Tempelanlage - Aach -point imported from roscheiderhof.de","5719"
"1000519","Presumed temple area","","temple","","","Meckel","","","DE","49.888115","6.518048","","","0","","","","","","","","","","","","","","","","","Vermutete Tempelanlage - Meckel -point imported from roscheiderhof.de","5720"
"1000520","Presumed temple area","","temple","","","Röhl","","","DE","49.948616","6.576705","","","0","","","","","","","","","","","","","","","","","Vermutete Tempelanlage - Röhl -point imported from roscheiderhof.de","5721"
"1000521","Presumed temple area","","temple","","","Oberkail","","","DE","50.032089","6.695539","","","0","","","","","","","","","","","","","","","","","Vermutete Tempelbauten - Oberkail -point imported from roscheiderhof.de","5722"
"1000522","Presumed temple","","temple","","","Bengel","","","DE","50.040829","7.073928","","","0","","","","","","","","","","","","","","","","","Vermuteter Tempel - Bengel -point imported from roscheiderhof.de","5723"
"1000523","Presumed Roman sanctuary","","temple","","","Mülbach","","","DE","49.965935","6.390636","","","0","","","","","","","","","","","","","","","","","Vermutetes römisches Heiligtum - Tempelhof -point imported from roscheiderhof.de","5724"
"1000524","Temple remains","","temple","","Grindelborn","Mürlenbach","","","DE","50.141296","6.631656","","","0","","","","","","","","","","","","","","","","","Überreste eines Tempels - Grindelborn -point imported from roscheiderhof.de","5725"
"1000525","Temple and burial precinct","","temple","","Butzweiler","Newel","","109203","DE","49.810493","6.60087","","","0","","","","","","","","","","","","","Umgangstempel","","","","Umgangstempel und Gräberbezirk - Newel -point imported from roscheiderhof.de","6087"
"1000526","Temple area","","temple","","","Homburg","","","DE","49.297417","7.2925","","","0","","","","","","","","","","","","Gallo-Roman","","","","","","6324","","","","","","Q1492512"
"1000527","Temple of Mercury","","temple","","Koblenzer Stadtwald","Koblenz","Confluentes","108903","DE","50.293213","7.570019","","","0","","","","","","","","","","","god","","","","","","Merkurtempel Koblenz","8140"
"1000528","Temple area","Mars-Lenus","temple","","","Pommern","","","DE","50.17915","7.286287","","","0","","","","","","","","","","","","","","","","","Tempelbezirk Mars/Lenus","8141","109252","","","","","Q1234219"
"1000529","Sanctuary - Temple","","temple","","","Taunusstein","","","DE","50.191593","8.204134","","","0","","","","","","","","","","","","","","","","","","8144"
"1000530","Temple of Apollo-Grannus","Apollo Grannus","temple","","","Lauingen","Phoebiana","118904","DE","48.561719","10.409079","178","S","0","","","","","","","","","M","","god","","","","","","Apollo-Grannus-Tempel","8179","","","","","","Q618934"
"1000531","Mountain Sanctuary","","temple","","Calmont","Ediger-Eller","","","DE","50.109138","7.12365","","","0","","","","","","","","","","","","Gallo-Roman","","","","","","8182","","40734"
"1000532","Spring Sanctuary","","temple","","Sudelfels","","","","DE","49.336136","6.606687","","","0","","","","","","","","","","","","","","","","","","8203","","","","","","Q1533630"
"1000533","Temple area","","temple","","Pesch","Bad Münstereifel","","","DE","50.533657","6.703","","","0","","","","","","","","","","","","","","","","","Heidentempel","8205","109214","","","","","Q1408110"
"1000534","Sanctuary of the Matrons","","temple","","Vor Hirschberg","Nettersheim","","109013","DE","50.502647","6.651904","215","SW","0","","","","","","","","","","","","","","","","","Matronenheiligtum","8206"
"1000535","Mithraeum","Mithras","mithraeum","","Halberg","Saarbrücken","","109298","DE","49.222488","7.02788","","","0","","","","","","","","","","","hero","","","","","","","8220","925825061","","","","","Q26706748"
"1000536","Temple","","temple","","","","","","DE","47.57542","7.761292","","","0","","","","","","","","","","","","","","","","","Tempel (Rheinfelden (Baden))","8249"
"1000537","Cult area","","temple","","","Sontheim","","118966","DE","48.548004","10.290641","","","0","","","","","","","","","","","","","","","","","","8264"
"1000538","Mithraeum","Mithras","mithraeum","","","","","","DE","48.274055","10.87458","","","0","","","","","","","","","","","hero","","","","","","Mithras Heiligtum","8282"
"1000539","Roman House","","temple","","","Stuttgart","","118980","DE","48.762611","9.101787","","","0","","","","","","","","","","","","Germanic","","","","","Römisches Haus (Stuttgart)","8419","","","","","de=Römisches_Haus_(Stuttgart)","Q1722809"
"1000540","Temple of Diana","","temple","","","","","","DE","47.986389","9.053611","","","0","","","","","","","","","","","god","","","","","","Dianatempel (Meßkirch)","8420"
"1000541","Lapidarium","","temple","","","Steinheim","","118974","DE","48.970776","9.286698","","","0","","","","","","","","","","","","","","","","","Lapidarium (Steinheim / Murr)","8426"
"1000542","Spring Sanctuary","","temple","","","","","","DE","49.890659","6.442838","","","0","","","","","","","","","","","","Roman","","","","","Römisches Quellheiligtum (Holsthum)","8448"
"1000543","Mountain Sanctuary","","temple","","Beinter Kopf","","","","DE","50.012611","7.178739","","","0","","","","","","","","","","","","","","","","","","9636"
"1000544","Watchtower 10-37b","","temple","","Schneidershecke","Mudau","","","DE","49.550064","9.128879","","","0","","","","","","","","","","","","","","","","","Wachtturm 10-37b ""Schneidershecke"" umgebaut zum Tempel","9881"
"1000545","Mithraeum","Mithras","mithraeum","","","","","","DE","49.061623","9.005662","","","0","","","","","","","","","","","hero","","","","","","Mithräum (Güglingen)","9968"
"1000546","Temple area","","temple","","","Kempten","Cambodunum","187335","DE","47.727634","10.322745","","","0","","","","","","","","","","","","","","","","","","9969"
"1000547","Temple","","temple","","","","","","DE","47.801346","7.671381","","","0","","","","","","","","","","","","Roman","Podium","","","","Römischer Podiumstempel (Badenweiler)","9970"
"1000548","Varnenum Temple Complex","","temple","","","Aachen","Aquae Granni","108749","DE","50.729584","6.193684","","","0","","","","","","","","","","","","","","","","","Tempelbezirk Varnenum","10018","109411","","","","de=Varnenum"
"1000549","Mithraeum","Mithras","mithraeum","","Gimmeldingen","Neustadt an der Weinstraße","","","DE","49.373943","8.157275","","","0","","","","","","","","","","","hero","","","","","","","10019","","","","","","Q1313072"
"1000550","Mithraeum","Mithras","mithraeum","","Wachstein","Theilenhofen","","118758","DE","49.073357","10.832198","","","0","","","","","","","","","","","hero","","","","","","","10071"
"1000551","Temple of Jupiter Dolichenum","Jupiter Dolichenum","temple","","Pfünz","Walting","Vetoniana","119020","DE","48.882706","11.263725","","","0","","","","","","","","","M","","god","","","","","","","10087"
"1000552","Mountain sanctuary","","temple","","","","","","DE","49.543842","7.561576","","","0","","","","","","","","","","","","","","","","","Bergheiligtum (Jettenbach)","10328"
"1000553","Mithraeum Pons Aeni","Mithras","mithraeum","","","","","","DE","47.895569","12.146881","","","0","","","","","","","","","","","hero","","","","","","","10422"
"1000554","Mithraeum","Mithras","mithraeum","","","","","","DE","48.150002","7.746531","","","0","","","","","","","","","","","hero","","","","","","Mithräum (Riegel am Kaiserstuhl)","10471"
"1000555","Temple of Cimbrian Mercury","Mercury","temple","","","Heidelberg","","118731","DE","49.425861","8.706383","","","0","","","","","","","","","","","","","","","","","","10493"
"1000556","Fossa Sanguinis","","temple","","","Neuss-Grimmlinghausen","","109201","DE","51.183834","6.717542","","","0","","","","","","","","","","","","","","","","","Fossa Sanguinis (Kybele-Kultstätte)","12931","","","","","de=Fossa_Sanguinis","Q1794981","","","","","","","","","http://www.neuss.de/tourismus/stadtportrait/sehenswertes/kybele-kultstaette"
"1000557","Temple","","temple","","","Maienbühl, Riehen","","","CH","47.594391","7.68094","","","0","","","","","","","","","","","","","","","","","","13164","","38834"
"1000558","Mithraeum","Mithras","mithraeum","","Mundelsheim","Besigheim","","","DE","49.008961","9.210657","","","0","","","","","","","","","","","hero","","","","","","","13937"
"1000559","Temple","","temple","","","","","","DE","48.496727","10.119792","","","0","","","","","","","","","","","","","Umgangstempel","","","","Umgangstempel (Langenau)","14194"
"1000560","Mithraeum","Mithras","mithraeum","","","Arnsburg","","118575","DE","50.484314","8.78527","","","0","","","","","","","","","","","hero","","","","","","","14208"
"1000561","Temple","","temple","","Michaelsberg","Cleebronn","","","DE","49.03854","9.04568","","","0","","","","","","","","","","","","","Umgangstempel","","","","","14218"
"1000562","Mountain Sanctuary","","temple","","","","","","DE","48.407143","8.020556","","","0","","","","","","","","","","","","","","","","","Bergheiligtum (Gengenbach)","14246"
"1000563","Mithraeum I","Mithras","mithraeum","","","","","","DE","49.06266","9.00468","","","0","","","","","","","","","","","hero","","","","","","Mithräum I (Güglingen)","14249"
"1000564","Mithraeum I","Mithras","mithraeum","","","Heidelberg","","118731","DE","49.415855","8.679235","","","0","","","","","","","","","","","hero","","","","","","Mitraeum I (Heidelberg)","14253"
"1000565","Mithraeum II","Mithras","mithraeum","","","Heidelberg","","118731","DE","49.413967","8.693815","","","0","","","","","","","","","","","hero","","","","","","Mitraeum II (Heidelberg)","14254"
"1000566","Temple area","","temple","","Greinberg","Miltenberg","","118845","DE","49.692158","9.241514","","","0","","","","","","","","","","","","","","","","","","14395"
"1000567","Temple","","temple","","Orsingen","Orsingen-Nenzingen","","","DE","47.84251","8.939867","","","0","","","","","","","","","","","","Gallo-Roman","Umgangstempel","","","","","14441","187499"
"1000568","Sanctuary area","","temple","","","Osterburken","","118898","DE","49.430134","9.425451","","","0","","","","","","","","","","","","","","","","","Weihebezirk (Osterburken)","14445"
"1000569","Temple area","","temple","","","Rottenburg am Neckar","Sumelocenna","118985","DE","48.478004","8.932575","","","0","","","","","","","","","","","","","","","","","","14452"
"1000570","Temple area I","","temple","","","Rottweil","Arae Flaviae","118572","DE","48.154785","8.64558","","","0","","","","","","","","","","","","","","","","","Tempelbezirk I (Rottweil)","14458"
"1000571","Temple area II","","temple","","","Rottweil","Arae Flaviae","118572","DE","48.15276","8.645009","","","0","","","","","","","","","","","","","","","","","Tempelbezirk II (Rottweil)","14459"
"1000572","Sanctuary","","temple","","","","","","DE","48.814072","9.508077","","","0","","","","","","","","","","","","","","","","","Heiligtum (Schorndorf)","14465"
"1000573","Temple of Mercury","","temple","","Wald Sauhag","Neuhausen auf den Fildern","","","DE","48.673996","9.293082","","","0","","","","","","","","","","","","","","","","","","14482"
"1000574","Temple","","temple","","","Unterböbingen","","","DE","48.817959","9.92597","","","0","","","","","","","","","","","","","","","","","","14492"
"1000575","Sanctuary","","temple","","St. Johann","Ettlingen","","108971","DE","48.952354","8.365316","","","0","","","","","","","","","","","","","","","","","","14534"
"1000576","Temple","","temple","","","","","","DE","49.013542","9.176175","","","0","","","","","","","","","","","","","","","","","Tempel (Gemmrigheim)","14596"
"1000577","Temple on the Kalkarberg","","temple","","","Kalkar","Burginatium","108837","DE","51.728806","6.285232","","","0","","","","","","","","","","","","","","","","","Sanctuary of the local goddess Vagdavercustis","14930"
"1000578","Temple","","temple","","Altstadt","Miltenberg","","118845","DE","49.702648","9.236975","","","0","","","","","","","","","","","","","","","","","Tempel (Miltenberg)","14991"
"1000579","Mithraeum","Mithras","mithraeum","","","Ober-Florstadt","","118887","DE","50.325161","8.875741","","","0","","","","","","","","","","","hero","","","","","","","15079"
"1000580","Sanctuary","","temple","","Heidenpütz","","","","DE","49.84407","7.072406","","","0","","","","","","","","","","","","","","","","","","15092"
"1000581","Temple","","temple","","","","","","DE","50.356865","6.866581","","","0","","","","","","","","","","","","","","","","","Tempel (Barweiler)","15544"
"1000582","Sanctuary of Mercury","","temple","","","Gangloff","","","DE","49.653168","7.706888","","","0","","","","","","","","","","","","","","","","","","15553"
"1000583","Temple of Mercury","Mercury","temple","","","Bingen","Bingium","108809","DE","49.966831","7.8924","","","0","","","","","","","","","","","","","","","","","","15671"
"1000584","Sanctuary","","temple","","","Bitburg","Beda","108798","DE","49.977505","6.526544","","","0","","","","","","","","","","","","","","","","","Heiligtum (Bitburg)","15674"
"1000585","Temple of the Matronae","Matronae","temple","","","Xanten","Colonia Ulpia Traiana","108896","DE","51.664839","6.444823","39","NE","0","","","","","","","","","F","","god","","","","","","Tempel voor de moedergodinnen","15679"
"1000586","Temple area","","temple","","Brachtendorf","Dünfus","","","DE","50.218475","7.2154","","","0","","","","","","","","","","","","Gallo-Roman","","","","","","15681"
"1000587","Temple","","temple","","Heidenkopf","Breitenbach","","","DE","49.434444","7.288409","","","0","","","","","","","","","","","","","","","","","","15686"
"1000588","Temple","","temple","","","Lohrsdorf","","","DE","50.552776","7.193636","","","0","","","","","","","","","","","","","","","","","","16281"
"1000589","Spring Sanctuary","","temple","","","Kasbruch","","","DE","49.337135","7.213664","","","0","","","","","","","","","","","","Gallo-Roman","","","","","","16336"
"1000590","Mithraeum","Mithras","mithraeum","","","Xanten","Colonia Ulpia Traiana","108896","DE","51.659077","6.462894","","","0","","","","","","","","","","","hero","","","","","","","17413"
"1000591","Temple B","","temple","","","Aachen","Aquae Granni","108749","DE","50.775129","6.085273","220","SW","0","","late 2nd - early 3rd c. CE","175","225","2","","","","","","","","","","","","","18766"
"1000592","Temple","","temple","","Straß","Nersingen","","118867","DE","48.411995","10.137369","","","0","","","","","","","","","","","","Gallo-Roman","Umgangstempel","","","","","18940"
"1000593","Mithraeum","Mithras","mithraeum","","","Saalburg","","109297","DE","50.268448","8.568121","","","0","","","","","","","","","","","hero","","","","","","","19406"
"1000594","Mithraeum","Mithras","mithraeum","","","Dieburg","","118839","DE","49.90197","8.846936","","","0","","","","","","","","","","","hero","","","","","","Mithräum (Dieburg)","19431"
"1000595","Sanctuary","","temple","","","Mainz","Mogontiacum","109169","DE","49.985161","8.180348","","","0","","","","","","","","","","","","Roman","","","","","","20237"
"1000596","Site of burnt sacrifices","","temple","","","Dankelsried","","","DE","48.047626","10.373531","","","0","","","","","","","","","","","","","","","","","","20289"
"1000597","Rosmerta Temple","","temple","","","Andernach","Antunnacum","108746","DE","50.439079","7.389761","","","0","","","","","","","","","","","","","","","","","Rosmerta-Tempel (Andernach)","20349"
"1000598","Temple","","temple","","","Neumagen","Noviomagus Treverorum","109223","DE","49.841267","6.899114","","","0","","","","","","","","","","","","","","","","","Tempel (Neumagen-Dhron)","20350"
"1000599","Temple","","temple","","","","","","DE","49.863735","6.923764","","","0","","","","","","","","","","","","","","","","","Tempel (Piesport)","20351"
"1000600","Temple of Sirona","Sirona","temple","","","Stipshausen","","","DE","49.850479","7.291307","","","0","","","","","","","","","","","","","","","","","Sironatempel (Stipshausen)","20363"
"1000601","Temple of Mercury","","temple","","Lemberg","Feilbingert","","","DE","49.785912","7.768484","","","0","","","","","","","","","","","god","","","","","","","20366"
"1000602","Mithraeum","Mithras","mithraeum","","","Rockenhausen","","","DE","49.628971","7.806087","","","0","","","","","","","","","","","hero","","","","","","Mithrasheiligtum (Rockenhausen)","20367"
"1000603","Temple","","temple","","","Bonn","Bonna","108818","DE","50.726795","7.085428","","","0","","","","","","","","","","","","Gallo-Roman","","","","","","20381"
"1000604","Mithraeum","Mithras","mithraeum","","","Wiesbaden","Aquae Mattiacorum","108750","DE","50.084049","8.238866","","","0","","","","","","","","","","","hero","","","","","","Mithras-Heiligtum (aufgedeckt in den Jahren 1902/03)","20705"
"1000605","Mithraeum","Mithras","mithraeum","","","Großkrotzenburg","","118710","DE","50.081806","8.977619","","","0","","","","","","","","","","","hero","","","","","","Mithrasheiligtum (Großkrotzenburg)","21413"
"1000606","Forum Temple","","temple","forum","","Augsburg","Augusta Vindelicum","118580","DE","48.37579","10.900263","","","0","","","","","","","","","","","","","","","","","Forum","22882"
"1000607","Temple","","temple","","","Elsdorf","","","DE","50.935829","6.581988","","","0","","","","","","","","","","","","Gallo-Roman","Umgangstempel","","","","8x10 meter groot tempelgebouw","23034"
"1000608","Temple","","temple","","","Billig","Belgica","108801","DE","50.613701","6.79086","","","0","","","","","","","","","","","","","","","","","","23244"
"1000609","Temple of Isis and Magna Mater","Isis, Magna Mater","temple","","","Mainz","Mogontiacum","109169","DE","50.001255","8.268003","","","0","","Vespasianic","69","79","1","","","","F","","god","Roman","","yes","","","","7962","","","","place/mogontiacum-mainz/mogontiacum-mainz-photos/mainz-temple-of-isis/"
"1000610","Temple ruins","","temple","","","Bonn","Bonna","108818","DE","50.733246","7.100145","","","0","","","","","","","","","","","","","","","","","Matronentempel – Bonna – Bonn","23674"
"1000611","Temple Ulpia Noviomagus","","temple","","","Elfrath","","","DE","51.367516","6.611508","67","NE","0","","","","","","","","","","","","","","","","","Tempel – Gelduba – Gellep","24560"
"1000612","Temple","","temple","","","Regensburg","Reginum","118929","DE","48.99202","12.069141","","","0","","","","","","","","","","","","","","","","","Merkurtempel","26487"
"1000613","Capitolium","Jupiter, Juno, Minerva","temple","","","","Abthugni","314843","TN","","","90","E","","","","","","","","","","M/F","","god","Roman","","yes"
"1000614","Temple of Artemis Amarysia","Artemis","temple","","","Amarynthos","Amarynthos","579859","GR","38.387263","23.908299","118","SE","0","","late 6th c. BCE","-520","-500","-6","","","1001179","F","","god","Greek","","yes","","","","","","","","","Temple_of_Artemis_Amarynthia","Q60791237"
"1000615","Temple of Zeus","Jupiter","temple","","","Aizanoi","Aizanoi","609292","TR","39.201218","29.609631","297","NW","0","","","","","","","","","M","","god","Greek","","yes","","","","","442858431","","","","Aizanoi#Temple_of_Zeus","","","","","","","","","52873"
"1000616","Temple of Jupiter","Jupiter","temple","forum","","Split","Spalatum","197524","HR","43.508341","16.439568","","","0","","","","","","","","","M","","god","Roman","","yes","","","","18128","","","","","Temple_of_Jupiter,_Split","Q4501094"
"1000617","Temple of Bacchus","Bacchus","temple","","","Baalbek","Heliopolis","678179","LB","34.006143","36.203873","76","E","0","","","","","","","","","M","","god","Roman","","yes","","","","7852","","","","place/heliopolis-baalbek/baalbek-photos/baalbek-temple-of-bacchus/","Temple_of_Bacchus","Q1991217"
"1000618","Temple of Venus","Venus","temple","","","Baalbek","Heliopolis","678179","LB","34.006021","36.20623","319","NW","0","","3rd c. AD","201","300","3","","","","F","","god","Roman","","yes","","","","16416","","","","place/heliopolis-baalbek/baalbek-photos/baalbek-temple-of-the-venus/"
"1000619","Temple of Artemis","Artemis","temple","","","Jerash","Gerasa","678158","JO","32.281952","35.890922","116","SE","0","","2nd c. AD","101","200","2","","","","F","","god","Roman","","yes","wikipedia","","","11889","","","","","Temple_of_Artemis,_Jerash","Q2527347"
"1000620","Temple of Jupiter","Jupiter","temple","","","Jerash","Gerasa","678158","JO","32.276571","35.889929","54","NE","0","","","","","","","","","M","","god","Roman","","yes","wikipedia","","","11888"
"1000621","Capitolium","Jupiter, Juno, Minerva","temple","","","Dougga","Thugga","315223","TN","36.422891","9.218169","","","0","","2nd c. AD","101","200","2","","","","M/F","","god","Roman","","yes","wikipedia","","","7877","","","","","","Q11680511"
"1000622","Temple of Juno Caelestis","Juno","temple","","","Dougga","Thugga","315223","TN","36.422903","9.215682","","","0","","","","","","","","","F","","god","Roman","","yes","vici","","","11586","","","","","es=Templo_de_Juno_Caelestis","Q5397577"
"1000623","Temple of Ares","Ares","temple","agora","","Athens","Athens","579885","GR","37.975546","23.722745","90","E","0","","430s BCE","-439","-430","-5","","","","M","","god","Greek","","yes","topostext","","originally located at Pallene, moved to the Agora in early 1st cent. BCE","","468194251","46858","","","Temple_of_Ares","Q2405583","","","","","","380237SAre"
"1000624","Temple of Jupiter","Jupiter","temple","","","Cansano","Ocriticum","","IT","42.002993","13.990224","128","SE","0","","","","","","","","","","","god","","","","topostext","","","","432886","22897","","","","","","","","","","420140SIov"
"1000625","Temple of Zeus","Jupiter","temple","","","Olympia","Olympia","570531","GR","37.63794","21.63042","83","E","0","","","","","","","","","M","","god","Greek","","yes","topostext","","","","316294900","46666","","","Temple_of_Zeus,_Olympia","Q197019","","","","","","376216SOZe"
"1000626","Temple of Olympian Zeus","Jupiter","temple","","","Athens","Athens","579885","GR","37.969429","23.733084","90","E","0","","","","","","","","","M","","god","Greek","","yes","wikipedia","","","17742","659771158","","5740","","Temple_of_Olympian_Zeus,_Athens","Q1123019","","","","","","380237SOly"
"1000627","Temple of Apollo","Apollo","temple","","","Delphi","Delphi","540726","GR","38.48225","22.5011","49","NE","0","","","","","","","","","M","","god","Greek","Doric","yes","topostext","","Need better orientation","","464482219","46667","","","Temple_of_Apollo_(Delphi)","Q10751359","","","","","","385225SApo"
"1000628","Temple of Apollo","Apollo","temple","","","Naxos","Naxos","599821","GR","37.110127","25.372447","321","NW","0","","","-530","","-6","","","","M","","god","Greek","","yes","topostext","","","","","","","","","","","","","","","371253SApo"
"1000629","Temple of Sangri","Demeter","temple","","","Gyroulas","","","GR","37.029116","25.431301","213","SW","0","","","","","","","","","F","","god","Greek","","yes","wikipedia","","","","599631","an","","","Temple_of_Sangri","Q16294969","","","","","","370254SGyr"
"1000630","Temple of Dionyus","Dionysus","temple","","","Yria","","599661","GR","37.077689","25.380777","201","S","0","","","","","","","","","M","","god","Greek","","yes","wikipedia","","","","","","","","Temple_of_Dionysus,_Naxos","Q15884671"
"1000631","Temple of Apollo","Apollo","temple","","","Pythio","Pythion","491705","GR","40.054479","22.218555","143","SE","0","","","","","","","","","M","","god","","","","topostext","","","","","","","","","","","","","","","401222SPyt"
"1000632","Temple of Apollo","Apollo","temple","","","Pythio","Pythion","491705","GR","40.054295","22.218318","129","SE","0","","","","","","","","","M","","god","","","","topostext","","","","","","","","","","","","","","","401222SPyt"
"1000633","Temple of Apollo","Apollo","temple","","","Pythio","Pythion","491705","GR","40.054107","22.218239","129","SE","0","","","","","","","","","M","","god","","","","topostext","","","","","","","","","","","","","","","401222SPyt"
"1000634","Western Temple","","temple","","","Kal'at Kalôtá","","658492","SY","36.352766","36.936222","","","0","","","","","","","","","","","","","","yes","Segal2013"
"1000635","Eastern Temple","","temple","","","Kal'at Kalôtá","","658492","SY","36.352679","36.93605","","","0","","","","","","","","","","","","","","yes","Segal2013"
"1000636","Temple of Zeus","Zeus Bomos","temple","","","Baqirha","","","SY","36.205833","36.659444","","","0","","","161","","2","","","","M","","god","Roman","","yes","Segal2013"
"1000637","Temple of Zeus","","temple","","","Srir","","","SY","","","","","","","","","","","","","","","","","","","yes","Segal2013","","","","658603"
"1000638","Temple","","temple","","","Ma'aishurin","","","SY","","","","","","","","","","","","","","","","","","","yes","Segal2013"
"1000639","Temple","","temple","","","Ithriyah","","","SY","35.366017","37.785852","107","E","0","","","","","","","","","","","","","","yes","Segal2013"
"1000640","Temple of Zeus","Zeus","temple","","","Dwair Reslan","","","SY","34.93036","36.24533","192","S","0","","","","","","","","","M","","god","","","yes","Segal2013"
"1000641","Small Temple","","temple","","","Dwair Reslan","","","SY","34.931592","36.245227","167","S","0","","","","","","","","","","","","","","yes","Segal2013"
"1000642","Semicircular Temple","","temple","","","Dwair Reslan","","","SY","34.932012","36.244786","167","S","0","","","","","","","","","","","","","","yes","Segal2013"
"1000643","Temple of Allat","Allat","temple","","","Palmyra","Palmyra","668331","SY","34.555001","38.261628","121","SE","0","","","","","","","","","F","","god","","","yes","Segal2013"
"1000644","Temple of Nebu","Nebu","temple","","","Palmyra","Palmyra","668331","SY","34.549753","38.270442","198","S","0","","","","","","","","","M","","god","","","yes","Segal2013"
"1000645","Temple of Baal Shamin","Baal Shamin","temple","","","Palmyra","Palmyra","668331","SY","34.553315","38.269899","132","SE","0","","","","","","","","","M","","god","","","yes","Segal2013"
"1000646","Temple of Bel","Bel","temple","","","Palmyra","Palmyra","668331","SY","34.547391","38.274073","177","S","0","","1st c CE","1","100","1","","","","M","","god","","","yes","Segal2013"
"1000647","Temple A","","temple","","","Sfireh","","","LB","34.401197","36.059296","90","E","0","","","","","","","","","","","","","","yes","Segal2013"
"1000648","Temple B","","temple","","","Sfireh","","","LB","34.401389","36.059231","90","E","0","","","","","","","","","","","","","","yes","Segal2013"
"1000649","Temple C","The Mistress","temple","","","Sfireh","","","LB","34.401158","36.059573","1","N","0","","","","","","","","","F","","god","","","yes","Segal2013"
"1000650","Temple","","temple","","","Bziza","","","LB","34.269916","35.821538","322","NW","0","","","","","","","","","","","","","","yes","Segal2013","","","11958","668217","26182","","place/bziza"
"1000651","Main Temple","","temple","","","Faqra","","","LB","33.998414","35.807516","82","E","0","","","","","","","","","","","","","","yes","Segal2013","","","","","","","place/faqra/faqra-temple-of-adonis/"
"1000652","Temple of Atargatis","Atargatis","temple","","","Faqra","","","LB","33.997414","35.807748","69","E","0","","","","","","","","","F","","god","","","yes","Segal2013","","","","678039","","","place/faqra/faqra-temple-of-atargatis"
"1000656","Great Temple (A)","","temple","","","Niha Bekaa","Nihata","678308","LB","33.894704","35.962494","73","E","0","","","","","","","","","","","god","","","yes","Segal2013","","","","","44503"
"1000657","Small Temple (B)","","temple","","","Niha Bekaa","Nihata","678308","LB","33.895345","35.963265","339","N","0","","","","","","","","","","","god","","","yes","Segal2013","","","","","44504"
"1000658","Upper Great Temple (A)","","temple","","","Niha Bekaa","Nihata","678308","LB","33.907276","35.948335","76","E","0","","","","","","","","","","","","","","yes","Segal2013","","","11060","","","","place/nihata-niha/nihata-large-temple/"
"1000659","Upper Small Temple (D)","","temple","","","Niha Bekaa","Nihata","678308","LB","33.907519","35.949082","154","SE","0","","","","","","","","","","","","","","yes","Segal2013","","","27656","","","","place/nihata-niha/nihata-smal-temple/"
"1000660","Qasr Nemrud","","temple","","","Ain El Jaouzeh","","","LB","33.843412","36.303996","","","0","","","","","","","","","","","","","","yes","Segal2013","","","29013","678349"
"1000661","Temple for the Imperial Cult","Philip the Arab","temple","","","Ad Dumayr","Thelseai","678427","SY","33.639765","36.688863","103","E","0","","","","","","","","","M/F","","emperor, family","","","yes","Segal2013","","","","","","","","Temple_of_Zeus_Hypsistos","Q48727440"
"1000663","Temple","","temple","","","Ain Harcha","","678007","LB","33.453598","35.790661","90","E","0","","","","","","","","","","","","","","yes","Segal2013","","","27593"
"1000664","Temple","","temple","","","Elmismya","Phaine","678328","SY","","","","","","","","","","","","","","","","","","","no","Segal2013"
"1000665","Temple","","temple","","","Sahr","","","SY","","","","","","","","","","","","","","","","","","","yes","Segal2013"
"1000666","Temple of Tyche","Tyche","temple","","","As Sanamayn","Aere","678004","SY","","","","","","","2nd c. CE","191","","2","","","","F","","concept","","","yes","Segal2013"
"1000667","Temple","Baal Shamin","temple","","","Kedesh","","678215","IL","33.112992","35.533772","72","E","0","","","","","","","","","M","","god","","","yes","Segal2013","","","27505"
"1000668","Temple","","temple","","","Saura","Saura","678377","SY","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000669","Kalybe Temple","","temple","","","Il-Haiyat","","","SY","","","","","","","","","","","","","","","","","","Kalybe","","Segal2013"
"1000670","Kalybe Temple","","temple","","","Umm Iz-Zetun","","678442","SY","","","","","","","3rd c. CE","282","","3","","","","","","","","Kalybe","","Segal2013"
"1000671","Kalybe Temple","","temple","","","Sakkaia","Maximianopolis","678366","SY","","","","","","","","","","","","","","","","","","Kalybe","","Segal2013"
"1000672","Temple","","temple","","","Bourajka","","","SY","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000673","Hexastyle Temple","","temple","","","Shahba","Philippopolis","678332","SY","32.854603","36.627829","162","S","0","","","","","","","","","","","","","","","Segal2013"
"1000674","Temple of the Imperial Cult","","temple","","","Shahba","Philippopolis","678332","SY","32.853853","36.626389","88","E","0","","","","","","","","","M","","emperor","","","","Segal2013"
"1000675","Temple","","temple","","","Slim","","","SY","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000676","Temple of Zeus","Zeus","temple","","","Qanawat","Kanatha","678082","SY","32.753587","36.616972","8","N","0","","","","","","","","","M","","god","","","","Segal2013"
"1000677","Temple of Rabbos","Rabbos","temple","","","Qanawat","Kanatha","678082","SY","32.757202","36.613803","107","E","0","","","","","","","","","M","","god","","","","Segal2013","","","34905"
"1000678","Temple C (The Seraya Temple)","","temple","","","Qanawat","Kanatha","678082","SY","32.75422","36.618044","5","N","0","","","","","","","","","","","","","","","Segal2013"
"1000679","Northern Temple","","temple","","","Atil","Atheila","678040","SY","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000680","Southern Temple","","temple","","","Atil","Atheila","678040","SY","32.760855","36.582823","103","E","0","","2nd c. CE","151","","2","","","","","","","","","yes","Segal2013","","","31055"
"1000681","South Temple","","temple","","","Sia","Seeia","678381","SY","","","","","","","33 BCE - 55 CE","-33","55","-1","","","","","","","","","","Segal2013"
"1000682","Temple of Dushara","Dushara","temple","","","Sia","Seeia","678381","SY","","","","","","","1st c. BCE","-99","-1","-1","","","","M","","god","","","","Segal2013"
"1000683","Temple of Baal Shamin","Baal Shamin","temple","","","Sia","Seeia","678381","SY","32.736603","36.624829","139","SE","0","","1st c. CE","1","99","1","","","","M","","god","","","","Segal2013"
"1000684","Temple of Zeus and Athena","Zeus, Athena","temple","","","Al-Mushannaf","Nelkomia","678305","SY","32.742352","36.777199","94","E","0","","","","","","","","","M/F","","god","","distylos in antis","yes","Segal2013"
"1000685","Peripteral Temple","","temple","","","As Suwayda","Dionysias/Soada","678119","SY","","","","","","","1st c. BCE - 1st c. CE","-99","100","-1","","","","","","","Nabatean","","yes","Segal2013"
"1000686","West Temple","","temple","","","Mayamas","","","SY","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000687","East Temple","","temple","","","Mayamas","","","SY","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000688","Temple","","temple","","","Hobran","","","SY","","","","","","","2nd c. CE","155","","2","","","","","","","","","","Segal2013"
"1000689","Temple for the Imperial Cult","","temple","","","Bosra","Bostra","678073","SY","32.519595","36.482971","278","W","0","","3rd c. CE","201","300","3","","","","M","","emperor","","","","Segal2013","","","24495"
"1000690","Temple on the Tel","","temple","","","Beit She'an","Scythopolis","678378","IL","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000691","Central Temple","","temple","","","Beit She'an","Scythopolis","678378","IL","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000692","Temple","","temple","","","Elemtaih","","","SY","","","","","","","","","","","","","","","","","","","","Segal2013","","Segal: Il-Umta'iyeh in JO"
"1000693","Temple","","temple","","","Umm El-Jimal","","678439","JO","32.325681","36.36632","","","0","","","","","","","","","","","","","","","Segal2013"
"1000695","Cathedral Sanctuary Temple","","temple","","","Jerash","Gerasa","678158","JO","32.280587","35.891607","115","SE","0","","","","","","","","","","","","","","","Segal2013"
"1000696","Temple C","","temple","","","Jerash","Gerasa","678158","JO","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000698","Temple of Augustus","Augustus","temple","","","Sabastia","Sebaste","678370","PS","","","","","","","","","","","","","","M","","emperor","","","","Segal2013"
"1000699","Temple of Kore","Kore","temple","","","Sabastia","Sebaste","678370","PS","","","","","","","","","","","","","","F","","god","","","","Segal2013"
"1000700","Temple of Zeus","Zeus","temple","","","Mount Gerizim","Gerizein Mons","678147","PS","","","","","","","","","","","","","","M","","god","","","","Segal2013"
"1000701","Temple of Hercules","Hercules","temple","","","Amman","Philadelphia","697728","JO","","","","","","","","","","","","","","M","","hero","","","","Segal2013"
"1000702","Nymphaeum","Nymphs","temple","","","Amman","Philadelphia","697728","JO","","","","","","","","","","","","","","F","","god","","","","Segal2013"
"1000703","Second Temple","","temple","","","Jerusalem","Ierusalem","687928","IL","31.778163","35.235402","","","0","","","","","","70 CE","","","M","","","Jewish","","","Segal2013","","","","973646718","","","","Second_Temple","Q728428"
"1000704","Nabatean Temple","","temple","","","Dhiban","Dibon","697654","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000705","Nabatean Temple","","temple","","","Qasr Raba","","","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000706","Little Temple","","temple","","","Rabbat Moab","Areopolis","697632","JO","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000707","Western Temple","","temple","","","Qasrawet","","","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000708","Central Temple","","temple","","","Qasrawet","","","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000709","Little Temple","","temple","","","Dhat Ras","","697653","JO","","","","","","","","","","","","","","","","","","","","Segal2013"
"1000710","Nabatean Temple","","temple","","","Mahaiy","","","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000711","Nabatean Temple","","temple","","","Khirbet edh-Dharih","","697683","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000712","Nabatean Temple","","temple","","","Tawaneh","","","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000713","Temple of the Winged Lions","","temple","","","Batra","Petra","697725","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000714","Nabatean Temple","","temple","","","Batra","Petra","697725","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000715","Great Temple","","temple","","Great Temple Sanctuary","Batra","Petra","697725","JO","","","","","","","","","","","","","","","","","Nabatean","","","Segal2013"
"1000716","Small Temple","","temple","","","Batra","Petra","697725","JO","","","","","","","","","","","","","","","","","Roman","","","Segal2013"
"1000717","Nabatean Temple","Allat","temple","","Er-Ram","Iram","","","JO","","","","","","","","","","","","","","F","","god","Nabatean","","","Segal2013"
"1000718","Temple of Sol Indiges","Sol","temple","","","Pratica di Mare","Lavinium","422960","IT","41.647847","12.437675","243","SW","0","","","","","","","","","M","","nature","Roman","","","Jaia2012"
"1000719","Temple of Zeus Labrandeus","Zeus","temple","","","Labranda","Labraunda","599745","TR","37.419186","27.819413","91","E","0","","","","","","","","","M","","god","Carian","","","","","","","","","","","","","","","","","","","","","http://www.labraunda.org/Labraunda.org/Temple_of_Zeus_eng.html"
"1000720","Temple of Venus Verticordia","Venus","temple","","","Rome","Rome","423025","IT","","","","","","","","-113","","-2","","","","F","","god","Roman","","","Ziolkowski1992"
"1000721","Temple of Venus Erycina","Venus","temple","","Capitoline","Rome","Rome","423025","IT","","","","","","","-215","-215","","-3","","","","F","April 23","god","Roman","","","Ziolkowski1992","","","","","","","","Temple_of_Venus_Erycina_(Capitoline_Hill)","Q1888860"
"1000722","Temple of Venus Erycina","Venus","temple","","Quirinal by the Colline Gate","Rome","Rome","423025","IT","","","","","","","-181","-181","","-2","","","","F","","god","Roman","","","Ziolkowski1992","","","","","","","","Temple_of_Venus_Erycina_(Quirinal_Hill)","Q3983285"
"1000723","Temple of Fortuna Publica","Fortuna","temple","","Quirinal inside the Colline Gate","Rome","Rome","423025","IT","","","","","","-241","-241-219","-241","-219","-3","","","","F","","concept","Roman","","","Ziolkowski1992"
"1000724","Temple of Fortuna Publica citerior","Fortuna","temple","","Quirinal inside the Colline Gate","Rome","Rome","423025","IT","","","","","","-241","-241-219","-241","-219","-3","","","","F","","concept","Roman","","","Ziolkowski1992"
"1000725","Temple of Hora Quirini","Hora Quirini","temple","","Quirinal Hill","Rome","Rome","423025","IT","","","","","","","-292-219","-292","","-3","","","","F","August 23","god","Roman","","no","Ziolkowski1992"
"1000726","Temple of Sol Indiges","Sol","temple","","Quirinal Hill","Rome","Rome","423025","IT","","","","","","","-292-219","-292","","-3","","","","M","August 9","nature","Roman","","no","Ziolkowski1992"
"1000727","Temple of Mens","Mens","temple","","Capitoline","Rome","Rome","423025","IT","","","","","","","-215","-215","","-3","","","","F","June 8","concept","Roman","","no","Platner1929"
"1000728","Qasr el Banat","","temple","","","Chlifa","","","LB","34.087366","36.118085","","","0","","","","","","","","","","","","","","","Wikipedia","","","","668344","","","","Qasr_el_Banat,_Lebanon","Q7267046"
"1000729","Temple of Apollo","Apollo","temple","","","Fourzol","","","LB","","","","","","","","","","","","","","M","","god","Roman","","yes","","","","27637"
"1000730","Temple","","temple","","Tell Qasr Labwe","Qasr Neba","","","LB","33.913388","35.990542","79","E","0","","","","","","","","","","","","Roman","","yes","","","","","678348","","","place/qsarnaba/"
"1000731","Nymphaeum","Nymphs","temple","","","Bosra","Bostra","678073","SY","32.519653","36.482699","142","SE","0","","","","","","","","","F","","god","Roman","","yes","","","","24496"
"1000732","Eastern forum temple","","temple","forum","","","Carsulae","413065","IT","42.639538","12.5575","5","N","0","","","","","","","","","","","","Roman","","yes","","","","11625","721328707"
"1000733","Main forum temple","","temple","forum","","","Carsulae","413065","IT","42.639936","12.556755","89","E","0","","","","","","","","","","","","Roman","","yes"
"1000734","Republican Temple","","temple","","","Ostia Antica","Ostia","422995","IT","41.75472","12.289539","148","SE","0","","","-80","-50","-1"
"1000735","Temple II of Four Small Temples","Fortuna","temple","","","Ostia Antica","Ostia","422995","IT","41.755696","12.290623","149","SE","0","","early 2nd c. BCE","-199","-150","-2","","","","F","","concept","Roman","","yes","Vici.org","","Quatro Tempietti","27361","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/8/8-2.htm"
"1000736","Temple III of Four Small Temples","Ceres","temple","","","Ostia Antica","Ostia","422995","IT","41.755648","12.290521","149","SE","0","","early 2nd c. BCE","-199","-150","-2","","","","F","","god","Roman","","yes","Vici.org","","Quatro Tempietti","27361","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/8/8-2.htm"
"1000737","Temple IV of Four Small Temples","Spes","temple","","","Ostia Antica","Ostia","422995","IT","41.755609","12.290436","149","SE","0","","early 2nd c. BCE","-199","-150","-2","","","","F","","concept","Roman","","yes","Vici.org","","Quatro Tempietti","27361","","","","","","","","","","","","","","","http://www.ostia-antica.org/regio2/8/8-2.htm"
"1000738","Collegial Temple","","temple","","","Ostia Antica","Ostia","422995","IT","41.753161","12.287807","60","NE","0","","Alexander Severus","222","235","3","","","","","","","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio1/10/10-4.htm"
"1000739","Temple of the Forum Baths","","temple","forum","","Ostia Antica","Ostia","422995","IT","41.753354","12.289632","139","SE","0","","","","","","","","","","","","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio1/12/12-6.htm"
"1000740","Tetrastyle Temple","","temple","","","Ostia Antica","Ostia","422995","IT","41.753965","12.286321","151","SE","0","","late 2nd c. BCE","-125","-101","-2","","","","","","","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio1/15/15-2.htm"
"1000741","Temple of the Round Altar","","temple","","","Ostia Antica","Ostia","422995","IT","41.753646","12.286058","89","E","0","","Republican","","","","","","","","","","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio1/15/15-6.htm"
"1000742","Temple of the Magna Mater","Magna Mater","temple","","","Ostia Antica","Ostia","422995","IT","41.752114","12.2903","52","NE","0","","","","","","","","","F","","god","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio4/1/1-1.htm"
"1000743","Temple of Bona Dea","Bona Dea","temple","","","Ostia Antica","Ostia","422995","IT","41.754603","12.291503","158","S","0","","2nd c. BCE","-199","-100","-2","","","","F","","god","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio5/10/10-2.htm"
"1000744","Temple of L. Hortensius Heraclida","","temple","","","Ostia Antica","Ostia","422995","IT","41.755478","12.292198","145","SE","0","","3rd qu. 3rd c. CE","251","275","3","","","","","","","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.ostia-antica.org/regio5/12/12-1.htm"
"1000745","Temple of Juno Sospita","Juno","temple","","","Lanuvio","Lanuvium","422956","IT","","","","","","","","","","","","","","F","","god","Roman","","yes"
"1000746","Temple of S. Pietro","","temple","","","Albe","Alba Fucens","413005","IT","42.07709","13.410732","70","E","0","","","","","","","","","","","","Roman","","yes"
"1000747","Temple on the Pettorino Hill","","temple","","","Albe","Alba Fucens","413005","IT","42.080027","13.414105","232","SW","0","","","","","","","","","","","","Roman","","yes"
"1000748","Temple","Mihr","temple","","","Garni","Gorneae","863795","AM","40.112555","44.730136","345","N","0","","77 CE","77","","1","","","","M","","god","Armenian","Ionic","yes","","","","","976360689","7873","","","Temple_of_Garni","Q684072"
"1000749","Temple of Spes Vetus","Spes","temple","","Esquiline","Rome","Rome","423025","IT","41.891896","12.514098","","","1","","477 BCE","477","","5","","","","F","","god","Roman","","no","","","","","","","","","Temple_of_Spes","Q3983282"
"1000750","Temple of Jupiter","Jupiter","temple","forum","","Altilia","Saepinum","433073","IT","41.433011","14.617842","218","SW","0","","","","","","","","","M","","god","Roman","","yes","","","","","949315840"
"1000751","Cult building","","unknown","urban","","Altilia","Saepinum","433073","IT","41.433276","14.616969","54","NE","0","","","","","","","","","","","","Roman","","yes"
"1000752","North Temple of the Antinoeion","","temple","","","Tivoli","Tibur","423081","IT","41.941024","12.773639","157","SE","0","","","130","138","2","","","","","","","Roman","","yes"
"1000753","South Temple of the Antinoeion","","temple","","","Tivoli","Tibur","423081","IT","41.940718","12.773825","337","NW","0","","","130","138","2","","","","","","","Roman","","yes"
"1000754","Tempietto","","temple","","","Terracina","Tarracina","433143","IT","41.291178","13.260001","150","SE","0","","","","","","","","","","","","Roman","","yes"
"1000755","Tempio di Via Pertinace","","temple","","","Terracina","Tarracina","433143","IT","41.2916","13.2497","224","SW","0","","","","","","","","","","","","Roman"
"1000756","Temple of the Divine Julius","Julius Caesar","temple","","","Minturno","Minturnae","432940","IT","41.241967","13.768918","197","S","0","","","","","","","","","M","","family","Roman","","yes"
"1000757","Capitolium","Jupiter, Juno, Minerva","temple","","","Minturno","Minturnae","432940","IT","41.242033","13.768104","201","S","0","","","","","","","","","M/F","","god","Roman","","yes","","","","","","","","","it=Capitolium_di_Minturnae","Q3657074"
"1000758","Temple of Augustus and Rome","Augustus, Rome","temple","","","Minturno","Minturnae","432940","IT","41.241958","13.768308","201","S","0","","","","","","","","","M/F","","city, emperor","Roman","","yes"
"1000759","Temple H","","temple","","","Minturno","Minturnae","432940","IT","41.2419","13.769041","199","S","0","","","","","","","","","","","","Roman","","yes"
"1000760","Doric Temple","Athena","temple","","","Pompei","Pompeii","433032","IT","40.748285","14.488007","116","SE","0","","6th c. BCE","-599","-550","-6","","","","F","","god","Etruscan","","yes","","","","","81187433","","","","it=Tempio_Dorico_(Pompei)","Q3983179"
"1000761","Temple of Venus","Venus","temple","","","Pompei","Pompeii","433032","IT","40.748435","14.483741","160","S","0","","","","","","","","","F","","god","Roman","","yes","","","","","663121962","","","","it=Tempio_di_Venere_(Pompei)","Q3983283"
"1000762","Temple of Isis","Isis","temple","urban","","Pompei","Pompeii","433032","IT","40.749178","14.48827","60","NE","0","","","","","","","","","F","","god","Roman","","yes","","","","","793723815","","","","Temple_of_Isis_(Pompeii)","Q3517528"
"1000763","Temple of Asclepius","Asclepius","temple","","","Pompei","Pompeii","433032","IT","40.7493","14.488524","50","NE","0","","","","","","","","","M","","hero","Roman","","yes","","","","","83544252"
"1000764","Temple of the Genius of Augustus","Genius of Augustus","temple","","","Pompei","Pompeii","433032","IT","40.749619","14.485245","250","W","0","","","","","","","","","M","","emperor","Roman","","yes","","","","","95873554"
"1000765","Temple of Fortuna Augusta","Fortuna Augusta","temple","","","Pompei","Pompeii","433032","IT","40.75073","14.484442","241","SW","0","","","","","","","","","F","","concept","Roman","","yes","","","","","100249112","","","","it=tempio_della_Fortuna_Augusta","Q3983204"
"1000766","Capitolium","Jupiter, Juno, Minerva","temple","","","Santa Maria Capua Vetere","Capua","432754","IT","41.080728","14.253573","","","0","","","","","","","","","M/F","","god","Roman"
"1000767","Temple of Feronia","Feronia","temple","","","","Lucus Feroniae","413184","IT","42.130265","12.597068","158","S","0","","late 2nd c. BCE","-130","-110","-2","","","","F","","god","Roman","","yes"
"1000768","Temple of Salus","Salus","temple","","","","Lucus Feroniae","413184","IT","42.13035","12.59671","158","S","0","","","","","","","","","F","","concept","Roman","","yes"
"1000769","Sanctuary of Fondo Patturelli","","temple","","Fondo Patturelli","Santa Maria Capua Vetere","Capua","432754","IT"
"1000770","Temple of Fortuna Redux","Fortuna","temple","","Campus Martius","Rome","Rome","423025","IT","","","","","","","Domitianic era","81","96","1","","","","F","","concept","Roman","","no"
"1000771","Temple of Juno Moneta","Juno","temple","","","Segni","Signia","423072","IT","41.696927","13.024674","154","SE","0","","","","","","","","","F","","god","Roman","","yes","","","","","866779647"
"1000772","Temple C","","temple","","Campo della Fiera","Orvieto","Fanum Voltumnae","416806","IT","42.712117","12.09628","50","NE","0","","","","","","","","","","","","Etruscan","","yes"
"1000773","Temple A","","temple","","Campo della Fiera","Orvieto","Fanum Voltumnae","416806","IT","42.712455","12.095583","104","E","0","","","","","","","","","","","","Etruscan","","yes"
"1000774","Temple B","","temple","","Campo della Fiera","Orvieto","Fanum Voltumnae","416806","IT","42.711072","12.09631","92","E","0","","","","","","","","","","","","Etruscan","","yes"
"1000775","Temple of Castor and Pollux","Castor, Pollux","temple","forum","","Cori","Cora","422909","IT","41.641621","12.913103","220","SW","0","","","-99","-50","-1","","","","M","","hero","Roman","","yes","","","","","426309852","","5774"
"1000776","Temple of Hercules","Hercules","temple","","","Cori","Cora","422909","IT","41.642578","12.915771","174","S","0","","","-99","-1","-1","","","","M","","hero","Roman","","yes","","","","61731","692947274","","10943"
"1000777","Temple under S. Oliva","","temple","","","Cori","Cora","422909","IT","41.643438","12.912941","187","S","0","","3rd c. BCE","-299","-300","-3","","","","","","","Roman","","yes"
"1000778","Forum Temple","","temple","forum","","Pratica di Mare","Lavinium","422960","IT","41.661239","12.479949","124","SE","0","","","","","","","","","","","","Roman","","yes"
"1000779","Temple of Mercury","Mercury","temple","forum","","Tuscolo","Tusculum","423108","IT","41.798197","12.709233","0","N","0","","","","","","","","","M","","god","Roman","","yes"
"1000780","Temple of Genna Cantonis","","temple","","","Matzanni","","93478895","IT","39.37514","8.699043","100","E","0","","","","","","","","","","","","Nuraghic","","yes"
"1000781","Temple of Antas (Roman)","Sardus Pater Babai","temple","","","Fluminimaggiore","Metalla","471971","IT","39.394007","8.500267","113","SE","0","","Augustan","-27","14","-1","","","1000233","M","","god","Roman","","yes"
"1000782","Temple A","","temple","","","Pietrabbondante","","433025","IT","41.740481","14.387969","118","SE","0","","1st half of 2nd c. BCE","-199","-150","-2","","","","","","","Samnite","","yes"
"1000783","Temple of Hera","Hera","temple","","","Olympia","Olympia","570531","GR","37.638858","21.62988","86","E","0","","","","","","","","","F","","god","Greek","","yes","","","","","584889481","","","","Temple_of_Hera,_Olympia","Q633572","","","","","","376216SOHe"
"1000784","Large Twin Temple","","temple","","","Saint-Rémy-de-Provence","Glanum","148093","FR","43.773201","4.832722","80","E","0","","end 1st c. BCE","-15","-10","-1","Last quarter 3rd c. CE","","","","","","","","yes","Vici.org"
"1000785","Temple of Valetudo","Valetudo","temple","","","Saint-Rémy-de-Provence","Glanum","148093","FR","43.772627","4.833131","253","W","0","","19 BCE","-19","","-1","Last quarter 3rd c. CE","","","F","","concept","Roman","","yes"
"1000786","Temple","","temple","","","Neung-sur-Beuvron","","","FR","47.514506","1.813998","282","W","0","","","","","","","","","","","","Gallo-Roman","","no"
"1000787","South temple","","temple","","Pied de Bourges","","Clion","138299","FR","46.946785","1.229261","90","E","0","","","","","","","","","","","","Gallo-Roman","","no","Vici.org","","","16874","","20503"
"1000788","Ionic Temple","","temple","","","Vibo Valentia","Vibo Valentia","452337","IT"
"1000789","Temple A","","temple","","","Altilia","Saepinum","433073","IT","41.43229","14.617611","31","NE","0","","","","","","","","","","","","Roman"
"1000790","Temple","","temple","","Poggio Casetta","Bolsena","Volsinii","413389","IT","42.656053","11.991613","","","0","","","","","","","","","","","","Roman"
"1000791","Tempietto","","temple","","Poggio Moscini","Bolsena","Volsinii","413389","IT","42.648916","11.984524","","","0"
"1000792","Temple","","temple","","La Cività","Bolsena","Volsinii","413389","IT","42.603103","12.009591","","","1","","","","","","","","","","","","","","yes","","","Location from wikiloc"
"1000793","Sanctuary temple","","temple","","Fontanile di Legnisina","Montalto di Castro","Vulci","413393","IT","42.409068","11.63607","209","SW","1","","","","","","","","","","","","Etruscan"
"1000794","Temple","","temple","","Vigna Parrocchiale","Cerveteri","Caere","422859","IT","","","","","","","","","","","","","","","","","","Etruscan"
"1000795","Temple A","","temple","","Località Sant'Antonio","Cerveteri","Caere","422859","IT","41.996939","12.107891","213","SW","0","","","","","","","","","","","","","Etruscan","yes"
"1000796","Temple B","","temple","","Località Sant'Antonio","Cerveteri","Caere","422859","IT","41.996812","12.10824","211","SW","0","","","","","","","","","","","","","Etruscan","yes"
"1000797","Temple","","temple","","Sassi Caduti","Civita Castellana","Falerii","413126","IT","42.292356","12.419688","","","0","","","","","","","","","","","","Faliscan"
"1000798","Temple of Apollo","Apollo","temple","","Scasato","Civita Castellana","Falerii","413126","IT","","","","","","","","","","","","","","M","","god","Faliscan"
"1000799","Temple of Juno Curritis","Juno","temple","","Celle","Civita Castellana","Falerii","413126","IT","42.296327","12.422116","","","0","","","","","","","","","F","","god","Faliscan"
"1000800","Second Temple","","temple","","Scasato","Civita Castellana","Falerii","413126","IT","","","","","","","","","","","","","","","","","Faliscan"
"1000801","Temple of Apollo Soranus","Apollo","temple","","Vignale","Civita Castellana","Falerii","413126","IT","42.29461","12.425879","","","0","","Early 5th c. BCE","-499","-475","-5","","","","M","","god","Faliscan","","no"
"1000802","Temple ""del Manganello""","","temple","","Manganello","Cerveteri","Caere","422859","IT","42.002596","12.103849","154","SE","0","","","","","","","","","","","","","Etruscan"
"1000803","Temple D","","temple","","","Sfireh","","","LB","34.402206","36.059316","","","0","","","","","","","","","","","","","","yes","vici.org","","","55967"
"1000804","Temple E","","temple","","","Sfireh","","","LB","34.403366","36.057362","","","0","","","","","","","","","","","","","","yes","vici.org","","","27660"
"1000805","Temple F - Beit el-Kebir","","temple","","","Sfireh","","","LB","34.400406","36.056118","","","0","","","","","","","","","","","","","","yes","vici.org","","","27661"
"1000806","Temple of Church of S. Agapito","","temple","","","Palestrina","Praeneste","423013","IT","41.839043","12.892034","195","S","0","","Early 3rd c. BCE","-290","-250","-3","","","","","","","Italic","","yes"
"1000807","Temple of Tinia","Tinia","temple","urban","","Marzabotto","Kainua","393448","IT","44.336366","11.202443","177","S","0","","","","","","","","","M","","god","Etruscan","","yes"
"1000808","Temple of Aphaea","Aphaea","temple","","","Egina","Aegina","579844","GR","37.754343","23.533271","70","E","0","","","","","","","","","F","","god","Greek","","yes","","","","10838","579872","","","","Temple_of_Aphaea","Q596988"
"1000809","Belvedere Temple","","temple","","","Orvieto","Volsinii Veteres","413373","IT","42.722573","12.119812","136","SE","0","","5th c BCE","-499","","-5","","","","","","","Etruscan","","yes","","","","","639959859","","","","it=Tempio_del_Belvedere","Q3517663"
"1000810","Forum Temple","","temple","forum","","Arce","Fregellae","432846","IT","41.536881","13.539315","248","W","0","","Late 4th - early 3rd cBCE","-380","","-4","","","","F","","","Roman","","yes"
"1000811","Suburban Temple","","temple","","","Arce","Fregellae","432846","IT","41.542589","13.53275","88","E","0","","","","","","","","","","","","Roman","","yes"
"1000812","Temple","","temple","","","Civitalba","Sentinum","413087","IT","43.4726746","12.8960632","","","1","","","","","","","","","","","","","","no","","","Known from t-c decoration"
"1000813","South Temple","","temple","","","Falerii Novi","Falerii Novi","413125","IT","42.298277","12.35767","297","NW","0","","","","","","","","","","","","","","","","","Known from geomag survey"
"1000814","Temple of Aesculapius","Aesculapius","temple","","","Arce","Fregellae","432846","IT","41.536675","13.533406","","","1","","","","","","","","","M","","hero","Roman","","yes"
"1000815","Temple A","","temple","","","S. Giovanni Incarico","Fabrateria Nova","432825","IT","41.519199","13.556954","164","S","0","","","","","","","","","","","","Roman","","yes"
"1000816","Temple B","","temple","","","S. Giovanni Incarico","Fabrateria Nova","432825","IT","41.519193","13.55677","164","S","0","","","","","","","","","","","","Roman"
"1000817","Temple C","","temple","","","S. Giovanni Incarico","Fabrateria Nova","432825","IT","41.519202","13.556641","164","S","0","","","","","","","","","","","","Roman"
"1000818","Temple","","temple","","Località Monacelle","S. Giovanni Incarico","Fabrateria Nova","432825","IT","41.517708","13.549651","","","0","","","","","","","","","","","","Roman","","","vici.org","","","64597"
"1000819","Temple of Minerva","","temple","","Basilica of San Leucio","Canosa","Canusium","442525","IT","41.211323","16.070362","322","NW","0","","","","","","","","","F","","god","Italic","","yes"
"1000820","Temple of Jupiter ""Toro""","","temple","","","Canosa","Canusium","442525","IT","41.220538","16.065101","290","W","0","","","","","","","","","M","","god","Roman","","yes","","","","","","","","","","Q3983260","","","","","","","","","http://www.itc.cnr.it/ba/sc/CNS/CNS0099.html"
"1000821","Temple of Minerva","","temple","","","Marano di Valpolicella","","","IT","","","","","","","","","","","","","","","","","Roman"
"1000822","Tempietto Lepontico","","temple","","Roldo","Montecrestese","","","IT","46.152604","8.324467","","","0","","","","","","","","","","","","Gallo-Roman","","yes"
"1000823","Temple B","","temple","","Località Le Salzare","Foce del Fosso dell’Incastro","Castrum Inui","438710","IT","41.580014","12.511371","237","SW","0","","6th c BCE","-599","-500","-6","","","","","","","Italic","","yes"
"1000824","Temple A","","temple","","Località Le Salzare","Foce del Fosso dell’Incastro","Castrum Inui","438710","IT","41.579833","12.510987","46","NE","0","","","","","","","","","","","","Roman","","yes"
"1000825","Capitolium","","temple","","forum","Luni","Luna","403235","IT","44.064341","10.017403","205","SW","0","","Mid 2nd c. BCE","-176","","-2","-125","","","","","","Roman","Tuscan tripartite","yes"
"1000826","Temple","Minerva","temple","","Rocca di Caverzago","Travo","","","IT","44.843884","9.518121","","","0","","","","","","","","","F","","god","Roman","","","","","","38597","383709","17219"
"1000827","Temple of Minerva Capta","Minerva","temple","","Caelian Hill","Rome","Rome","423025","IT","","","","","","","","-241","","-3","","","","F","","god","Roman","","no"
"1000828","Temple of Colle della Noce","","temple","","Località Colle della Noce","Ardea","Ardea","422843","IT","41.608159","12.548294","209","SW","0","","","","","","","","","","","","Roman"
"1000829","Roman temple","","temple","","","Nora","Nora","471979","IT","38.984624","9.01677","193","S","0","","","","","","","","","","","","Roman","","yes","","","","","","","","","","","","","","","","","","","https://nora.beniculturali.unipd.it/gli-edifici/edifici-religiosi/tempio-romano/"
"1000830","Temple of Vesta","","temple","","","Ascoli Piceno","Asculum","413036","IT","42.8523698","13.5768136","","","0","","","","","","","","","","","","Roman","","yes"
"1000831","Temple under S. Venanzio","","temple","","","Ascoli Piceno","Asculum","413036","IT","42.854673","13.573655","","","0","","","","","","","","","","","","Roman"
"1000832","Temple at the Church of San Silvestro","","temple","","Fraz. Villa San Silvestro","Cascia","","","IT","42.650692","13.055021","132","SE","0","","","","","","","","","","","","Roman","","yes","","","","","413384","","","","it=Tempio_romano_di_Villa_San_Silvestro","Q16612742"
"1000833","Temple with Double Cella","","temple","","Fraz. Villa San Silvestro","Cascia","","","IT","42.649412","13.056421","189","S","0","","","","","","","","","","","","Roman","","yes"
"1000834","Temple with Double Cella","","temple","","Località Nocette di Pale","Pale","","","IT","42.982969","12.777702","186","S","","","","","","","","","","","","","Roman","","yes"
"1000835","Temple of Hercules","","temple","","","Montorio al Vomano","","","IT","42.578458","13.594268","","","0","","","","","","","","","","","","Roman","","yes","","","","","","","","","it=Tempio_di_Ercole_(Montorio_al_Vomano)","Q26220411"
"1000836","Temple of Jupiter","","temple","","Pagliaroli","Cortino","","","IT","","","","","","","","","","","","","","","","","Roman","","yes"
"1000837","Italic Temple","","temple","","Località Pié di Francia","Ieri","","","IT","42.102117","13.755884","219","SW","0","","","","","","","","","","","","Italic","","yes","","","","","431684924","","","","it=Tempio_italico_di_Castel_di_Ieri","Q3983297"
"1000838","Temple","","temple","","San Rustico","Basciano","","413102","IT","42.599112","13.713173","249","W","0"
"1000839","Temple","","temple","","","Crognaleto","","","IT"
"1000840","Temple","","temple","","","Gallipoli","Anxa","","IT"
"1000841","Italic Temple","","temple","","Colle San Giorgio","Castiglione Messer Raimondo","","","IT","42.506952","13.864075","","","0","","","","","","","","","","","","","","no"
"1000842","Temple of Athena","","temple","acropolis","","Karthea","Karthaia","570333","GR","37.561084","24.330384","177","S","0","","early 5th c. BCE","-499","-475","-5","","","","","","","Greek","Doric","yes","","","","26382","372021189"
"1000843","Temple of Apollo","","temple","acropolis","","Karthea","Karthaia","570333","GR","37.560076","24.330818","36","NE","0","","ca. 530 BCE","-540","-520","-6","","","","","","","Greek","","yes","","","","26381"
"1000844","Temple of Hercules Curinus/Quirinus","Hercules","temple","","Monte Morrone","Sulmona","Sulmo","413165","IT","42.088524","13.934864","","","0","","","","","","","","","M","","hero","Roman","","yes","","","","","","","","","","","","","","","","","","","https://www.sabap-abruzzo.beniculturali.it/santuario-di-ercole-curino/"
"1000845","Temple","","temple","","Colle Maralto","Atri","Hatri","413163","IT","","","","","","","","","","","","","","","","","","","yes"
"1000846","Temple on the Via Sacra","","temple","","Madonna della Cona","Teramo","Interamnia Praetuttiorum","413179","IT","42.644942","13.674085","128","SE","0","","","","","","","","","","","","Roman","","yes"
"1000847","Hekatompedon (Mid-6th Century Temple of Athena)","Athena","temple","acropolis","","Athens","Athens","579885","GR","","","","","","","ca. 550 BCE","-560","-540","-6","","","","F","","god","Greek"
"1000848","Hekatompedon (Old Temple of Athena)","Athena","temple","acropolis","","Athens","Athens","579885","GR","37.9719","23.72628","81","E","0","","ca. 525 BCE","-530","-520","-6","","","","F","","god","Greek","","yes","","","also called the Peisistratid temple, Dörpfeld temple","26307","","","5686","","Old_Temple_of_Athena","Q683988","","","","","","380237SOTA"
"1000849","Temple","Iliad","temple","","","Athens","Athens","579885","GR","","","","","","","8th cent. or later","-799","","-8","","","","","","hero","Greek"
"1000850","Temple of Wingless Victory (Athena Nike)","Nike","temple","acropolis","","Athens","Athens","579885","GR","37.97154","23.72487","83","E","0","","","","","","","","","F","","concept","Greek","Ionic","yes","","","","","118337619","25117","","","Temple_of_Athena_Nike","Q384813","","","","","","380237SANi"
"1000851","Temple of Rome and Augustus","Rome, Augustus","temple","acropolis","","Athens","Athens","579885","GR","37.97162","23.72731","77","E","0","","Late 1st c. BCE","-25","14","-1","","","","M/F","","city, emperor","Roman","Ionic","yes","","","","26317","","","","","Temple_of_Roma_and_Augustus","Q2145005","","","","","","380237SRAu"
"1000852","Nikias Monument","Nikias (son of Nikodemos)","temple","acropolis","","Athens","Athens","579885","GR","37.9703","23.7269","280","W","0","","","-320","","-4","","","","","","","Greek","Doric","yes","","","","","","","","","Choragic_Monument_of_Nikias","Q3323331","","","","","","380237BNic"
"1000853","Temple of Isis","Isis","temple","acropolis","","Athens","Athens","579885","GR","37.9708379","23.7260106","189","S","0","","early 2nd c CE","101","125","2","","","","F","","","Greek"
"1000854","Temple of Apollo Delphinios","","temple","","","Athens","Athens","579885","GR","37.9686","23.7329","101","E","0","","Theseus' lifetime","-450","","-5","","","","M","","god","Greek","","yes","","","","26338","","","4642256","","","","","","","","","380237SDel"
"1000855","Cathedral Temple","","temple","","","Sora","Sora","433126","IT","41.723488","13.61544","126","SE","0","","","","","","","","","","","","Roman","","yes"
"1000856","Temple","Jupiter","temple","","La Cuma","Monte Rinaldo","","413109","IT","43.020135","13.581395","148","SE","0","","","-175","","-2","","","","M","","god","Roman","","yes"
"1000857","Temple","","temple","","","Corfinio","Corfinium","413105","IT","","","","","","","","","","","","","","","","","Roman","","yes"
"1000858","Asclepieion Temple","Asclepius","temple","acropolis","","Athens","Athens","579885","GR","37.9707553","23.726662","85","E","0","","","","","","","","","M","","hero","Greek","","yes","","","","","954340915","","","","","","","","","","","380237SAsk"
"1000859","Temple","","temple","acropolis","","Athens","Athens","579885","GR","","","","","","","","","","","","","","","","","","","","","","founded by Phaidra, located west of Asklepieion"
"1000860","Temple of Themis","Themis","temple","acropolis","","Athens","Athens","579885","GR","37.97081","23.7261025","139","SE","0","","4th cent. BCE","-399","-300","-4","","","","F","","concept","Greek","","yes","","","seen by Pausanias on his way to the Akropolis after leaving the Asklepieion"
"1000861","Temple","","temple","acropolis","","Athens","Athens","579885","GR","","","","","","","","","","","","","","","","","","","","","","seen by Pausanias after Apollo Delphinios & before he saw Kynosarges"
"1000862","Temple of Apollo Patroos","Apollo Patroos","temple","agora","","Athens","Athens","579885","GR","37.975527","23.7221256","101","E","0","","375-300 BCE","-375","-300","-4","","","","M","","god","Greek","","yes","","","","26345","","25125","5885","","Temple_of_Apollo_Patroos","Q3142437","","","","","","380237SPtr"
"1000863","Old Temple of Dionysus","Dionysus","temple","urban","","Athens","Athens","638356144","GR","37.969982","23.727752","76","E","0","","2nd half 6th c. BCE","-550","-500","-6","","","","M","","god","Greek","","yes","","","","","","","6795"
"1000864","Temple A","","temple","","","Fossombrone","Forum Sempronii","413149","IT","43.698312","12.827285","129","SE","0","","","","","","","","","","","","Roman","","yes"
"1000865","West Forum Temple","","temple","forum","","Fossombrone","Forum Sempronii","413149","IT","43.698208","12.827202","129","SE","0","","","","","","","","","","","","Roman","","","","","Orientation set to Temple A's"
"1000866","East Forum Temple","","temple","forum","","Fossombrone","Forum Sempronii","413149","IT","43.698384","12.82743","129","SE","0","","","","","","","","","","","","Roman","","yes","","","Orientation set to Temple A's"
"1000867","Augusteum","","temple","","","Fossombrone","Forum Sempronii","413149","IT","43.698284","12.828196","135","SE","0","","","","","","","","","","","","Roman","","yes"
"1000868","Temple A","","temple","forum","","Muntić","Nesactium","197405","HR","44.91633","13.969394","76","E","0","","2nd half 1C - end 2C CE","50","200","1","","","","","","","Roman","","yes"
"1000869","Temple B","","temple","forum","","Muntić","Nesactium","197405","HR","44.916415","13.969343","76","E","0","","start 3C CE","200","225","2","","","","","","","Roman","","yes"
"1000870","Temple C","","temple","forum","","Muntić","Nesactium","197405","HR","44.91651","13.969326","76","E","0","","2nd half 1C - end 2C CE","50","200","1","","","","","","","Roman","","yes"
"1000871","Temple A","","temple","","","Sbeitla","Sufetula","324816","TN","35.240608","9.119499","109","E","0","","","","","","","","","","","","Roman","","yes","","","","7869"
"1000872","Temple B","","temple","","","Sbeitla","Sufetula","324816","TN","35.240503","9.119455","109","E","0","","","","","","","","","","","","Roman","","yes","","","","7869","","","2443532"
"1000873","Temple C","","temple","","","Sbeitla","Sufetula","324816","TN","35.240388","9.119412","109","E","0","","","","","","","","","","","","Roman","","yes","","","","7869"
"1000874","Temple of Diana","","temple","forum","","Pula","Pola","197448","HR","44.87033","13.842182","156","SE","0","","2 BCE - 14 CE","-1","1","-1","","","","F","","god","Roman","","yes","","","Orientation from T. of Augustus"
"1000875","Temple of Augustus","","temple","hilltop","","Tarragona","Tarraco","","ES","41.119086","1.258057","214","SW","0","","14- CE","14","","1","","","","M","","emperor","Roman","","yes","","","Orientation from cathedral"
"1000876","Temple of Mater Matuta","Mater Matuta","temple","acropolis","","Borgo Le Ferriere","Satricum","423060","IT","41.513128","12.755083","227","SW","0","","","","","","","","","F","","god","Italic","","yes","","","","","297163719"
"1000877","Temple","","temple","","Caprifico di Torrecchia","Cisterna di Latina","","","IT","41.613647","12.826305","","","0","","","","","","","","","","","","Italic","","no"
"1000878","Temple of Hercules","Hercules","temple","sanctuary","Località Civitella","Campochiaro","","432875","IT","41.439294","14.508281","105","E","0","","2nd half 2nd c BCE","-149","-100","-2","","","","M","","hero","Roman","","yes"
"1000879","Temple P","","temple","","","Cività di Tricarico","","442546","IT","40.637509","16.058716","123","SE","0","","","","","","","","","","","","Italic","","yes"
"1000880","Italic Temple","","temple","rural sanctuary","","Cansano","Ocriticum","","IT","42.002701","13.989939","128","SE","0","","","","","","","","","","","","Italic","","yes","","","","29919"
"1000881","Small Temple","","temple","rural sanctuary","","Cansano","Ocriticum","","IT","42.002665","13.989423","128","SE","0"
"1000882","Temple","","temple","","Località la Stazza","Alatri","Aletrium","432664","IT","41.736941","13.343801","194","S","0"
"1000883","Acropolis Temple","","temple","acropolis","","Alatri","Aletrium","432664","IT","41.724251","13.344402","","","0"
"1000884","Cathedral Temple","","temple","acropolis","","Alatri","Aletrium","432664","IT","41.724872","13.344182","","","0"
"1000885","Temple of Hercules","","temple","","","Segni","Signia","423072","IT","","","","","","","","","","","","","","M","","god","Roman","","no"
"1000886","Temple of Bona Dea","","temple","","","Segni","Signia","423072","IT","","","","","","","","","","","","","","F","","hero","Roman","","no"
"1000887","Cathedral Temple","","temple","acropolis","","Anagni","Anagnia","422833","IT","41.742962","13.161927","","","0"
"1000888","Large Temple","","temple","acropolis","","Norma","Norba","422987","IT","41.589744","12.963078","301","NW","0","","","","","","","","","","","","Roman","","yes"
"1000889","Small Temple","","temple","acropolis","","Norma","Norba","422987","IT","41.590066","12.962967","213","SW","0","","","","","","","","","","","","Roman","","yes"
"1000890","Temple of Juno","Juno","temple","","","Norma","Norba","422987","IT","41.590443","12.957628","123","SE","0","","","","","","","","","F","","god","Roman","","yes"
"1000891","Temple of Diana","Diana","temple","acropolis","","Norma","Norba","422987","IT","41.593149","12.962213","209","SW","0","","","","","","","","","F","","god","Roman","","yes","","","Orientation hard to determine"
"1000892","Temple near Forum","","temple","","","Larino","Larinum","442629","IT","41.808344","14.915977","97","E","0","","","","","","","","","","","","Roman","","yes"
"1000893","Temple at Casarinaccio","","temple","","Località Casarinaccio","Ardea","Ardea","422843","IT","41.610932","12.549695","220","SW","0","","","","","","","","","","","","Roman","","yes"
"1000894","Archaic Temple","","temple","forum","","Tuscolo","Tusculum","423108","IT","41.798188","12.709342","8","N","0","","","","","","","","","","","","Italic","","yes"
"1000895","Temple of SS. Stimmate","","temple","","","Velletri","Velitrae","423117","IT","41.68542256","12.77418558","125","SE","0","","","","","","","","","","","","Italic","","yes"
"1000896","Temple L","","temple","","","Pietrabbondante","","433025","IT","41.739874","14.388928","127","SE","0","","","","","","","","","","","","Samnite","","yes"
"1000897","Temple of Juno Popluna","Juno","temple","","Località Loreto","Teano","Teanum Sidicinum","433146","IT","41.249558","14.077791","172","S","0"
"1000898","Theater-Temple of San Nicola","","temple","","","Pietravairano","","","IT","41.336209","14.169259","128","SE","0","","","","","","","","","","","","","","yes","","","Orientation based on survey plan","","251442732"
"1000899","Temple of Mercury","Mercury","temple","","","Vazi Sarra (Henchir Bez)","Vazitana Sarra Civitas","324848","TN","36.006354","9.547177","171","S","0","","","","","","","","","M","","god","","","yes","","","Orientation based on precinct wall"
"1000900","Temple of Mercury","Mercury","temple","","","Ouergech","Thuburnica","315221","TN","36.528925","8.465505","86","E","0","","","","","","","","","M","","god","","","yes","","","Orientation based on precinct wall"
"1000901","Temple of Mercury","Mercury","temple","","","","Cincaris","314933","TN","","","","","","","","","","","","","","","","","","","no"
"1000902","Italic Temple","","temple","","S. Maria in Canale","Collicello di Amelia","Trebula","","IT","42.616871","12.429529","158","S","0","","","","","","","","","","","","Italic","","yes"
"1000903","Temple","","temple","","Madonna dello Spineto","Quadri","Trebula","433163","IT","41.913733","14.283075","","","0","","","","","","","","","","","","Samnite","","yes"
"1000904","Temple of Zeus Lepsynos","Jupiter","temple","extraurban","","Kızılcakuyu","Euromos","599616","TR","37.374076","27.675272","65","NE","0","","","","","","","","","M","","god","Greek","","yes"
"1000905","Temple","","temple","","Orta","Karpuzlu","Alinda","599480","TR","37.559123","27.82549","88","E","0","","","","","","","","","","","","Greek","","yes"
"1000906","Temple R","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.582983","12.825508","95","E","0","","580 BCE","-580","","-6","","","","","","","Greek","","yes"
"1000907","Temple O","","temple","acropolis","","Selinunte","Selinus","462489","IT","37.582333","12.825308","97","E","0","","","","","","","","","","","","Greek","","yes"
"1000908","Temple A","","temple","","Località Loreto","Teano","Teanum Sidicinum","433146","IT","41.250066","14.078464","75","E","0","","","","","","","","","","","","","","yes","","","Orientation based on survey plan"
"1000909","Temple B","","temple","","Località Loreto","Teano","Teanum Sidicinum","433146","IT","41.25017","14.078442","75","E","0","","","","","","","","","","","","","","yes","","","Orientation based on survey plan"
"1000910","Temple C","","temple","","Località Loreto","Teano","Teanum Sidicinum","433146","IT","41.250291","14.078416","75","E","0","","","","","","","","","","","","","","yes","","","Orientation based on survey plan"
"1000911","Temple D","","temple","","Località Loreto","Teano","Teanum Sidicinum","433146","IT","41.250383","14.078377","75","E","0","","","","","","","","","F","","god","","","yes","","","Orientation based on survey plan"
"1000912","Acropolis Temple","","temple","","","Ariccia","Aricia","422844","IT","","","","","","","","","","","","","","","","","","","yes"
"1000913","Temple of Diana","","temple","","Vallericcia","Ariccia","Aricia","422844","IT","41.718001","12.670065","190","S","0","","","","","","","","","","","","","","yes","","","Orientation from Lilli"
"1000914","Temple","","temple","","Località Casaletto","Ariccia","Aricia","422844","IT"
"1000915","Temple of Piazza della Liberazione","","temple","","","Palestrina","Praeneste","423013","IT","41.83893","12.8904999","177","S","0"
"1000916","Temple","","temple","","Punto della Vipera","S. Marinella","Castrum Novum","432772","IT","","","","","","","","","","","","","","","","","Etruscan","","yes"
"1000917","Temple","","temple","","Le Bandite","Seggiano","","","IT","42.942901","11.571429","","","0","","","","","","","","","","","","","","","","","Position from @Nannini2013"
"1000918","Temple","","temple","","Montericco","Imola","Forum Cornelii","393424","IT","","","","","","","","-250","-200","-3","-180","","","","","","","","no","","","Known from architectural elements"
"1000919","Archaic Temple","","temple","","Zagara","Andros","","590097","GR","37.773813","24.865125","159","S","0","","","-570","-550","-6","","","","","","","Greek","","yes","","","","","","","","","","","","","","","","","","","https://circe-antique.huma-num.fr/notice.php?ID_site=2438"
"1000920","Temple","","temple","","","Vastogirardi","","433182","IT","41.785418","14.262162","157","SE","0","","","-130","-120","-2","","","","","","","Samnite","Doric","yes","","","","59154","","","","","","","","","","","","","","","http://www.sanniti.info/vastogir.html"
"1000921","Great Temple of Hera","","temple","sanctuary","Heraion","Samos","Samos","599641","GR","37.671948","26.885502","78","E","0","","Late 6th - early 5th c. BCE","-510","-474","-6","","","","F","","god","Greek","Ionic","yes","","","","11096","","","7764"
"1000922","Temple of Asclepius","Asclepius","temple","","Asclepeion","Epidafro","Epidauros","570127","GR","37.59863562","23.074455","79","E","0","","","","","","","","","M","","hero","Greek","","yes","","","","17777","","","","","Temple_of_Asclepius,_Epidaurus","Q7698713"
"1000923","Metroön","Cybele","temple","","","Olympia","Olympia","570531","GR","37.638816","21.630835","280","W","0","","","","","","","","","F","","god","Greek","","yes","","","","17793"
"1000924","Temple","","temple","","Imbelli","Campora S. Giovanni","Temesa","452469","IT","39.07564596","16.1111078","183","S","0","","","","","","","","","","","","Greek","","yes","","","Position from Google - check"
"1000925","Temple","","temple","","Contrada Marasà","Mandorleto","Locri Epizephyri","452369","IT","38.211181","16.238451","","","0","","","","","","","","","","","","Greek","","yes","","","","17993"
"1000926","Doric Temple","","temple","","Punta Stilo","Monasterace","Caulonia","452352","IT","38.445443","16.578723","90","E","0","","","","","","","","","","","","Greek","Doric","yes","","","","29940","66028350","","6862248"
"1000927","Temple of Zeus","Jupiter","temple","","","Shahat","Cyrene","373778","LY","32.822288","21.862595","95","E","0","","500-480 BCE","-499","-480","-5","","","","M","","god","Greek","Doric octostyle","yes","","","","11538","103565779","","9881","","Temple_of_Zeus,_Cyrene","Q12243758","","","","","","","1066"
"1000928","Temple of Demeter","","temple","","","Shahat","Cyrene","373778","LY","32.814256","21.856934","85","E","0","","","","","","","","","","","god","Greek","Doric hexastyle","yes","","","","61561","","","1209312","","","","","","","","","","1475"
"1000929","Temple","","temple","","Bagni di Stigliano","Canale di Monterano","","","IT","","","","","","","","","","","","","","","","","Roman","","yes"
"1000930","Forum Temple","","temple","","","Altino","Altinum","393374","IT","45.550029","12.391763","117","SE","0","","","","","","","","","","","","Roman","","yes","","","Info from survey"
"1000931","Temple of Aphrodite","","temple","","","Ancona","Ancona","413014","IT","43.6253452","13.5102418","134","SE","0","","end of 4th c BCE","-350","-300","-4","","","","F","","god","Greek","Doric hexastyle","yes"
"1000932","South Temple","","temple","","","Kalapodi","Abai","","GR","38.636619","22.895672","69","E","0","","","","","","","","","","","god","Greek","","yes","","","archaic phase","","540665"
"1000933","Forum Temple","","temple","","","Conza della Campania","Compsa","442550","IT","40.87016","15.330445","","","0","","","","","","","","","","","","Roman","","yes"
"1000934","Temple of Apollo Thermios","Apollo","temple","","","Thermo","Thermon","541139","GR","38.55984418","21.6680933","11","N","0","","late 7th c. BCE","-630","-610","-7","","","","M","","god","Greek","Doric 5x15","yes","","","","","728329645","","5684","","es=Templo_de_Apolo_(Termo)"
"1000935","Temple of Artemis","Artemis","temple","","Saint Theodore Monastery","Corfu","Corcyra","530834","GR","39.60712","19.91808","94","E","0","","580 BCE","-580","","-6","","","","","","godess","Greek","Doric Peripteral","yes","","","","","630250253","","5479","","Temple_of_Artemis,_Corfu","Q2654754"
"1000936","Temple of Apollo Epicurius","Apollo","temple","","","Phigalia","Bassae","","GR","37.429621","21.900202","14","N","0","","450 BCE","-450","-425","-5","","","","M","","god","Greek","Doric hexastyle","yes","","","orientation in @Kelly1995","10903","570148","","5622","","","","","","","","","374219SBas"
"1000937","Kardaki Temple","","temple","","Kardaki","Corfu","Corcyra","530834","GR","39.60136","19.9261","94","E","0","","510 BCE","-510","","-6","","","","","","","Greek","Doric","yes","","","","","","","","","Kardaki_Temple","Q63382820"
"1000938","Temple of Poseidon","Poseidon","temple","","","Kyras Vrysi","Isthmia","570316","GR","37.91575","22.99305","88","E","0","","690 BCE","-690","-650","-7","","","","M","","god","Greek","Doric","yes","","","","","107524051","","","","Temple_of_Isthmia","Q18385210"
"1000939","New Temple","","temple","","","Delphi","Delphi","540726","GR","38.480248","22.507672","189","S","0","","ca. 360 BCE","-375","-350","-4","","","","F","","god","Greek","Doric","yes","","","","","","","","","","Q105394648"
"1000940","Temple of Athena Pronaia","Athena","temple","","","Delphi","Delphi","540726","GR","38.480127","22.508375","173","S","0","","circa 510 BCE","-520","-500","-6","","","","F","","god","Greek","Doric","yes","","","","","513711610","","","","Temple_of_Athena_Pronaia","Q4915645"
"1000941","Temple of the Delians","Apollo","temple","","","Delos","Delos","599587","GR","37.40038","25.26695","263","W","0","","476 BCE","-476","-476","-5","","","","M","","god","Greek","Doric Peripteral Hexastyle","yes","","","","65206","","","","","Temple_of_the_Delians","Q27663954"
"1000942","Tholos of Delphi","Athena","temple","","","Delphi","Delphi","540726","GR","38.48016","22.507898","189","S","0","","400 BCE","-400","","-5","","","","","","god","Greek","Doric","yes","","","","","","","","","Tholos_of_Delphi","Q12013451"
"1000943","Temple of Nemesis","Nemesis","temple","acropolis","Agia Marina","Marathon","Rhamnous","580097","GR","38.2176","24.02689","92","E","0","","436 BCE","-436","-432","-5","","","","F","","concept","Greek","Doric Hexastyle","yes","","","","78058","580034","25435","9367","","fi=Nemesiksen_temppeli","Q94946184","","","","","","382240SNem"
"1000944","The Parthenon","Athena","temple","acropolis","","Athens","Athens","579885","GR","37.97146","23.72667","77","E","0","","447 BCE","-447","-432","-5","","","","F","","god","Greek","Doric","yes","","","","","168254096","","5584","","Parthenon","Q10288","","","","","","380237SAth"
"1000945","Temple of Hephaestus","Hephaestus","temple","agora","","Athens","Athens","579885","GR","37.97556","23.72145","102","E","0","","449 BCE","-449","-444","-5","","","","M","","god","Greek","Doric Peripteral Hexastyle","yes","","","","","558659669","","","","Temple_of_Hephaestus","Q756824","","","","","","380237SHep"
"1000946","Temple of Apollo","Apollo","temple","urban","","Corinthia","Corinth","570182","GR","37.90604","22.87916","70","E","0","","540 BCE","-540","-540","-6","","","","M","","god","Greek","Doric Peripteral Hexastyle","yes","","","","17757","570500582","","6052","","","","","","","","","379229SApT"
"1000947","Temple of Hera","Hera","temple","","Mon Repos","Corfu","Corcyra","530834","GR","39.60318","19.9243","86","E","0","","610 BCE","-610","","-7","","","","","","god","Greek","Doric","yes","","","","","545970870","","","","Temple_of_Hera,_Mon_Repos","Q64355226"
"1000948","Temple of Hera","","temple","","Foce del Sele","Capaccio","Poseidonia","","IT","40.488459","14.969705","96","E","0","","","","","","","","","","","god","Greek","Doric","yes","","","","29943","442610","","","","","Q3785099","","","","","","405150SHer"
"1000949","Temple of Cupra","Cupra","temple","","","Cupra Marittima","Cupra Maritima","413112","IT","43.0225465","13.85713","","","1","","","","","","","","","F","","god","","","no","","","Known from lit & inscr refs"
"1000950","Capitolium","Jupiter, Juno, Minerva","temple","forum","","Cupra Marittima","Cupra Maritima","413112","IT","43.033919","13.8527","73","E","0","","2nd 1/2 1st c. CE","51","100","1","","","","M/F","","god","Roman","","yes"
"1000951","Forum Temple","","temple","forum","Marina di Lago di Patria","Giuliano in Campania","Liternum","432911","IT","40.921079","14.029976","104","E","0","","1st 1/2 2nd c. BCE","-194","-150","-2","","","","","","","Roman","","yes"
"1000952","Sanctuary building","","shrine","countryside","Grasceto dei Cavallari","Tolfa","","","IT","42.18113913","11.9414382","94","E","0","","","","","","","","","","","","Etruscan","","yes"
"1000953","Tempietto","","temple","forum","","Roselle","Rusellae","413288","IT","42.826741","11.15898","85","E","0","","","","","","","","","","","","Roman","","yes","","","","55558"
"1000954","Temple","","temple","forum","","Roselle","Rusellae","413288","IT","42.827366","11.158912","203","SW","0","","","","","","","","","","","","Etruscan","","yes","","","","55561"
"1000955","Temple of Isis and Serapis","","temple","urban","","Taormina","Tauromenium","462506","IT","37.855558","15.28971","109","E","0","","","","","","","","","M/F","","god","Roman","Doric distyle in antis","yes","","","","","","","1211833"
"1000956","Temple under S. Caterina","","temple","urban","","Taormina","Tauromenium","462506","IT","37.85404","15.288131","118","SE","0","","2nd half 3rd c. BCE","-250","-200","-3","","","","","","","Greek","Peripteral","yes"
"1000957","Collegial Temple","Pertinax","temple","urban","","Ostia Antica","Ostia","","IT","41.755019","12.29114","321","NW","0","","end 2nd c. CE","194","194","2","","","","M","","emperor","Roman","","yes"
"1000958","Temple on Monte Landro","","temple","hilltop","Monte Landro","San Lorenzo Nuovo","","56738064","IT","42.679067","11.933201","188","S","0","","","","","","","","","","","","Etruscan","","yes"
"1000959","Tempio Italico","","temple","","","Casalbore","","","IT","41.234068","15.003951","146","SE","0","","","","","","","","","","","","Samnite","","yes","","","","","442531","","","","","","","","","","","","","","http://musei.beniculturali.it/musei?mid=815&nome=area-archeologica-del-tempio-italico-di-casalbore"
"1000960","Forum Temple","","temple","forum","","Susa","Segusio","167919","IT","45.13794","7.04468","189","S","0","","","","","","","","","","","","","","yes","","","","","","","","","it=Tempio_del_foro_di_Susa","Q84562587"
"1000961","Temple","","temple","urban","","Macchia di Circello","Ligures Baebiani","432907","IT","41.319417","14.811255","133","SE","0","","late 2nd c BCE","-125","-100","-2","","","","","","","Roman","","yes"
"1000962","Temple","","temple","","Valle San Giovanni","Petacciato","","","IT","42.011669","14.893068","","","1","","","","","","","","","","","","","","no","","","IDed from terracotta decoration"
"1000963","Temple on the Via Appia","","temple","rural","Via Appia","Rome","Rome","423025","IT","41.867149","12.503559","162","S","0"
"1000964","Quirinal Temple","","temple","urban","Quirinal Hill","Rome","Rome","423025","IT","41.898728","12.486109","92","E","0","","late 2nd - mid 3rd c CE","180","250","2","","","","","","","Roman","","no","","","","51954"
"1000965","Temple of Trajan","Trajan","temple","urban","","Santiponce","Italica","256231","ES","37.44024","-6.044604","58","NE","0","","","","","","","","","M","","emperor","Roman","","yes","","","","","627230788","","9184","","es=Templo_de_Trajano_de_Itálica","Q6141053"
"1000966","Temple A","","temple","forum","","Cáparra","Capera","236405","ES","40.167122","-6.101346","143","SE","0"
"1000967","Temple B","","temple","forum","","Cáparra","Capera","236405","ES","40.167065","-6.101456","143","SE","0"
"1000968","Temple C","","temple","forum","","Cáparra","Capera","236405","ES","40.167021","-6.101546","143","SE","0"
"1000969","Kothon Temple","","temple","","Kothon","Mozia","Motya","462373","IT","37.864578","12.466301","296","NW","0","","","","","","","","","","","","Punic","","yes","","","","40668"
"1000970","Cathedral Temple","","temple","forum","","Isernia","Aesernia","432652","IT","41.589998","14.226641","209","SW","0","","mid 3rd c BCE","-263","-225","-3","","","","","","","Roman","peripteros sine postico","yes"
"1000971","Vescovile Temple","","temple","forum","","Isernia","Aesernia","432652","IT","41.590054","14.226561","209","SW","0","","late 1st c. BCE","-50","0","-1","","","","","","","Roman","","yes","","","Orientation matched to other"
"1000972","Larger Temple","","temple","","","Schiavi D'Abruzzo","","433112","IT","41.806743","14.480875","143","SE","0","","early 2nd c. BCE","-199","-175","-2","","","","","","","","","yes","","","Orientation matched to other"
"1000973","Smaller Temple","","temple","","","Schiavi D'Abruzzo","","433112","IT","41.806796","14.481013","143","SE","0","","early 1st c. BCE","-99","","-1","","","","","","","","","yes"
"1000974","Temple C","Aesculapius","temple","","Località Le Salzare","Foce del Fosso dell’Incastro","Castrum Inui","438710","IT","41.579889","12.511341","237","SW","0","","Augustan","-31","0","-1","","","","","","","Roman","","yes"
"1000975","Temple of Diana","","temple","","","Monteleto","","","IT","43.380767","12.509051","","","0","","","","","","","","","","","","Roman","","yes"
"1000976","Temple","","temple","rural","Località Caipicchi","Nogna","","","IT","43.401557","12.44716","179","S","0","","2nd 1/2 2nd c. BCE","-150","-100","-2","","","","","","","Italic","","yes"
"1000977","Temple A","","temple","","","Luco dei Marsi","Lucus Angitiae","432676","IT","41.970967","13.460521","77","E","0","","","","","","","","","","","","Roman","","yes"
"1000978","Temple B","","temple","","","Luco dei Marsi","Lucus Angitiae","432676","IT","41.970548","13.460735","73","E","0","","","","","","","","","","","","Italic","","yes","","","Orientation from shed"
"1000979","Temple C","","temple","","","Luco dei Marsi","Lucus Angitiae","432676","IT","41.97044","13.46084","66","NE","0","","","","","","","","","","","","Italic","","yes","","","Orientation from shed"
"1000980","Temple B","","temple","urban sanctuary","","Pantanello","Metapontum","442658","IT","40.383887","16.823881","126","SE","0","","mid-5th c. BCE","-570","-530","-6","","","","","","","Greek","Doric","yes"
"1000981","Temple C","","temple","urban sanctuary","","Pantanello","Metapontum","442658","IT","40.38356","16.823339","115","SE","0","","early 5th c. BCE","-499","-475","-5","","","","","","","Greek","","yes","","","Dates for second version"
"1000982","Temple D","","temple","urban sanctuary","","Pantanello","Metapontum","442658","IT","40.384256","16.824029","110","E","0","","early 5th c. BCE","-499","-475","-5","","","","","","","Greek","Ionic","yes"
"1000983","Temple of Aphrodite","","temple","rural","","Urla","","","TR","","","","","","","","","","","","","","","","","Greek","","","","","News reports only"
"1000984","Temple at Colle Rimontato","","temple","","","Località Colle Rimontato","San Giovanni in Galdo","433086","IT","41.598522","14.755232","138","SE","0","","","","","","","","","","","","Italic","","yes"
"1000985","Temple of Arsinoë","Arsinoë","temple","","","Agios Tychon","Amathous","707462","CY","34.712123","33.143034","","","1","","","","","","","","","F","","hero","","Doric","yes"
"1000986","Temple","","temple","","Località Privati","Castellammare di Stabia","Stabiae","433128","IT","40.691204","14.49586","","","1","","","","","","","","","","","","Roman","","no","","","IDed from terracotta decoration"
"1000987","Tempietto","","temple","","","Paestum","Poseidonia","442733","IT","40.423369","14.999239","94","E","0","","early 5th c BCE","-499","","-5","","1001164","","","","","Greek","Doric","yes"
"1000988","Temple of Vacuna","Vacuna","temple","rural","Località Leone","Montenero Sabino","","","IT","42.277113","12.804933","83","E","0","","","","","","","","","F","","god","Italic","","yes"
"1000989","Temple A","","temple","forum","","Ordona","Herdonia","442613","IT","41.310025","15.622379","316","NW","0","","1st c. CE","1","100","1","","","","","","","","","yes"
"1000990","Temple B","","temple","forum","","Ordona","Herdonia","442613","IT","41.310267","15.621526","53","NE","0","","late 2nd c. BCE","-125","-100","-2","","","","","","","Roman","","yes"
"1000991","Italic Temple","","temple","mountain","Lago del Morrone","Pescosansonesco","","","IT","42.250387","13.876073","83","E"
"1000992","Republican Temple","","temple","","Coppa Mengoni","S. Paolo di Civitate","Teanum Apulum","442815","IT","41.76065","15.2341","","","0","","","","","","","","","","","","Roman","","yes","","","Location from AntonacciSanpaolo2001"
"1000993","Republican Temple","","temple","","Pezze della Chiesa","S. Paolo di Civitate","Teanum Apulum","442815","IT","41.772098","15.244148","","","0","","","","","","","","","","","","Roman","","yes","","","Location from AntonacciSanpaolo2001"
"1000994","Capitolium","","temple","forum","","Toulouse","Tolosa","246694","FR","43.600638","1.444406","85","E","0","","2nd half 1st c. CE","50","","1","400","","","","","","Roman","","yes"
"1000995","Temple of Jupiter Apenninus","Jupiter","temple","rural","Piaggia de' Bagni","Scheggia","Ad Ensem","","IT","43.4610632","12.7042737","","","1","","","","","","","","","M","","god","Roman","","no","","","Location from Pleiades","","857433537","","","","Temple_of_Jupiter_Apenninus","Q3983254"
"1000996","Temple at Trapeza","","temple","urban","Trapeza","Aigion","Rhypes","570647","GR","38.2197","22.0299","88","E","0","","520-510 BCE","520","510","6","","","","","","god","Greek","","yes","","","","","","","","","","","","","","","","382220URhy","","","https://chronique.efa.gr/?kroute=report&id=1595"
"1000997","Tempietto","","temple","mountain","Lago del Morrone","Pescosansonesco","","","IT","42.250308","13.876073","83","E","0","","","","","","","","","","","","","","yes"
"1000998","Tempio","","temple","","Località ""Le Rote""","Mazzano Romano","Fescennium","413133","IT","42.208627","12.415593","196","S","0","","","","","","","","","","","","Faliscan","","yes"
"1000999","Temple at Sant'Abbondio","","temple","","","Pompei","Pompeii","433032","IT","40.744815","14.499025","271","W","0","","","","","","","","","","","","","","yes"
"1001000","Temple of Sulis Minerva","Sulis Minerva","temple","sanctuary","","Bath","Aquae Sulis","79299","UK","51.381089","-2.360229","85","E","0","","late 1st c. CE","50","100","1","400","","","F","","god","Romano-Celtic","","yes"
"1001001","Podium Temple","","temple","urban","","Çanakkale","Alexandria Troas","550434","TR","39.751677","26.158405","285","W","0","","","","","","","","","","","","Roman","Ionic","yes"
"1001002","Temple of Apollo","Apollo","temple","sanctuary","","Ahmetbeyli","Claros","599719","TR","38.005037","27.193058","108","E","0","","","","","","","","","M","","god","Greek","Doric","yes"
"1001003","Temple of Artemis","Artemis","temple","sanctuary","","Ahmetbeyli","Claros","599719","TR","38.005237","27.193117","107","E","0","","late 4th - early 3rd c. BCE","-325","-275","-4","","","","F","","god","Greek","","yes"
"1001004","Geometric Temple","","temple","rural","","Nikoleika","Helike","570281","GR","38.208139","22.142451","113","SE","0","","End of 8th c. BCE","-720","-700","-8","-550","1001005","","","","","Greek","apsidal","yes"
"1001005","Archaic Temple","","temple","rural","","Nikoleika","Helike","570281","GR","38.208139","22.142451","","","0","","mid 6th c BCE","-560","-550","-6","-373-372","","1001004","","","","Greek","Doric"
"1001006","Roman temple","","temple","suburb","Vrina Plain","Butrint","Bouthroton","530824","AL","39.74514","20.028869","234","SW","0","","late 1st c. CE","50","100","1","","","","","","","Roman","Italic","yes"
"1001007","Temple of Asclepios","Asclepios","temple","urban","","Butrint","Bouthroton","530824","AL","39.745764","20.020064","138","SE","0","","","","","","","","","M","","hero","Greek","","yes","","","","11763"
"1001008","Acropolis Temple","Athena","temple","acropolis","","Butrint","Bouthroton","530824","AL","39.746923","20.021807","128","SE","0","","last q. 6th c. BCE","-525","-500","-6","","","","F","","god","Greek","","yes"