cartodb-rb-client 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. data/Gemfile +2 -2
  2. data/lib/cartodb-rb-client/cartodb/client/connection/cartodb.rb +1 -1
  3. data/lib/cartodb-rb-client/cartodb/model/base.rb +1 -1
  4. data/lib/cartodb-rb-client/cartodb/model/getters.rb +6 -9
  5. data/lib/cartodb-rb-client/cartodb/model/schema.rb +13 -2
  6. data/lib/cartodb-rb-client/cartodb/model/setters.rb +5 -9
  7. data/lib/cartodb-rb-client/version.rb +1 -1
  8. data/spec/client_spec.rb +3 -3
  9. data/spec/fixtures/cassettes/CartoDB_client/should_add_and_remove_colums_in_a_previously_created_table.yml +376 -0
  10. data/spec/fixtures/cassettes/CartoDB_client/should_allow_reserved_words_in_columns_names.yml +121 -0
  11. data/spec/fixtures/cassettes/CartoDB_client/should_change_a_previously_created_column.yml +174 -0
  12. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_and_get_its_table_definition.yml +123 -0
  13. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_forcing_the_schema_and_get_its_table_definition.yml +123 -0
  14. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_from_a_csv_file.yml +1971 -0
  15. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTILINESTRING_type_geometry.yml +123 -0
  16. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTIPOLYGON_type_geometry.yml +123 -0
  17. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_POINT_type_geometry.yml +123 -0
  18. data/spec/fixtures/cassettes/CartoDB_client/should_delete_a_table_s_row.yml +221 -0
  19. data/spec/fixtures/cassettes/CartoDB_client/should_drop_a_table.yml +278 -0
  20. data/spec/fixtures/cassettes/CartoDB_client/should_escape_properly_input_data_in_insert_queries.yml +121 -0
  21. data/spec/fixtures/cassettes/CartoDB_client/should_execute_a_select_query_and_return_results.yml +615 -0
  22. data/spec/fixtures/cassettes/CartoDB_client/should_get_a_table_by_its_name.yml +123 -0
  23. data/spec/fixtures/cassettes/CartoDB_client/should_import_any_kind_of_data_file.yml +6612 -0
  24. data/spec/fixtures/cassettes/CartoDB_client/should_insert_a_row_in_a_table.yml +121 -0
  25. data/spec/fixtures/cassettes/CartoDB_client/should_paginate_records.yml +2624 -0
  26. data/spec/fixtures/cassettes/CartoDB_client/should_rename_an_existing_table.yml +123 -0
  27. data/spec/fixtures/cassettes/CartoDB_client/should_return_errors_on_invalid_queries.yml +59 -0
  28. data/spec/fixtures/cassettes/CartoDB_client/should_return_nil_when_requesting_a_table_which_does_not_exists.yml +68 -0
  29. data/spec/fixtures/cassettes/CartoDB_client/should_return_user_s_table_list.yml +176 -0
  30. data/spec/fixtures/cassettes/CartoDB_client/should_update_a_row_in_a_table.yml +170 -0
  31. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_destroy_a_previously_created_record.yml +1398 -0
  32. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_initialize_attributes_of_the_model_without_persisting_them.yml +223 -0
  33. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_save_method.yml +1406 -0
  34. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_static_create_method.yml +1299 -0
  35. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_update_an_existing_record.yml +2028 -0
  36. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_add_more_columns_if_the_table_previously_exists.yml +990 -0
  37. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_contain_an_array_of_columns.yml +1443 -0
  38. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_a_table_with_custom_name_if_specified.yml +270 -0
  39. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_custom_data_types_columns.yml +421 -0
  40. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_polygon_type_geometry_columns.yml +272 -0
  41. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_the_table_in_cartodb_if_it_doesn_t_exists.yml +780 -0
  42. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_CartoDB_Client_instance_as_a_connection_object.yml +682 -0
  43. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_table_name.yml +727 -0
  44. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_return_only_data_columns.yml +829 -0
  45. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_allow_to_select_the_specified_fiels.yml +17953 -0
  46. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_count_all_records.yml +15596 -0
  47. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_find_a_record_by_its_id.yml +15197 -0
  48. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_order_results.yml +16439 -0
  49. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_paginate_results.yml +24501 -0
  50. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_return_all_records_paginated.yml +16488 -0
  51. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_search_records_by_certain_filters.yml +4950 -0
  52. data/spec/fixtures/cassettes/cartodb_spec_models.yml +2467 -0
  53. data/spec/fixtures/cassettes/clean_tables.yml +266 -0
  54. data/spec/model/data_spec.rb +6 -6
  55. data/spec/model/metadata_spec.rb +11 -3
  56. data/spec/model/scopes_spec.rb +2 -2
  57. data/spec/model_specs_helper.rb +2 -0
  58. data/spec/spec_helper.rb +18 -5
  59. data/spec/support/cartodb_factories.rb +3 -3
  60. data/spec/support/cartodb_helpers.rb +1 -1
  61. data/spec/support/cartodb_models.rb +26 -19
  62. metadata +97 -7
  63. data/spec/support/data/ngos.xlsx +0 -0
@@ -0,0 +1,1971 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://cartodb-rb-client.cartodb.com/upload
6
+ body:
7
+ encoding: UTF-8
8
+ string: ! "--4fbd035b\r\nContent-Disposition: form-data; name=\"file\"; filename=\"whs_features.csv\"\r\nContent-Type:
9
+ application/octet-stream\r\n\r\ntitle,latitude,longitude,description,region,type,endangered_reason,edited_region,endangered_year,external_links,wikipedia_link,comments,criteria,iso_code,size,name,country,whs_site_id,date_of_inscription,whs_source_page\nAflaj
10
+ Irrigation Systems of Oman,22.998889,57.536056,\"A qanāt (from Arabic: قناة‎)
11
+ (Iran, Syria and Jordan) is a water management system used to provide a reliable
12
+ supply of water to human settlements and for irrigation in hot, arid and semi-arid
13
+ climates. Qanats are also called kārīz (or kārēz from Persian: كاريز) (Iran,
14
+ Afghanistan, Pakistan and Central Asia, derived from Persian: كاهریز), kahan
15
+ (from Persian: کهن), khettara (Morocco); galeria (Spain); falaj (United Arab
16
+ Emirates and Oman); Kahn (Baloch) or foggara/fughara (North Africa). Alternative
17
+ terms for qanats in Asia and North Africa are kakuriz, chin-avulz, and mayun.
18
+ Common variants of qanat in English include kanat, khanat, kunut, kona, konait,
19
+ ghanat, ghundat.\n\nThe qanat technology is known to have developed in pre-Islamic
20
+ Iran[when?] and then spread to other cultures. However, a recently discovered
21
+ falaj system in al-Ain, UAE, dates to 1000 BC, and another in Umm Safah, Sharja,
22
+ dates to the Iron Age. Also, a qanat-like system called the Turpan water system
23
+ originated in China during the Han Dynasty (206 BCE – 24 CE).\n\nThe value
24
+ of a qanat is directly related to the quality, volume and regularity of the
25
+ water flow. Much of the population of Iran and other arid countries in Asia
26
+ and North Africa historically depended upon the water from qanats; the areas
27
+ of population corresponded closely to the areas where qanats are possible.
28
+ Although a qanat was expensive to construct, its long-term value to the community,
29
+ and therefore to the group who invested in building and maintaining it, was
30
+ substantial.\n\nQanats are constructed as a series of well-like vertical shafts,
31
+ connected by gently sloping tunnels. Qanats tap into subterranean water in
32
+ a manner that efficiently delivers large quantities of water to the surface
33
+ without need for pumping. The water drains relying on gravity, with the destination
34
+ lower than the source, which is typically an upland aquifer. Qanats allow
35
+ water to be transported over long distances in hot dry climates without losing
36
+ a large proportion of the water to seepage and evaporation.\n\nIt is very
37
+ common in the construction of a qanat for the water source to be found below
38
+ ground at the foot of a range of foothills of mountains, where the water table
39
+ is closest to the surface. From this point, the slope of the qanat is maintained
40
+ closer to level than the surface above, until the water finally flows out
41
+ of the qanat above ground. To reach an aquifer, qanats must often extend for
42
+ long distances.\n\nQanats are sometimes split into an underground distribution
43
+ network of smaller canals called kariz. Like qanats, these smaller canals
44
+ were below ground to avoid contamination. In some cases water from a qanat
45
+ is stored in a reservoir, typically storing night flow for daytime use. An
46
+ Ab Anbar is an example of a traditional qanat fed reservoir for drinking water
47
+ in Persian antiquity.\n\nThe qanat system has the advantage of being resistant
48
+ to natural disasters such as earthquakes and floods, and to deliberate destruction
49
+ in war. Furthermore, it is almost insensitive to the levels of precipitation,
50
+ delivering a flow with only gradual variations from wet to dry years.\n\nThe
51
+ qanat technology is used most extensively in areas with the following characteristics:[citation
52
+ needed]\n\nA typical town or city in Iran and elsewhere where the qanat is
53
+ used has more than one qanat. Fields and gardens are located both over the
54
+ qanats a short distance before they emerge from the ground and after the surface
55
+ outlet. Water from the qanats defines both the social regions in the city
56
+ and the layout of the city.\n\nThe water is freshest, cleanest, and coolest
57
+ in the upper reaches and more prosperous people live at the outlet or immediately
58
+ upstream of the outlet. When the qanat is still below grade, the water is
59
+ drawn to the surface via water wells or animal driven Persian wells. Private
60
+ subterranean reservoirs could supply houses and buildings for domestic use
61
+ and garden irrigation as well. Further, air flow from the qanat is used to
62
+ cool an underground summer room (shabestan) found in many older houses and
63
+ buildings.\n\nDownstream of the outlet, the water runs through surface canals
64
+ called jubs (jūbs) which run downhill, with lateral branches to carry water
65
+ to the neighborhood, gardens and fields. The streets normally parallel the
66
+ jubs and their lateral branches. As a result, the cities and towns are oriented
67
+ consistent with the gradient of the land; this is a practical response to
68
+ efficient water distribution over varying terrain.\n\nThe lower reaches of
69
+ the canals are less desirable for both residences and agriculture. The water
70
+ grows progressively more polluted as it passes downstream. In dry years the
71
+ lower reaches are the most likely to see substantial reductions in flow.\n\nTraditionally
72
+ qanats are built by a group of skilled laborers, muqannīs, with hand labor.
73
+ The profession historically paid well and was typically handed down from father
74
+ to son.\n\nThe critical, initial step in qanat construction is identification
75
+ of an appropriate water source. The search begins at the point where the alluvial
76
+ fan meets the mountains or foothills; water is more abundant in the mountains
77
+ because of orographic lifting and excavation in the alluvial fan is relatively
78
+ easy. The muqannīs follow the track of the main water courses coming from
79
+ the mountains or foothills to identify evidence of subsurface water such as
80
+ deep-rooted vegetation or seasonal seeps. A trial well is then dug to determine
81
+ the location of the water table and determine whether a sufficient flow is
82
+ available to justify construction. If these prerequisites are met, then the
83
+ route is laid out aboveground.\n\nEquipment must be assembled. The equipment
84
+ is straightforward: containers (usually leather bags), ropes, reels to raise
85
+ the container to the surface at the shaft head, hatchets and shovels for excavation,
86
+ lights, spirit levels or plumb bobs and string. Depending upon the soil type,
87
+ qanat liners (usually fired clay hoops) may also be required.\n\nAlthough
88
+ the construction methods are simple, the construction of a qanat requires
89
+ a detailed understanding of subterranean geology and a degree of engineering
90
+ sophistication. The gradient of the qanat must be carefully controlled—too
91
+ shallow a gradient yields no flow—too steep a gradient will result in excessive
92
+ erosion, collapsing the qanat. And misreading the soil conditions leads to
93
+ collapses which at best require extensive rework and, at worst, can be fatal
94
+ for the crew.\n\nConstruction of a qanat is usually performed by a crew of
95
+ 3-4 muqannīs. For a shallow qanat, one worker typically digs the horizontal
96
+ shaft, one raises the excavated earth from the shaft and one distributes the
97
+ excavated earth at the top.\n\nThe crew typically begins from the destination
98
+ to which the water will be delivered into the soil and works toward the source
99
+ (the test well). Vertical shafts are excavated along the route, separated
100
+ at a distance of 20–35 m. The separation of the shafts is a balance between
101
+ the amount of work required to excavate them and the amount of effort required
102
+ to excavate the space between them, as well as the ultimate maintenance effort.
103
+ In general, the shallower the qanat, the closer the vertical shafts. If the
104
+ qanat is long, excavation may begin from both ends at once. Tributary channels
105
+ are sometimes also constructed to supplement the water flow.\n\nMost qanats
106
+ in Iran run less than 5 km, while some have been measured at ~70 km in length
107
+ near Kerman. The vertical shafts usually range from 20 to 200 meters in depth,
108
+ although qanats in the province of Khorasan have been recorded with vertical
109
+ shafts of up to 275 m. The vertical shafts support construction and maintenance
110
+ of the underground channel as well as air interchange. Deep shafts require
111
+ intermediate platforms to simplify the process of removing spoils.\n\nThe
112
+ construction speed depends on the depth and nature of the ground. If the earth
113
+ is easy/soft to work; at 20 meters depth, a crew of 4 people can excavate
114
+ a horizontal length of 40 meters per day. When the vertical shaft reaches
115
+ 40 meters, they can only excavate 20 meters horizontally per day and at 60
116
+ meters in depth this drops below 5 horizontal meters per day. In Algeria,
117
+ a common speed is just 2m per day at 15m depth. Deep, long qanats (which many
118
+ are) require years and even decades to construct.\n\nThe excavated material
119
+ is usually transported by means of leather bags up the vertical shafts. It
120
+ is mounded around the vertical shaft exit, providing a barrier that prevents
121
+ windblown or rain driven debris from entering the shafts. These mounds may
122
+ be covered to provide further protection to the qanat. From the air, these
123
+ shafts look like a string of bomb craters.\n\nThe qanat's water-carrying channel
124
+ must have a sufficient downward slope that water flows easily. However the
125
+ downward gradient must not be so great as to create conditions under which
126
+ the water transitions between supercritical and subcritical flow; if this
127
+ occurs, the waves which are established can result in severe erosion that
128
+ can damage or destroy the qanat. In shorter qanats the downward gradient varies
129
+ between 1:1000 and 1:1500, while in longer qanats it may be almost horizontal.
130
+ Such precision is routinely obtained with a spirit level and string.\n\nIn
131
+ cases where the gradient is steeper, underground waterfalls may be constructed
132
+ with appropriate design features (usually linings) to absorb the energy with
133
+ minimal erosion. In some cases the water power has been harnessed to drive
134
+ underground mills. If it is not possible to bring the outlet of the qanat
135
+ out near the settlement, it is necessary to run a jub or canal overground.
136
+ This is avoided when possible to limit pollution, warming and water loss due
137
+ to evaporation.\n\nThe vertical shafts may be covered to minimize in-blown
138
+ sand. The channels of qanats must be periodically inspected for erosion or
139
+ cave-ins, cleaned of sand and mud and otherwise repaired. Air flow must be
140
+ assured before entry for safety.\n\nSome damaged qanats have been restored.
141
+ In order to be sustainable, restoration needs to take into account many non-technical
142
+ factors, beginning with the process of selecting the qanat to be restored.
143
+ In the case of Syria, three sites were chosen based on a national inventory
144
+ conducted in 2001. One of them, the Drasiah qanat of Dmeir, was completed
145
+ in 2002. Selection criteria included the availability of a steady groundwater
146
+ flow, social cohesion and willingness to contribute of the community using
147
+ the qanat, and the existence of a functioning water rights system.\n\nThe
148
+ primary applications of qanats are for irrigation, providing cattle with water
149
+ and drinking water supply. Other applications include cooling and ice storage.\n\nQanats
150
+ used in conjunction with a wind tower can provide cooling as well as a water
151
+ supply. A wind tower is a chimney-like structure positioned above the house;
152
+ of its four openings, the one opposite the wind direction is opened to move
153
+ air out of the house. Incoming air is pulled from a qanat below the house.
154
+ The air flow across the vertical shaft opening creates a lower pressure (see
155
+ Bernoulli effect) and draws cool air up from the qanat tunnel, mixing with
156
+ it. The air from the qanat was drawn into the tunnel at some distance away
157
+ and is cooled both by contact with the cool tunnel walls/water and by the
158
+ giving up latent heat of evaporation as water evaporates into the air stream.
159
+ In dry desert climates this can result in a greater than 15°C reduction in
160
+ the air temperature coming from the qanat; the mixed air still feels dry,
161
+ so the basement is cool and only comfortably moist (not damp). Wind tower
162
+ and qanat cooling have been used in desert climates for over 1000 years.\n\nIn
163
+ 400 BC Persian engineers had already mastered the technique of storing ice
164
+ in the middle of summer in the desert.\n\nThe ice could be brought in during
165
+ the winters from nearby mountains. But in a more usual & sophisticated method
166
+ they had a wall made along east-west direction close to the Ice Pit (yakhchal).In
167
+ winter the qanat water was being canalized to north side of the wall. The
168
+ shadow of the wall makes water freeze more quickly so they could have more
169
+ ice per each winter day. Then ice was being stored in a specially designed,
170
+ naturally cooled refrigerators called yakhchal (meaning ice pits). A large
171
+ underground space with thick insulated walls was connected to a qanat, and
172
+ a system of windcatchers or Wind Towers was used to draw cool subterranean
173
+ air up from the qanat to maintain temperatures inside the space at low levels,
174
+ even during hot summer days. As a result, the ice melted slowly and ice was
175
+ available year-round.\n\nThe Qanats, called Kariz (rhymes with \"\"breeze\"\")
176
+ \ in Pashto and Dari, have also been in use for hundreds of years. Kariz structures
177
+ are especially found in the Southern Afghanistan provinces of Kandahar, Uruzgan,
178
+ Nimroz and Hilmand. The incessant war for the last 30 years has destroyed
179
+ a number of these ancient structures. In the troubled times maintenance was
180
+ not always possible. To add to the troubles, at present (2008) the cost of
181
+ labour has become very high and maintaining the Kariz structures is no longer
182
+ possible[dubious – discuss]. Lack of skilled artisans who have the traditional
183
+ knowledge also poses difficulties. A number of the large farmers are abandoning
184
+ their Kariz which has been in their families sometimes for centuries, and
185
+ moving to tube and dug wells backed by diesel pumps[citation needed].\n\nHowever
186
+ the government of Afghanistan is aware of the importance of these structures
187
+ and all efforts are being made to repair, reconstruct and maintain (through
188
+ the community) the kariz[citation needed]. The Ministry of Rural Rehabilitation
189
+ and Development along with National and International NGOs is making the effort.\n\nStill,
190
+ there are functional qanat systems in 2009. American forces are reported to
191
+ have unintentionally destroyed some of the channels during expansion of a
192
+ military base, creating tensions between them and the local community. Some
193
+ of these tunnels have been used to store supplies, and to move men and equipment
194
+ underground.\n\nAn oasis at Turpan in the deserts of northwestern China uses
195
+ water provided by qanat (locally karez). Turfan has long been the center of
196
+ a fertile oasis and an important trade center along the Silk Road's northern
197
+ route, at which time it was adjacent to the kingdoms of Korla and Karashahr
198
+ to the southwest. The historical record of the karez system extends back to
199
+ the Han Dynasty. The Turfan Water Museum (see photos on this page) is a Protected
200
+ Area of the People's Republic of China because of the importance of the local
201
+ karez system to the history of the area. The number of karez systems in the
202
+ area is slightly below 1,000 and the total length of the canals is about 5,000
203
+ kilometers.\n\nIn Karnataka, India, a Qanat-type structure called Suranga
204
+ is used to tap underground water. But these are rarely in use these days[citation
205
+ needed].\n\nIt has been suggested that alleged underground temples at Gua
206
+ Made in Java reached by shafts, in which masks of a green metal were found,
207
+ originated as a qanat.\n\nIn the middle of the twentieth century, it is estimated
208
+ that approximately 50,000 qanats were in use in Iran, each commissioned and
209
+ maintained by local users. Of these only 25,000 remain in use as of 1980.\n\nThe
210
+ oldest and largest known qanat is in the Iranian city of Gonabad which after
211
+ 2700 years still provides drinking and agricultural water to nearly 40,000
212
+ people. Its main well depth is more than 360 meters and its length is 45 kilometers.
213
+ Yazd, Khorasan and Kerman are the known zones for their dependence with an
214
+ extensive system of qanats.\n\nIn traditional Persian architecture, a Kariz
215
+ (کاریز) is a small Qanat, usually within a network inside an urban setting.
216
+ Kariz is what distributes the Qanat into its final destinations.\n\nA survey
217
+ of Qanat systems in the Kurdistan region of Iraq conducted by the Department
218
+ of Geography at Oklahoma State University (USA) on behalf of UNESCO in 2009
219
+ found that out of 683 karez systems, some 380 were still active in 2004, but
220
+ only 116 in 2009. Reasons for the decline of qanats include \"\"abandonment
221
+ and neglect\"\" previous to 2004, \"\"excessive pumping from wells\"\" and,
222
+ since 2005, drought. Water shortages are said to have forced over 100,000
223
+ people who depended on karez systems for their livelihoods to leave their
224
+ homes since 2005. The study says that a single karez has the potential to
225
+ provide enough household water for nearly 9,000 individuals and irrigate over
226
+ 200 hectares of farmland. UNESCO and the government of Iraq plan to rehabilitate
227
+ Karez through a Karez Initiative for Community Revitalization to be launched
228
+ in 2010. Most of the karez are in Sulaymaniyah Governorate (84%). A large
229
+ number are also found in Erbil Governorate (13%), especially on the broad
230
+ plain around and in Erbil city.\n\nAmong the qanats built in the Roman Empire
231
+ was possibly the longest continuous qanat ever built, the 94 km long Gadara
232
+ Aqueduct in northern Jordan. Partly following the course of an older Hellenistic
233
+ aqueduct, excavation work arguably started after a visit of emperor Hadrian
234
+ in 129-130 AD. The Gadara Aqueduct was never quite finished, and was put in
235
+ service only in sections.\n\nThe Chagai district is in the north west corner
236
+ of Balochistan, Pakistan, bordering with Afghanistan and Iran. Qanats, locally
237
+ known as karezes, are found more broadly in this region. They are spread from
238
+ Chaghai district all the way up to Zhob district. A number of them are present
239
+ in Qilla Abdullah and Pishin districts. Karezes are also extensively found
240
+ in the neighbouring areas of Afghanistan such as Kandahar. The remains of
241
+ karezes found in different parts of the district are attributed to the Arabs.\n\nQanats
242
+ were found over much of Syria. The widespread installation of groundwater
243
+ pumps has lowered the water table and qanat system. Qanats have gone dry and
244
+ been abandoned across the country.\n\nIn Oman from the Iron Age Period (found
245
+ in Salut, Bat and other sites) a system of underground aqueducts called Falaj
246
+ were constructed, a series of well-like vertical shafts, connected by gently
247
+ sloping horizontal tunnels. There are three types of Falaj Daudi (داوودية)with
248
+ underground aqueducts Ghaili (الغيلية ) requiring a dam to collect the water
249
+ Aini (العينية ) whose source is a water spring These enabled large scale agriculture
250
+ to flourish in a dry land environment According to UNESCO some 3,000 aflaj
251
+ (plural) or falaj (singular), are still in use in Oman today. Nizwa, the former
252
+ capital city of Oman, was built around a falaj which is in use to this day.
253
+ These systems date to before the Iron Age in Oman . In July 2006, five representative
254
+ examples of this irrigation system were inscribed as a World Heritage Site.\n\nThe
255
+ oasis of Al Ain in the United Arab Emirates continues traditional falaj (qanat)
256
+ irrigations for the palm-groves and gardens.\n\nThere are 4 main oases in
257
+ the Egyptian desert. The Kharga Oasis is one of them which has been extensively
258
+ studied. As early as the second half of the 5th century BC there is evidence
259
+ that water was being used via qanats. The qanat is excavated through water-bearing
260
+ sandstone rock which seeps into the channel to collect in a basin behind a
261
+ small dam at the end. The width is approximately 60 cm, but the height ranges
262
+ from 5 to 9 meters; it is likely that the qanat was deepened to enhance seepage
263
+ when the water table dropped (as is also seen in Iran). From there the water
264
+ was used to irrigate fields.\n\nThere is another instructive structure located
265
+ at the Kharga Oasis. A well which apparently dried up was improved by driving
266
+ a side shaft through the easily penetrated sandstone (presumably in the direction
267
+ of greatest water seepage) into the hill of Ayn-Manâwîr to allow collection
268
+ of additional water. After this side shaft had been extended, another vertical
269
+ shaft was driven to intersect the side shaft. Side chambers were built and
270
+ holes bored into the rock—presumably at points where water seeped from the
271
+ rocks—are evident.\n\nDavid Mattingley reports foggara extending for hundreds
272
+ of miles in the Garamantes area near Jarma in Libya: \"\"The channels were
273
+ generally very narrow - less than 2 feet wide and 5 high - but some were several
274
+ miles long, and in total some 600 foggara extended for hundreds of miles underground.
275
+ The channels were dug out and maintained using a series of regularly-spaced
276
+ vertical shafts, one every 30 feet or so, 100,000 in total, averaging 30 feet
277
+ in depth, but sometimes reaching 130.\"\" (\"\"The 153 Club Newsletter\"\",
278
+ July 2007 No. 112, pp. 14–19; reprinted from Current world Archaeology.\n\nThe
279
+ foggara water management system in Tunisia, used to create oases, is similar
280
+ to that of the Iranian qanat. The foggara is dug into the foothills of a fairly
281
+ steep mountain range such as the eastern ranges of the Atlas mountains. Rainfall
282
+ in the mountains enters the aquifer and moves toward the Saharan region to
283
+ the south. The foggara, 1 to 3 km in length, penetrates the aquifer and collects
284
+ water. Families maintain the foggara and own the land it irrigates over a
285
+ ten meter wide, with width only by the size of plot that the available water
286
+ will irrigate.\n\nQanats (designated foggaras in Algeria) are the source of
287
+ water for irrigation at large oases like that at Gourara. The foggaras are
288
+ also found at Touat (an area of Adrar 200 km from Gourara). The length of
289
+ the foggaras in this region is estimated to be thousands of kilometers.\n\nAlthough
290
+ sources suggest that the foggaras may have been in use as early as 200 AD,
291
+ they were clearly in use by the 11th century after the Arabs took possession
292
+ of the oases in the 10th century and the residents embraced Islam.\n\nThe
293
+ water is metered to the various users through the use of distribution weirs
294
+ which meter flow to the various canals, each for a separate user.\n\nThe humidity
295
+ of the oases is also used to supplement the water supply to the foggara. The
296
+ temperature gradient in the vertical shafts causes air to rise by natural
297
+ convection, causing a draft to enter the foggara. The moist air of the agricultural
298
+ area is drawn into the foggara in the opposite direction to the water run-off.
299
+ In the foggara it condenses on the tunnel walls and the air passed out of
300
+ the vertical shafts. This condensed moisture is available for reuse.\n\nIn
301
+ southern Morocco the qanat (locally khettara) is also used. On the margins
302
+ of the Sahara Desert, the isolated oases of the Draa River valley and Tafilalt
303
+ have relied on qanat water for irrigation since the late-14th century. In
304
+ Marrakech and the Haouz plain the qanats have been abandoned since the early
305
+ 1970s as they've dried; in the Tafilaft area half of the 400 khettaras are
306
+ still in use. The Hassan Adahkil Dam's impact on local water tables is said
307
+ to be one of the many reasons given for the loss of half of the khettara.\n\nThe
308
+ black berbers (haratin) of the south were the hereditary class of qanat diggers
309
+ in Morocco who build and repair these systems. Their work was hazardous.\n\nQanats
310
+ have preserved in Armenia in the community of Shvanidzor, in the southern
311
+ province of Syunik, bordering with Iran. Qanats are named kahrezes in Armenian.
312
+ There are 5 kahrezes in Shvanidzor. Four of them were constructed in XII-XIVc,
313
+ even before the village was founded. The fifth kahrez was constructed in 2005.
314
+ Potable water runs through I, II and V kahrezs. Kahrez III and IV are in quite
315
+ poor condition. In summer, especially in July and August, the amount of water
316
+ reaches its minimum, creating critical situation in the water supply system.
317
+ Still, kahrezes are the main source of potable and irrigation water for the
318
+ community.\n\nThe 5653 m long Claudius Tunnel, meant for draining the largest
319
+ Italian inland water, Fucine Lake, was constructed using the qanat technique.
320
+ It featured shafts up to 122 m deep. The entire ancient town of Palermo in
321
+ Sicily was equipped with a huge qanat system built during the Arab period
322
+ (827–1072). Many of the qanat are now mapped and some can be visited. The
323
+ famous Scirocco room has an air-conditioning system cooled by the flow of
324
+ water in a qanat and a \"\"wind tower\"\", a structure able to catch the wind
325
+ and direct it into the room.\n\nThe Raschpëtzer near Helmsange in southern
326
+ Luxembourg is a particularly well preserved example of a Roman qanat. It is
327
+ probably the most extensive system of its kind north of the Alps. To date
328
+ some 330 m of the total tunnel length of 600 m have been explored. Thirteen
329
+ of the 20 to 25 shafts have been investigated. The qanat appears to have provided
330
+ water for a large Roman villa on the slopes of the Alzette valley. It was
331
+ built during the Gallo-Roman period, probably around the year 150 and functioned
332
+ for about 120 years thereafter.\n\nThere are still many examples of galeria
333
+ or qanat systems in Spain, most likely brought to the area by the Moors during
334
+ their occupation of the Iberian peninsula. Turrillas in Andalusia on the north
335
+ facing slopes of the Sierra de Alhamilla has evidence of a qanat system. Granada
336
+ is another site with an extensive qanat system.\n\nQanats in the Americas,
337
+ usually referred to as filtration galleries, can be found in the Nazca region
338
+ of Peru and in northern Chile. The Spanish introduced qanats into Mexico in
339
+ 1520 AD.\",\"Dakhiliya, Sharqiya and Batinah Regions\",cultural,,\"Dakhiliya,
340
+ Sharqiya and Batinah Regions\",,\"[The Origin and Spread of Qanats in the
341
+ Old World|http://www.jstor.org/stable/986162]#[\"\"Assessment of the Contributions
342
+ of Traditional Qanats in Sustainable Water Resources Management\"\"|http://www.ingentaconnect.com/content/routledg/cijw/2006/00000022/00000004/art00005]#[10.1080/07900620600551304|http://dx.doi.org/10.1080%2F07900620600551304]#[\"\"Reasons
343
+ behind Failure of Qanats in the 20th Century\"\"|http://scitation.aip.org/vsearch/servlet/VerityServlet?KEY=ASCERL&smode=strresults&maxdisp=25&possible1=Madani%2C+Kaveh&possible1zone=author&OUTLOG=NO&aqs=true&viewabs=ASCECP&key=DISPLAY&docID=1&page=0&chapter=0&aqs=true]#[10.1061/40976(316)77|http://dx.doi.org/10.1061%2F40976%28316%2977]\",http://en.wikipedia.org/wiki/Qanat,,[v],OM,14560000.0,Aflaj
344
+ Irrigation Systems of Oman,Oman,1207,2006,http://whc.unesco.org/en/list/1207\nAlto
345
+ Douro Wine Region,41.101667,-7.798889,\"\",\"Douro Region, Trás-os-Montes
346
+ e Alto Douro\",cultural,,\"Douro Region, Trás-os-Montes e Alto Douro\",,\"\",http://en.wikipedia.org/wiki/Douro_DOC,,\"[iii],[iv],[v]\",PT,246000000.0,Alto
347
+ Douro Wine Region,Portugal,1046,2001,http://whc.unesco.org/en/list/1046\nAmiens
348
+ Cathedral,49.895,2.301667,\"The Cathedral of Our Lady of Amiens (French: Cathédrale
349
+ Notre-Dame d'Amiens), or simply Amiens Cathedral, is a Roman Catholic cathedral
350
+ and seat of the Bishop of Amiens, Jean-Luc Bouilleret. The cathedral is the
351
+ tallest complete cathedral in France, with the greatest interior volume (estimated
352
+ at 200,000 m³). The vaults of the nave are 42.30 m high, the tallest nave
353
+ vaults in any completed French cathedral, and surpassed only by the incomplete
354
+ Beauvais Cathedral. This monumental cathedral is located in Amiens, the chief
355
+ city of Picardy, in the Somme River valley a little over 100 kilometers north
356
+ of Paris.\n\nNotre-Dame d'Amiens has been listed as a UNESCO World Heritage
357
+ Site since 1981 and was profiled in a PBS documentary.\n\nThe lack of documentation
358
+ concerning the construction of the Gothic cathedral may be in part the result
359
+ of fires that destroyed the chapter archives in 1218 and again in 1258—a fire
360
+ that damaged the cathedral itself. Bishop Evrard de Fouilly initiated work
361
+ on the cathedral in 1220. Robert de Luzarches was the architect until 1228,
362
+ and was followed by Thomas de Cormont until 1258. His son, Renaud de Cormont,
363
+ acted as the architect until 1288. The chronicle of Corbie gives a completion
364
+ date for the cathedral of 1266. Finishing works continued, however. Its floors
365
+ are covered with a number of designs, such as the swastika (to symbolize Jesus'
366
+ triumph over death). The labyrinth was installed in 1288. The cathedral contains
367
+ the alleged head of John the Baptist, a relic brought from Constantinople
368
+ by Wallon de Sarton as he was returning from the Fourth Crusade.\n\nThe construction
369
+ of the cathedral at this period can be seen as resulting from a coming together
370
+ of necessity and opportunity. The destruction of earlier buildings and attempts
371
+ at rebuilding by fire forced the fairly rapid construction of a building that,
372
+ consequently, has a good deal of artistic unity. The long and relatively peaceful
373
+ reign of Louis IX of France brought a prosperity to the region, based on thriving
374
+ agriculture and a booming cloth trade, that made the investment possible.
375
+ The great cathedrals of Reims and Chartres are roughly contemporary.\n\nThe
376
+ original design of the flying buttresses around the choir had them placed
377
+ too high to counteract the force of the ceiling arch pushing outwards resulting
378
+ in excessive lateral forces being placed on the vertical columns. The structure
379
+ was only saved when, centuries later, masons placed a second row of more robust
380
+ flying buttresses that connected lower down on the outer wall. This fix failed
381
+ to counteract similar issues with the lower wall which began to develop large
382
+ cracks around the late Middle Ages. This was solved by another patch that
383
+ consisted of a wrought iron bar chain being installed around the mezzanine
384
+ level to resist the forces pushing the stone columns outward. The chain was
385
+ installed red hot to act as a cinch, tightening as it cooled.\n\nThe west
386
+ front of the cathedral, (illustration, right) built in a single campaign,
387
+ 1220–36, shows an unusual degree of artistic unity: its lower tier with three
388
+ vast deep porches is capped with the gallery of twenty-two over lifesize kings,
389
+ which stretches across the entire façade beneath the rose window. Above the
390
+ rose window there is an open arcade, the galerie des sonneurs. Flanking the
391
+ nave, the two towers were built without close regard to the former design,
392
+ the south tower being finished in 1366, the north one, reaching higher, in
393
+ 1406.\n\nThe Western portals of the cathedral are justly famous for their
394
+ elaborate sculpture, featuring a gallery of locally-important saints and large
395
+ eschatological scenes. Statues of saints in the portal of the cathedral have
396
+ been identified as including the locally venerated Saints Victoricus and Gentian,
397
+ Saint Domitius, Saint Ulphia, and Saint Fermin.\n\nIn the book Mr Standfast,
398
+ John Buchan has his character Richard Hannay describe the cathedral as being
399
+ \"\"the noblest church that the hand of man ever built only for God.\"\"\n\nDuring
400
+ the process of laser cleaning in the 1990s, it was discovered that the western
401
+ façade of the cathedral was originally painted in multiple colours. A technique
402
+ was perfected to determine the exact make-up of the colours as they were applied
403
+ in the 13th century. Then, in conjunction with the laboratories of EDF (Electricity
404
+ of France) and the expertise of the Society Skertzo, elaborate lighting techniques
405
+ were developed to project these colours directly on the façade with precision,
406
+ recreating the polychromatic appearance of the 13th century. When projected
407
+ on the statues around the portals, the result is a stunning display that brings
408
+ the figures to life. The projected colors are faint to photograph, but a good
409
+ quality DSLR will provide excellent results as shown here.\n\nOf course, the
410
+ full magical effect can best be appreciated by direct viewing, accompanied
411
+ by stirring music, which can be done at the Son et lumière on Summer evenings,
412
+ during the Christmas Fair, and over the New Year.\n\nAmiens cathedral contains
413
+ the largest medieval interior in Western Europe, supported by 126 pillars.
414
+ Both the nave and the chancel are vast but extremely light, with considerable
415
+ amounts of stained glass surviving, despite the depredations of war.\n\nThe
416
+ ambulatory surrounding the choir is richly decorated with polychrome sculpture
417
+ and flanked by numerous chapels. One of the most sumptuous is the Drapers'
418
+ chapel. The cloth industry was the most dynamic component of the medieval
419
+ economy, especially in northern France, and the cloth merchants were keen
420
+ to display their wealth and civic pride. Another striking chapel is dedicated
421
+ to St Thomas of Canterbury, a 13th century dedication that complements the
422
+ cathedral's own very full list of martyrs.\n\nThe interior contains works
423
+ of art and decoration from every period since the building of the cathedral.\n\nThe
424
+ initial impetus for the building of the cathedral came from the installation
425
+ of the reputed head of John the Baptist on 17 December 1206. The head was
426
+ part of the loot of the Fourth Crusade, which had been diverted from campaigning
427
+ against the Turks to sacking the great Christian city of Constantinople. A
428
+ sumptuous reliquary was made to house the skull. Although later lost, a 19th
429
+ century replica still provides a focus for prayer and meditation in the North
430
+ aisle.\n\nSome of the most important works of art are sequences of polychrome
431
+ sculpture, dating mainly from the late 15th and the 16th centuries. A large
432
+ sequence in the North transept illustrates Jesus' Cleansing of the Temple,
433
+ with imaginative tableaux of the Temple. Both sides of the ambulatory are
434
+ lined with sequences illustrating the lives of the two saints whose cults
435
+ brought large numbers of pilgrims to the cathedral: John the Baptist and St
436
+ Firmin, the first bishop of Amiens. The artists took care to create a parallelism
437
+ in the telling of the stories: both saints, decapitated for offending the
438
+ rich and powerful, suffer neglect and loss, until a later generation discovers
439
+ their relics and houses them fittingly.\n\nThe baroque pulpit, constructed
440
+ of marble and gilded wood, dominates the nave of the cathedral. It is supported
441
+ by three allegorical female figures, apparently representing Faith, Hope and
442
+ Charity, the three Theological Virtues.\n\n\n\nCoordinates: 49°53′42″N 2°18′08″E\uFEFF
443
+ / \uFEFF49.895°N 2.30222°E\uFEFF / 49.895; 2.30222\",\"Department of Somme,
444
+ Picardie Region\",cultural,,\"Department of Somme, Picardie Region\",,[Amiens
445
+ Cathedral.|http://www.britannica.com/eb/article-9106231]#[Amiens Cathedral
446
+ - World Heritage Site|http://www.worldheritagesite.org/sites/amiens.html]#[360°
447
+ photos of the cathedral|http://www.world-heritage-tour.org/europe/france/amiens/map.html]#[Outstanding
448
+ photos of the cathedral|http://www.pbase.com/ericdeparis/cathedrale_de_amiens]#[Photos|http://kunsthistorie.com/galleri/index.php?album=Frankrike%2FAmiens&sortby=name&order=asc],http://en.wikipedia.org/wiki/Amiens_Cathedral,,\"[i],[ii]\",FR,8600.0,Amiens
449
+ Cathedral,France,162,1981,http://whc.unesco.org/en/list/162\nAncient City
450
+ of Bosra,32.51806,36.48167,\"Bosra (Arabic: بصرى‎, also Bostra, Busrana, Bozrah,
451
+ Bozra, Busra Eski Şam, Busra ash-Sham, Nova Trajana Bostra) is an ancient
452
+ city administratively belonging to the Daraa Governorate in southern Syria.
453
+ It is a major archaeological site and has been declared a UNESCO World Heritage
454
+ Site.\n\nThe settlement was first mentioned in the documents of Tutmose III
455
+ and Akhenaton (14th century BC). Bosra was the first Nabatean city in the
456
+ 2nd century BC. The Nabatean Kingdom was conquered by Cornelius Palma, a general
457
+ of Trajan, in 106.\n\nUnder the Roman Empire, Bosra was renamed Nova Trajana
458
+ Bostra, and was the residence of the legio III Cyrenaica and capital of the
459
+ Roman province Arabia Petraea. The city flourished and became a major metropolis
460
+ at the juncture of several trade routes, including the Roman road to the Red
461
+ Sea. The two Councils of Arabia were held at Bostra in 246 and 247 AD. The
462
+ city was conquered by the Sassanid Persians in the early 7th century, and,
463
+ after a short Byzantine reconquest, was finally captured by the forces of
464
+ the Rashidun Caliphate under Khalid ibn Walid in the Battle of Bosra (634).
465
+ Thereafter it was an Islamic possession.\n\nBosra played an important part
466
+ in the early life of the Prophet of Islam, Mohammed as described in the entry
467
+ for the Christian Monk, Bahira. Bahira was witnessing to Muhammad in the prophethood.\n\nToday,
468
+ Bosra is a major archaeological site, containing ruins from Roman, Byzantine,
469
+ and Muslim times, its main feature being the well preserved Roman theatre.
470
+ Every year there is a national music festival hosted in the main theater.\n\nOf
471
+ the city which once counted 80,000 inhabitants, there remains today only a
472
+ village settled among the ruins. The second century Roman theater, constructed
473
+ probably under Trajan, is the only monument of this type with its upper gallery
474
+ in the form of a covered portico which has been integrally preserved. It was
475
+ fortified between 481 and 1231 AD.\n\nFurther, Nabatean and Roman monuments,
476
+ Christian churches, mosques and Madrasahs are present within the half ruined
477
+ enceinte of the city. The structure of this monument a central plan with eastern
478
+ apses flanked by 2 sacristies exerted a decisive influence on the evolution
479
+ of Christian architectural forms, and, to a certain extent, on Islamic style
480
+ as well. Al-Omari Mosque of Bosra is one of the oldest surviving mosques in
481
+ Islamic history.\n\nClose by are the Kharaba Bridge and the Gemarrin Bridge,
482
+ both Roman bridges.\n\nCoordinates: 32°31′N 36°29′E\uFEFF / \uFEFF32.517°N
483
+ 36.483°E\uFEFF / 32.517; 36.483\",Governorate of Deraa,cultural,,Governorate
484
+ of Deraa,,[Catholic Encyclopedia on Bosra|http://www.newadvent.org/cathen/02707a.htm]#[Official
485
+ website of Bosra city|http://www.bosracity.com/]#[Bosra World Heritage site
486
+ in panographies - 360 degree interactive imaging|http://www.WHTour.org/22]#[Extensive
487
+ photo site about Bosra|http://www.pbase.com/dosseman_syria/bosra],http://en.wikipedia.org/wiki/Bosra,,\"[i],[iii],[vi]\",SY,,Ancient
488
+ City of Bosra,Syrian Arab Republic,22,1980,http://whc.unesco.org/en/list/22\nAncient
489
+ City of Nessebar,42.65611,27.73,\"Nesebar (Bulgarian: Несебър, pronounced
490
+ [neˈsebər], also transcribed as Nessebar or Nesebur; ancient name: Mesembria)
491
+ is an ancient town and one of the major seaside resorts on the Bulgarian Black
492
+ Sea Coast, located in Burgas Province. It is the administrative centre of
493
+ the homonymous Nesebar Municipality. Often referred to as the \"\"Pearl of
494
+ the Black Sea\"\" and \"\"Bulgaria's Dubrovnik\"\", Nesebar is a rich city-museum
495
+ defined by more than three millennia of ever-changing history.\n\nIt is a
496
+ one of the most prominent tourist destinations and seaports on the Black Sea,
497
+ in what has become a popular area with several large resorts—the largest,
498
+ Sunny Beach, is situated immediately to the north of Nesebar.\n\nNesebar has
499
+ on several occasions found itself on the frontier of a threatened empire,
500
+ and as such it is a town with a rich history. The ancient part of the town
501
+ is situated on a peninsula (previously an island) connected to the mainland
502
+ by a narrow man-made isthmus, and it bears evidence of occupation by a variety
503
+ of different civilisations over the course of its existence. Its abundance
504
+ of historic buildings prompted UNESCO to include Nesebar in its list of World
505
+ Heritage Sites in 1983.\n\nAs of December 2009, the town has a population
506
+ of 11,626 inhabitants. It lies at 42°39′N 27°44′E\uFEFF / \uFEFF42.65°N 27.733°E\uFEFF
507
+ / 42.65; 27.733Coordinates: 42°39′N 27°44′E\uFEFF / \uFEFF42.65°N 27.733°E\uFEFF
508
+ / 42.65; 27.733.\n\nInhabited in the Antiquity by the Thracians and the Ancient
509
+ Greeks, the original Thracian settlement Menebria was called Mesembria (Ancient Greek:
510
+ Μεσήμβρια) by the Ancient Greeks. Under this name it was still known in the
511
+ Middle Ages to Bulgarians and Byzantines.\n\nOriginally a Thracian settlement
512
+ known as Menebria, the town became a Greek colony when settled by Dorians
513
+ from Megara at the beginning of the 6th century BC, and was an important trading
514
+ centre from then on and a rival of Apollonia (Sozopol). It remained the only
515
+ Doric colony along the Black Sea coast, as the rest were typical Ionic colonies.
516
+ Remains from the Hellenistic period include the acropolis, a temple of Apollo,
517
+ and an agora. A wall which formed part of the fortifications can still be
518
+ seen on the north side of the peninsula. Bronze and silver coins were minted
519
+ in the city since the 5th century BC and gold coins since the 3rd century
520
+ BC.\n\nThe town fell under Roman rule in 71 BC, yet continued to enjoy privileges
521
+ such as the right to mint its own coinage. It was one of the most important
522
+ strongholds of the Byzantine Empire from the 5th century AD onwards, and was
523
+ fought over by Byzantines and Bulgarians, being captured and incorporated
524
+ in the lands of the First Bulgarian Empire in 812 by Khan Krum after a two
525
+ week siege only to be ceded back to Byzantium by Knyaz Boris I in 864 and
526
+ reconquered by his son Tsar Simeon the Great. During the time of the Second
527
+ Bulgarian Empire it was also contested by Bulgarian and Byzantine forces and
528
+ enjoyed particular prosperity under Bulgarian tsar Ivan Alexander (1331–1371)
529
+ until it was conquered by Crusaders led by Amadeus VI, Count of Savoy in 1366.
530
+ The Bulgarian version of the name, Nesebar or Mesebar, has been attested since
531
+ the 11th century.\n\nMonuments from the Middle Ages include the 5–6th century
532
+ Stara Mitropoliya (\"\"old bishopric\"\"; also St Sophia), a basilica without
533
+ a transept; the 10th century church of the Virgin; and the 11th century Nova
534
+ Mitropoliya (\"\"new bishopric\"\"; also St Stephen) which continued to be
535
+ embellished until the 18th century. In the 13th and 14th century a remarkable
536
+ series of churches were built: St Theodore, St Paraskeva, St Michael St Gabriel,
537
+ and St John Aliturgetos.\n\nThe capture of the town by the Turks in 1453 marked
538
+ the start of its decline, but its architectural heritage remained and was
539
+ enriched in the 19th century by the construction of wooden houses in style
540
+ typical for the Bulgarian Black Sea Coast during this period. It was a kaza
541
+ centre in İslimye sanjak of Edirne Province before 1878. After the Liberation
542
+ of Bulgaria from Ottoman rule in 1878, Nesebar became part of the autonomous
543
+ Ottoman province of Eastern Rumelia as a kaza centre in Burgaz sanjak until
544
+ it united with the Principality of Bulgaria in 1886.\n\nAround the end of
545
+ the 19th century Nesebar was a small town of Greek fishermen and vinegrowers,
546
+ but developed as a key Bulgarian seaside resort since the beginning of the
547
+ 20th century. After 1925 a new town part was built and the historic Old Town
548
+ was restored.\n\nNesebar is sometimes said to be the town with the highest
549
+ number of churches per capita.[1], [2] Although this might be wrong, their
550
+ number and variety is still impressive. Some of the most famous include:\n\nWhether
551
+ built during the Byzantine, Bulgarian or Ottoman rule of the city, the churches
552
+ of Nesebar represent the rich architectural heritage of the Eastern Orthodox
553
+ world and illustrate the gradual development from Early Christian basilicas
554
+ to medieval cross-domed churches.\n\nNesebar Gap on Livingston Island in the
555
+ South Shetland Islands, Antarctica is named after Nesebar.\",Burgas Province,cultural,,Burgas
556
+ Province,,[Evaluation|http://whc.unesco.org/archive/advisory_body_evaluation/217.pdf]#[Gallery
557
+ of pictures from Nesebar|http://www.pbase.com/ngruev/nesebur]#[Folklore Ensemble
558
+ Slanchev Bryag – Nessebar|http://www.nessebar-folk.com/]#[Ancient Nesebar|http://www.ancient-nessebar.com/]#[Portal
559
+ of Nessebar|http://www.nessebar-bulgaria.com/],http://en.wikipedia.org/wiki/Nesebar,,\"[iii],[iv]\",BG,270000.0,Ancient
560
+ City of Nessebar,Bulgaria,217,1983,http://whc.unesco.org/en/list/217\nTiya,8.43491,38.6121,\"Tiya
561
+ is a town in southern Ethiopia. Located in the Gurage Zone of the Southern
562
+ Nations, Nationalities, and Peoples Region south of Addis Ababa, the town
563
+ has a latitude and longitude of 8°26′N 38°37′E\uFEFF / \uFEFF8.433°N 38.617°E\uFEFF
564
+ / 8.433; 38.617Coordinates: 8°26′N 38°37′E\uFEFF / \uFEFF8.433°N 38.617°E\uFEFF
565
+ / 8.433; 38.617.\n\nTiya is best known for its adjacent archeological site,
566
+ which is distinguished by 36 standing stones or stelae, \"\"32 of which are
567
+ engraved with enigmatic symbols, notably swords,\"\" marking a large, prehistoric
568
+ burial complex. A German ethnographic expedition had visited the site in April
569
+ 1935, and had found at one hour's journey to the south of the caravan camp
570
+ the stone monoliths with sword symbol, which had been seen earlier by Neuville
571
+ and Père Azaïs. The archeological site was designated a World Heritage Site
572
+ in 1980.\n\nOther points of interest near Tiya include Melka Awash, the Hera
573
+ Shetan crater lake, and Agesoke a place where very tall naturally ordered
574
+ stoneblocks could be seen.\n\nBased on figures from the Central Statistical
575
+ Agency in 2005, Tiya has an estimated total population of 3,363 of whom 1,615
576
+ are men and 1,748 are women. The 1994 national census reported this town had
577
+ a total population of 1,856 of whom 894 were males and 962 were females. Tiya
578
+ is one of three towns in Soddo woreda.\",\"Sodo woreda, Gurage zone, Southern
579
+ Nation Nationalities & Peoples Region\",cultural,,\"Sodo woreda, Gurage zone,
580
+ Southern Nation Nationalities & Peoples Region\",,[UNESCO Tiya Site|http://whc.unesco.org/en/list/12],http://en.wikipedia.org/wiki/Tiya,,\"[i],[iv]\",ET,,Tiya,Ethiopia,12,1980,http://whc.unesco.org/en/list/12\nAncient
581
+ Thebes with its Necropolis,25.73333,32.6,\"Thebes (Θῆβαι, Thēbai, Arabic:
582
+ طيبة‎, Ṭībah) is the Greek name for a city in Ancient Egypt located about
583
+ 800 km south of the Mediterranean, on the east bank of the river Nile. The
584
+ Theban Necropolis is located nearby on the west bank of the Nile. Thebes was
585
+ inhabited from around 3200 BC. It was the eponymous capital of Waset, the
586
+ fourth Upper Egyptian nome. Waset was the capital of Egypt during part of
587
+ the 11th Dynasty (Middle Kingdom) and most of the 18th Dynasty (New Kingdom),
588
+ when Hatshepsut built a Red Sea fleet to facilitate trade between Thebes Red
589
+ Sea port of Elim, modern Quasir, and Elat at the head of the Gulf of Aqaba.
590
+ Traders bought frankincense, myrrh, bitumen, natron, fine woven linen, juniper
591
+ oil and copper amulets for the mortuary industry at Karnak with Nubian gold.
592
+ With the 19th Dynasty the seat of government moved to the Delta. The archaeological
593
+ remains of Thebes offer a striking testimony to Egyptian civilization at its
594
+ height. The Greek poet Homer extolled the wealth of Thebes in the Iliad, Book
595
+ 9 (c. 8th Century BC): \"\"... in Egyptian Thebes the heaps of precious ingots
596
+ gleam, the hundred-gated Thebes.\"\"\n\nThe name Thebai is the Greek designation
597
+ of the ancient Egyptian opet \"\"The Karnak Temple\"\" (from coptic ta-pe,
598
+ Ta-opet became Thebai). At the seat of the Theban triad of Amun, Mut, and
599
+ Khonsu, Thebes was known in the Egyptian language from the end of the New
600
+ Kingdom as niwt-imn, \"\"The City of Amun.\"\" This found its way into the
601
+ Hebrew Bible as נא אמון nōʼ ʼāmôn (Nahum 3:8),\"\"no\"\" in Hebrew meaning
602
+ city with \"\"no amon\"\" or \"\"City of Amon\"\" referring to the Egyptian
603
+ deity Amon-Ra, most likely it is also the same as נא (\"\"No\"\") (Ezekiel
604
+ 30:14). In Greek this name was rendered Διόσπολις Diospolis, \"\"City of Zeus\"\",
605
+ as Zeus was the god whom the Greeks identified with Amun, see interpretatio
606
+ graeca. The Greeks surnamed the city μεγάλη megale, \"\"the Great\"\", to
607
+ differentiate it from numerous other cities called Diospolis. The Romans rendered
608
+ the name Diospolis Magna.\n\nIn modern usage, the mortuary temples and tombs
609
+ on the west bank of the river Nile are generally thought of as part of Thebes.\n\nIn
610
+ 1979, the ruins of ancient Thebes were inscribed by UNESCO as a World Cultural
611
+ Heritage site. The two great temples, now called Luxor (Arabic: الأقصر, Al-Uqṣur,
612
+ \"\"The palaces\"\") and al-Karnak (الكرنك), the Valley of the Kings and the
613
+ Valley of the Queens are among the great achievements of ancient Egypt.\n\nThe
614
+ site of Thebes is populated at least since the Middle Paleolithic.\n\n\n\nCoordinates:
615
+ 25°43′14″N 32°36′37″E\uFEFF / \uFEFF25.72056°N 32.61028°E\uFEFF / 25.72056;
616
+ 32.61028\",Governorate of Qina,cultural,,Governorate of Qina,,\"[More information
617
+ on ancient Thebes, a World Cultural Heritage site|http://whc.unesco.org/en/list/87/]#[Theban
618
+ Mapping Project|http://www.thebanmappingproject.com/]#[Ramesseum/Ancient Thebes
619
+ Digital Media Archive (photos, laser scans, panoramas)|http://archive.cyark.org/ancient-thebes-info]#[ICOMOS
620
+ Heritage at Risk 2001/2002|http://www.international.icomos.org/risk/2001/egyp2001.htm]\",\"http://en.wikipedia.org/wiki/Thebes,_Egypt\",,\"[i],[iii],[vi]\",EG,73900000.0,Ancient
621
+ Thebes with its Necropolis,Egypt,87,1979,http://whc.unesco.org/en/list/87\nHistoric
622
+ City of Trogir,43.5125,16.25167,\"\",County of Split-Dalmatia,cultural,,County
623
+ of Split-Dalmatia,,\"\",http://en.wikipedia.org/wiki/Trogir,,\"[ii],[iv]\",HR,64000.0,Historic
624
+ City of Trogir,Croatia,810,1997,http://whc.unesco.org/en/list/810\nAntigua
625
+ Guatemala,14.566667,-90.666667,\"La Antigua Guatemala (commonly referred to
626
+ as just Antigua or La Antigua) is a city in the central highlands of Guatemala
627
+ famous for its well-preserved Spanish Mudéjar-influencedBaroque architecture
628
+ as well as a number of spectacular ruins of colonial churches. It has been
629
+ designated a UNESCO World Heritage Site.\n\nAntigua Guatemala serves as the
630
+ municipal seat for the surrounding municipality of the same name. It also
631
+ serves as the departmental capital of Sacatepéquez Department.\n\nThe city
632
+ had a peak population of some 60,000 in the 1770s; the bulk of the population
633
+ moved away in the late 18th century. Despite significant population growth
634
+ in the late 20th century, the city had only reached half that number by the
635
+ 1990s. According to the 2007 census, the city has some 34,685 inhabitants.\n\nLa
636
+ Antigua Guatemala means the \"\"Old Guatemala\"\" and was the third capital
637
+ of Guatemala. The first capital of Guatemala was founded on the site of a
638
+ Kakchikel-Maya city, now called Iximche, on Monday, July 25, 1524—the day
639
+ of Saint James—and therefore named Ciudad de Santiago de los Caballeros de
640
+ Goathemalan (City of Saint James of the Knights of Guatemala). Naturally,
641
+ St. James became the patron saint of the city.\n\nAfter several Cakchiquel
642
+ uprisings, the capital was moved to a more suitable site in the Valley of
643
+ Alotenango (Rio Guacalate) on November 22, 1527, and kept its original name.
644
+ When this city, on the site of present-day San Miguel Escobar, was destroyed
645
+ on September 11, 1541 by a devastating lahar from the Volcán de Agua, the
646
+ colonial authorities decided to move once more, this time to the Panchoy Valley.
647
+ So, on March 10, 1543 the Spanish conquistadors founded present-day Antigua,
648
+ and again, it was named Santiago de los Caballeros. For more than 200 years
649
+ it served as the seat of the military governor of the Spanish colony of Guatemala,
650
+ a large region that included almost all of present-day Central America and
651
+ the southernmost State of Mexico: Chiapas. In 1566 King Felipe II of Spain
652
+ gave it the title of \"\"Muy Noble y Muy Leal\"\" (\"\"Very Noble and Very
653
+ Loyal\"\").\n\nOn September 29, 1717, an estimated 7.4 magnitude earthquake
654
+ hit Antigua Guatemala, and destroyed over 3,000 buildings. Much of the city's
655
+ architecture was ruined. The damage the earthquake did to the city made authorities
656
+ consider moving the capital to another city.\n\nIn 1773, the Santa Marta earthquakes
657
+ destroyed much of the town, which led to the third change in location for
658
+ the city. The Spanish Crown ordered (1776) the removal of the capital to a
659
+ safer location, the Valley of the Shrine, where Guatemala City, the modern
660
+ capital of Guatemala, now stands. This new city did not retain its old name
661
+ and was christened Nueva Guatemala de la Asunción (New Guatemala of the Ascension)
662
+ and its patron saint is Our Lady of Ascension. The badly damaged city of Santiago
663
+ de los Caballeros was ordered abandoned, although not everyone left, and was
664
+ thereafter referred to as la Antigua Guatemala (the Old Guatemala).\n\nCentral
665
+ Park (Parque Central) is the heart of the city. The reconstructed fountain
666
+ there is a popular gathering spot. Off to the side of the Central Park, the
667
+ Arco de Santa Catalina is among the many notable architectural landmarks of
668
+ La Antigua.\n\nLa Antigua is noted for its very elaborate religious celebrations
669
+ during Lent (Cuaresma), leading up to Holy Week (Semana Santa) and Easter
670
+ (Pascua). Each Sunday in Lent, one of the local parishes sponsor a Procession
671
+ through the streets of Antigua. Elaborate and beautiful artistic carpets predominantly
672
+ made of dyed sawdust, flowers and even fruits and vegetables adorn the processions'
673
+ path.\n\nDue to its popularity amongst tourists and its very well developed
674
+ tourism infrastructure, Antigua Guatemala is often used as a central location
675
+ in which many choose to set up base and from here, visit other tourist areas
676
+ in Guatemala and Central America. Cruise ships that dock at Guatemalan ports
677
+ offer trips to Antigua from both the Pacific and Atlantic.\n\nAntigua also
678
+ holds a sizeable retirement community from the US as well as Europe as its
679
+ colonial charm has appealed to many who have crossed paths with this enchanting
680
+ and romantic town.\n\nTourism is the main driver of the economy. Antigua is
681
+ also a coffee producing region of Anacafé.\n\nAntigua is known as a destination
682
+ for people who want to learn Spanish through immersion. There are many Spanish
683
+ language schools in Antigua and it is one of the most popular and best recognized
684
+ centers for Spanish language study by students from Europe and North America.
685
+ Language institutes are one of the primary industries of Antigua, along with
686
+ tourism.\n\nThe University of San Carlos in Antigua was founded by the Papal
687
+ Bull of Pope Innocent XI issued dated 18 June 1687.\n\nAntigua GFC football
688
+ club has played in the Guatemala top division for several years but have been
689
+ playing in the second division lately. Their home stadium is the Estadio Pensativo
690
+ which has a capacity of 9,000. They are nicknamed Los panzas verdes (\"\"Green
691
+ bellies\"\").\n\n\n\nA number of restaurants can be found in Antigua. Many
692
+ small eateries can be found at the Antigua marketplace located next to the
693
+ central bus stop, next to the main market. U.S. style fast food restaurants
694
+ including \"\"Burger King\"\", \"\"McDonald's\"\", as well as Guatemalan favorite
695
+ \"\"Pollo Campero\"\" are in the city.\n\nAntigua is a growing tourist destination
696
+ in Guatemala as it is close to Guatemala City but is much calmer and safer,
697
+ with more tourist oriented activities. It is possible to take buses from Antigua
698
+ to many parts of Guatemala, many travel agencies offer shuttles to the main
699
+ touristic places: Monterrico beach, Atitlan Lake, Coban, Tikal or even Copan
700
+ in Honduras, though the transportation is more central in Guatemala City.\n\nThree
701
+ large volcanoes dominate the horizon around Antigua.\n\nThe most commanding,
702
+ to the south of the city, is the Volcán de Agua or \"\"Volcano of Water\"\",
703
+ some 3766 meters (12,356 ft) high. When the Spanish arrived, the inhabitants
704
+ of the zone, Kakchikel Mayas, called it Hunapú (and they still do). However,
705
+ it became known as Volcán de Agua after a mudslide from the volcano buried
706
+ the second site of the capital, which prompted the Spanish authorities to
707
+ move the capital to present-day Antigua. The original site of the 2nd capital
708
+ is now the village San Miguel Escobar.\n\nTo the west of the city are a pair
709
+ of peaks, Acatenango, last erupted in 1972, some 3976 meters (13045 ft) high,
710
+ and the Volcán de Fuego or \"\"Volcano of Fire\"\", some 3763 meters (12346 ft)
711
+ high. \"\"Fuego\"\" is famous for being almost constantly active at a low
712
+ level. Smoke issues from its top daily, but larger eruptions are rare.\n\nCoordinates:
713
+ 14°34′N 90°44′W\uFEFF / \uFEFF14.567°N 90.733°W\uFEFF / 14.567; -90.733\",\"Department
714
+ of Sacatepéquez, Panchoy Valley\",cultural,,\"Department of Sacatepéquez,
715
+ Panchoy Valley\",,[Antigua Information and Directory site in English|http://www.antiguadailyphoto.com/]#[Official
716
+ Site in Spanish|http://patrimoniomundialguatemala.org/la-antigua.html]#[Travel
717
+ guide|http://roadtoantigua.com]#[Panoramic 360° Pictures of Antigua Guatemala|http://www.guate360.com/galeria/details.php?image_id=3],http://en.wikipedia.org/wiki/Antigua_Guatemala,,\"[ii],[iii],[iv]\",GT,490000.0,Antigua
718
+ Guatemala,Guatemala,65,1979,http://whc.unesco.org/en/list/65\nArchaeological
719
+ Area and the Patriarchal Basilica of Aquileia,45.768333,13.3675,\"Aquileia
720
+ (Friulian: Acuilee/Aquilee/Aquilea) is an ancient Roman city in what is now
721
+ Italy, at the head of the Adriatic at the edge of the lagoons, about 10 km
722
+ from the sea, on the river Natiso (modern Natisone), the course of which has
723
+ changed somewhat since Roman times. Today, it is one of the main archeological
724
+ sites of Northern Italy.\n\nAquileia was founded as a colony by the Romans
725
+ in 180/181 BC along the Natissa River, on land south of the Julian Alps but
726
+ about 8 miles north of the lagoons. Apparently named from an indigenous word
727
+ Akylis, the colony served as a frontier fortress at the north-east corner
728
+ of transpadane Italy and was intended to protect the Veneti, faithful Roman
729
+ allies, during the Illyrian Wars and act as a buttress to check the advance
730
+ of other warlike people, such as the hostile tribes of Carni and Histri. In
731
+ fact, Aquileia was founded on a site not far from where Gaulish invaders had
732
+ attempted to settle in 183 BC.\n\nThe colony was established with Latin rights
733
+ by the triumvirate of Publius Scipio Nasica, Caius Flaminius, and Lucius Manlius
734
+ Acidinus, two of whom were of consular and one of praetorian rank. They led
735
+ 3,000 pedites (infantry), mainly from Samnium, who with their families formed
736
+ the bulk of the settlers and were soon supplemented by native Veneti. It is
737
+ likely that Aquileia had been a center of Venetia even before the coming of
738
+ the Romans. And Aquileia's strategic military position also served to promote
739
+ the Venetic trade in amber imported from the Baltic.\n\nAquileia was connected
740
+ by road with Bologna probably in 173 BC; and subsequently with Genoa in 148
741
+ BC by the Via Postumia, which ran through Cremona, Bedriacum and Altinum,
742
+ joining the first-mentioned road at Concordia, while the construction of the
743
+ Via Popilia from Rimini to Ad Portum near Altinum in 132 BC improved the communications
744
+ still further.\n\nIn 169 BC, 1,500 more Latin colonists with their families
745
+ were settled in the town as a reinforcement to the garrison. The discovery
746
+ of the gold fields near the modern Klagenfurt in 130 BC brought it into notice,
747
+ and it soon became a place of importance, not only owing to its strategic
748
+ position, but as a centre of trade, especially in agricultural products and
749
+ viticulture. It also had, in later times at least, considerable brickfields.\n\nThe
750
+ original Latin colony became a municipium probably in 90 BC. Citizens were
751
+ ascribed to the Roman tribe Velina. The customs boundary of Italy was close
752
+ by in Cicero's day. It was plundered by the Iapydes under Augustus, but, in
753
+ the period of peace which followed, was able to develop its resources. Augustus
754
+ visited it during the Pannonian wars in 12‑10 BC and it was the birthplace
755
+ of Tiberius' son by Julia, in the latter year.\n\nIt was the starting-point
756
+ of several important roads leading to the north-eastern portion of the empire
757
+ — the road (Via Iulia Augusta) by Iulium Carnicum to Veldidena (mod. Wilten,
758
+ near Innsbruck), from which branched off the road into Noricum, leading by
759
+ Virunum (Klagenfurt) to Laurieum (Lorch) on the Danube, the road into Pannonia,
760
+ leading to Aemona (Ljubljana) and Sirmium (Sremska Mitrovica), the road to
761
+ Tarsatica (near Fiume, now Rijeka) and Siscia (Sisak), and that to Tergeste
762
+ (Trieste) and the Istrian coast.\n\nBesides natives of Italy, Celts, Illyrians,
763
+ Greeks, Egyptians, Jews, and Syrians all settled in the city and contributed
764
+ to its commercial development. Jewish artisans established a flourishing trade
765
+ in glasswork. Metal from Noricum was forged and exported. The ancient Venetic
766
+ trade in amber from the Baltic was continued. Wine, especially its famous
767
+ Pucinum was exported. Oil was imported from Proconsular Africa.\n\nIn terms
768
+ of religion, the Roman pantheon was adopted although a native sungod, Belenus,
769
+ had a large following. Jews practiced their ancestral religion and it was
770
+ perhaps some of these Jews who became the first Christians. Meanwhile, soldiers
771
+ brought the martial cult of Mithras.\n\nIn the war against the Marcomanni
772
+ in 167, the town was hard pressed; its fortifications had fallen into disrepair
773
+ during the long peace. Nevertheless, when in 168 Marcus Aurelius made Aquileia
774
+ the principal fortress of the empire against the barbarians of the North and
775
+ East, it rose to the pinnacle of its greatness and soon had a population of
776
+ 100,000. In 238, when the town took the side of the Senate against the Emperor
777
+ Maximinus Thrax, the fortifications were hastily restored, and proved of sufficient
778
+ strength to resist for several months, until Maximinus himself was assassinated.\n\nDuring
779
+ the 4th century, Aquileia maintained its importance. Constantine sojourned
780
+ there on numerous occasions. It became a naval station and the seat of the
781
+ Corrector Venetiarum et Histriae; a mint was established, of which the coins
782
+ were very numerous, and the bishop obtained the rank of metropolitan archbishop.
783
+ A council held in the city in 381 was only the first of a series of Councils
784
+ of Aquileia that have been convened over the centuries.\n\nAn imperial palace
785
+ was constructed here, in which the emperors after the time of Diocletian frequently
786
+ resided; and the city often played a part in the struggles between the rulers
787
+ of the 4th century. In 340, Emperor Constantine II was killed under its walls
788
+ while attempting to take the city from his younger brother Constans.\n\nAt
789
+ the end of the 4th century, Ausonius, enumerated Aquileia as the ninth among
790
+ the great cities of the world, placing Rome, Mediolanum and Capua before it.
791
+ However, it was besieged by Alaric and the Visigoths in 401, during which
792
+ time some of its residents fled to the lagoons, and again unsuccessfully in
793
+ 408. In 452, the city was so utterly destroyed by Attila's Huns that it was
794
+ afterwards hard to recognize its original site. The Roman inhabitants, together
795
+ with those of smaller towns in the neighborhood, fled to the lagoons, and
796
+ so laid the foundations of the cities of Venice and nearby Grado.\n\nYet Aquileia
797
+ would rise again, though much diminished, and continue to exist until the
798
+ Lombard invasion of 568. It was once more destroyed (590) by the Lombards.
799
+ Meanwhile, the patriarch fled to the island town of Grado, which was under
800
+ the protection of the Byzantines. When the patriarch residing in Grado was
801
+ reconciled with Rome in 606, those continuing in their rejection of the Second
802
+ Council of Constantinople elected a patriarch at Aquileia. Thus, the diocese
803
+ was essentially divided into two parts, with the mainland patriarchate of
804
+ Aquileia under the protection of the Lombards, and the insular patriarchate
805
+ of Aquileia seated in Grado being protected by the exarchate of Ravenna and
806
+ later the Doges of Venice, with the collusion of the Lombards. The line of
807
+ the patriarchs elected in Aquileia would continue in schism until 699. However,
808
+ although they kept the title of patriarch of Aquileia, they moved their residence
809
+ first to Cormons and later to Cividale.\n\nThe Lombard Dukes of Friuli ruled
810
+ Aquileia and the surrounding mainland territory from Cividale. In 774, Charlemagne
811
+ conquered the Lombard duchy and made it into a Frankish one with Eric of Friuli
812
+ as duke. In 787, Charlemagne named the priest and master of grammar at the
813
+ Palace School Paulinus the new patriarch of Aquileia. Although Paulinus resided
814
+ mainly at Cividale, his successor Maxentius considered rebuilding Aquileia.
815
+ However, the project never came to fruition.\n\nWhile Maxentius was patriarch,
816
+ the pope approved the Synod of Mantua, which affirmed the precedence of the
817
+ mainland patriarch of Aquileia over the patriarch of Grado. However, material
818
+ conditions were soon to worsen for Aquileia. The ruins of Aquileia were continually
819
+ pillaged for building material. And with the collapse of the Carolingians
820
+ in the 10th century, the inhabitants would suffer under the raids of the Magyars.\n\nBy
821
+ the 11th century, the patriarch of Aquileia had grown strong enough to assert
822
+ temporal sovereignty over Friuli and Aquileia. The Holy Roman Emperor gave
823
+ the region to the patriarch as a feudal possession. However, the patriarch's
824
+ temporal authority was constantly disputed and assailed by the territorial
825
+ nobility.\n\nIn 1027 and 1044 Patriarch Poppo of Aquileia, who rebuilt the
826
+ cathedral of Aquileia, entered and sacked neighboring Grado, and, though the
827
+ Pope reconfirmed the Patriarch of the latter in his dignities, the town never
828
+ fully recovered, though it continued to be the seat of the Patriarchate until
829
+ its formal transference to Venice in 1450.\n\nIn the 14th century the Patriarchate
830
+ reached its biggest extension, stretching from the Piave river to the Julian
831
+ Alps and northern Istria. The seat of the Patriarchate of Aquileia had been
832
+ transferred to Udine in 1238, but returned to Aquiliea in 1420 when Venice
833
+ annexed the territory of Udine.\n\nIn 1445, the defeated patriarch Ludovico
834
+ Trevisan acquiesced in the loss of his ancient temporal estate in return for
835
+ an annual salary of 5,000 ducats allowed him from the Venetian treasury. Henceforth
836
+ only Venetians were allowed to hold the title of Patriarch of Aquileia. The
837
+ Patriarchate was incorporated in the Republic of Venice with the name of Patria
838
+ del Friuli, ruled by a General Proveditor or a \"\"Luogotenente\"\" living
839
+ in Udine.\n\nIt was finally officially suppressed in 1751, and the sees of
840
+ Udine and Gorizia (Görz) established in its stead.\n\nThe Cathedral of Aquileia
841
+ is a flat-roofed basilica erected by Patriarch Poppo in 1031 on the site of
842
+ an earlier church, and rebuilt about 1379 in the Gothic style by Patriarch
843
+ Marquard von Randeck.\n\nThe façade, in Romanesque-Gothic style, is connected
844
+ by a portico to the Church of the Pagans, and the remains of the 5th century
845
+ Baptistry. The interior has a nave and two aisles, with a noteworthy mosaic
846
+ pavement from the 4th century. The wooden ceiling is from 1526, while the
847
+ fresco decoration belongs to various ages: from the 4th century in the St.
848
+ Peter's chapel of the apse area; from the 11th century in the apse itself;
849
+ from the 12th century in the so-called \"\"Crypt of the Frescoes\"\", under
850
+ the presbytery, with a cycle depicting the origins of Christianity in Aquileia
851
+ and the history of St. Hermagoras, first bishop of the city.\n\nNext to the
852
+ 11th century Romanesque chapel of the Holy Sepulchre, at the beginning of
853
+ the left aisle, flooring of different ages can be seen: the lowest is from
854
+ a Roman villa of the age of Augustus; the middle one has a typical cocciopesto
855
+ pavemente; the upper one, bearing blackening from the Attila's fire, has geometrical
856
+ decorations.\n\nExternally, behind the 9th century campanile and the apse,
857
+ is the Cemetery of the Fallen, where ten unnamed soldiers of World War I are
858
+ buried. Saint Hermangoras is also buried there.\n\nThe ancient buildings of
859
+ Aquileia served as stone quarries for centuries, and no edifices of the Roman
860
+ period remain above ground. Excavations have revealed one street and the north-west
861
+ angle of the town walls, while the National Archaeological Museum (one of
862
+ the most important museums of Ancient Rome in the world) contains over 2,000
863
+ inscriptions, statues and other antiquities, as well as glasses of local production
864
+ and a numismatics collection.\n\nThe site of Aquileia, believed to be the
865
+ largest Roman city yet to be excavated, is inscribed on the UNESCO World Heritage
866
+ List.\n\nIn the Monastero fraction is a 5th century Christian basilica, later
867
+ a Benedictine monastery, which today houses the Paleo-Christian Museum.\",\"Province
868
+ of Udine, Friuli-Venezia Giulia Region\",cultural,,\"Province of Udine, Friuli-Venezia
869
+ Giulia Region\",,[Aquileia virtual tour (Italian Landmarks)|http://www.burger.si/Italy/Aquileia/uvod_ENG.html]#[Pre-roman
870
+ and Celtic Aquileia|http://www.terrediaquileia.it/docebo/doceboCms/index.php?special=changearea&newArea=572]#[Aquileia
871
+ featured on 10 Euro Italian Coin|http://news.coinupdate.com/aquileia-euro-coin-from-the-italian-state-mint-0473/],http://en.wikipedia.org/wiki/Aquileia,,\"[iii],[iv],[vi]\",IT,1550000.0,Archaeological
872
+ Area and the Patriarchal Basilica of Aquileia,Italy,825,1998,http://whc.unesco.org/en/list/825\n\r\n--4fbd035b--\r\n\r\n"
873
+ headers:
874
+ Accept:
875
+ - &70277757218080 !ruby/object:MIME::Type
876
+ content_type: application/json
877
+ raw_media_type: application
878
+ raw_sub_type: json
879
+ simplified: application/json
880
+ media_type: application
881
+ sub_type: json
882
+ extensions:
883
+ - json
884
+ encoding: 8bit
885
+ system: !!null
886
+ registered: true
887
+ url:
888
+ - IANA
889
+ - RFC4627
890
+ obsolete: !!null
891
+ docs: !!null
892
+ Content-Type:
893
+ - multipart/form-data; boundary=4fbd035b
894
+ Authorization:
895
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="5ZrdCISWjPnRVhMbwwb5no91au5vHYrhkQ5QoS09o",
896
+ oauth_signature="PH29cy3ALbvuoj0aowIM6pnvUPk%3D", oauth_signature_method="HMAC-SHA1",
897
+ oauth_timestamp="1337787227", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
898
+ oauth_version="1.0"
899
+ response:
900
+ status:
901
+ code: 200
902
+ message: Continue
903
+ headers:
904
+ Server:
905
+ - nginx
906
+ Date:
907
+ - Wed, 23 May 2012 15:33:47 GMT
908
+ Content-Type:
909
+ - application/json; charset=utf-8
910
+ Transfer-Encoding:
911
+ - chunked
912
+ Connection:
913
+ - keep-alive
914
+ Vary:
915
+ - Accept-Encoding
916
+ Status:
917
+ - 200 OK
918
+ Etag:
919
+ - ! '"6008edbe0cbdb943926f42a5d011d1ba"'
920
+ Cache-Control:
921
+ - max-age=0, private, must-revalidate
922
+ X-Ua-Compatible:
923
+ - IE=Edge,chrome=1
924
+ Set-Cookie:
925
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOWY3ZjkwYTg1YzgzODYxYThjMDc4MTkwZGQ0NmY0MDBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--bae5f1a2638dfd81f99d10f61ea3439a3ddf1dc5;
926
+ domain=.cartodb.com; path=/; HttpOnly
927
+ X-Runtime:
928
+ - '0.011083'
929
+ Content-Encoding:
930
+ - gzip
931
+ body:
932
+ encoding: ASCII-8BIT
933
+ string: ! '{"file_uri":"/uploads/75c5859fb864274252cf/whs_features.csv","success":true}'
934
+ http_version: '1.1'
935
+ recorded_at: Wed, 23 May 2012 15:33:47 GMT
936
+ - request:
937
+ method: post
938
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
939
+ body:
940
+ encoding: US-ASCII
941
+ string: ''
942
+ headers:
943
+ Accept:
944
+ - *70277757218080
945
+ Authorization:
946
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="gSk0HaewnhM2K5AwsnRe2CB87oCy4r5JlfGoFjW0Y",
947
+ oauth_signature="Quqw6P1iJTq6v31ieheUPIuBNg0%3D", oauth_signature_method="HMAC-SHA1",
948
+ oauth_timestamp="1337787227", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
949
+ oauth_version="1.0"
950
+ response:
951
+ status:
952
+ code: 200
953
+ message: OK
954
+ headers:
955
+ Server:
956
+ - nginx
957
+ Date:
958
+ - Wed, 23 May 2012 15:33:52 GMT
959
+ Content-Type:
960
+ - application/json; charset=utf-8
961
+ Transfer-Encoding:
962
+ - chunked
963
+ Connection:
964
+ - keep-alive
965
+ Vary:
966
+ - Accept-Encoding
967
+ Status:
968
+ - 200 OK
969
+ Location:
970
+ - /tables/4693
971
+ Etag:
972
+ - ! '"8a737591aa0b05fd817ef53ed7f9cc5a"'
973
+ Cache-Control:
974
+ - max-age=0, private, must-revalidate
975
+ X-Ua-Compatible:
976
+ - IE=Edge,chrome=1
977
+ Set-Cookie:
978
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlODJlMDhkZDQwNjZhZDEzZDY4NGYyNzc5MjE5NDk4OWFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--36989e11f6a9a2c6eebae22274e2c1fde0f8aa67;
979
+ domain=.cartodb.com; path=/; HttpOnly
980
+ X-Runtime:
981
+ - '4.981681'
982
+ Content-Encoding:
983
+ - gzip
984
+ body:
985
+ encoding: ASCII-8BIT
986
+ string: ! '{"id":4693,"name":"_20120523_32267_w6mr","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["comments","string"],["country","string"],["criteria","string"],["date_of_inscription","string"],["description","string"],["edited_region","string"],["endangered_reason","string"],["endangered_year","string"],["external_links","string"],["iso_code","string"],["latitude","string"],["longitude","string"],["name","string"],["region","string"],["size","string"],["title","string"],["type","string"],["whs_site_id","string"],["whs_source_page","string"],["wikipedia_link","string"],["created_at","date"],["updated_at","date"]]}'
987
+ http_version: '1.1'
988
+ recorded_at: Wed, 23 May 2012 15:33:53 GMT
989
+ - request:
990
+ method: get
991
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/_20120523_32267_w6mr?
992
+ body:
993
+ encoding: US-ASCII
994
+ string: ''
995
+ headers:
996
+ Accept:
997
+ - *70277757218080
998
+ Authorization:
999
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="JbO8PuP9OTh8ldIjXp10DhrQcpRJyGapz2yCLbYaog",
1000
+ oauth_signature="BVDmIDOrJNyU%2BKzhzbj48rNrCU8%3D", oauth_signature_method="HMAC-SHA1",
1001
+ oauth_timestamp="1337787233", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1002
+ oauth_version="1.0"
1003
+ response:
1004
+ status:
1005
+ code: 200
1006
+ message: OK
1007
+ headers:
1008
+ Server:
1009
+ - nginx
1010
+ Date:
1011
+ - Wed, 23 May 2012 15:33:53 GMT
1012
+ Content-Type:
1013
+ - application/json; charset=utf-8
1014
+ Transfer-Encoding:
1015
+ - chunked
1016
+ Connection:
1017
+ - keep-alive
1018
+ Vary:
1019
+ - Accept-Encoding
1020
+ Status:
1021
+ - 200 OK
1022
+ Etag:
1023
+ - ! '"ce39fbe848609f5961af725725b388a2"'
1024
+ Cache-Control:
1025
+ - max-age=0, private, must-revalidate
1026
+ X-Ua-Compatible:
1027
+ - IE=Edge,chrome=1
1028
+ Set-Cookie:
1029
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYWJmNmE4MDIxZmM1NmUxZDFkM2EzZTc0ODhiZTZlMTFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--0c4d81cb0d0c80b31144edcb6affe6c3e343be0b;
1030
+ domain=.cartodb.com; path=/; HttpOnly
1031
+ X-Runtime:
1032
+ - '0.048131'
1033
+ Content-Encoding:
1034
+ - gzip
1035
+ body:
1036
+ encoding: ASCII-8BIT
1037
+ string: ! '{"id":4693,"name":"_20120523_32267_w6mr","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["comments","string"],["country","string"],["criteria","string"],["date_of_inscription","string"],["description","string"],["edited_region","string"],["endangered_reason","string"],["endangered_year","string"],["external_links","string"],["iso_code","string"],["latitude","string"],["longitude","string"],["name","string"],["region","string"],["size","string"],["title","string"],["type","string"],["whs_site_id","string"],["whs_source_page","string"],["wikipedia_link","string"],["created_at","date"],["updated_at","date"]]}'
1038
+ http_version: '1.1'
1039
+ recorded_at: Wed, 23 May 2012 15:33:53 GMT
1040
+ - request:
1041
+ method: get
1042
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/_20120523_32267_w6mr/records?
1043
+ body:
1044
+ encoding: US-ASCII
1045
+ string: ''
1046
+ headers:
1047
+ Accept:
1048
+ - *70277757218080
1049
+ Authorization:
1050
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="JVNknDbWg8fYqQ32rx0fu6VuhLBhLhfVYi81wdxk5Y",
1051
+ oauth_signature="wyD8uAYYZAgXwVslXw4Hn%2BfTFY0%3D", oauth_signature_method="HMAC-SHA1",
1052
+ oauth_timestamp="1337787233", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1053
+ oauth_version="1.0"
1054
+ response:
1055
+ status:
1056
+ code: 200
1057
+ message: OK
1058
+ headers:
1059
+ Server:
1060
+ - nginx
1061
+ Date:
1062
+ - Wed, 23 May 2012 15:33:53 GMT
1063
+ Content-Type:
1064
+ - application/json; charset=utf-8
1065
+ Transfer-Encoding:
1066
+ - chunked
1067
+ Connection:
1068
+ - keep-alive
1069
+ Vary:
1070
+ - Accept-Encoding
1071
+ Status:
1072
+ - 200 OK
1073
+ Etag:
1074
+ - ! '"abaf06f8c950132d694dcfa67fa6a09c"'
1075
+ Cache-Control:
1076
+ - max-age=0, private, must-revalidate
1077
+ X-Ua-Compatible:
1078
+ - IE=Edge,chrome=1
1079
+ Set-Cookie:
1080
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMzA3N2QyMDU4YmQ4MzZmMzU5Zjg5ZmUyM2U3NGZlZTFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--924cf2d764e543945cfacc7735bc5e39bfc721ee;
1081
+ domain=.cartodb.com; path=/; HttpOnly
1082
+ X-Runtime:
1083
+ - '0.080644'
1084
+ Content-Encoding:
1085
+ - gzip
1086
+ body:
1087
+ encoding: ASCII-8BIT
1088
+ string: ! "{\"id\":4693,\"name\":\"_20120523_32267_w6mr\",\"total_rows\":10,\"rows\":[{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":1,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[57.536056,22.998889]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/1207\",\"date_of_inscription\":\"2006\",\"whs_site_id\":\"1207\",\"country\":\"Oman\",\"name\":\"Aflaj
1089
+ Irrigation Systems of Oman\",\"size\":\"14560000.0\",\"iso_code\":\"OM\",\"criteria\":\"[v]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Qanat\",\"external_links\":\"[The
1090
+ Origin and Spread of Qanats in the Old World|http://www.jstor.org/stable/986162]#[\\\"Assessment
1091
+ of the Contributions of Traditional Qanats in Sustainable Water Resources
1092
+ Management\\\"|http://www.ingentaconnect.com/content/routledg/cijw/2006/00000022/00000004/art00005]#[10.1080/07900620600551304|http://dx.doi.org/10.1080%2F07900620600551304]#[\\\"Reasons
1093
+ behind Failure of Qanats in the 20th Century\\\"|http://scitation.aip.org/vsearch/servlet/VerityServlet?KEY=ASCERL&smode=strresults&maxdisp=25&possible1=Madani%2C+Kaveh&possible1zone=author&OUTLOG=NO&aqs=true&viewabs=ASCECP&key=DISPLAY&docID=1&page=0&chapter=0&aqs=true]#[10.1061/40976(316)77|http://dx.doi.org/10.1061%2F40976%28316%2977]\",\"endangered_year\":\"\",\"edited_region\":\"Dakhiliya,
1094
+ Sharqiya and Batinah Regions\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Dakhiliya,
1095
+ Sharqiya and Batinah Regions\",\"description\":\"A qanāt (from Arabic: قناة‎)
1096
+ (Iran, Syria and Jordan) is a water management system used to provide a reliable
1097
+ supply of water to human settlements and for irrigation in hot, arid and semi-arid
1098
+ climates. Qanats are also called kārīz (or kārēz from Persian: كاريز) (Iran,
1099
+ Afghanistan, Pakistan and Central Asia, derived from Persian: كاهریز), kahan
1100
+ (from Persian: کهن), khettara (Morocco); galeria (Spain); falaj (United Arab
1101
+ Emirates and Oman); Kahn (Baloch) or foggara/fughara (North Africa). Alternative
1102
+ terms for qanats in Asia and North Africa are kakuriz, chin-avulz, and mayun.
1103
+ Common variants of qanat in English include kanat, khanat, kunut, kona, konait,
1104
+ ghanat, ghundat.\\n\\nThe qanat technology is known to have developed in pre-Islamic
1105
+ Iran[when?] and then spread to other cultures. However, a recently discovered
1106
+ falaj system in al-Ain, UAE, dates to 1000 BC, and another in Umm Safah, Sharja,
1107
+ dates to the Iron Age. Also, a qanat-like system called the Turpan water system
1108
+ originated in China during the Han Dynasty (206 BCE – 24 CE).\\n\\nThe value
1109
+ of a qanat is directly related to the quality, volume and regularity of the
1110
+ water flow. Much of the population of Iran and other arid countries in Asia
1111
+ and North Africa historically depended upon the water from qanats; the areas
1112
+ of population corresponded closely to the areas where qanats are possible.
1113
+ Although a qanat was expensive to construct, its long-term value to the community,
1114
+ and therefore to the group who invested in building and maintaining it, was
1115
+ substantial.\\n\\nQanats are constructed as a series of well-like vertical
1116
+ shafts, connected by gently sloping tunnels. Qanats tap into subterranean
1117
+ water in a manner that efficiently delivers large quantities of water to the
1118
+ surface without need for pumping. The water drains relying on gravity, with
1119
+ the destination lower than the source, which is typically an upland aquifer.
1120
+ Qanats allow water to be transported over long distances in hot dry climates
1121
+ without losing a large proportion of the water to seepage and evaporation.\\n\\nIt
1122
+ is very common in the construction of a qanat for the water source to be found
1123
+ below ground at the foot of a range of foothills of mountains, where the water
1124
+ table is closest to the surface. From this point, the slope of the qanat is
1125
+ maintained closer to level than the surface above, until the water finally
1126
+ flows out of the qanat above ground. To reach an aquifer, qanats must often
1127
+ extend for long distances.\\n\\nQanats are sometimes split into an underground
1128
+ distribution network of smaller canals called kariz. Like qanats, these smaller
1129
+ canals were below ground to avoid contamination. In some cases water from
1130
+ a qanat is stored in a reservoir, typically storing night flow for daytime
1131
+ use. An Ab Anbar is an example of a traditional qanat fed reservoir for drinking
1132
+ water in Persian antiquity.\\n\\nThe qanat system has the advantage of being
1133
+ resistant to natural disasters such as earthquakes and floods, and to deliberate
1134
+ destruction in war. Furthermore, it is almost insensitive to the levels of
1135
+ precipitation, delivering a flow with only gradual variations from wet to
1136
+ dry years.\\n\\nThe qanat technology is used most extensively in areas with
1137
+ the following characteristics:[citation needed]\\n\\nA typical town or city
1138
+ in Iran and elsewhere where the qanat is used has more than one qanat. Fields
1139
+ and gardens are located both over the qanats a short distance before they
1140
+ emerge from the ground and after the surface outlet. Water from the qanats
1141
+ defines both the social regions in the city and the layout of the city.\\n\\nThe
1142
+ water is freshest, cleanest, and coolest in the upper reaches and more prosperous
1143
+ people live at the outlet or immediately upstream of the outlet. When the
1144
+ qanat is still below grade, the water is drawn to the surface via water wells
1145
+ or animal driven Persian wells. Private subterranean reservoirs could supply
1146
+ houses and buildings for domestic use and garden irrigation as well. Further,
1147
+ air flow from the qanat is used to cool an underground summer room (shabestan)
1148
+ found in many older houses and buildings.\\n\\nDownstream of the outlet, the
1149
+ water runs through surface canals called jubs (jūbs) which run downhill, with
1150
+ lateral branches to carry water to the neighborhood, gardens and fields. The
1151
+ streets normally parallel the jubs and their lateral branches. As a result,
1152
+ the cities and towns are oriented consistent with the gradient of the land;
1153
+ this is a practical response to efficient water distribution over varying
1154
+ terrain.\\n\\nThe lower reaches of the canals are less desirable for both
1155
+ residences and agriculture. The water grows progressively more polluted as
1156
+ it passes downstream. In dry years the lower reaches are the most likely to
1157
+ see substantial reductions in flow.\\n\\nTraditionally qanats are built by
1158
+ a group of skilled laborers, muqannīs, with hand labor. The profession historically
1159
+ paid well and was typically handed down from father to son.\\n\\nThe critical,
1160
+ initial step in qanat construction is identification of an appropriate water
1161
+ source. The search begins at the point where the alluvial fan meets the mountains
1162
+ or foothills; water is more abundant in the mountains because of orographic
1163
+ lifting and excavation in the alluvial fan is relatively easy. The muqannīs
1164
+ follow the track of the main water courses coming from the mountains or foothills
1165
+ to identify evidence of subsurface water such as deep-rooted vegetation or
1166
+ seasonal seeps. A trial well is then dug to determine the location of the
1167
+ water table and determine whether a sufficient flow is available to justify
1168
+ construction. If these prerequisites are met, then the route is laid out aboveground.\\n\\nEquipment
1169
+ must be assembled. The equipment is straightforward: containers (usually leather
1170
+ bags), ropes, reels to raise the container to the surface at the shaft head,
1171
+ hatchets and shovels for excavation, lights, spirit levels or plumb bobs and
1172
+ string. Depending upon the soil type, qanat liners (usually fired clay hoops)
1173
+ may also be required.\\n\\nAlthough the construction methods are simple, the
1174
+ construction of a qanat requires a detailed understanding of subterranean
1175
+ geology and a degree of engineering sophistication. The gradient of the qanat
1176
+ must be carefully controlled—too shallow a gradient yields no flow—too steep
1177
+ a gradient will result in excessive erosion, collapsing the qanat. And misreading
1178
+ the soil conditions leads to collapses which at best require extensive rework
1179
+ and, at worst, can be fatal for the crew.\\n\\nConstruction of a qanat is
1180
+ usually performed by a crew of 3-4 muqannīs. For a shallow qanat, one worker
1181
+ typically digs the horizontal shaft, one raises the excavated earth from the
1182
+ shaft and one distributes the excavated earth at the top.\\n\\nThe crew typically
1183
+ begins from the destination to which the water will be delivered into the
1184
+ soil and works toward the source (the test well). Vertical shafts are excavated
1185
+ along the route, separated at a distance of 20–35 m. The separation of the
1186
+ shafts is a balance between the amount of work required to excavate them and
1187
+ the amount of effort required to excavate the space between them, as well
1188
+ as the ultimate maintenance effort. In general, the shallower the qanat, the
1189
+ closer the vertical shafts. If the qanat is long, excavation may begin from
1190
+ both ends at once. Tributary channels are sometimes also constructed to supplement
1191
+ the water flow.\\n\\nMost qanats in Iran run less than 5 km, while some have
1192
+ been measured at ~70 km in length near Kerman. The vertical shafts usually
1193
+ range from 20 to 200 meters in depth, although qanats in the province of Khorasan
1194
+ have been recorded with vertical shafts of up to 275 m. The vertical shafts
1195
+ support construction and maintenance of the underground channel as well as
1196
+ air interchange. Deep shafts require intermediate platforms to simplify the
1197
+ process of removing spoils.\\n\\nThe construction speed depends on the depth
1198
+ and nature of the ground. If the earth is easy/soft to work; at 20 meters
1199
+ depth, a crew of 4 people can excavate a horizontal length of 40 meters per
1200
+ day. When the vertical shaft reaches 40 meters, they can only excavate 20
1201
+ meters horizontally per day and at 60 meters in depth this drops below 5 horizontal
1202
+ meters per day. In Algeria, a common speed is just 2m per day at 15m depth.
1203
+ Deep, long qanats (which many are) require years and even decades to construct.\\n\\nThe
1204
+ excavated material is usually transported by means of leather bags up the
1205
+ vertical shafts. It is mounded around the vertical shaft exit, providing a
1206
+ barrier that prevents windblown or rain driven debris from entering the shafts.
1207
+ These mounds may be covered to provide further protection to the qanat. From
1208
+ the air, these shafts look like a string of bomb craters.\\n\\nThe qanat's
1209
+ water-carrying channel must have a sufficient downward slope that water flows
1210
+ easily. However the downward gradient must not be so great as to create conditions
1211
+ under which the water transitions between supercritical and subcritical flow;
1212
+ if this occurs, the waves which are established can result in severe erosion
1213
+ that can damage or destroy the qanat. In shorter qanats the downward gradient
1214
+ varies between 1:1000 and 1:1500, while in longer qanats it may be almost
1215
+ horizontal. Such precision is routinely obtained with a spirit level and string.\\n\\nIn
1216
+ cases where the gradient is steeper, underground waterfalls may be constructed
1217
+ with appropriate design features (usually linings) to absorb the energy with
1218
+ minimal erosion. In some cases the water power has been harnessed to drive
1219
+ underground mills. If it is not possible to bring the outlet of the qanat
1220
+ out near the settlement, it is necessary to run a jub or canal overground.
1221
+ This is avoided when possible to limit pollution, warming and water loss due
1222
+ to evaporation.\\n\\nThe vertical shafts may be covered to minimize in-blown
1223
+ sand. The channels of qanats must be periodically inspected for erosion or
1224
+ cave-ins, cleaned of sand and mud and otherwise repaired. Air flow must be
1225
+ assured before entry for safety.\\n\\nSome damaged qanats have been restored.
1226
+ In order to be sustainable, restoration needs to take into account many non-technical
1227
+ factors, beginning with the process of selecting the qanat to be restored.
1228
+ In the case of Syria, three sites were chosen based on a national inventory
1229
+ conducted in 2001. One of them, the Drasiah qanat of Dmeir, was completed
1230
+ in 2002. Selection criteria included the availability of a steady groundwater
1231
+ flow, social cohesion and willingness to contribute of the community using
1232
+ the qanat, and the existence of a functioning water rights system.\\n\\nThe
1233
+ primary applications of qanats are for irrigation, providing cattle with water
1234
+ and drinking water supply. Other applications include cooling and ice storage.\\n\\nQanats
1235
+ used in conjunction with a wind tower can provide cooling as well as a water
1236
+ supply. A wind tower is a chimney-like structure positioned above the house;
1237
+ of its four openings, the one opposite the wind direction is opened to move
1238
+ air out of the house. Incoming air is pulled from a qanat below the house.
1239
+ The air flow across the vertical shaft opening creates a lower pressure (see
1240
+ Bernoulli effect) and draws cool air up from the qanat tunnel, mixing with
1241
+ it. The air from the qanat was drawn into the tunnel at some distance away
1242
+ and is cooled both by contact with the cool tunnel walls/water and by the
1243
+ giving up latent heat of evaporation as water evaporates into the air stream.
1244
+ In dry desert climates this can result in a greater than 15°C reduction in
1245
+ the air temperature coming from the qanat; the mixed air still feels dry,
1246
+ so the basement is cool and only comfortably moist (not damp). Wind tower
1247
+ and qanat cooling have been used in desert climates for over 1000 years.\\n\\nIn
1248
+ 400 BC Persian engineers had already mastered the technique of storing ice
1249
+ in the middle of summer in the desert.\\n\\nThe ice could be brought in during
1250
+ the winters from nearby mountains. But in a more usual & sophisticated method
1251
+ they had a wall made along east-west direction close to the Ice Pit (yakhchal).In
1252
+ winter the qanat water was being canalized to north side of the wall. The
1253
+ shadow of the wall makes water freeze more quickly so they could have more
1254
+ ice per each winter day. Then ice was being stored in a specially designed,
1255
+ naturally cooled refrigerators called yakhchal (meaning ice pits). A large
1256
+ underground space with thick insulated walls was connected to a qanat, and
1257
+ a system of windcatchers or Wind Towers was used to draw cool subterranean
1258
+ air up from the qanat to maintain temperatures inside the space at low levels,
1259
+ even during hot summer days. As a result, the ice melted slowly and ice was
1260
+ available year-round.\\n\\nThe Qanats, called Kariz (rhymes with \\\"breeze\\\")
1261
+ \ in Pashto and Dari, have also been in use for hundreds of years. Kariz structures
1262
+ are especially found in the Southern Afghanistan provinces of Kandahar, Uruzgan,
1263
+ Nimroz and Hilmand. The incessant war for the last 30 years has destroyed
1264
+ a number of these ancient structures. In the troubled times maintenance was
1265
+ not always possible. To add to the troubles, at present (2008) the cost of
1266
+ labour has become very high and maintaining the Kariz structures is no longer
1267
+ possible[dubious – discuss]. Lack of skilled artisans who have the traditional
1268
+ knowledge also poses difficulties. A number of the large farmers are abandoning
1269
+ their Kariz which has been in their families sometimes for centuries, and
1270
+ moving to tube and dug wells backed by diesel pumps[citation needed].\\n\\nHowever
1271
+ the government of Afghanistan is aware of the importance of these structures
1272
+ and all efforts are being made to repair, reconstruct and maintain (through
1273
+ the community) the kariz[citation needed]. The Ministry of Rural Rehabilitation
1274
+ and Development along with National and International NGOs is making the effort.\\n\\nStill,
1275
+ there are functional qanat systems in 2009. American forces are reported to
1276
+ have unintentionally destroyed some of the channels during expansion of a
1277
+ military base, creating tensions between them and the local community. Some
1278
+ of these tunnels have been used to store supplies, and to move men and equipment
1279
+ underground.\\n\\nAn oasis at Turpan in the deserts of northwestern China
1280
+ uses water provided by qanat (locally karez). Turfan has long been the center
1281
+ of a fertile oasis and an important trade center along the Silk Road's northern
1282
+ route, at which time it was adjacent to the kingdoms of Korla and Karashahr
1283
+ to the southwest. The historical record of the karez system extends back to
1284
+ the Han Dynasty. The Turfan Water Museum (see photos on this page) is a Protected
1285
+ Area of the People's Republic of China because of the importance of the local
1286
+ karez system to the history of the area. The number of karez systems in the
1287
+ area is slightly below 1,000 and the total length of the canals is about 5,000
1288
+ kilometers.\\n\\nIn Karnataka, India, a Qanat-type structure called Suranga
1289
+ is used to tap underground water. But these are rarely in use these days[citation
1290
+ needed].\\n\\nIt has been suggested that alleged underground temples at Gua
1291
+ Made in Java reached by shafts, in which masks of a green metal were found,
1292
+ originated as a qanat.\\n\\nIn the middle of the twentieth century, it is
1293
+ estimated that approximately 50,000 qanats were in use in Iran, each commissioned
1294
+ and maintained by local users. Of these only 25,000 remain in use as of 1980.\\n\\nThe
1295
+ oldest and largest known qanat is in the Iranian city of Gonabad which after
1296
+ 2700 years still provides drinking and agricultural water to nearly 40,000
1297
+ people. Its main well depth is more than 360 meters and its length is 45 kilometers.
1298
+ Yazd, Khorasan and Kerman are the known zones for their dependence with an
1299
+ extensive system of qanats.\\n\\nIn traditional Persian architecture, a Kariz
1300
+ (کاریز) is a small Qanat, usually within a network inside an urban setting.
1301
+ Kariz is what distributes the Qanat into its final destinations.\\n\\nA survey
1302
+ of Qanat systems in the Kurdistan region of Iraq conducted by the Department
1303
+ of Geography at Oklahoma State University (USA) on behalf of UNESCO in 2009
1304
+ found that out of 683 karez systems, some 380 were still active in 2004, but
1305
+ only 116 in 2009. Reasons for the decline of qanats include \\\"abandonment
1306
+ and neglect\\\" previous to 2004, \\\"excessive pumping from wells\\\" and,
1307
+ since 2005, drought. Water shortages are said to have forced over 100,000
1308
+ people who depended on karez systems for their livelihoods to leave their
1309
+ homes since 2005. The study says that a single karez has the potential to
1310
+ provide enough household water for nearly 9,000 individuals and irrigate over
1311
+ 200 hectares of farmland. UNESCO and the government of Iraq plan to rehabilitate
1312
+ Karez through a Karez Initiative for Community Revitalization to be launched
1313
+ in 2010. Most of the karez are in Sulaymaniyah Governorate (84%). A large
1314
+ number are also found in Erbil Governorate (13%), especially on the broad
1315
+ plain around and in Erbil city.\\n\\nAmong the qanats built in the Roman Empire
1316
+ was possibly the longest continuous qanat ever built, the 94 km long Gadara
1317
+ Aqueduct in northern Jordan. Partly following the course of an older Hellenistic
1318
+ aqueduct, excavation work arguably started after a visit of emperor Hadrian
1319
+ in 129-130 AD. The Gadara Aqueduct was never quite finished, and was put in
1320
+ service only in sections.\\n\\nThe Chagai district is in the north west corner
1321
+ of Balochistan, Pakistan, bordering with Afghanistan and Iran. Qanats, locally
1322
+ known as karezes, are found more broadly in this region. They are spread from
1323
+ Chaghai district all the way up to Zhob district. A number of them are present
1324
+ in Qilla Abdullah and Pishin districts. Karezes are also extensively found
1325
+ in the neighbouring areas of Afghanistan such as Kandahar. The remains of
1326
+ karezes found in different parts of the district are attributed to the Arabs.\\n\\nQanats
1327
+ were found over much of Syria. The widespread installation of groundwater
1328
+ pumps has lowered the water table and qanat system. Qanats have gone dry and
1329
+ been abandoned across the country.\\n\\nIn Oman from the Iron Age Period (found
1330
+ in Salut, Bat and other sites) a system of underground aqueducts called Falaj
1331
+ were constructed, a series of well-like vertical shafts, connected by gently
1332
+ sloping horizontal tunnels. There are three types of Falaj Daudi (داوودية)with
1333
+ underground aqueducts Ghaili (الغيلية ) requiring a dam to collect the water
1334
+ Aini (العينية ) whose source is a water spring These enabled large scale agriculture
1335
+ to flourish in a dry land environment According to UNESCO some 3,000 aflaj
1336
+ (plural) or falaj (singular), are still in use in Oman today. Nizwa, the former
1337
+ capital city of Oman, was built around a falaj which is in use to this day.
1338
+ These systems date to before the Iron Age in Oman . In July 2006, five representative
1339
+ examples of this irrigation system were inscribed as a World Heritage Site.\\n\\nThe
1340
+ oasis of Al Ain in the United Arab Emirates continues traditional falaj (qanat)
1341
+ irrigations for the palm-groves and gardens.\\n\\nThere are 4 main oases in
1342
+ the Egyptian desert. The Kharga Oasis is one of them which has been extensively
1343
+ studied. As early as the second half of the 5th century BC there is evidence
1344
+ that water was being used via qanats. The qanat is excavated through water-bearing
1345
+ sandstone rock which seeps into the channel to collect in a basin behind a
1346
+ small dam at the end. The width is approximately 60 cm, but the height ranges
1347
+ from 5 to 9 meters; it is likely that the qanat was deepened to enhance seepage
1348
+ when the water table dropped (as is also seen in Iran). From there the water
1349
+ was used to irrigate fields.\\n\\nThere is another instructive structure located
1350
+ at the Kharga Oasis. A well which apparently dried up was improved by driving
1351
+ a side shaft through the easily penetrated sandstone (presumably in the direction
1352
+ of greatest water seepage) into the hill of Ayn-Manâwîr to allow collection
1353
+ of additional water. After this side shaft had been extended, another vertical
1354
+ shaft was driven to intersect the side shaft. Side chambers were built and
1355
+ holes bored into the rock—presumably at points where water seeped from the
1356
+ rocks—are evident.\\n\\nDavid Mattingley reports foggara extending for hundreds
1357
+ of miles in the Garamantes area near Jarma in Libya: \\\"The channels were
1358
+ generally very narrow - less than 2 feet wide and 5 high - but some were several
1359
+ miles long, and in total some 600 foggara extended for hundreds of miles underground.
1360
+ The channels were dug out and maintained using a series of regularly-spaced
1361
+ vertical shafts, one every 30 feet or so, 100,000 in total, averaging 30 feet
1362
+ in depth, but sometimes reaching 130.\\\" (\\\"The 153 Club Newsletter\\\",
1363
+ July 2007 No. 112, pp. 14–19; reprinted from Current world Archaeology.\\n\\nThe
1364
+ foggara water management system in Tunisia, used to create oases, is similar
1365
+ to that of the Iranian qanat. The foggara is dug into the foothills of a fairly
1366
+ steep mountain range such as the eastern ranges of the Atlas mountains. Rainfall
1367
+ in the mountains enters the aquifer and moves toward the Saharan region to
1368
+ the south. The foggara, 1 to 3 km in length, penetrates the aquifer and collects
1369
+ water. Families maintain the foggara and own the land it irrigates over a
1370
+ ten meter wide, with width only by the size of plot that the available water
1371
+ will irrigate.\\n\\nQanats (designated foggaras in Algeria) are the source
1372
+ of water for irrigation at large oases like that at Gourara. The foggaras
1373
+ are also found at Touat (an area of Adrar 200 km from Gourara). The length
1374
+ of the foggaras in this region is estimated to be thousands of kilometers.\\n\\nAlthough
1375
+ sources suggest that the foggaras may have been in use as early as 200 AD,
1376
+ they were clearly in use by the 11th century after the Arabs took possession
1377
+ of the oases in the 10th century and the residents embraced Islam.\\n\\nThe
1378
+ water is metered to the various users through the use of distribution weirs
1379
+ which meter flow to the various canals, each for a separate user.\\n\\nThe
1380
+ humidity of the oases is also used to supplement the water supply to the foggara.
1381
+ The temperature gradient in the vertical shafts causes air to rise by natural
1382
+ convection, causing a draft to enter the foggara. The moist air of the agricultural
1383
+ area is drawn into the foggara in the opposite direction to the water run-off.
1384
+ In the foggara it condenses on the tunnel walls and the air passed out of
1385
+ the vertical shafts. This condensed moisture is available for reuse.\\n\\nIn
1386
+ southern Morocco the qanat (locally khettara) is also used. On the margins
1387
+ of the Sahara Desert, the isolated oases of the Draa River valley and Tafilalt
1388
+ have relied on qanat water for irrigation since the late-14th century. In
1389
+ Marrakech and the Haouz plain the qanats have been abandoned since the early
1390
+ 1970s as they've dried; in the Tafilaft area half of the 400 khettaras are
1391
+ still in use. The Hassan Adahkil Dam's impact on local water tables is said
1392
+ to be one of the many reasons given for the loss of half of the khettara.\\n\\nThe
1393
+ black berbers (haratin) of the south were the hereditary class of qanat diggers
1394
+ in Morocco who build and repair these systems. Their work was hazardous.\\n\\nQanats
1395
+ have preserved in Armenia in the community of Shvanidzor, in the southern
1396
+ province of Syunik, bordering with Iran. Qanats are named kahrezes in Armenian.
1397
+ There are 5 kahrezes in Shvanidzor. Four of them were constructed in XII-XIVc,
1398
+ even before the village was founded. The fifth kahrez was constructed in 2005.
1399
+ Potable water runs through I, II and V kahrezs. Kahrez III and IV are in quite
1400
+ poor condition. In summer, especially in July and August, the amount of water
1401
+ reaches its minimum, creating critical situation in the water supply system.
1402
+ Still, kahrezes are the main source of potable and irrigation water for the
1403
+ community.\\n\\nThe 5653 m long Claudius Tunnel, meant for draining the largest
1404
+ Italian inland water, Fucine Lake, was constructed using the qanat technique.
1405
+ It featured shafts up to 122 m deep. The entire ancient town of Palermo in
1406
+ Sicily was equipped with a huge qanat system built during the Arab period
1407
+ (827–1072). Many of the qanat are now mapped and some can be visited. The
1408
+ famous Scirocco room has an air-conditioning system cooled by the flow of
1409
+ water in a qanat and a \\\"wind tower\\\", a structure able to catch the wind
1410
+ and direct it into the room.\\n\\nThe Raschpëtzer near Helmsange in southern
1411
+ Luxembourg is a particularly well preserved example of a Roman qanat. It is
1412
+ probably the most extensive system of its kind north of the Alps. To date
1413
+ some 330 m of the total tunnel length of 600 m have been explored. Thirteen
1414
+ of the 20 to 25 shafts have been investigated. The qanat appears to have provided
1415
+ water for a large Roman villa on the slopes of the Alzette valley. It was
1416
+ built during the Gallo-Roman period, probably around the year 150 and functioned
1417
+ for about 120 years thereafter.\\n\\nThere are still many examples of galeria
1418
+ or qanat systems in Spain, most likely brought to the area by the Moors during
1419
+ their occupation of the Iberian peninsula. Turrillas in Andalusia on the north
1420
+ facing slopes of the Sierra de Alhamilla has evidence of a qanat system. Granada
1421
+ is another site with an extensive qanat system.\\n\\nQanats in the Americas,
1422
+ usually referred to as filtration galleries, can be found in the Nazca region
1423
+ of Peru and in northern Chile. The Spanish introduced qanats into Mexico in
1424
+ 1520 AD.\",\"longitude\":\"57.536056\",\"latitude\":\"22.998889\",\"title\":\"Aflaj
1425
+ Irrigation Systems of Oman\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":2,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[-7.798889,41.101667]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/1046\",\"date_of_inscription\":\"2001\",\"whs_site_id\":\"1046\",\"country\":\"Portugal\",\"name\":\"Alto
1426
+ Douro Wine Region\",\"size\":\"246000000.0\",\"iso_code\":\"PT\",\"criteria\":\"[iii],[iv],[v]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Douro_DOC\",\"external_links\":\"\",\"endangered_year\":\"\",\"edited_region\":\"Douro
1427
+ Region, Trás-os-Montes e Alto Douro\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Douro
1428
+ Region, Trás-os-Montes e Alto Douro\",\"description\":\"\",\"longitude\":\"-7.798889\",\"latitude\":\"41.101667\",\"title\":\"Alto
1429
+ Douro Wine Region\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":3,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2.301667,49.895]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/162\",\"date_of_inscription\":\"1981\",\"whs_site_id\":\"162\",\"country\":\"France\",\"name\":\"Amiens
1430
+ Cathedral\",\"size\":\"8600.0\",\"iso_code\":\"FR\",\"criteria\":\"[i],[ii]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Amiens_Cathedral\",\"external_links\":\"[Amiens
1431
+ Cathedral.|http://www.britannica.com/eb/article-9106231]#[Amiens Cathedral
1432
+ - World Heritage Site|http://www.worldheritagesite.org/sites/amiens.html]#[360°
1433
+ photos of the cathedral|http://www.world-heritage-tour.org/europe/france/amiens/map.html]#[Outstanding
1434
+ photos of the cathedral|http://www.pbase.com/ericdeparis/cathedrale_de_amiens]#[Photos|http://kunsthistorie.com/galleri/index.php?album=Frankrike%2FAmiens&sortby=name&order=asc]\",\"endangered_year\":\"\",\"edited_region\":\"Department
1435
+ of Somme, Picardie Region\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Department
1436
+ of Somme, Picardie Region\",\"description\":\"The Cathedral of Our Lady of
1437
+ Amiens (French: Cathédrale Notre-Dame d'Amiens), or simply Amiens Cathedral,
1438
+ is a Roman Catholic cathedral and seat of the Bishop of Amiens, Jean-Luc Bouilleret.
1439
+ The cathedral is the tallest complete cathedral in France, with the greatest
1440
+ interior volume (estimated at 200,000 m³). The vaults of the nave are 42.30 m
1441
+ high, the tallest nave vaults in any completed French cathedral, and surpassed
1442
+ only by the incomplete Beauvais Cathedral. This monumental cathedral is located
1443
+ in Amiens, the chief city of Picardy, in the Somme River valley a little over
1444
+ 100 kilometers north of Paris.\\n\\nNotre-Dame d'Amiens has been listed as
1445
+ a UNESCO World Heritage Site since 1981 and was profiled in a PBS documentary.\\n\\nThe
1446
+ lack of documentation concerning the construction of the Gothic cathedral
1447
+ may be in part the result of fires that destroyed the chapter archives in
1448
+ 1218 and again in 1258—a fire that damaged the cathedral itself. Bishop Evrard
1449
+ de Fouilly initiated work on the cathedral in 1220. Robert de Luzarches was
1450
+ the architect until 1228, and was followed by Thomas de Cormont until 1258.
1451
+ His son, Renaud de Cormont, acted as the architect until 1288. The chronicle
1452
+ of Corbie gives a completion date for the cathedral of 1266. Finishing works
1453
+ continued, however. Its floors are covered with a number of designs, such
1454
+ as the swastika (to symbolize Jesus' triumph over death). The labyrinth was
1455
+ installed in 1288. The cathedral contains the alleged head of John the Baptist,
1456
+ a relic brought from Constantinople by Wallon de Sarton as he was returning
1457
+ from the Fourth Crusade.\\n\\nThe construction of the cathedral at this period
1458
+ can be seen as resulting from a coming together of necessity and opportunity.
1459
+ The destruction of earlier buildings and attempts at rebuilding by fire forced
1460
+ the fairly rapid construction of a building that, consequently, has a good
1461
+ deal of artistic unity. The long and relatively peaceful reign of Louis IX
1462
+ of France brought a prosperity to the region, based on thriving agriculture
1463
+ and a booming cloth trade, that made the investment possible. The great cathedrals
1464
+ of Reims and Chartres are roughly contemporary.\\n\\nThe original design of
1465
+ the flying buttresses around the choir had them placed too high to counteract
1466
+ the force of the ceiling arch pushing outwards resulting in excessive lateral
1467
+ forces being placed on the vertical columns. The structure was only saved
1468
+ when, centuries later, masons placed a second row of more robust flying buttresses
1469
+ that connected lower down on the outer wall. This fix failed to counteract
1470
+ similar issues with the lower wall which began to develop large cracks around
1471
+ the late Middle Ages. This was solved by another patch that consisted of a
1472
+ wrought iron bar chain being installed around the mezzanine level to resist
1473
+ the forces pushing the stone columns outward. The chain was installed red
1474
+ hot to act as a cinch, tightening as it cooled.\\n\\nThe west front of the
1475
+ cathedral, (illustration, right) built in a single campaign, 1220–36, shows
1476
+ an unusual degree of artistic unity: its lower tier with three vast deep porches
1477
+ is capped with the gallery of twenty-two over lifesize kings, which stretches
1478
+ across the entire façade beneath the rose window. Above the rose window there
1479
+ is an open arcade, the galerie des sonneurs. Flanking the nave, the two towers
1480
+ were built without close regard to the former design, the south tower being
1481
+ finished in 1366, the north one, reaching higher, in 1406.\\n\\nThe Western
1482
+ portals of the cathedral are justly famous for their elaborate sculpture,
1483
+ featuring a gallery of locally-important saints and large eschatological scenes.
1484
+ Statues of saints in the portal of the cathedral have been identified as including
1485
+ the locally venerated Saints Victoricus and Gentian, Saint Domitius, Saint
1486
+ Ulphia, and Saint Fermin.\\n\\nIn the book Mr Standfast, John Buchan has his
1487
+ character Richard Hannay describe the cathedral as being \\\"the noblest church
1488
+ that the hand of man ever built only for God.\\\"\\n\\nDuring the process
1489
+ of laser cleaning in the 1990s, it was discovered that the western façade
1490
+ of the cathedral was originally painted in multiple colours. A technique was
1491
+ perfected to determine the exact make-up of the colours as they were applied
1492
+ in the 13th century. Then, in conjunction with the laboratories of EDF (Electricity
1493
+ of France) and the expertise of the Society Skertzo, elaborate lighting techniques
1494
+ were developed to project these colours directly on the façade with precision,
1495
+ recreating the polychromatic appearance of the 13th century. When projected
1496
+ on the statues around the portals, the result is a stunning display that brings
1497
+ the figures to life. The projected colors are faint to photograph, but a good
1498
+ quality DSLR will provide excellent results as shown here.\\n\\nOf course,
1499
+ the full magical effect can best be appreciated by direct viewing, accompanied
1500
+ by stirring music, which can be done at the Son et lumière on Summer evenings,
1501
+ during the Christmas Fair, and over the New Year.\\n\\nAmiens cathedral contains
1502
+ the largest medieval interior in Western Europe, supported by 126 pillars.
1503
+ Both the nave and the chancel are vast but extremely light, with considerable
1504
+ amounts of stained glass surviving, despite the depredations of war.\\n\\nThe
1505
+ ambulatory surrounding the choir is richly decorated with polychrome sculpture
1506
+ and flanked by numerous chapels. One of the most sumptuous is the Drapers'
1507
+ chapel. The cloth industry was the most dynamic component of the medieval
1508
+ economy, especially in northern France, and the cloth merchants were keen
1509
+ to display their wealth and civic pride. Another striking chapel is dedicated
1510
+ to St Thomas of Canterbury, a 13th century dedication that complements the
1511
+ cathedral's own very full list of martyrs.\\n\\nThe interior contains works
1512
+ of art and decoration from every period since the building of the cathedral.\\n\\nThe
1513
+ initial impetus for the building of the cathedral came from the installation
1514
+ of the reputed head of John the Baptist on 17 December 1206. The head was
1515
+ part of the loot of the Fourth Crusade, which had been diverted from campaigning
1516
+ against the Turks to sacking the great Christian city of Constantinople. A
1517
+ sumptuous reliquary was made to house the skull. Although later lost, a 19th
1518
+ century replica still provides a focus for prayer and meditation in the North
1519
+ aisle.\\n\\nSome of the most important works of art are sequences of polychrome
1520
+ sculpture, dating mainly from the late 15th and the 16th centuries. A large
1521
+ sequence in the North transept illustrates Jesus' Cleansing of the Temple,
1522
+ with imaginative tableaux of the Temple. Both sides of the ambulatory are
1523
+ lined with sequences illustrating the lives of the two saints whose cults
1524
+ brought large numbers of pilgrims to the cathedral: John the Baptist and St
1525
+ Firmin, the first bishop of Amiens. The artists took care to create a parallelism
1526
+ in the telling of the stories: both saints, decapitated for offending the
1527
+ rich and powerful, suffer neglect and loss, until a later generation discovers
1528
+ their relics and houses them fittingly.\\n\\nThe baroque pulpit, constructed
1529
+ of marble and gilded wood, dominates the nave of the cathedral. It is supported
1530
+ by three allegorical female figures, apparently representing Faith, Hope and
1531
+ Charity, the three Theological Virtues.\\n\\n\\n\\nCoordinates: 49°53′42″N
1532
+ 2°18′08″E\uFEFF / \uFEFF49.895°N 2.30222°E\uFEFF / 49.895; 2.30222\",\"longitude\":\"2.301667\",\"latitude\":\"49.895\",\"title\":\"Amiens
1533
+ Cathedral\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":4,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[36.48167,32.51806]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/22\",\"date_of_inscription\":\"1980\",\"whs_site_id\":\"22\",\"country\":\"Syrian
1534
+ Arab Republic\",\"name\":\"Ancient City of Bosra\",\"size\":\"\",\"iso_code\":\"SY\",\"criteria\":\"[i],[iii],[vi]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Bosra\",\"external_links\":\"[Catholic
1535
+ Encyclopedia on Bosra|http://www.newadvent.org/cathen/02707a.htm]#[Official
1536
+ website of Bosra city|http://www.bosracity.com/]#[Bosra World Heritage site
1537
+ in panographies - 360 degree interactive imaging|http://www.WHTour.org/22]#[Extensive
1538
+ photo site about Bosra|http://www.pbase.com/dosseman_syria/bosra]\",\"endangered_year\":\"\",\"edited_region\":\"Governorate
1539
+ of Deraa\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Governorate
1540
+ of Deraa\",\"description\":\"Bosra (Arabic: بصرى‎, also Bostra, Busrana, Bozrah,
1541
+ Bozra, Busra Eski Şam, Busra ash-Sham, Nova Trajana Bostra) is an ancient
1542
+ city administratively belonging to the Daraa Governorate in southern Syria.
1543
+ It is a major archaeological site and has been declared a UNESCO World Heritage
1544
+ Site.\\n\\nThe settlement was first mentioned in the documents of Tutmose
1545
+ III and Akhenaton (14th century BC). Bosra was the first Nabatean city in
1546
+ the 2nd century BC. The Nabatean Kingdom was conquered by Cornelius Palma,
1547
+ a general of Trajan, in 106.\\n\\nUnder the Roman Empire, Bosra was renamed
1548
+ Nova Trajana Bostra, and was the residence of the legio III Cyrenaica and
1549
+ capital of the Roman province Arabia Petraea. The city flourished and became
1550
+ a major metropolis at the juncture of several trade routes, including the
1551
+ Roman road to the Red Sea. The two Councils of Arabia were held at Bostra
1552
+ in 246 and 247 AD. The city was conquered by the Sassanid Persians in the
1553
+ early 7th century, and, after a short Byzantine reconquest, was finally captured
1554
+ by the forces of the Rashidun Caliphate under Khalid ibn Walid in the Battle
1555
+ of Bosra (634). Thereafter it was an Islamic possession.\\n\\nBosra played
1556
+ an important part in the early life of the Prophet of Islam, Mohammed as described
1557
+ in the entry for the Christian Monk, Bahira. Bahira was witnessing to Muhammad
1558
+ in the prophethood.\\n\\nToday, Bosra is a major archaeological site, containing
1559
+ ruins from Roman, Byzantine, and Muslim times, its main feature being the
1560
+ well preserved Roman theatre. Every year there is a national music festival
1561
+ hosted in the main theater.\\n\\nOf the city which once counted 80,000 inhabitants,
1562
+ there remains today only a village settled among the ruins. The second century
1563
+ Roman theater, constructed probably under Trajan, is the only monument of
1564
+ this type with its upper gallery in the form of a covered portico which has
1565
+ been integrally preserved. It was fortified between 481 and 1231 AD.\\n\\nFurther,
1566
+ Nabatean and Roman monuments, Christian churches, mosques and Madrasahs are
1567
+ present within the half ruined enceinte of the city. The structure of this
1568
+ monument a central plan with eastern apses flanked by 2 sacristies exerted
1569
+ a decisive influence on the evolution of Christian architectural forms, and,
1570
+ to a certain extent, on Islamic style as well. Al-Omari Mosque of Bosra is
1571
+ one of the oldest surviving mosques in Islamic history.\\n\\nClose by are
1572
+ the Kharaba Bridge and the Gemarrin Bridge, both Roman bridges.\\n\\nCoordinates:
1573
+ 32°31′N 36°29′E\uFEFF / \uFEFF32.517°N 36.483°E\uFEFF / 32.517; 36.483\",\"longitude\":\"36.48167\",\"latitude\":\"32.51806\",\"title\":\"Ancient
1574
+ City of Bosra\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":5,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[27.73,42.65611]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/217\",\"date_of_inscription\":\"1983\",\"whs_site_id\":\"217\",\"country\":\"Bulgaria\",\"name\":\"Ancient
1575
+ City of Nessebar\",\"size\":\"270000.0\",\"iso_code\":\"BG\",\"criteria\":\"[iii],[iv]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Nesebar\",\"external_links\":\"[Evaluation|http://whc.unesco.org/archive/advisory_body_evaluation/217.pdf]#[Gallery
1576
+ of pictures from Nesebar|http://www.pbase.com/ngruev/nesebur]#[Folklore Ensemble
1577
+ Slanchev Bryag – Nessebar|http://www.nessebar-folk.com/]#[Ancient Nesebar|http://www.ancient-nessebar.com/]#[Portal
1578
+ of Nessebar|http://www.nessebar-bulgaria.com/]\",\"endangered_year\":\"\",\"edited_region\":\"Burgas
1579
+ Province\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Burgas
1580
+ Province\",\"description\":\"Nesebar (Bulgarian: Несебър, pronounced [neˈsebər],
1581
+ also transcribed as Nessebar or Nesebur; ancient name: Mesembria) is an ancient
1582
+ town and one of the major seaside resorts on the Bulgarian Black Sea Coast,
1583
+ located in Burgas Province. It is the administrative centre of the homonymous
1584
+ Nesebar Municipality. Often referred to as the \\\"Pearl of the Black Sea\\\"
1585
+ and \\\"Bulgaria's Dubrovnik\\\", Nesebar is a rich city-museum defined by
1586
+ more than three millennia of ever-changing history.\\n\\nIt is a one of the
1587
+ most prominent tourist destinations and seaports on the Black Sea, in what
1588
+ has become a popular area with several large resorts—the largest, Sunny Beach,
1589
+ is situated immediately to the north of Nesebar.\\n\\nNesebar has on several
1590
+ occasions found itself on the frontier of a threatened empire, and as such
1591
+ it is a town with a rich history. The ancient part of the town is situated
1592
+ on a peninsula (previously an island) connected to the mainland by a narrow
1593
+ man-made isthmus, and it bears evidence of occupation by a variety of different
1594
+ civilisations over the course of its existence. Its abundance of historic
1595
+ buildings prompted UNESCO to include Nesebar in its list of World Heritage
1596
+ Sites in 1983.\\n\\nAs of December 2009, the town has a population of 11,626
1597
+ inhabitants. It lies at 42°39′N 27°44′E\uFEFF / \uFEFF42.65°N 27.733°E\uFEFF
1598
+ / 42.65; 27.733Coordinates: 42°39′N 27°44′E\uFEFF / \uFEFF42.65°N 27.733°E\uFEFF
1599
+ / 42.65; 27.733.\\n\\nInhabited in the Antiquity by the Thracians and the
1600
+ Ancient Greeks, the original Thracian settlement Menebria was called Mesembria
1601
+ (Ancient Greek: Μεσήμβρια) by the Ancient Greeks. Under this name it was still
1602
+ known in the Middle Ages to Bulgarians and Byzantines.\\n\\nOriginally a Thracian
1603
+ settlement known as Menebria, the town became a Greek colony when settled
1604
+ by Dorians from Megara at the beginning of the 6th century BC, and was an
1605
+ important trading centre from then on and a rival of Apollonia (Sozopol).
1606
+ It remained the only Doric colony along the Black Sea coast, as the rest were
1607
+ typical Ionic colonies. Remains from the Hellenistic period include the acropolis,
1608
+ a temple of Apollo, and an agora. A wall which formed part of the fortifications
1609
+ can still be seen on the north side of the peninsula. Bronze and silver coins
1610
+ were minted in the city since the 5th century BC and gold coins since the
1611
+ 3rd century BC.\\n\\nThe town fell under Roman rule in 71 BC, yet continued
1612
+ to enjoy privileges such as the right to mint its own coinage. It was one
1613
+ of the most important strongholds of the Byzantine Empire from the 5th century
1614
+ AD onwards, and was fought over by Byzantines and Bulgarians, being captured
1615
+ and incorporated in the lands of the First Bulgarian Empire in 812 by Khan
1616
+ Krum after a two week siege only to be ceded back to Byzantium by Knyaz Boris
1617
+ I in 864 and reconquered by his son Tsar Simeon the Great. During the time
1618
+ of the Second Bulgarian Empire it was also contested by Bulgarian and Byzantine
1619
+ forces and enjoyed particular prosperity under Bulgarian tsar Ivan Alexander
1620
+ (1331–1371) until it was conquered by Crusaders led by Amadeus VI, Count of
1621
+ Savoy in 1366. The Bulgarian version of the name, Nesebar or Mesebar, has
1622
+ been attested since the 11th century.\\n\\nMonuments from the Middle Ages
1623
+ include the 5–6th century Stara Mitropoliya (\\\"old bishopric\\\"; also St
1624
+ Sophia), a basilica without a transept; the 10th century church of the Virgin;
1625
+ and the 11th century Nova Mitropoliya (\\\"new bishopric\\\"; also St Stephen)
1626
+ which continued to be embellished until the 18th century. In the 13th and
1627
+ 14th century a remarkable series of churches were built: St Theodore, St Paraskeva,
1628
+ St Michael St Gabriel, and St John Aliturgetos.\\n\\nThe capture of the town
1629
+ by the Turks in 1453 marked the start of its decline, but its architectural
1630
+ heritage remained and was enriched in the 19th century by the construction
1631
+ of wooden houses in style typical for the Bulgarian Black Sea Coast during
1632
+ this period. It was a kaza centre in İslimye sanjak of Edirne Province before
1633
+ 1878. After the Liberation of Bulgaria from Ottoman rule in 1878, Nesebar
1634
+ became part of the autonomous Ottoman province of Eastern Rumelia as a kaza
1635
+ centre in Burgaz sanjak until it united with the Principality of Bulgaria
1636
+ in 1886.\\n\\nAround the end of the 19th century Nesebar was a small town
1637
+ of Greek fishermen and vinegrowers, but developed as a key Bulgarian seaside
1638
+ resort since the beginning of the 20th century. After 1925 a new town part
1639
+ was built and the historic Old Town was restored.\\n\\nNesebar is sometimes
1640
+ said to be the town with the highest number of churches per capita.[1], [2]
1641
+ Although this might be wrong, their number and variety is still impressive.
1642
+ Some of the most famous include:\\n\\nWhether built during the Byzantine,
1643
+ Bulgarian or Ottoman rule of the city, the churches of Nesebar represent the
1644
+ rich architectural heritage of the Eastern Orthodox world and illustrate the
1645
+ gradual development from Early Christian basilicas to medieval cross-domed
1646
+ churches.\\n\\nNesebar Gap on Livingston Island in the South Shetland Islands,
1647
+ Antarctica is named after Nesebar.\",\"longitude\":\"27.73\",\"latitude\":\"42.65611\",\"title\":\"Ancient
1648
+ City of Nessebar\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":6,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[38.6121,8.43491]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/12\",\"date_of_inscription\":\"1980\",\"whs_site_id\":\"12\",\"country\":\"Ethiopia\",\"name\":\"Tiya\",\"size\":\"\",\"iso_code\":\"ET\",\"criteria\":\"[i],[iv]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Tiya\",\"external_links\":\"[UNESCO
1649
+ Tiya Site|http://whc.unesco.org/en/list/12]\",\"endangered_year\":\"\",\"edited_region\":\"Sodo
1650
+ woreda, Gurage zone, Southern Nation Nationalities & Peoples Region\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Sodo
1651
+ woreda, Gurage zone, Southern Nation Nationalities & Peoples Region\",\"description\":\"Tiya
1652
+ is a town in southern Ethiopia. Located in the Gurage Zone of the Southern
1653
+ Nations, Nationalities, and Peoples Region south of Addis Ababa, the town
1654
+ has a latitude and longitude of 8°26′N 38°37′E\uFEFF / \uFEFF8.433°N 38.617°E\uFEFF
1655
+ / 8.433; 38.617Coordinates: 8°26′N 38°37′E\uFEFF / \uFEFF8.433°N 38.617°E\uFEFF
1656
+ / 8.433; 38.617.\\n\\nTiya is best known for its adjacent archeological site,
1657
+ which is distinguished by 36 standing stones or stelae, \\\"32 of which are
1658
+ engraved with enigmatic symbols, notably swords,\\\" marking a large, prehistoric
1659
+ burial complex. A German ethnographic expedition had visited the site in April
1660
+ 1935, and had found at one hour's journey to the south of the caravan camp
1661
+ the stone monoliths with sword symbol, which had been seen earlier by Neuville
1662
+ and Père Azaïs. The archeological site was designated a World Heritage Site
1663
+ in 1980.\\n\\nOther points of interest near Tiya include Melka Awash, the
1664
+ Hera Shetan crater lake, and Agesoke a place where very tall naturally ordered
1665
+ stoneblocks could be seen.\\n\\nBased on figures from the Central Statistical
1666
+ Agency in 2005, Tiya has an estimated total population of 3,363 of whom 1,615
1667
+ are men and 1,748 are women. The 1994 national census reported this town had
1668
+ a total population of 1,856 of whom 894 were males and 962 were females. Tiya
1669
+ is one of three towns in Soddo woreda.\",\"longitude\":\"38.6121\",\"latitude\":\"8.43491\",\"title\":\"Tiya\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":7,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[32.6,25.73333]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/87\",\"date_of_inscription\":\"1979\",\"whs_site_id\":\"87\",\"country\":\"Egypt\",\"name\":\"Ancient
1670
+ Thebes with its Necropolis\",\"size\":\"73900000.0\",\"iso_code\":\"EG\",\"criteria\":\"[i],[iii],[vi]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Thebes,_Egypt\",\"external_links\":\"[More
1671
+ information on ancient Thebes, a World Cultural Heritage site|http://whc.unesco.org/en/list/87/]#[Theban
1672
+ Mapping Project|http://www.thebanmappingproject.com/]#[Ramesseum/Ancient Thebes
1673
+ Digital Media Archive (photos, laser scans, panoramas)|http://archive.cyark.org/ancient-thebes-info]#[ICOMOS
1674
+ Heritage at Risk 2001/2002|http://www.international.icomos.org/risk/2001/egyp2001.htm]\",\"endangered_year\":\"\",\"edited_region\":\"Governorate
1675
+ of Qina\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Governorate
1676
+ of Qina\",\"description\":\"Thebes (Θῆβαι, Thēbai, Arabic: طيبة‎, Ṭībah) is
1677
+ the Greek name for a city in Ancient Egypt located about 800 km south of the
1678
+ Mediterranean, on the east bank of the river Nile. The Theban Necropolis is
1679
+ located nearby on the west bank of the Nile. Thebes was inhabited from around
1680
+ 3200 BC. It was the eponymous capital of Waset, the fourth Upper Egyptian
1681
+ nome. Waset was the capital of Egypt during part of the 11th Dynasty (Middle
1682
+ Kingdom) and most of the 18th Dynasty (New Kingdom), when Hatshepsut built
1683
+ a Red Sea fleet to facilitate trade between Thebes Red Sea port of Elim, modern
1684
+ Quasir, and Elat at the head of the Gulf of Aqaba. Traders bought frankincense,
1685
+ myrrh, bitumen, natron, fine woven linen, juniper oil and copper amulets for
1686
+ the mortuary industry at Karnak with Nubian gold. With the 19th Dynasty the
1687
+ seat of government moved to the Delta. The archaeological remains of Thebes
1688
+ offer a striking testimony to Egyptian civilization at its height. The Greek
1689
+ poet Homer extolled the wealth of Thebes in the Iliad, Book 9 (c. 8th Century
1690
+ BC): \\\"... in Egyptian Thebes the heaps of precious ingots gleam, the hundred-gated
1691
+ Thebes.\\\"\\n\\nThe name Thebai is the Greek designation of the ancient Egyptian
1692
+ opet \\\"The Karnak Temple\\\" (from coptic ta-pe, Ta-opet became Thebai).
1693
+ At the seat of the Theban triad of Amun, Mut, and Khonsu, Thebes was known
1694
+ in the Egyptian language from the end of the New Kingdom as niwt-imn, \\\"The
1695
+ City of Amun.\\\" This found its way into the Hebrew Bible as נא אמון nōʼ
1696
+ ʼāmôn (Nahum 3:8),\\\"no\\\" in Hebrew meaning city with \\\"no amon\\\" or
1697
+ \\\"City of Amon\\\" referring to the Egyptian deity Amon-Ra, most likely
1698
+ it is also the same as נא (\\\"No\\\") (Ezekiel 30:14). In Greek this name
1699
+ was rendered Διόσπολις Diospolis, \\\"City of Zeus\\\", as Zeus was the god
1700
+ whom the Greeks identified with Amun, see interpretatio graeca. The Greeks
1701
+ surnamed the city μεγάλη megale, \\\"the Great\\\", to differentiate it from
1702
+ numerous other cities called Diospolis. The Romans rendered the name Diospolis
1703
+ Magna.\\n\\nIn modern usage, the mortuary temples and tombs on the west bank
1704
+ of the river Nile are generally thought of as part of Thebes.\\n\\nIn 1979,
1705
+ the ruins of ancient Thebes were inscribed by UNESCO as a World Cultural Heritage
1706
+ site. The two great temples, now called Luxor (Arabic: الأقصر, Al-Uqṣur, \\\"The
1707
+ palaces\\\") and al-Karnak (الكرنك), the Valley of the Kings and the Valley
1708
+ of the Queens are among the great achievements of ancient Egypt.\\n\\nThe
1709
+ site of Thebes is populated at least since the Middle Paleolithic.\\n\\n\\n\\nCoordinates:
1710
+ 25°43′14″N 32°36′37″E\uFEFF / \uFEFF25.72056°N 32.61028°E\uFEFF / 25.72056;
1711
+ 32.61028\",\"longitude\":\"32.6\",\"latitude\":\"25.73333\",\"title\":\"Ancient
1712
+ Thebes with its Necropolis\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":8,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[16.25167,43.5125]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/810\",\"date_of_inscription\":\"1997\",\"whs_site_id\":\"810\",\"country\":\"Croatia\",\"name\":\"Historic
1713
+ City of Trogir\",\"size\":\"64000.0\",\"iso_code\":\"HR\",\"criteria\":\"[ii],[iv]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Trogir\",\"external_links\":\"\",\"endangered_year\":\"\",\"edited_region\":\"County
1714
+ of Split-Dalmatia\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"County
1715
+ of Split-Dalmatia\",\"description\":\"\",\"longitude\":\"16.25167\",\"latitude\":\"43.5125\",\"title\":\"Historic
1716
+ City of Trogir\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":9,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[-90.666667,14.566667]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/65\",\"date_of_inscription\":\"1979\",\"whs_site_id\":\"65\",\"country\":\"Guatemala\",\"name\":\"Antigua
1717
+ Guatemala\",\"size\":\"490000.0\",\"iso_code\":\"GT\",\"criteria\":\"[ii],[iii],[iv]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Antigua_Guatemala\",\"external_links\":\"[Antigua
1718
+ Information and Directory site in English|http://www.antiguadailyphoto.com/]#[Official
1719
+ Site in Spanish|http://patrimoniomundialguatemala.org/la-antigua.html]#[Travel
1720
+ guide|http://roadtoantigua.com]#[Panoramic 360° Pictures of Antigua Guatemala|http://www.guate360.com/galeria/details.php?image_id=3]\",\"endangered_year\":\"\",\"edited_region\":\"Department
1721
+ of Sacatepéquez, Panchoy Valley\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Department
1722
+ of Sacatepéquez, Panchoy Valley\",\"description\":\"La Antigua Guatemala
1723
+ (commonly referred to as just Antigua or La Antigua) is a city in the central
1724
+ highlands of Guatemala famous for its well-preserved Spanish Mudéjar-influencedBaroque
1725
+ architecture as well as a number of spectacular ruins of colonial churches.
1726
+ It has been designated a UNESCO World Heritage Site.\\n\\nAntigua Guatemala
1727
+ serves as the municipal seat for the surrounding municipality of the same
1728
+ name. It also serves as the departmental capital of Sacatepéquez Department.\\n\\nThe
1729
+ city had a peak population of some 60,000 in the 1770s; the bulk of the population
1730
+ moved away in the late 18th century. Despite significant population growth
1731
+ in the late 20th century, the city had only reached half that number by the
1732
+ 1990s. According to the 2007 census, the city has some 34,685 inhabitants.\\n\\nLa
1733
+ Antigua Guatemala means the \\\"Old Guatemala\\\" and was the third capital
1734
+ of Guatemala. The first capital of Guatemala was founded on the site of a
1735
+ Kakchikel-Maya city, now called Iximche, on Monday, July 25, 1524—the day
1736
+ of Saint James—and therefore named Ciudad de Santiago de los Caballeros de
1737
+ Goathemalan (City of Saint James of the Knights of Guatemala). Naturally,
1738
+ St. James became the patron saint of the city.\\n\\nAfter several Cakchiquel
1739
+ uprisings, the capital was moved to a more suitable site in the Valley of
1740
+ Alotenango (Rio Guacalate) on November 22, 1527, and kept its original name.
1741
+ When this city, on the site of present-day San Miguel Escobar, was destroyed
1742
+ on September 11, 1541 by a devastating lahar from the Volcán de Agua, the
1743
+ colonial authorities decided to move once more, this time to the Panchoy Valley.
1744
+ So, on March 10, 1543 the Spanish conquistadors founded present-day Antigua,
1745
+ and again, it was named Santiago de los Caballeros. For more than 200 years
1746
+ it served as the seat of the military governor of the Spanish colony of Guatemala,
1747
+ a large region that included almost all of present-day Central America and
1748
+ the southernmost State of Mexico: Chiapas. In 1566 King Felipe II of Spain
1749
+ gave it the title of \\\"Muy Noble y Muy Leal\\\" (\\\"Very Noble and Very
1750
+ Loyal\\\").\\n\\nOn September 29, 1717, an estimated 7.4 magnitude earthquake
1751
+ hit Antigua Guatemala, and destroyed over 3,000 buildings. Much of the city's
1752
+ architecture was ruined. The damage the earthquake did to the city made authorities
1753
+ consider moving the capital to another city.\\n\\nIn 1773, the Santa Marta
1754
+ earthquakes destroyed much of the town, which led to the third change in location
1755
+ for the city. The Spanish Crown ordered (1776) the removal of the capital
1756
+ to a safer location, the Valley of the Shrine, where Guatemala City, the modern
1757
+ capital of Guatemala, now stands. This new city did not retain its old name
1758
+ and was christened Nueva Guatemala de la Asunción (New Guatemala of the Ascension)
1759
+ and its patron saint is Our Lady of Ascension. The badly damaged city of Santiago
1760
+ de los Caballeros was ordered abandoned, although not everyone left, and was
1761
+ thereafter referred to as la Antigua Guatemala (the Old Guatemala).\\n\\nCentral
1762
+ Park (Parque Central) is the heart of the city. The reconstructed fountain
1763
+ there is a popular gathering spot. Off to the side of the Central Park, the
1764
+ Arco de Santa Catalina is among the many notable architectural landmarks of
1765
+ La Antigua.\\n\\nLa Antigua is noted for its very elaborate religious celebrations
1766
+ during Lent (Cuaresma), leading up to Holy Week (Semana Santa) and Easter
1767
+ (Pascua). Each Sunday in Lent, one of the local parishes sponsor a Procession
1768
+ through the streets of Antigua. Elaborate and beautiful artistic carpets predominantly
1769
+ made of dyed sawdust, flowers and even fruits and vegetables adorn the processions'
1770
+ path.\\n\\nDue to its popularity amongst tourists and its very well developed
1771
+ tourism infrastructure, Antigua Guatemala is often used as a central location
1772
+ in which many choose to set up base and from here, visit other tourist areas
1773
+ in Guatemala and Central America. Cruise ships that dock at Guatemalan ports
1774
+ offer trips to Antigua from both the Pacific and Atlantic.\\n\\nAntigua also
1775
+ holds a sizeable retirement community from the US as well as Europe as its
1776
+ colonial charm has appealed to many who have crossed paths with this enchanting
1777
+ and romantic town.\\n\\nTourism is the main driver of the economy. Antigua
1778
+ is also a coffee producing region of Anacafé.\\n\\nAntigua is known as a destination
1779
+ for people who want to learn Spanish through immersion. There are many Spanish
1780
+ language schools in Antigua and it is one of the most popular and best recognized
1781
+ centers for Spanish language study by students from Europe and North America.
1782
+ Language institutes are one of the primary industries of Antigua, along with
1783
+ tourism.\\n\\nThe University of San Carlos in Antigua was founded by the Papal
1784
+ Bull of Pope Innocent XI issued dated 18 June 1687.\\n\\nAntigua GFC football
1785
+ club has played in the Guatemala top division for several years but have been
1786
+ playing in the second division lately. Their home stadium is the Estadio Pensativo
1787
+ which has a capacity of 9,000. They are nicknamed Los panzas verdes (\\\"Green
1788
+ bellies\\\").\\n\\n\\n\\nA number of restaurants can be found in Antigua.
1789
+ Many small eateries can be found at the Antigua marketplace located next to
1790
+ the central bus stop, next to the main market. U.S. style fast food restaurants
1791
+ including \\\"Burger King\\\", \\\"McDonald's\\\", as well as Guatemalan favorite
1792
+ \\\"Pollo Campero\\\" are in the city.\\n\\nAntigua is a growing tourist destination
1793
+ in Guatemala as it is close to Guatemala City but is much calmer and safer,
1794
+ with more tourist oriented activities. It is possible to take buses from Antigua
1795
+ to many parts of Guatemala, many travel agencies offer shuttles to the main
1796
+ touristic places: Monterrico beach, Atitlan Lake, Coban, Tikal or even Copan
1797
+ in Honduras, though the transportation is more central in Guatemala City.\\n\\nThree
1798
+ large volcanoes dominate the horizon around Antigua.\\n\\nThe most commanding,
1799
+ to the south of the city, is the Volcán de Agua or \\\"Volcano of Water\\\",
1800
+ some 3766 meters (12,356 ft) high. When the Spanish arrived, the inhabitants
1801
+ of the zone, Kakchikel Mayas, called it Hunapú (and they still do). However,
1802
+ it became known as Volcán de Agua after a mudslide from the volcano buried
1803
+ the second site of the capital, which prompted the Spanish authorities to
1804
+ move the capital to present-day Antigua. The original site of the 2nd capital
1805
+ is now the village San Miguel Escobar.\\n\\nTo the west of the city are a
1806
+ pair of peaks, Acatenango, last erupted in 1972, some 3976 meters (13045 ft)
1807
+ high, and the Volcán de Fuego or \\\"Volcano of Fire\\\", some 3763 meters
1808
+ (12346 ft) high. \\\"Fuego\\\" is famous for being almost constantly active
1809
+ at a low level. Smoke issues from its top daily, but larger eruptions are
1810
+ rare.\\n\\nCoordinates: 14°34′N 90°44′W\uFEFF / \uFEFF14.567°N 90.733°W\uFEFF
1811
+ / 14.567; -90.733\",\"longitude\":\"-90.666667\",\"latitude\":\"14.566667\",\"title\":\"Antigua
1812
+ Guatemala\"},{\"updated_at\":\"2012-05-23T17:33:51+02:00\",\"created_at\":\"2012-05-23T17:33:51+02:00\",\"cartodb_id\":10,\"the_geom\":\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[13.3675,45.768333]}\",\"whs_source_page\":\"http://whc.unesco.org/en/list/825\",\"date_of_inscription\":\"1998\",\"whs_site_id\":\"825\",\"country\":\"Italy\",\"name\":\"Archaeological
1813
+ Area and the Patriarchal Basilica of Aquileia\",\"size\":\"1550000.0\",\"iso_code\":\"IT\",\"criteria\":\"[iii],[iv],[vi]\",\"comments\":\"\",\"wikipedia_link\":\"http://en.wikipedia.org/wiki/Aquileia\",\"external_links\":\"[Aquileia
1814
+ virtual tour (Italian Landmarks)|http://www.burger.si/Italy/Aquileia/uvod_ENG.html]#[Pre-roman
1815
+ and Celtic Aquileia|http://www.terrediaquileia.it/docebo/doceboCms/index.php?special=changearea&newArea=572]#[Aquileia
1816
+ featured on 10 Euro Italian Coin|http://news.coinupdate.com/aquileia-euro-coin-from-the-italian-state-mint-0473/]\",\"endangered_year\":\"\",\"edited_region\":\"Province
1817
+ of Udine, Friuli-Venezia Giulia Region\",\"endangered_reason\":\"\",\"type\":\"cultural\",\"region\":\"Province
1818
+ of Udine, Friuli-Venezia Giulia Region\",\"description\":\"Aquileia (Friulian:
1819
+ Acuilee/Aquilee/Aquilea) is an ancient Roman city in what is now Italy, at
1820
+ the head of the Adriatic at the edge of the lagoons, about 10 km from the
1821
+ sea, on the river Natiso (modern Natisone), the course of which has changed
1822
+ somewhat since Roman times. Today, it is one of the main archeological sites
1823
+ of Northern Italy.\\n\\nAquileia was founded as a colony by the Romans in
1824
+ 180/181 BC along the Natissa River, on land south of the Julian Alps but about
1825
+ 8 miles north of the lagoons. Apparently named from an indigenous word Akylis,
1826
+ the colony served as a frontier fortress at the north-east corner of transpadane
1827
+ Italy and was intended to protect the Veneti, faithful Roman allies, during
1828
+ the Illyrian Wars and act as a buttress to check the advance of other warlike
1829
+ people, such as the hostile tribes of Carni and Histri. In fact, Aquileia
1830
+ was founded on a site not far from where Gaulish invaders had attempted to
1831
+ settle in 183 BC.\\n\\nThe colony was established with Latin rights by the
1832
+ triumvirate of Publius Scipio Nasica, Caius Flaminius, and Lucius Manlius
1833
+ Acidinus, two of whom were of consular and one of praetorian rank. They led
1834
+ 3,000 pedites (infantry), mainly from Samnium, who with their families formed
1835
+ the bulk of the settlers and were soon supplemented by native Veneti. It is
1836
+ likely that Aquileia had been a center of Venetia even before the coming of
1837
+ the Romans. And Aquileia's strategic military position also served to promote
1838
+ the Venetic trade in amber imported from the Baltic.\\n\\nAquileia was connected
1839
+ by road with Bologna probably in 173 BC; and subsequently with Genoa in 148
1840
+ BC by the Via Postumia, which ran through Cremona, Bedriacum and Altinum,
1841
+ joining the first-mentioned road at Concordia, while the construction of the
1842
+ Via Popilia from Rimini to Ad Portum near Altinum in 132 BC improved the communications
1843
+ still further.\\n\\nIn 169 BC, 1,500 more Latin colonists with their families
1844
+ were settled in the town as a reinforcement to the garrison. The discovery
1845
+ of the gold fields near the modern Klagenfurt in 130 BC brought it into notice,
1846
+ and it soon became a place of importance, not only owing to its strategic
1847
+ position, but as a centre of trade, especially in agricultural products and
1848
+ viticulture. It also had, in later times at least, considerable brickfields.\\n\\nThe
1849
+ original Latin colony became a municipium probably in 90 BC. Citizens were
1850
+ ascribed to the Roman tribe Velina. The customs boundary of Italy was close
1851
+ by in Cicero's day. It was plundered by the Iapydes under Augustus, but, in
1852
+ the period of peace which followed, was able to develop its resources. Augustus
1853
+ visited it during the Pannonian wars in 12‑10 BC and it was the birthplace
1854
+ of Tiberius' son by Julia, in the latter year.\\n\\nIt was the starting-point
1855
+ of several important roads leading to the north-eastern portion of the empire
1856
+ — the road (Via Iulia Augusta) by Iulium Carnicum to Veldidena (mod. Wilten,
1857
+ near Innsbruck), from which branched off the road into Noricum, leading by
1858
+ Virunum (Klagenfurt) to Laurieum (Lorch) on the Danube, the road into Pannonia,
1859
+ leading to Aemona (Ljubljana) and Sirmium (Sremska Mitrovica), the road to
1860
+ Tarsatica (near Fiume, now Rijeka) and Siscia (Sisak), and that to Tergeste
1861
+ (Trieste) and the Istrian coast.\\n\\nBesides natives of Italy, Celts, Illyrians,
1862
+ Greeks, Egyptians, Jews, and Syrians all settled in the city and contributed
1863
+ to its commercial development. Jewish artisans established a flourishing trade
1864
+ in glasswork. Metal from Noricum was forged and exported. The ancient Venetic
1865
+ trade in amber from the Baltic was continued. Wine, especially its famous
1866
+ Pucinum was exported. Oil was imported from Proconsular Africa.\\n\\nIn terms
1867
+ of religion, the Roman pantheon was adopted although a native sungod, Belenus,
1868
+ had a large following. Jews practiced their ancestral religion and it was
1869
+ perhaps some of these Jews who became the first Christians. Meanwhile, soldiers
1870
+ brought the martial cult of Mithras.\\n\\nIn the war against the Marcomanni
1871
+ in 167, the town was hard pressed; its fortifications had fallen into disrepair
1872
+ during the long peace. Nevertheless, when in 168 Marcus Aurelius made Aquileia
1873
+ the principal fortress of the empire against the barbarians of the North and
1874
+ East, it rose to the pinnacle of its greatness and soon had a population of
1875
+ 100,000. In 238, when the town took the side of the Senate against the Emperor
1876
+ Maximinus Thrax, the fortifications were hastily restored, and proved of sufficient
1877
+ strength to resist for several months, until Maximinus himself was assassinated.\\n\\nDuring
1878
+ the 4th century, Aquileia maintained its importance. Constantine sojourned
1879
+ there on numerous occasions. It became a naval station and the seat of the
1880
+ Corrector Venetiarum et Histriae; a mint was established, of which the coins
1881
+ were very numerous, and the bishop obtained the rank of metropolitan archbishop.
1882
+ A council held in the city in 381 was only the first of a series of Councils
1883
+ of Aquileia that have been convened over the centuries.\\n\\nAn imperial palace
1884
+ was constructed here, in which the emperors after the time of Diocletian frequently
1885
+ resided; and the city often played a part in the struggles between the rulers
1886
+ of the 4th century. In 340, Emperor Constantine II was killed under its walls
1887
+ while attempting to take the city from his younger brother Constans.\\n\\nAt
1888
+ the end of the 4th century, Ausonius, enumerated Aquileia as the ninth among
1889
+ the great cities of the world, placing Rome, Mediolanum and Capua before it.
1890
+ However, it was besieged by Alaric and the Visigoths in 401, during which
1891
+ time some of its residents fled to the lagoons, and again unsuccessfully in
1892
+ 408. In 452, the city was so utterly destroyed by Attila's Huns that it was
1893
+ afterwards hard to recognize its original site. The Roman inhabitants, together
1894
+ with those of smaller towns in the neighborhood, fled to the lagoons, and
1895
+ so laid the foundations of the cities of Venice and nearby Grado.\\n\\nYet
1896
+ Aquileia would rise again, though much diminished, and continue to exist until
1897
+ the Lombard invasion of 568. It was once more destroyed (590) by the Lombards.
1898
+ Meanwhile, the patriarch fled to the island town of Grado, which was under
1899
+ the protection of the Byzantines. When the patriarch residing in Grado was
1900
+ reconciled with Rome in 606, those continuing in their rejection of the Second
1901
+ Council of Constantinople elected a patriarch at Aquileia. Thus, the diocese
1902
+ was essentially divided into two parts, with the mainland patriarchate of
1903
+ Aquileia under the protection of the Lombards, and the insular patriarchate
1904
+ of Aquileia seated in Grado being protected by the exarchate of Ravenna and
1905
+ later the Doges of Venice, with the collusion of the Lombards. The line of
1906
+ the patriarchs elected in Aquileia would continue in schism until 699. However,
1907
+ although they kept the title of patriarch of Aquileia, they moved their residence
1908
+ first to Cormons and later to Cividale.\\n\\nThe Lombard Dukes of Friuli ruled
1909
+ Aquileia and the surrounding mainland territory from Cividale. In 774, Charlemagne
1910
+ conquered the Lombard duchy and made it into a Frankish one with Eric of Friuli
1911
+ as duke. In 787, Charlemagne named the priest and master of grammar at the
1912
+ Palace School Paulinus the new patriarch of Aquileia. Although Paulinus resided
1913
+ mainly at Cividale, his successor Maxentius considered rebuilding Aquileia.
1914
+ However, the project never came to fruition.\\n\\nWhile Maxentius was patriarch,
1915
+ the pope approved the Synod of Mantua, which affirmed the precedence of the
1916
+ mainland patriarch of Aquileia over the patriarch of Grado. However, material
1917
+ conditions were soon to worsen for Aquileia. The ruins of Aquileia were continually
1918
+ pillaged for building material. And with the collapse of the Carolingians
1919
+ in the 10th century, the inhabitants would suffer under the raids of the Magyars.\\n\\nBy
1920
+ the 11th century, the patriarch of Aquileia had grown strong enough to assert
1921
+ temporal sovereignty over Friuli and Aquileia. The Holy Roman Emperor gave
1922
+ the region to the patriarch as a feudal possession. However, the patriarch's
1923
+ temporal authority was constantly disputed and assailed by the territorial
1924
+ nobility.\\n\\nIn 1027 and 1044 Patriarch Poppo of Aquileia, who rebuilt the
1925
+ cathedral of Aquileia, entered and sacked neighboring Grado, and, though the
1926
+ Pope reconfirmed the Patriarch of the latter in his dignities, the town never
1927
+ fully recovered, though it continued to be the seat of the Patriarchate until
1928
+ its formal transference to Venice in 1450.\\n\\nIn the 14th century the Patriarchate
1929
+ reached its biggest extension, stretching from the Piave river to the Julian
1930
+ Alps and northern Istria. The seat of the Patriarchate of Aquileia had been
1931
+ transferred to Udine in 1238, but returned to Aquiliea in 1420 when Venice
1932
+ annexed the territory of Udine.\\n\\nIn 1445, the defeated patriarch Ludovico
1933
+ Trevisan acquiesced in the loss of his ancient temporal estate in return for
1934
+ an annual salary of 5,000 ducats allowed him from the Venetian treasury. Henceforth
1935
+ only Venetians were allowed to hold the title of Patriarch of Aquileia. The
1936
+ Patriarchate was incorporated in the Republic of Venice with the name of Patria
1937
+ del Friuli, ruled by a General Proveditor or a \\\"Luogotenente\\\" living
1938
+ in Udine.\\n\\nIt was finally officially suppressed in 1751, and the sees
1939
+ of Udine and Gorizia (Görz) established in its stead.\\n\\nThe Cathedral of
1940
+ Aquileia is a flat-roofed basilica erected by Patriarch Poppo in 1031 on the
1941
+ site of an earlier church, and rebuilt about 1379 in the Gothic style by Patriarch
1942
+ Marquard von Randeck.\\n\\nThe façade, in Romanesque-Gothic style, is connected
1943
+ by a portico to the Church of the Pagans, and the remains of the 5th century
1944
+ Baptistry. The interior has a nave and two aisles, with a noteworthy mosaic
1945
+ pavement from the 4th century. The wooden ceiling is from 1526, while the
1946
+ fresco decoration belongs to various ages: from the 4th century in the St.
1947
+ Peter's chapel of the apse area; from the 11th century in the apse itself;
1948
+ from the 12th century in the so-called \\\"Crypt of the Frescoes\\\", under
1949
+ the presbytery, with a cycle depicting the origins of Christianity in Aquileia
1950
+ and the history of St. Hermagoras, first bishop of the city.\\n\\nNext to
1951
+ the 11th century Romanesque chapel of the Holy Sepulchre, at the beginning
1952
+ of the left aisle, flooring of different ages can be seen: the lowest is from
1953
+ a Roman villa of the age of Augustus; the middle one has a typical cocciopesto
1954
+ pavemente; the upper one, bearing blackening from the Attila's fire, has geometrical
1955
+ decorations.\\n\\nExternally, behind the 9th century campanile and the apse,
1956
+ is the Cemetery of the Fallen, where ten unnamed soldiers of World War I are
1957
+ buried. Saint Hermangoras is also buried there.\\n\\nThe ancient buildings
1958
+ of Aquileia served as stone quarries for centuries, and no edifices of the
1959
+ Roman period remain above ground. Excavations have revealed one street and
1960
+ the north-west angle of the town walls, while the National Archaeological
1961
+ Museum (one of the most important museums of Ancient Rome in the world) contains
1962
+ over 2,000 inscriptions, statues and other antiquities, as well as glasses
1963
+ of local production and a numismatics collection.\\n\\nThe site of Aquileia,
1964
+ believed to be the largest Roman city yet to be excavated, is inscribed on
1965
+ the UNESCO World Heritage List.\\n\\nIn the Monastero fraction is a 5th century
1966
+ Christian basilica, later a Benedictine monastery, which today houses the
1967
+ Paleo-Christian Museum.\",\"longitude\":\"13.3675\",\"latitude\":\"45.768333\",\"title\":\"Archaeological
1968
+ Area and the Patriarchal Basilica of Aquileia\"}]}"
1969
+ http_version: '1.1'
1970
+ recorded_at: Wed, 23 May 2012 15:33:53 GMT
1971
+ recorded_with: VCR 2.1.1