<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://wiki.cityknowledge.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin</id>
	<title>Venipedia - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.cityknowledge.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin"/>
	<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php/Special:Contributions/Admin"/>
	<updated>2026-05-07T01:40:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=MediaWiki:Common.js&amp;diff=76947</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=MediaWiki:Common.js&amp;diff=76947"/>
		<updated>2025-09-19T10:20:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
&lt;br /&gt;
// Load the Google Analytics 4 gtag.js script&lt;br /&gt;
(function() {&lt;br /&gt;
    var gtagScript = document.createElement(&#039;script&#039;);&lt;br /&gt;
    gtagScript.async = true;&lt;br /&gt;
    gtagScript.src = &#039;https://www.googletagmanager.com/gtag/js?id=G-L1CF4J5RJH&#039;;&lt;br /&gt;
    document.head.appendChild(gtagScript);&lt;br /&gt;
&lt;br /&gt;
    // Initialize GA once the script has loaded&lt;br /&gt;
    gtagScript.onload = function() {&lt;br /&gt;
        window.dataLayer = window.dataLayer || [];&lt;br /&gt;
        function gtag(){ dataLayer.push(arguments); }&lt;br /&gt;
        window.gtag = gtag;&lt;br /&gt;
&lt;br /&gt;
        gtag(&#039;js&#039;, new Date());&lt;br /&gt;
        gtag(&#039;config&#039;, &#039;G-L1CF4J5RJH&#039;);&lt;br /&gt;
    };&lt;br /&gt;
})();&lt;br /&gt;
&lt;br /&gt;
console.log(&amp;quot;loaded analytics&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
// If the page name (wgPageName) contains &amp;quot;MediaWiki&amp;quot; and we&#039;re in normal view&lt;br /&gt;
// mode, add &amp;quot;mainpage&amp;quot; class to the body element&lt;br /&gt;
if ( /^MediaWiki(\/.+)?$/.test( wgPageName ) &amp;amp;&amp;amp; wgAction == &#039;view&#039; ) {&lt;br /&gt;
	addOnloadHook(function() {&lt;br /&gt;
		document.body.className += &#039; mainpage&#039;;&lt;br /&gt;
	});&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// switches for scripts&lt;br /&gt;
// TODO: migrate to JSConfig&lt;br /&gt;
// var load_extratabs = true;&lt;br /&gt;
var load_edittools = true;&lt;br /&gt;
&lt;br /&gt;
// extra drop down menu on editing for adding special characters&lt;br /&gt;
importScript( &#039;MediaWiki:Edittools.js&#039; );&lt;br /&gt;
&lt;br /&gt;
// Editpage scripts&lt;br /&gt;
if( wgAction == &#039;edit&#039; || wgAction == &#039;submit&#039; ) {&lt;br /&gt;
	importScript( &#039;MediaWiki:Editpage.js&#039; );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* End of extra pages */&lt;br /&gt;
&lt;br /&gt;
/* Test if an element has a certain class **************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 * Description: Uses regular expressions and caching for better performance.&lt;br /&gt;
 * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]]&lt;br /&gt;
 */&lt;br /&gt;
var hasClass = (function() {&lt;br /&gt;
	var reCache = {};&lt;br /&gt;
	return function( element, className ) {&lt;br /&gt;
		return ( reCache[className] ? reCache[className] : ( reCache[className] = new RegExp( &amp;quot;(?:\\s|^)&amp;quot; + className + &amp;quot;(?:\\s|$)&amp;quot; ) ) ).test( element.className );&lt;br /&gt;
	};&lt;br /&gt;
})();&lt;br /&gt;
&lt;br /&gt;
/** Collapsible tables *********************************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 *  Description: Allows tables to be collapsed, showing only the header. See&lt;br /&gt;
 *               [[Wikipedia:NavFrame]].&lt;br /&gt;
 *  Maintainers: [[User:R. Koot]]&lt;br /&gt;
 */&lt;br /&gt;
var autoCollapse = 2;&lt;br /&gt;
var collapseCaption = &#039;hide&#039;;&lt;br /&gt;
var expandCaption = &#039;show&#039;;&lt;br /&gt;
&lt;br /&gt;
function collapseTable( tableIndex ) {&lt;br /&gt;
	var Button = document.getElementById( &#039;collapseButton&#039; + tableIndex );&lt;br /&gt;
	var Table = document.getElementById( &#039;collapsibleTable&#039; + tableIndex );&lt;br /&gt;
&lt;br /&gt;
	if ( !Table || !Button ) {&lt;br /&gt;
		return false;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	var Rows = Table.rows;&lt;br /&gt;
&lt;br /&gt;
	if ( Button.firstChild.data == collapseCaption ) {&lt;br /&gt;
		for ( var i = 1; i &amp;lt; Rows.length; i++ ) {&lt;br /&gt;
			Rows[i].style.display = &#039;none&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		Button.firstChild.data = expandCaption;&lt;br /&gt;
	} else {&lt;br /&gt;
		for ( var i = 1; i &amp;lt; Rows.length; i++ ) {&lt;br /&gt;
			Rows[i].style.display = Rows[0].style.display;&lt;br /&gt;
		}&lt;br /&gt;
		Button.firstChild.data = collapseCaption;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function createCollapseButtons(){&lt;br /&gt;
	var tableIndex = 0;&lt;br /&gt;
	var NavigationBoxes = new Object();&lt;br /&gt;
	var Tables = document.getElementsByTagName( &#039;table&#039; );&lt;br /&gt;
&lt;br /&gt;
	for ( var i = 0; i &amp;lt; Tables.length; i++ ) {&lt;br /&gt;
		if ( hasClass( Tables[i], &#039;collapsible&#039; ) ) {&lt;br /&gt;
			/* only add button and increment count if there is a header row to work with */&lt;br /&gt;
			var HeaderRow = Tables[i].getElementsByTagName( &#039;tr&#039; )[0];&lt;br /&gt;
			if( !HeaderRow ) {&lt;br /&gt;
				continue;&lt;br /&gt;
			}&lt;br /&gt;
			var Header = HeaderRow.getElementsByTagName( &#039;th&#039; )[0];&lt;br /&gt;
			if( !Header ) {&lt;br /&gt;
				continue;&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
			NavigationBoxes[tableIndex] = Tables[i];&lt;br /&gt;
			Tables[i].setAttribute( &#039;id&#039;, &#039;collapsibleTable&#039; + tableIndex );&lt;br /&gt;
&lt;br /&gt;
			var Button     = document.createElement( &#039;span&#039; );&lt;br /&gt;
			var ButtonLink = document.createElement( &#039;a&#039; );&lt;br /&gt;
			var ButtonText = document.createTextNode( collapseCaption );&lt;br /&gt;
&lt;br /&gt;
			Button.style.styleFloat = &#039;right&#039;;&lt;br /&gt;
			Button.style.cssFloat = &#039;right&#039;;&lt;br /&gt;
			Button.style.fontWeight = &#039;normal&#039;;&lt;br /&gt;
			Button.style.textAlign = &#039;right&#039;;&lt;br /&gt;
			Button.style.width = &#039;6em&#039;;&lt;br /&gt;
&lt;br /&gt;
			ButtonLink.style.color = Header.style.color;&lt;br /&gt;
			ButtonLink.setAttribute( &#039;id&#039;, &#039;collapseButton&#039; + tableIndex );&lt;br /&gt;
			ButtonLink.setAttribute( &#039;href&#039;, &amp;quot;javascript:collapseTable(&amp;quot; + tableIndex + &amp;quot;);&amp;quot; );&lt;br /&gt;
			ButtonLink.appendChild( ButtonText );&lt;br /&gt;
&lt;br /&gt;
			Button.appendChild( document.createTextNode( &#039;[&#039; ) );&lt;br /&gt;
			Button.appendChild( ButtonLink );&lt;br /&gt;
			Button.appendChild( document.createTextNode( &#039;]&#039; ) );&lt;br /&gt;
&lt;br /&gt;
			Header.insertBefore( Button, Header.childNodes[0] );&lt;br /&gt;
			tableIndex++;&lt;br /&gt;
		}&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
	for ( var i = 0;  i &amp;lt; tableIndex; i++ ) {&lt;br /&gt;
		if ( hasClass( NavigationBoxes[i], &#039;collapsed&#039; ) || ( tableIndex &amp;gt;= autoCollapse &amp;amp;&amp;amp; hasClass( NavigationBoxes[i], &#039;autocollapse&#039; ) ) ) {&lt;br /&gt;
			collapseTable( i );&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
addOnloadHook( createCollapseButtons );&lt;br /&gt;
&lt;br /&gt;
/** Dynamic Navigation Bars (experimental) *************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 *  Description: See [[Wikipedia:NavFrame]].&lt;br /&gt;
 *  Maintainers: UNMAINTAINED&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
// set up the words in your language&lt;br /&gt;
var NavigationBarHide = &#039;[&#039; + collapseCaption + &#039;]&#039;;&lt;br /&gt;
var NavigationBarShow = &#039;[&#039; + expandCaption + &#039;]&#039;;&lt;br /&gt;
&lt;br /&gt;
// shows and hides content and picture (if available) of navigation bars&lt;br /&gt;
// Parameters:&lt;br /&gt;
//     indexNavigationBar: the index of navigation bar to be toggled&lt;br /&gt;
function toggleNavigationBar( indexNavigationBar ) {&lt;br /&gt;
	var NavToggle = document.getElementById( &#039;NavToggle&#039; + indexNavigationBar );&lt;br /&gt;
	var NavFrame = document.getElementById( &#039;NavFrame&#039; + indexNavigationBar );&lt;br /&gt;
&lt;br /&gt;
	if( !NavFrame || !NavToggle ) {&lt;br /&gt;
		return false;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	// if shown now&lt;br /&gt;
	if( NavToggle.firstChild.data == NavigationBarHide ) {&lt;br /&gt;
		for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
			if ( hasClass( NavChild, &#039;NavPic&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;none&#039;;&lt;br /&gt;
			}&lt;br /&gt;
			if ( hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;none&#039;;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
		NavToggle.firstChild.data = NavigationBarShow;&lt;br /&gt;
&lt;br /&gt;
	// if hidden now&lt;br /&gt;
	} else if( NavToggle.firstChild.data == NavigationBarShow ) {&lt;br /&gt;
		for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
			if( hasClass( NavChild, &#039;NavPic&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;block&#039;;&lt;br /&gt;
			}&lt;br /&gt;
			if( hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;block&#039;;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
		NavToggle.firstChild.data = NavigationBarHide;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// adds show/hide-button to navigation bars&lt;br /&gt;
function createNavigationBarToggleButton() {&lt;br /&gt;
	var indexNavigationBar = 0;&lt;br /&gt;
	// iterate over all &amp;lt; div &amp;gt;-elements&lt;br /&gt;
	var divs = document.getElementsByTagName( &#039;div&#039; );&lt;br /&gt;
	for( var i = 0; NavFrame = divs[i]; i++ ) {&lt;br /&gt;
		// if found a navigation bar&lt;br /&gt;
		if( hasClass( NavFrame, &#039;NavFrame&#039; ) ) {&lt;br /&gt;
			indexNavigationBar++;&lt;br /&gt;
			var NavToggle = document.createElement( &#039;a&#039; );&lt;br /&gt;
			NavToggle.className = &#039;NavToggle&#039;;&lt;br /&gt;
			NavToggle.setAttribute( &#039;id&#039;, &#039;NavToggle&#039; + indexNavigationBar );&lt;br /&gt;
			NavToggle.setAttribute( &#039;href&#039;, &#039;javascript:toggleNavigationBar(&#039; + indexNavigationBar + &#039;);&#039; );&lt;br /&gt;
&lt;br /&gt;
			var NavToggleText = document.createTextNode( NavigationBarHide );&lt;br /&gt;
			for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
				if ( hasClass( NavChild, &#039;NavPic&#039; ) || hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
					if( NavChild.style.display == &#039;none&#039; ) {&lt;br /&gt;
						NavToggleText = document.createTextNode( NavigationBarShow );&lt;br /&gt;
						break;&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
			NavToggle.appendChild(NavToggleText);&lt;br /&gt;
			// Find the NavHead and attach the toggle link (Must be this complicated because Moz&#039;s firstChild handling is borked)&lt;br /&gt;
			for( var j = 0; j &amp;lt; NavFrame.childNodes.length; j++) {&lt;br /&gt;
				if( hasClass( NavFrame.childNodes[j], &#039;NavHead&#039; ) ) {&lt;br /&gt;
					NavFrame.childNodes[j].appendChild( NavToggle );&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
			NavFrame.setAttribute( &#039;id&#039;, &#039;NavFrame&#039; + indexNavigationBar );&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
addOnloadHook( createNavigationBarToggleButton );&lt;br /&gt;
&lt;br /&gt;
if (mwCustomEditButtons) {&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/8/88/Btn_toolbar_enum.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;# list&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;#&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;\n&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;list text&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/1/11/Btn_toolbar_liste.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;* item&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;*&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;\n&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;item text&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/b/b4/Button_category03.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;Category&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;[[Category:&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: wgPageName + &amp;quot;]]&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;insert category&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/3/3b/Button_template_alt.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;{{Template}}&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;{{&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;}}&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;sofixit&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/8/80/Button_upper_letter.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Superscript&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;sup&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/sup&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Superscript text&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
 &lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/7/70/Button_lower_letter.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Subscript&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;sub&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/sub&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Subscript text&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Insert a reference&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;ref&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/ref&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Insert footnote text here&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
     &amp;quot;imageFile&amp;quot;:  &amp;quot;http://upload.wikimedia.org/wikipedia/commons/a/a0/Button_references_alt.png&amp;quot;,&lt;br /&gt;
     &amp;quot;speedTip&amp;quot;: &amp;quot;Reference footer&amp;quot;,&lt;br /&gt;
     &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;references/&amp;gt;&amp;quot;,&lt;br /&gt;
     &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
     &amp;quot;sampleText&amp;quot;: &amp;quot;&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
&lt;br /&gt;
mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Insert a table&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &#039;{| class=&amp;quot;wikitable&amp;quot;\n|&#039;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;\n|}&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=MediaWiki:Common.js&amp;diff=76946</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=MediaWiki:Common.js&amp;diff=76946"/>
		<updated>2025-09-19T10:19:38Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
&lt;br /&gt;
// Load the Google Analytics 4 gtag.js script&lt;br /&gt;
(function() {&lt;br /&gt;
    var gtagScript = document.createElement(&#039;script&#039;);&lt;br /&gt;
    gtagScript.async = true;&lt;br /&gt;
    gtagScript.src = &#039;https://www.googletagmanager.com/gtag/js?id=G-L1CF4J5RJH&#039;;&lt;br /&gt;
    document.head.appendChild(gtagScript);&lt;br /&gt;
&lt;br /&gt;
    // Initialize GA once the script has loaded&lt;br /&gt;
    gtagScript.onload = function() {&lt;br /&gt;
        window.dataLayer = window.dataLayer || [];&lt;br /&gt;
        function gtag(){ dataLayer.push(arguments); }&lt;br /&gt;
        window.gtag = gtag;&lt;br /&gt;
&lt;br /&gt;
        gtag(&#039;js&#039;, new Date());&lt;br /&gt;
        gtag(&#039;config&#039;, &#039;G-L1CF4J5RJH&#039;);&lt;br /&gt;
    };&lt;br /&gt;
})();&lt;br /&gt;
&lt;br /&gt;
// If the page name (wgPageName) contains &amp;quot;MediaWiki&amp;quot; and we&#039;re in normal view&lt;br /&gt;
// mode, add &amp;quot;mainpage&amp;quot; class to the body element&lt;br /&gt;
if ( /^MediaWiki(\/.+)?$/.test( wgPageName ) &amp;amp;&amp;amp; wgAction == &#039;view&#039; ) {&lt;br /&gt;
	addOnloadHook(function() {&lt;br /&gt;
		document.body.className += &#039; mainpage&#039;;&lt;br /&gt;
	});&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// switches for scripts&lt;br /&gt;
// TODO: migrate to JSConfig&lt;br /&gt;
// var load_extratabs = true;&lt;br /&gt;
var load_edittools = true;&lt;br /&gt;
&lt;br /&gt;
// extra drop down menu on editing for adding special characters&lt;br /&gt;
importScript( &#039;MediaWiki:Edittools.js&#039; );&lt;br /&gt;
&lt;br /&gt;
// Editpage scripts&lt;br /&gt;
if( wgAction == &#039;edit&#039; || wgAction == &#039;submit&#039; ) {&lt;br /&gt;
	importScript( &#039;MediaWiki:Editpage.js&#039; );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* End of extra pages */&lt;br /&gt;
&lt;br /&gt;
/* Test if an element has a certain class **************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 * Description: Uses regular expressions and caching for better performance.&lt;br /&gt;
 * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]]&lt;br /&gt;
 */&lt;br /&gt;
var hasClass = (function() {&lt;br /&gt;
	var reCache = {};&lt;br /&gt;
	return function( element, className ) {&lt;br /&gt;
		return ( reCache[className] ? reCache[className] : ( reCache[className] = new RegExp( &amp;quot;(?:\\s|^)&amp;quot; + className + &amp;quot;(?:\\s|$)&amp;quot; ) ) ).test( element.className );&lt;br /&gt;
	};&lt;br /&gt;
})();&lt;br /&gt;
&lt;br /&gt;
/** Collapsible tables *********************************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 *  Description: Allows tables to be collapsed, showing only the header. See&lt;br /&gt;
 *               [[Wikipedia:NavFrame]].&lt;br /&gt;
 *  Maintainers: [[User:R. Koot]]&lt;br /&gt;
 */&lt;br /&gt;
var autoCollapse = 2;&lt;br /&gt;
var collapseCaption = &#039;hide&#039;;&lt;br /&gt;
var expandCaption = &#039;show&#039;;&lt;br /&gt;
&lt;br /&gt;
function collapseTable( tableIndex ) {&lt;br /&gt;
	var Button = document.getElementById( &#039;collapseButton&#039; + tableIndex );&lt;br /&gt;
	var Table = document.getElementById( &#039;collapsibleTable&#039; + tableIndex );&lt;br /&gt;
&lt;br /&gt;
	if ( !Table || !Button ) {&lt;br /&gt;
		return false;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	var Rows = Table.rows;&lt;br /&gt;
&lt;br /&gt;
	if ( Button.firstChild.data == collapseCaption ) {&lt;br /&gt;
		for ( var i = 1; i &amp;lt; Rows.length; i++ ) {&lt;br /&gt;
			Rows[i].style.display = &#039;none&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		Button.firstChild.data = expandCaption;&lt;br /&gt;
	} else {&lt;br /&gt;
		for ( var i = 1; i &amp;lt; Rows.length; i++ ) {&lt;br /&gt;
			Rows[i].style.display = Rows[0].style.display;&lt;br /&gt;
		}&lt;br /&gt;
		Button.firstChild.data = collapseCaption;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function createCollapseButtons(){&lt;br /&gt;
	var tableIndex = 0;&lt;br /&gt;
	var NavigationBoxes = new Object();&lt;br /&gt;
	var Tables = document.getElementsByTagName( &#039;table&#039; );&lt;br /&gt;
&lt;br /&gt;
	for ( var i = 0; i &amp;lt; Tables.length; i++ ) {&lt;br /&gt;
		if ( hasClass( Tables[i], &#039;collapsible&#039; ) ) {&lt;br /&gt;
			/* only add button and increment count if there is a header row to work with */&lt;br /&gt;
			var HeaderRow = Tables[i].getElementsByTagName( &#039;tr&#039; )[0];&lt;br /&gt;
			if( !HeaderRow ) {&lt;br /&gt;
				continue;&lt;br /&gt;
			}&lt;br /&gt;
			var Header = HeaderRow.getElementsByTagName( &#039;th&#039; )[0];&lt;br /&gt;
			if( !Header ) {&lt;br /&gt;
				continue;&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
			NavigationBoxes[tableIndex] = Tables[i];&lt;br /&gt;
			Tables[i].setAttribute( &#039;id&#039;, &#039;collapsibleTable&#039; + tableIndex );&lt;br /&gt;
&lt;br /&gt;
			var Button     = document.createElement( &#039;span&#039; );&lt;br /&gt;
			var ButtonLink = document.createElement( &#039;a&#039; );&lt;br /&gt;
			var ButtonText = document.createTextNode( collapseCaption );&lt;br /&gt;
&lt;br /&gt;
			Button.style.styleFloat = &#039;right&#039;;&lt;br /&gt;
			Button.style.cssFloat = &#039;right&#039;;&lt;br /&gt;
			Button.style.fontWeight = &#039;normal&#039;;&lt;br /&gt;
			Button.style.textAlign = &#039;right&#039;;&lt;br /&gt;
			Button.style.width = &#039;6em&#039;;&lt;br /&gt;
&lt;br /&gt;
			ButtonLink.style.color = Header.style.color;&lt;br /&gt;
			ButtonLink.setAttribute( &#039;id&#039;, &#039;collapseButton&#039; + tableIndex );&lt;br /&gt;
			ButtonLink.setAttribute( &#039;href&#039;, &amp;quot;javascript:collapseTable(&amp;quot; + tableIndex + &amp;quot;);&amp;quot; );&lt;br /&gt;
			ButtonLink.appendChild( ButtonText );&lt;br /&gt;
&lt;br /&gt;
			Button.appendChild( document.createTextNode( &#039;[&#039; ) );&lt;br /&gt;
			Button.appendChild( ButtonLink );&lt;br /&gt;
			Button.appendChild( document.createTextNode( &#039;]&#039; ) );&lt;br /&gt;
&lt;br /&gt;
			Header.insertBefore( Button, Header.childNodes[0] );&lt;br /&gt;
			tableIndex++;&lt;br /&gt;
		}&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
	for ( var i = 0;  i &amp;lt; tableIndex; i++ ) {&lt;br /&gt;
		if ( hasClass( NavigationBoxes[i], &#039;collapsed&#039; ) || ( tableIndex &amp;gt;= autoCollapse &amp;amp;&amp;amp; hasClass( NavigationBoxes[i], &#039;autocollapse&#039; ) ) ) {&lt;br /&gt;
			collapseTable( i );&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
addOnloadHook( createCollapseButtons );&lt;br /&gt;
&lt;br /&gt;
/** Dynamic Navigation Bars (experimental) *************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 *  Description: See [[Wikipedia:NavFrame]].&lt;br /&gt;
 *  Maintainers: UNMAINTAINED&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
// set up the words in your language&lt;br /&gt;
var NavigationBarHide = &#039;[&#039; + collapseCaption + &#039;]&#039;;&lt;br /&gt;
var NavigationBarShow = &#039;[&#039; + expandCaption + &#039;]&#039;;&lt;br /&gt;
&lt;br /&gt;
// shows and hides content and picture (if available) of navigation bars&lt;br /&gt;
// Parameters:&lt;br /&gt;
//     indexNavigationBar: the index of navigation bar to be toggled&lt;br /&gt;
function toggleNavigationBar( indexNavigationBar ) {&lt;br /&gt;
	var NavToggle = document.getElementById( &#039;NavToggle&#039; + indexNavigationBar );&lt;br /&gt;
	var NavFrame = document.getElementById( &#039;NavFrame&#039; + indexNavigationBar );&lt;br /&gt;
&lt;br /&gt;
	if( !NavFrame || !NavToggle ) {&lt;br /&gt;
		return false;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	// if shown now&lt;br /&gt;
	if( NavToggle.firstChild.data == NavigationBarHide ) {&lt;br /&gt;
		for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
			if ( hasClass( NavChild, &#039;NavPic&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;none&#039;;&lt;br /&gt;
			}&lt;br /&gt;
			if ( hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;none&#039;;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
		NavToggle.firstChild.data = NavigationBarShow;&lt;br /&gt;
&lt;br /&gt;
	// if hidden now&lt;br /&gt;
	} else if( NavToggle.firstChild.data == NavigationBarShow ) {&lt;br /&gt;
		for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
			if( hasClass( NavChild, &#039;NavPic&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;block&#039;;&lt;br /&gt;
			}&lt;br /&gt;
			if( hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;block&#039;;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
		NavToggle.firstChild.data = NavigationBarHide;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// adds show/hide-button to navigation bars&lt;br /&gt;
function createNavigationBarToggleButton() {&lt;br /&gt;
	var indexNavigationBar = 0;&lt;br /&gt;
	// iterate over all &amp;lt; div &amp;gt;-elements&lt;br /&gt;
	var divs = document.getElementsByTagName( &#039;div&#039; );&lt;br /&gt;
	for( var i = 0; NavFrame = divs[i]; i++ ) {&lt;br /&gt;
		// if found a navigation bar&lt;br /&gt;
		if( hasClass( NavFrame, &#039;NavFrame&#039; ) ) {&lt;br /&gt;
			indexNavigationBar++;&lt;br /&gt;
			var NavToggle = document.createElement( &#039;a&#039; );&lt;br /&gt;
			NavToggle.className = &#039;NavToggle&#039;;&lt;br /&gt;
			NavToggle.setAttribute( &#039;id&#039;, &#039;NavToggle&#039; + indexNavigationBar );&lt;br /&gt;
			NavToggle.setAttribute( &#039;href&#039;, &#039;javascript:toggleNavigationBar(&#039; + indexNavigationBar + &#039;);&#039; );&lt;br /&gt;
&lt;br /&gt;
			var NavToggleText = document.createTextNode( NavigationBarHide );&lt;br /&gt;
			for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
				if ( hasClass( NavChild, &#039;NavPic&#039; ) || hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
					if( NavChild.style.display == &#039;none&#039; ) {&lt;br /&gt;
						NavToggleText = document.createTextNode( NavigationBarShow );&lt;br /&gt;
						break;&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
			NavToggle.appendChild(NavToggleText);&lt;br /&gt;
			// Find the NavHead and attach the toggle link (Must be this complicated because Moz&#039;s firstChild handling is borked)&lt;br /&gt;
			for( var j = 0; j &amp;lt; NavFrame.childNodes.length; j++) {&lt;br /&gt;
				if( hasClass( NavFrame.childNodes[j], &#039;NavHead&#039; ) ) {&lt;br /&gt;
					NavFrame.childNodes[j].appendChild( NavToggle );&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
			NavFrame.setAttribute( &#039;id&#039;, &#039;NavFrame&#039; + indexNavigationBar );&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
addOnloadHook( createNavigationBarToggleButton );&lt;br /&gt;
&lt;br /&gt;
if (mwCustomEditButtons) {&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/8/88/Btn_toolbar_enum.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;# list&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;#&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;\n&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;list text&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/1/11/Btn_toolbar_liste.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;* item&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;*&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;\n&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;item text&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/b/b4/Button_category03.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;Category&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;[[Category:&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: wgPageName + &amp;quot;]]&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;insert category&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/3/3b/Button_template_alt.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;{{Template}}&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;{{&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;}}&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;sofixit&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/8/80/Button_upper_letter.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Superscript&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;sup&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/sup&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Superscript text&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
 &lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/7/70/Button_lower_letter.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Subscript&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;sub&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/sub&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Subscript text&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Insert a reference&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;ref&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/ref&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Insert footnote text here&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
     &amp;quot;imageFile&amp;quot;:  &amp;quot;http://upload.wikimedia.org/wikipedia/commons/a/a0/Button_references_alt.png&amp;quot;,&lt;br /&gt;
     &amp;quot;speedTip&amp;quot;: &amp;quot;Reference footer&amp;quot;,&lt;br /&gt;
     &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;references/&amp;gt;&amp;quot;,&lt;br /&gt;
     &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
     &amp;quot;sampleText&amp;quot;: &amp;quot;&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
&lt;br /&gt;
mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Insert a table&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &#039;{| class=&amp;quot;wikitable&amp;quot;\n|&#039;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;\n|}&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=MediaWiki:Common.js&amp;diff=76945</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=MediaWiki:Common.js&amp;diff=76945"/>
		<updated>2025-09-19T09:50:45Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
&lt;br /&gt;
// If the page name (wgPageName) contains &amp;quot;MediaWiki&amp;quot; and we&#039;re in normal view&lt;br /&gt;
// mode, add &amp;quot;mainpage&amp;quot; class to the body element&lt;br /&gt;
if ( /^MediaWiki(\/.+)?$/.test( wgPageName ) &amp;amp;&amp;amp; wgAction == &#039;view&#039; ) {&lt;br /&gt;
	addOnloadHook(function() {&lt;br /&gt;
		document.body.className += &#039; mainpage&#039;;&lt;br /&gt;
	});&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Load the Google Analytics 4 gtag.js script&lt;br /&gt;
(function() {&lt;br /&gt;
    var gtagScript = document.createElement(&#039;script&#039;);&lt;br /&gt;
    gtagScript.async = true;&lt;br /&gt;
    gtagScript.src = &#039;https://www.googletagmanager.com/gtag/js?id=G-L1CF4J5RJH&#039;;&lt;br /&gt;
    document.head.appendChild(gtagScript);&lt;br /&gt;
&lt;br /&gt;
    // Initialize GA once the script has loaded&lt;br /&gt;
    gtagScript.onload = function() {&lt;br /&gt;
        window.dataLayer = window.dataLayer || [];&lt;br /&gt;
        function gtag(){ dataLayer.push(arguments); }&lt;br /&gt;
        window.gtag = gtag;&lt;br /&gt;
&lt;br /&gt;
        gtag(&#039;js&#039;, new Date());&lt;br /&gt;
        gtag(&#039;config&#039;, &#039;G-L1CF4J5RJH&#039;);&lt;br /&gt;
    };&lt;br /&gt;
})();&lt;br /&gt;
&lt;br /&gt;
// switches for scripts&lt;br /&gt;
// TODO: migrate to JSConfig&lt;br /&gt;
// var load_extratabs = true;&lt;br /&gt;
var load_edittools = true;&lt;br /&gt;
&lt;br /&gt;
// extra drop down menu on editing for adding special characters&lt;br /&gt;
importScript( &#039;MediaWiki:Edittools.js&#039; );&lt;br /&gt;
&lt;br /&gt;
// Editpage scripts&lt;br /&gt;
if( wgAction == &#039;edit&#039; || wgAction == &#039;submit&#039; ) {&lt;br /&gt;
	importScript( &#039;MediaWiki:Editpage.js&#039; );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* End of extra pages */&lt;br /&gt;
&lt;br /&gt;
/* Test if an element has a certain class **************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 * Description: Uses regular expressions and caching for better performance.&lt;br /&gt;
 * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]]&lt;br /&gt;
 */&lt;br /&gt;
var hasClass = (function() {&lt;br /&gt;
	var reCache = {};&lt;br /&gt;
	return function( element, className ) {&lt;br /&gt;
		return ( reCache[className] ? reCache[className] : ( reCache[className] = new RegExp( &amp;quot;(?:\\s|^)&amp;quot; + className + &amp;quot;(?:\\s|$)&amp;quot; ) ) ).test( element.className );&lt;br /&gt;
	};&lt;br /&gt;
})();&lt;br /&gt;
&lt;br /&gt;
/** Collapsible tables *********************************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 *  Description: Allows tables to be collapsed, showing only the header. See&lt;br /&gt;
 *               [[Wikipedia:NavFrame]].&lt;br /&gt;
 *  Maintainers: [[User:R. Koot]]&lt;br /&gt;
 */&lt;br /&gt;
var autoCollapse = 2;&lt;br /&gt;
var collapseCaption = &#039;hide&#039;;&lt;br /&gt;
var expandCaption = &#039;show&#039;;&lt;br /&gt;
&lt;br /&gt;
function collapseTable( tableIndex ) {&lt;br /&gt;
	var Button = document.getElementById( &#039;collapseButton&#039; + tableIndex );&lt;br /&gt;
	var Table = document.getElementById( &#039;collapsibleTable&#039; + tableIndex );&lt;br /&gt;
&lt;br /&gt;
	if ( !Table || !Button ) {&lt;br /&gt;
		return false;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	var Rows = Table.rows;&lt;br /&gt;
&lt;br /&gt;
	if ( Button.firstChild.data == collapseCaption ) {&lt;br /&gt;
		for ( var i = 1; i &amp;lt; Rows.length; i++ ) {&lt;br /&gt;
			Rows[i].style.display = &#039;none&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		Button.firstChild.data = expandCaption;&lt;br /&gt;
	} else {&lt;br /&gt;
		for ( var i = 1; i &amp;lt; Rows.length; i++ ) {&lt;br /&gt;
			Rows[i].style.display = Rows[0].style.display;&lt;br /&gt;
		}&lt;br /&gt;
		Button.firstChild.data = collapseCaption;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function createCollapseButtons(){&lt;br /&gt;
	var tableIndex = 0;&lt;br /&gt;
	var NavigationBoxes = new Object();&lt;br /&gt;
	var Tables = document.getElementsByTagName( &#039;table&#039; );&lt;br /&gt;
&lt;br /&gt;
	for ( var i = 0; i &amp;lt; Tables.length; i++ ) {&lt;br /&gt;
		if ( hasClass( Tables[i], &#039;collapsible&#039; ) ) {&lt;br /&gt;
			/* only add button and increment count if there is a header row to work with */&lt;br /&gt;
			var HeaderRow = Tables[i].getElementsByTagName( &#039;tr&#039; )[0];&lt;br /&gt;
			if( !HeaderRow ) {&lt;br /&gt;
				continue;&lt;br /&gt;
			}&lt;br /&gt;
			var Header = HeaderRow.getElementsByTagName( &#039;th&#039; )[0];&lt;br /&gt;
			if( !Header ) {&lt;br /&gt;
				continue;&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
			NavigationBoxes[tableIndex] = Tables[i];&lt;br /&gt;
			Tables[i].setAttribute( &#039;id&#039;, &#039;collapsibleTable&#039; + tableIndex );&lt;br /&gt;
&lt;br /&gt;
			var Button     = document.createElement( &#039;span&#039; );&lt;br /&gt;
			var ButtonLink = document.createElement( &#039;a&#039; );&lt;br /&gt;
			var ButtonText = document.createTextNode( collapseCaption );&lt;br /&gt;
&lt;br /&gt;
			Button.style.styleFloat = &#039;right&#039;;&lt;br /&gt;
			Button.style.cssFloat = &#039;right&#039;;&lt;br /&gt;
			Button.style.fontWeight = &#039;normal&#039;;&lt;br /&gt;
			Button.style.textAlign = &#039;right&#039;;&lt;br /&gt;
			Button.style.width = &#039;6em&#039;;&lt;br /&gt;
&lt;br /&gt;
			ButtonLink.style.color = Header.style.color;&lt;br /&gt;
			ButtonLink.setAttribute( &#039;id&#039;, &#039;collapseButton&#039; + tableIndex );&lt;br /&gt;
			ButtonLink.setAttribute( &#039;href&#039;, &amp;quot;javascript:collapseTable(&amp;quot; + tableIndex + &amp;quot;);&amp;quot; );&lt;br /&gt;
			ButtonLink.appendChild( ButtonText );&lt;br /&gt;
&lt;br /&gt;
			Button.appendChild( document.createTextNode( &#039;[&#039; ) );&lt;br /&gt;
			Button.appendChild( ButtonLink );&lt;br /&gt;
			Button.appendChild( document.createTextNode( &#039;]&#039; ) );&lt;br /&gt;
&lt;br /&gt;
			Header.insertBefore( Button, Header.childNodes[0] );&lt;br /&gt;
			tableIndex++;&lt;br /&gt;
		}&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
	for ( var i = 0;  i &amp;lt; tableIndex; i++ ) {&lt;br /&gt;
		if ( hasClass( NavigationBoxes[i], &#039;collapsed&#039; ) || ( tableIndex &amp;gt;= autoCollapse &amp;amp;&amp;amp; hasClass( NavigationBoxes[i], &#039;autocollapse&#039; ) ) ) {&lt;br /&gt;
			collapseTable( i );&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
addOnloadHook( createCollapseButtons );&lt;br /&gt;
&lt;br /&gt;
/** Dynamic Navigation Bars (experimental) *************************************&lt;br /&gt;
 *&lt;br /&gt;
 * From English Wikipedia, 2008-09-15&lt;br /&gt;
 *&lt;br /&gt;
 *  Description: See [[Wikipedia:NavFrame]].&lt;br /&gt;
 *  Maintainers: UNMAINTAINED&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
// set up the words in your language&lt;br /&gt;
var NavigationBarHide = &#039;[&#039; + collapseCaption + &#039;]&#039;;&lt;br /&gt;
var NavigationBarShow = &#039;[&#039; + expandCaption + &#039;]&#039;;&lt;br /&gt;
&lt;br /&gt;
// shows and hides content and picture (if available) of navigation bars&lt;br /&gt;
// Parameters:&lt;br /&gt;
//     indexNavigationBar: the index of navigation bar to be toggled&lt;br /&gt;
function toggleNavigationBar( indexNavigationBar ) {&lt;br /&gt;
	var NavToggle = document.getElementById( &#039;NavToggle&#039; + indexNavigationBar );&lt;br /&gt;
	var NavFrame = document.getElementById( &#039;NavFrame&#039; + indexNavigationBar );&lt;br /&gt;
&lt;br /&gt;
	if( !NavFrame || !NavToggle ) {&lt;br /&gt;
		return false;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	// if shown now&lt;br /&gt;
	if( NavToggle.firstChild.data == NavigationBarHide ) {&lt;br /&gt;
		for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
			if ( hasClass( NavChild, &#039;NavPic&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;none&#039;;&lt;br /&gt;
			}&lt;br /&gt;
			if ( hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;none&#039;;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
		NavToggle.firstChild.data = NavigationBarShow;&lt;br /&gt;
&lt;br /&gt;
	// if hidden now&lt;br /&gt;
	} else if( NavToggle.firstChild.data == NavigationBarShow ) {&lt;br /&gt;
		for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
			if( hasClass( NavChild, &#039;NavPic&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;block&#039;;&lt;br /&gt;
			}&lt;br /&gt;
			if( hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
				NavChild.style.display = &#039;block&#039;;&lt;br /&gt;
			}&lt;br /&gt;
		}&lt;br /&gt;
		NavToggle.firstChild.data = NavigationBarHide;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// adds show/hide-button to navigation bars&lt;br /&gt;
function createNavigationBarToggleButton() {&lt;br /&gt;
	var indexNavigationBar = 0;&lt;br /&gt;
	// iterate over all &amp;lt; div &amp;gt;-elements&lt;br /&gt;
	var divs = document.getElementsByTagName( &#039;div&#039; );&lt;br /&gt;
	for( var i = 0; NavFrame = divs[i]; i++ ) {&lt;br /&gt;
		// if found a navigation bar&lt;br /&gt;
		if( hasClass( NavFrame, &#039;NavFrame&#039; ) ) {&lt;br /&gt;
			indexNavigationBar++;&lt;br /&gt;
			var NavToggle = document.createElement( &#039;a&#039; );&lt;br /&gt;
			NavToggle.className = &#039;NavToggle&#039;;&lt;br /&gt;
			NavToggle.setAttribute( &#039;id&#039;, &#039;NavToggle&#039; + indexNavigationBar );&lt;br /&gt;
			NavToggle.setAttribute( &#039;href&#039;, &#039;javascript:toggleNavigationBar(&#039; + indexNavigationBar + &#039;);&#039; );&lt;br /&gt;
&lt;br /&gt;
			var NavToggleText = document.createTextNode( NavigationBarHide );&lt;br /&gt;
			for( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {&lt;br /&gt;
				if ( hasClass( NavChild, &#039;NavPic&#039; ) || hasClass( NavChild, &#039;NavContent&#039; ) ) {&lt;br /&gt;
					if( NavChild.style.display == &#039;none&#039; ) {&lt;br /&gt;
						NavToggleText = document.createTextNode( NavigationBarShow );&lt;br /&gt;
						break;&lt;br /&gt;
					}&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
			NavToggle.appendChild(NavToggleText);&lt;br /&gt;
			// Find the NavHead and attach the toggle link (Must be this complicated because Moz&#039;s firstChild handling is borked)&lt;br /&gt;
			for( var j = 0; j &amp;lt; NavFrame.childNodes.length; j++) {&lt;br /&gt;
				if( hasClass( NavFrame.childNodes[j], &#039;NavHead&#039; ) ) {&lt;br /&gt;
					NavFrame.childNodes[j].appendChild( NavToggle );&lt;br /&gt;
				}&lt;br /&gt;
			}&lt;br /&gt;
			NavFrame.setAttribute( &#039;id&#039;, &#039;NavFrame&#039; + indexNavigationBar );&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
addOnloadHook( createNavigationBarToggleButton );&lt;br /&gt;
&lt;br /&gt;
if (mwCustomEditButtons) {&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/8/88/Btn_toolbar_enum.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;# list&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;#&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;\n&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;list text&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/1/11/Btn_toolbar_liste.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;* item&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;*&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;\n&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;item text&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/b/b4/Button_category03.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;Category&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;[[Category:&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: wgPageName + &amp;quot;]]&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;insert category&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
    &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/3/3b/Button_template_alt.png&amp;quot;,&lt;br /&gt;
    &amp;quot;speedTip&amp;quot;: &amp;quot;{{Template}}&amp;quot;,&lt;br /&gt;
    &amp;quot;tagOpen&amp;quot;: &amp;quot;{{&amp;quot;,&lt;br /&gt;
    &amp;quot;tagClose&amp;quot;: &amp;quot;}}&amp;quot;,&lt;br /&gt;
    &amp;quot;sampleText&amp;quot;: &amp;quot;sofixit&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/8/80/Button_upper_letter.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Superscript&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;sup&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/sup&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Superscript text&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
 &lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/7/70/Button_lower_letter.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Subscript&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;sub&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/sub&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Subscript text&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Insert a reference&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;ref&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;lt;/ref&amp;gt;&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;Insert footnote text here&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
   mwCustomEditButtons[mwCustomEditButtons.length] = {&lt;br /&gt;
     &amp;quot;imageFile&amp;quot;:  &amp;quot;http://upload.wikimedia.org/wikipedia/commons/a/a0/Button_references_alt.png&amp;quot;,&lt;br /&gt;
     &amp;quot;speedTip&amp;quot;: &amp;quot;Reference footer&amp;quot;,&lt;br /&gt;
     &amp;quot;tagOpen&amp;quot;: &amp;quot;&amp;lt;references/&amp;gt;&amp;quot;,&lt;br /&gt;
     &amp;quot;tagClose&amp;quot;: &amp;quot;&amp;quot;,&lt;br /&gt;
     &amp;quot;sampleText&amp;quot;: &amp;quot;&amp;quot;&lt;br /&gt;
   };&lt;br /&gt;
&lt;br /&gt;
mwCustomEditButtons.push({&lt;br /&gt;
        &amp;quot;imageFile&amp;quot;: &amp;quot;http://upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png&amp;quot;,&lt;br /&gt;
        &amp;quot;speedTip&amp;quot;: &amp;quot;Insert a table&amp;quot;,&lt;br /&gt;
        &amp;quot;tagOpen&amp;quot;: &#039;{| class=&amp;quot;wikitable&amp;quot;\n|&#039;,&lt;br /&gt;
        &amp;quot;tagClose&amp;quot;: &amp;quot;\n|}&amp;quot;,&lt;br /&gt;
        &amp;quot;sampleText&amp;quot;: &amp;quot;-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3&amp;quot;&lt;br /&gt;
    });&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Demographics&amp;diff=67619</id>
		<title>Demographics</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Demographics&amp;diff=67619"/>
		<updated>2015-01-27T04:37:48Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Scan0027.jpg|right|thumb|500px|Household Sizes]]In 2009, the number of registered residents in Venice was 60,208, with a additional 30,362 living in islands and estuary of Venice. These 90,570 people are designated as permanent residents of the &amp;quot;lagoon city,&amp;quot; a term referring to the people of the mainland of Venice, the Lido, Pellestrina, and the outlaying islands.&lt;br /&gt;
&lt;br /&gt;
Currently, the total population of Venice was recently recorded at [http://en.comuni-italiani.it/027/042/ 270,884 people] (which includes mainland Venice as well as the surrounding islands and lagoon). Of these, 47.4% were male and 52.6% were female. Minors (those 18 years or younger) made up 14.36% of the population, whereas pensioners made up 25.7%. The overall Italian population is, by contrast, made up of 18.06% minors (more than Venice) and 19.94% pensioners. The average age of a Venetian resident is 46, four years older than the Italian average of 42.&lt;br /&gt;
&lt;br /&gt;
==Permanent Residents==&lt;br /&gt;
The official resident population of Venice is distributed in a ratio of approximately 22:8:70 between the historic city, the islands, and the mainland (only the official residents are allowed to vote). This demographic disparity means that in electoral terms, the historic city is now a minority. When local politicians refer to &amp;quot;Venezia,&amp;quot; they are no longer referring to the Venice the world thinks of but to the Venice which includes the regional Veneto. &lt;br /&gt;
&lt;br /&gt;
The total population of the municipality reached its peak in 1968 at 367,832. Although the population of the historic city of Venice was declining by then, industrialization at Marghera on the edge of the lagoon was flourishing. Population in the lagoon on the islands and the estuary areas also continued growing until the late 1960&#039;s, particularly as a result of thriving glass production on the island of [[Murano]]. &lt;br /&gt;
&lt;br /&gt;
More recently, the population of the lagoon (the historic city, the Lido, Pellestrina and the islands) has fallen by more than a third (since 1981), double the rate of the decrease on the mainland areas of Venice.&lt;br /&gt;
&lt;br /&gt;
===Age of Population===&lt;br /&gt;
The average age of people living in the historic city of Venice went up from 40.6 years old (in 1981) to 48.2 (in 2001). Before 1991, more than 60% of the population fell within the 14-59 age bracket, but by 2001 the range had fallen to 58% and the proportion of people age 60 and up stood at almost 35%, significantly higher than 30 years earlier. &lt;br /&gt;
&lt;br /&gt;
Consequently, the historic city has a disproportionate share of older residents. In 1971, 23.8% of this historic city&#039;s population was aged over 60 (compared to 16.9% in the Commune as a whole.) By 2001, the share of over-60s in the historic city had risen to 349% (against 31.3% in the Commune.) The Commune predicts that by 2015, the proportion of over-60s overall in the &amp;quot;lagoon city&amp;quot; will have risen to 37%.&lt;br /&gt;
&lt;br /&gt;
===Population Trends===&lt;br /&gt;
&lt;br /&gt;
[[File:Population 1540 to 2015.png|left|thumb|400px|The population of Venice, 1540 to 2015]]&lt;br /&gt;
&lt;br /&gt;
[[File:Population Prediction.jpg|Right|thumb|400px|Estimated population increases [http://comicka.com/content/html5map.html See: Interactive Map]]] &lt;br /&gt;
The resident population all over Venice has also been decreasing. In the five years between 2002 and 2007, the population of Venice declined overall by 0.2%, while Italy as a whole grew by 3.85%.&amp;lt;ref&amp;gt;[http://demo.istat.it/bil2007/index.html &amp;quot;Statistiche demografiche ISTAT&amp;quot;] . Demo.istat.it. Retrieved 28 March 2009&amp;lt;/ref&amp;gt; But the population in the historic city alone is declining at a significantly faster rate: from about 120,000 in 1980 to about 60,000 in 2009.&amp;lt;ref&amp;gt;Cathy Newman, &amp;quot;Vanishing Venice,&amp;quot; National Geographic, August 2009&amp;lt;/ref&amp;gt;&lt;br /&gt;
Taken alone, the municipality&#039;s official figures would appear to confirm the widely held belief that Venice is shrinking: since 1952 when the number of residents in the &amp;quot;lagoon city&amp;quot; peaked at 218,991, the permanent registered population has diminished by more than 60% and steadily continues its decline. It has shrunk by a further 9% since the beginning of the century or an average of 1,000 people annually. &amp;lt;ref&amp;gt;Commune di Venezia, Statistical Office, Venice 2006&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The official resident population of the historic city of Venice shows an even more marked fall, from a peak of 174,808 in 1951 to 60,208 in 2008. But the real population of Venice includes many others who &amp;quot;inhabit&amp;quot; the city, albeit less officially. Excluding the numerous tourists and day-trippers who collectively make heavy demands on the city&#039;s infrastructure, other residents include people with secondary homes, commuting workers, students, and the steady flow of people who come to Venice to use its public administration offices.&lt;br /&gt;
&lt;br /&gt;
In 1994, the Venice Commune first attempted to estimate and evaluate the population from a new perspective; another study was published in 2006 (using data from 2004) and most recently, a 2007 study, updated in 2008 by COSES (the Consortium for Research and Educational Training, a research study center established by the City and Province of Venice) concluded that the number of people present in Venice on an average day is 143,450 including the tourists.&amp;lt;ref&amp;gt;Di Monte G. and G. Santoro, Venice metropolitan area, Doc COSES 1032.0, October 2008&amp;lt;/ref&amp;gt; This is over 50% more than the total resident population of the &amp;quot;lagoon city&amp;quot; and over 100% more than the number of residents in the historic cit, where the bulk of this transit population goes. &lt;br /&gt;
&lt;br /&gt;
[[File:Scan0028.jpg|left|thumb|450px|Venice&#039;s Daytime Effective Population|Venice&#039;s Effective Daytime Population]]This concept of &amp;quot;popolazione presente&amp;quot;, or the effective population, has grown in importance and become a common method for studying issues concerning large metropolises and urban sociology. The increased mobility of people means that the actual human load on a city is much larger (and of a different nature) than that created solely by residents and it needs to be measured and described.&lt;br /&gt;
&lt;br /&gt;
To understand what this level of human presence means to Venice, it is more meaningful to convert the annual number for effective population (used for economic statistics) to an equivalent population figure, which gives a better idea of the number of people in Venice on a typical day of the year (but does not take account of seasonal variations), for planning purposes such as the calibration of city services. This transformed estimate of the real population of Venice considers the inhabitants of Venice in a wider sense and encompasses as many as possible of the city&#039;s stakeholders.&lt;br /&gt;
&lt;br /&gt;
The shrinking number of permanent residents. though a serious issue, pales in comparison to the global importance of the city, its heritage and the number of transient &amp;quot;city users&amp;quot; and leisure visitors.&lt;br /&gt;
&lt;br /&gt;
==Tourism Population==&lt;br /&gt;
&lt;br /&gt;
Venice is one of the worlds most visited cities due to its&#039; long legacy of beautiful and historically important art. In 2007, it was estimated that 50,000 visitors visited Venice each day, and showed no signs of weakening as the years pass. In 2007 it was projected that there would be at least twenty million visitors that will occupy Venice alone in the next year&amp;lt;ref&amp;gt;&lt;br /&gt;
&amp;quot;[http://www.travelindustrydeals.com/news/5109 Italy&#039;s Venice on track for record tourism year: official]&amp;quot;, Nov 20, 2007&amp;lt;/ref&amp;gt;. However, this large amount of tourism traffic has caused many issues in Venice. For more information, see [[Tourism]].&lt;br /&gt;
&lt;br /&gt;
==Ethnicity==&lt;br /&gt;
As of 2009, 91,14% of the population was Italian. The largest immigrant group comes from other European nations (Romanians, the largest group: 3.26%, South Asia: 1.26%, and East Asia: 0.9%). &lt;br /&gt;
&lt;br /&gt;
==Religion==&lt;br /&gt;
Venice is predominantly Roman Catholic, but because of the long standing relationship with Constantinople there is also a perceptible Orthodox presence, and due to immigration it now has some Muslim, Hindu and Buddhist inhabitants.&lt;br /&gt;
There is also a historic Jewish Community in Venice. The Venetian Ghetto was the area of in which Jews were compelled to live under the Venetian Republic. The word &amp;quot;ghetto&amp;quot;, used in many languages, is derived from this instance. Notably, William Shakespeare&#039;s play The Merchant Of Venice, written ca. 1595, features Shylock, a Venetian Jew and his family. Venice also has an eruv,&amp;lt;ref&amp;gt;[http://www.ghetto.it/ghetto/en/foto.asp?padre=3&amp;amp;figlio=1 &amp;quot;Venetian Ghetto - Eruv in Venice&amp;quot;] . Retrieved 2010-08-02.&amp;lt;/ref&amp;gt; built for and still used by the Jewish community.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://en.comuni-italiani.it/027/042/ Demographic information on City of Venice]&lt;br /&gt;
&lt;br /&gt;
[[Category:Demographics]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=File:Population_1540_to_2015.png&amp;diff=67618</id>
		<title>File:Population 1540 to 2015.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=File:Population_1540_to_2015.png&amp;diff=67618"/>
		<updated>2015-01-27T04:37:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Campo&amp;diff=64563</id>
		<title>Campo</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Campo&amp;diff=64563"/>
		<updated>2014-06-16T19:25:53Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Expand}}&lt;br /&gt;
&lt;br /&gt;
[[File:Campo_s.jpg|Right|thumb|Campo Santo Stefano&amp;lt;ref&amp;gt;http://www.gonback.com/venecia/e_venecia02.html&amp;lt;/ref&amp;gt;|400px]] &lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;campo&#039;&#039;, although not a [[Street|street]] by common understanding, is a large paved walkway which typically contains a church and [[wellhead]]. &#039;&#039;Campo&#039;&#039; in English means &amp;quot;a grassy field&amp;quot;.&amp;lt;ref&amp;gt;Giulio Lorenzetti, &#039;&#039;Venice and its Lagoon&#039;&#039;, (1994)&amp;lt;/ref&amp;gt; Originally, all &#039;&#039;campi&#039;&#039; in Venice were grassy fields, but over time all of these fields were [[Stone Pavement|paved]] over. There are 168 &#039;&#039;campi&#039;&#039; in Venice.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Street]]&lt;br /&gt;
*[[Street Pavement]]&lt;br /&gt;
&lt;br /&gt;
{{Template:StreetTypeNav}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bibliography==&lt;br /&gt;
*[https://sites.google.com/site/venicemaintained/proposal Finn, Paul; Hutchinson, Katie; Ouellette, Jesse; Muller, Ryan. The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011]&lt;br /&gt;
&lt;br /&gt;
[[Category:Streets]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Campiello&amp;diff=64562</id>
		<title>Campiello</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Campiello&amp;diff=64562"/>
		<updated>2014-06-16T19:25:24Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Expand}}&lt;br /&gt;
&lt;br /&gt;
[[File:Campiello.jpg|right|thumb|Campiello S. Maria Nova]]&lt;br /&gt;
A &#039;&#039;campiello&#039;&#039; is so named because it is a &amp;quot;little &#039;&#039;[[campo]]&#039;&#039;&amp;quot;. They are smaller squares and typically do not contain a church, or wellhead.&amp;lt;ref&amp;gt;Giulio Lorenzetti, &#039;&#039;Venice and its Lagoon&#039;&#039;, (1994)&amp;lt;/ref&amp;gt; There are 153 &#039;&#039;campielli&#039;&#039; in Venice.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Street]]&lt;br /&gt;
*[[Streets]]&lt;br /&gt;
&lt;br /&gt;
{{Template:StreetTypeNav}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bibliography==&lt;br /&gt;
*[https://sites.google.com/site/venicemaintained/proposal Finn, Paul; Hutchinson, Katie; Ouellette, Jesse; Muller, Ryan. The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://it.wikipedia.org/wiki/Campiello Italian Wikipedia article on campiellos]&lt;br /&gt;
&lt;br /&gt;
[[Category:Streets]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Campazzo&amp;diff=64561</id>
		<title>Campazzo</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Campazzo&amp;diff=64561"/>
		<updated>2014-06-16T19:25:08Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Expand}}{{Incomplete}}&lt;br /&gt;
&lt;br /&gt;
[[File:Campazzo San Sebastiano.png|500px|thumb|right| Google street view of Campazzo San Sebatiano&amp;lt;ref&amp;gt;http://wikimapia.org/21903653/Campazzo-San-Sebastiano&amp;lt;/ref&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
Much like a [[campiello]], a campazzo is an open space that does not usually contain a church or any wells. Physically, it very much similar to a [[campiello]] or a [[campo]], the slight difference lying mainly in historical uses and definitions. In the earlier years of Venice, before the islands had as many buildings as they do today, the &#039;&#039;campi&#039;&#039; were grassy fields located in various parts of the city. &#039;&#039;Campazzo&#039;&#039; was used as a term to refer to &#039;&#039;campi&#039;&#039; that were untended and overgrown. &lt;br /&gt;
&lt;br /&gt;
There are not many &#039;&#039;campazzi&#039;&#039; found in Venice, but an example of such space is Campazzo San Sebastiano. This &#039;&#039;campo&#039;&#039; serves as a midway &#039;&#039;campo&#039;&#039; that connects Campo San Sebastiano and Campo dell&#039;Angelo Raffaele. &lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Street]]&lt;br /&gt;
*[[Streets]]&lt;br /&gt;
&lt;br /&gt;
{{Template:StreetTypeNav}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bibliography==&lt;br /&gt;
*Brofford, Kelsey; Larkins, Riley; Rovayo, Luis; Shea, Alexandra. Boats and Bottle Necks: Improving Mobility in Venice. Worcester Ma. Worcester Polytechnic Institute.2013&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://wikimapia.org/21903653/Campazzo-San-Sebastiano]&lt;br /&gt;
&lt;br /&gt;
[[Category:Streets]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:High_traffic_segments_v2&amp;diff=64560</id>
		<title>Template:High traffic segments v2</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:High_traffic_segments_v2&amp;diff=64560"/>
		<updated>2014-06-16T19:08:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = [[{{#firebaseraw:{{{url}}}/data/Type}}]]&lt;br /&gt;
&lt;br /&gt;
|label11 = Area&lt;br /&gt;
|data11 = &amp;lt;firebase url=&#039;{{{url}}}/data/Area&#039; /&amp;gt; square meters&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label17 = Flow Rate&lt;br /&gt;
|data17 = &amp;lt;firebase url=&#039;{{{url}}}/data/Flow Rate&#039; /&amp;gt; people per minute&lt;br /&gt;
&lt;br /&gt;
|label19 = Walking Capacity&lt;br /&gt;
|data19 = &amp;lt;firebase url=&#039;{{{url}}}/data/Walking Capacity&#039; /&amp;gt; people&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{#firebaseraw:{{{url}}}/birth_certificate/birthID}}&#039;&#039;&#039; is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
[[Category:high traffic segments v2]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Regular_full_streets&amp;diff=64559</id>
		<title>Template:Regular full streets</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Regular_full_streets&amp;diff=64559"/>
		<updated>2014-06-16T19:06:49Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Type&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{#firebaseraw:{{{url}}}/birth_certificate/birthID}}&#039;&#039;&#039; is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
[[Category:regular full streets]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:MERGE_Media_%2B_Data_Ponti_(Ramps)&amp;diff=64558</id>
		<title>Template:MERGE Media + Data Ponti (Ramps)</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:MERGE_Media_%2B_Data_Ponti_(Ramps)&amp;diff=64558"/>
		<updated>2014-06-16T19:05:22Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{infobox &lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Name&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
&lt;br /&gt;
|image = {{#ifeq:{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Arches)}}/thumb}}|Null||{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Arches)}}/thumb}}}}&lt;br /&gt;
|header1 = Basic Information&lt;br /&gt;
&lt;br /&gt;
|label2 = Bridge Code&lt;br /&gt;
|data2 = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Code&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label3 = Zucchetta Number&lt;br /&gt;
|data3 = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Number According to Zucchetta&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label4 = Canal Crossed&lt;br /&gt;
|data4 = &amp;lt;firebase url=&#039;{{{url}}}/data/Canal Crossed&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label5 = Handicapped Accessible?&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Handicapped Accessible?&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label6 = Length (m)&lt;br /&gt;
|data6 = &amp;lt;firebase url=&#039;{{{url}}}/data/Span (m)&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label7 = Width (m)&lt;br /&gt;
|data7 = &amp;lt;firebase url=&#039;{{{url}}}/data/Full Width Including Railings (m)&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label8 = Minimum Height (m)&lt;br /&gt;
|data8 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Height (m)&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Latitude (°)&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label10 = Longitude (°)&lt;br /&gt;
|data10 = &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label11 = Private&lt;br /&gt;
|data11 = &amp;lt;firebase url=&#039;{{{url}}}/data/Private Bridge?&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label12 = Crooked Bridge?&lt;br /&gt;
|data12 = &amp;lt;firebase url=&#039;{{{url}}}/data/Crooked Bridge?&#039; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Overview of Bridge==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;{{#firebaseraw:{{{url}}}/data/Bridge Name}}&#039;&#039;&#039; {{#ifeq:{{#firebaseraw:{{{url}}}/data/Year Constructed}}|||, constructed in {{#firebaseraw:{{{url}}}/data/Year Constructed}},}} was built primarily using {{#firebaseraw:{{{url}}}/data/Construction Material}}. {{#ifeq:{{#firebaseraw:{{{url}}}/data/Date of Last Restoration}} ||| Since then the bridge was last restored on {{#firebaseraw:{{{url}}}/data/Date of Last Restoration}}. }}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Canal Crossed}} |||It crosses the {{#firebaseraw:{{{url}}}/data/Canal Crossed}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Canal Width (m)}} |||, bridging a gap that is {{#firebaseraw:{{{url}}}/data/Canal Width (m)}} meters wide. }}}} The bridge {{#ifeq:{{#firebaseraw:{{{url}}}/data/Crooked Bridge?}}| TRUE|is|is not}} a crooked bridge. &lt;br /&gt;
&lt;br /&gt;
=== Location ===&lt;br /&gt;
On the northern side of the bridge is the sestiere of {{#firebaseraw:{{{url}}}/data/Name of Northern Sestiere}} and on the southern side is {{#ifeq:{{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}| {{#firebaseraw:{{{url}}}/data/Name of Northern Sestiere}} | also {{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}. | {{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}. }}&lt;br /&gt;
&lt;br /&gt;
=== Description === &lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} ||| There {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} | 1 |is |are }} {{#firebaseraw:{{{url}}}/data/Number of Ramps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} | 1 |ramp. |ramps. }}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |||On the north side there are {{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |1|step|steps}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} |||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} || On |, on}} the south side there are {{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}}|1|step|steps}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} |||. This results in a total of {{#firebaseraw:{{{url}}}/data/Total Number of Steps}} steps. }}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Total Number of Steps}}||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}}|||The height of a typical step is {{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} |1|meter |meters}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} ||The | {{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} ||, and the|, the}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Depth (cm)}}||| thickness of a step is about {{#firebaseraw:{{{url}}}/data/Step Depth (cm)}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Depth (cm)}} |1|centimeter |centimeters}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}}|||, and the width of a step is about {{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} |1|meter. |meters.}}}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Pavement Material}}||| The steps are paved with {{#firebaseraw:{{{url}}}/data/Step Pavement Material}}.}} &lt;br /&gt;
&lt;br /&gt;
=== Accessibility===&lt;br /&gt;
The bridge is {{#ifeq:{{#firebaseraw:{{{url}}}/data/Handicapped Accessible?}} | TRUE || not}} handicapped accessible {{#ifeq:{{#firebaseraw:{{{url}}}/data/Handicapped Accessible?}}|TRUE|{{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}}|FALSE|but|and}}|{{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}}|TRUE|but|and}}}} it {{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}} | TRUE |does |does not }} have an additional railing. &lt;br /&gt;
&lt;br /&gt;
=== Dimensions ===&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}}||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} ||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Length of Summit (m)}}|||The summit is {{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} |1|meter |meters}} wide and {{#firebaseraw:{{{url}}}/data/Length of Summit (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Length of Summit (m)}} |1|meter |meters}} in length for a total area of about {{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}} |1|meter. |meters. }} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Material of Summit Pavement}} ||| The summit is paved with {{#firebaseraw:{{{url}}}/data/Material of Summit Pavement}}.}}}}}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Arches}}|||Also, this bridge has {{#firebaseraw:{{{url}}}/data/Number of Arches}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Arches}}|1|arch| arches}}}}. {{#ifeq:{{#firebaseraw:{{{url}}}/data/Railing Material}}|||The bridge&#039;s {{#ifeq:{{#firebaseraw:{{{url}}}/data/Type of Railing}}|||{{#firebaseraw:{{{url}}}/data/Type of Railing}}}} railing is made of {{#firebaseraw:{{{url}}}/data/Railing Material}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}} |||and is about {{#firebaseraw:{{{url}}}/data/Average railing width (cm)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}}|1|meter|meters}} wide}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average Height of Railing (m)}}||. | {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}}||and about |is about}} {{#firebaseraw:{{{url}}}/data/Average Height of Railing (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average Height of Railing}}|1|meter|meters}} tall.}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion North (m)}}||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}||| Finally, the bridge protrudes {{#firebaseraw:{{{url}}}/data/Protrusion South (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}|1|meter|meters}}.}}| Finally, the bridge protrudes {{#firebaseraw:{{{url}}}/data/Protrusion North (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion North (m)}}|1|meter|meters}} to the North {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}||.| and {{#firebaseraw:{{{url}}}/data/Protrusion South (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}|1|meter|meters}} to the South.}}}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Ramps)}}/small}}|Null||{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Ramps)}}/small}}}}&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/History}}||We&#039;re sorry, we do not yet have origins for every bridge, please check again in the future for any updates!|The following is the history information we have regarding the bridge&#039;s origins:&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/History}}}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Latitude}}|||==Location==&lt;br /&gt;
The bridge is located at the following coordinates:&lt;br /&gt;
*Latitude: {{#firebaseraw:{{{url}}}/data/Latitude}}° N&lt;br /&gt;
*Longitude:  {{#firebaseraw:{{{url}}}/data/Longitude}}° E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;firebase url =&#039;{{{url}}}/data/###&#039;/&amp;gt;&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/###}} | something | if something | if not something}} ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Bridges]]&lt;br /&gt;
[[Category:MERGE Ponti]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:MERGE_Media_%2B_Data_Ponti_(Ramps)&amp;diff=64557</id>
		<title>Template:MERGE Media + Data Ponti (Ramps)</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:MERGE_Media_%2B_Data_Ponti_(Ramps)&amp;diff=64557"/>
		<updated>2014-06-16T19:03:11Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{infobox &lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Name&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
&lt;br /&gt;
|image = {{#ifeq:{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Arches)}}/thumb}}|Null||{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Arches)}}/thumb}}}}&lt;br /&gt;
|header1 = Basic Information&lt;br /&gt;
&lt;br /&gt;
|label2 = Bridge Code&lt;br /&gt;
|data2 = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Code&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label3 = Zucchetta Number&lt;br /&gt;
|data3 = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Number According to Zucchetta&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label4 = Canal Crossed&lt;br /&gt;
|data4 = &amp;lt;firebase url=&#039;{{{url}}}/data/Canal Crossed&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label5 = Handicapped Accessible?&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Handicapped Accessible?&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label6 = Length (m)&lt;br /&gt;
|data6 = &amp;lt;firebase url=&#039;{{{url}}}/data/Span (m)&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label7 = Width (m)&lt;br /&gt;
|data7 = &amp;lt;firebase url=&#039;{{{url}}}/data/Full Width Including Railings (m)&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label8 = Minimum Height (m)&lt;br /&gt;
|data8 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Height (m)&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Latitude (°)&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label10 = Longitude (°)&lt;br /&gt;
|data10 = &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label11 = Private&lt;br /&gt;
|data11 = &amp;lt;firebase url=&#039;{{{url}}}/data/Private Bridge?&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label12 = Crooked Bridge?&lt;br /&gt;
|data12 = &amp;lt;firebase url=&#039;{{{url}}}/data/Crooked Bridge?&#039; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Overview of Bridge==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;{{#firebaseraw:{{{url}}}/data/Bridge Name}}&#039;&#039;&#039; {{#ifeq:{{#firebaseraw:{{{url}}}/data/Year Constructed}}|||, constructed in {{#firebaseraw:{{{url}}}/data/Year Constructed}},}} was built primarily using {{#firebaseraw:{{{url}}}/data/Construction Material}}. {{#ifeq:{{#firebaseraw:{{{url}}}/data/Date of Last Restoration}} ||| Since then the bridge was last restored on {{#firebaseraw:{{{url}}}/data/Date of Last Restoration}}. }}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Canal Crossed}} |||It crosses the {{#firebaseraw:{{{url}}}/data/Canal Crossed}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Canal Width (m)}} |||, bridging a gap that is {{#firebaseraw:{{{url}}}/data/Canal Width (m)}} meters wide. }}}} The bridge {{#ifeq:{{#firebaseraw:{{{url}}}/data/Crooked Bridge?}}| TRUE|is|is not}} a crooked bridge. &lt;br /&gt;
&lt;br /&gt;
=== Location ===&lt;br /&gt;
On the northern side of the bridge is the sestiere of {{#firebaseraw:{{{url}}}/data/Name of Northern Sestiere}} and on the southern side is {{#ifeq:{{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}| {{#firebaseraw:{{{url}}}/data/Name of Northern Sestiere}} | also {{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}. | {{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}. }}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} &lt;br /&gt;
&lt;br /&gt;
=== Description === &lt;br /&gt;
||| There {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} | 1 |is |are }} {{#firebaseraw:{{{url}}}/data/Number of Ramps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} | 1 |ramp. |ramps. }}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |||On the north side there are {{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |1|step|steps}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} |||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} || On |, on}} the south side there are {{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}}|1|step|steps}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} |||. This results in a total of {{#firebaseraw:{{{url}}}/data/Total Number of Steps}} steps. }}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Total Number of Steps}}||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}}|||The height of a typical step is {{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} |1|meter |meters}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} ||The | {{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} ||, and the|, the}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Depth (cm)}}||| thickness of a step is about {{#firebaseraw:{{{url}}}/data/Step Depth (cm)}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Depth (cm)}} |1|centimeter |centimeters}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}}|||, and the width of a step is about {{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} |1|meter. |meters.}}}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Pavement Material}}||| The steps are paved with {{#firebaseraw:{{{url}}}/data/Step Pavement Material}}.}} &lt;br /&gt;
&lt;br /&gt;
=== Accessibility===&lt;br /&gt;
The bridge is {{#ifeq:{{#firebaseraw:{{{url}}}/data/Handicapped Accessible?}} | TRUE || not}} handicapped accessible {{#ifeq:{{#firebaseraw:{{{url}}}/data/Handicapped Accessible?}}|TRUE|{{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}}|FALSE|but|and}}|{{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}}|TRUE|but|and}}}} it {{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}} | TRUE |does |does not }} have an additional railing. &lt;br /&gt;
&lt;br /&gt;
=== Dimensions ===&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}}||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} ||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Length of Summit (m)}}|||The summit is {{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} |1|meter |meters}} wide and {{#firebaseraw:{{{url}}}/data/Length of Summit (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Length of Summit (m)}} |1|meter |meters}} in length for a total area of about {{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}} |1|meter. |meters. }} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Material of Summit Pavement}} ||| The summit is paved with {{#firebaseraw:{{{url}}}/data/Material of Summit Pavement}}.}}}}}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Arches}}|||Also, this bridge has {{#firebaseraw:{{{url}}}/data/Number of Arches}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Arches}}|1|arch| arches}}}}. {{#ifeq:{{#firebaseraw:{{{url}}}/data/Railing Material}}|||The bridge&#039;s {{#ifeq:{{#firebaseraw:{{{url}}}/data/Type of Railing}}|||{{#firebaseraw:{{{url}}}/data/Type of Railing}}}} railing is made of {{#firebaseraw:{{{url}}}/data/Railing Material}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}} |||and is about {{#firebaseraw:{{{url}}}/data/Average railing width (cm)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}}|1|meter|meters}} wide}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average Height of Railing (m)}}||. | {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}}||and about |is about}} {{#firebaseraw:{{{url}}}/data/Average Height of Railing (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average Height of Railing}}|1|meter|meters}} tall.}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion North (m)}}||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}||| Finally, the bridge protrudes {{#firebaseraw:{{{url}}}/data/Protrusion South (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}|1|meter|meters}}.}}| Finally, the bridge protrudes {{#firebaseraw:{{{url}}}/data/Protrusion North (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion North (m)}}|1|meter|meters}} to the North {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}||.| and {{#firebaseraw:{{{url}}}/data/Protrusion South (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}|1|meter|meters}} to the South.}}}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Ramps)}}/small}}|Null||{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Ramps)}}/small}}}}&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/History}}||We&#039;re sorry, we do not yet have origins for every bridge, please check again in the future for any updates!|The following is the history information we have regarding the bridge&#039;s origins:&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/History}}}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Latitude}}|||==Location==&lt;br /&gt;
The bridge is located at the following coordinates:&lt;br /&gt;
*Latitude: {{#firebaseraw:{{{url}}}/data/Latitude}}° N&lt;br /&gt;
*Longitude:  {{#firebaseraw:{{{url}}}/data/Longitude}}° E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;firebase url =&#039;{{{url}}}/data/###&#039;/&amp;gt;&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/###}} | something | if something | if not something}} ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Bridges]]&lt;br /&gt;
[[Category:MERGE Ponti]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:MERGE_Media_%2B_Data_Ponti_(Ramps)&amp;diff=64556</id>
		<title>Template:MERGE Media + Data Ponti (Ramps)</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:MERGE_Media_%2B_Data_Ponti_(Ramps)&amp;diff=64556"/>
		<updated>2014-06-16T18:34:05Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{infobox &lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Name&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
&lt;br /&gt;
|image = {{#ifeq:{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Arches)}}/thumb}}|Null||{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Arches)}}/thumb}}}}&lt;br /&gt;
|header1 = Basic Information&lt;br /&gt;
&lt;br /&gt;
|label2 = Bridge Code&lt;br /&gt;
|data2 = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Code&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label3 = Zucchetta Number&lt;br /&gt;
|data3 = &amp;lt;firebase url=&#039;{{{url}}}/data/Bridge Number According to Zucchetta&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label4 = Canal Crossed&lt;br /&gt;
|data4 = &amp;lt;firebase url=&#039;{{{url}}}/data/Canal Crossed&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label5 = Handicapped Accessible?&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Handicapped Accessible?&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label6 = Length (m)&lt;br /&gt;
|data6 = &amp;lt;firebase url=&#039;{{{url}}}/data/Span (m)&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label7 = Width (m)&lt;br /&gt;
|data7 = &amp;lt;firebase url=&#039;{{{url}}}/data/Full Width Including Railings (m)&#039;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label8 = Minimum Height (m)&lt;br /&gt;
|data8 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Height (m)&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Latitude (°)&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label10 = Longitude (°)&lt;br /&gt;
|data10 = &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label11 = Private&lt;br /&gt;
|data11 = &amp;lt;firebase url=&#039;{{{url}}}/data/Private Bridge?&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label12 = Crooked Bridge?&lt;br /&gt;
|data12 = &amp;lt;firebase url=&#039;{{{url}}}/data/Crooked Bridge?&#039; /&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Overview of Bridge==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;{{#firebaseraw:{{{url}}}/data/Bridge Name}}&#039;&#039;&#039; {{#ifeq:{{#firebaseraw:{{{url}}}/data/Year Constructed}}|||, constructed in {{#firebaseraw:{{{url}}}/data/Year Constructed}},}} was built primarily using {{#firebaseraw:{{{url}}}/data/Construction Material}}. {{#ifeq:{{#firebaseraw:{{{url}}}/data/Date of Last Restoration}} ||| Since then the bridge was last restored on {{#firebaseraw:{{{url}}}/data/Date of Last Restoration}}. }}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Canal Crossed}} |||It crosses the {{#firebaseraw:{{{url}}}/data/Canal Crossed}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Canal Width (m)}} |||, bridging a gap that is {{#firebaseraw:{{{url}}}/data/Canal Width (m)}} meters wide. }}}} The bridge {{#ifeq:{{#firebaseraw:{{{url}}}/data/Crooked Bridge?}}| TRUE|is|is not}} a crooked bridge. &lt;br /&gt;
&lt;br /&gt;
=== Location ===&lt;br /&gt;
On the northern side of the bridge is the sestiere of {{#firebaseraw:{{{url}}}/data/Name of Northern Sestiere}} and on the southern side is {{#ifeq:{{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}| {{#firebaseraw:{{{url}}}/data/Name of Northern Sestiere}} | also {{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}. | {{#firebaseraw:{{{url}}}/data/Name of Southern Sestiere}}. }}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} |||&lt;br /&gt;
&lt;br /&gt;
=== Description ===&lt;br /&gt;
There {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} | 1 |is |are }} {{#firebaseraw:{{{url}}}/data/Number of Ramps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Ramps}} | 1 |ramp. |ramps. }}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |||On the north side there are {{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |1|step|steps}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} |||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} || On |, on}} the south side there are {{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}}|1|step|steps}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Northern Steps}} |||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Southern Steps}} |||. This results in a total of {{#firebaseraw:{{{url}}}/data/Total Number of Steps}} steps. }}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Total Number of Steps}}||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}}|||The height of a typical step is {{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} |1|meter |meters}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Height of Step (cm)}} ||The | {{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} ||, and the|, the}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Depth (cm)}}||| thickness of a step is about {{#firebaseraw:{{{url}}}/data/Step Depth (cm)}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Depth (cm)}} |1|centimeter |centimeters}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}}|||, and the width of a step is about {{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Minimum Step Width (m)}} |1|meter. |meters.}}}}}}{{#ifeq:{{#firebaseraw:{{{url}}}/data/Step Pavement Material}}||| The steps are paved with {{#firebaseraw:{{{url}}}/data/Step Pavement Material}}.}} &lt;br /&gt;
&lt;br /&gt;
=== Accessibility===&lt;br /&gt;
The bridge is {{#ifeq:{{#firebaseraw:{{{url}}}/data/Handicapped Accessible?}} | TRUE || not}} handicapped accessible {{#ifeq:{{#firebaseraw:{{{url}}}/data/Handicapped Accessible?}}|TRUE|{{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}}|FALSE|but|and}}|{{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}}|TRUE|but|and}}}} it {{#ifeq:{{#firebaseraw:{{{url}}}/data/Additional Handrail?}} | TRUE |does |does not }} have an additional railing. &lt;br /&gt;
&lt;br /&gt;
=== Dimensions ===&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}}||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} ||| {{#ifeq:{{#firebaseraw:{{{url}}}/data/Length of Summit (m)}}|||The summit is {{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Width of Summit (m)}} |1|meter |meters}} wide and {{#firebaseraw:{{{url}}}/data/Length of Summit (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Length of Summit (m)}} |1|meter |meters}} in length for a total area of about {{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Surface Area of Summit (m^2)}} |1|meter. |meters. }} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Material of Summit Pavement}} ||| The summit is paved with {{#firebaseraw:{{{url}}}/data/Material of Summit Pavement}}.}}}}}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Arches}}|||Also, this bridge has {{#firebaseraw:{{{url}}}/data/Number of Arches}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Number of Arches}}|1|arch| arches}}}}. {{#ifeq:{{#firebaseraw:{{{url}}}/data/Railing Material}}|||The bridge&#039;s {{#ifeq:{{#firebaseraw:{{{url}}}/data/Type of Railing}}|||{{#firebaseraw:{{{url}}}/data/Type of Railing}}}} railing is made of {{#firebaseraw:{{{url}}}/data/Railing Material}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}} |||and is about {{#firebaseraw:{{{url}}}/data/Average railing width (cm)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}}|1|meter|meters}} wide}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average Height of Railing (m)}}||. | {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average railing width (cm)}}||and about |is about}} {{#firebaseraw:{{{url}}}/data/Average Height of Railing (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Average Height of Railing}}|1|meter|meters}} tall.}}}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion North (m)}}||{{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}||| Finally, the bridge protrudes {{#firebaseraw:{{{url}}}/data/Protrusion South (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}|1|meter|meters}}.}}| Finally, the bridge protrudes {{#firebaseraw:{{{url}}}/data/Protrusion North (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion North (m)}}|1|meter|meters}} to the North {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}||.| and {{#firebaseraw:{{{url}}}/data/Protrusion South (m)}} {{#ifeq:{{#firebaseraw:{{{url}}}/data/Protrusion South (m)}}|1|meter|meters}} to the South.}}}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Ramps)}}/small}}|Null||{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/MEDIA Ponti (Ramps)}}/small}}}}&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/History}}||We&#039;re sorry, we do not yet have origins for every bridge, please check again in the future for any updates!|The following is the history information we have regarding the bridge&#039;s origins:&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/History}}}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/Latitude}}|||==Location==&lt;br /&gt;
The bridge is located at the following coordinates:&lt;br /&gt;
*Latitude: {{#firebaseraw:{{{url}}}/data/Latitude}}° N&lt;br /&gt;
*Longitude:  {{#firebaseraw:{{{url}}}/data/Longitude}}° E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &amp;lt;firebase url =&#039;{{{url}}}/data/###&#039;/&amp;gt;&lt;br /&gt;
{{#ifeq:{{#firebaseraw:{{{url}}}/data/###}} | something | if something | if not something}} ---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Bridges]]&lt;br /&gt;
[[Category:MERGE Ponti]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridges&amp;diff=64555</id>
		<title>Bridges</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridges&amp;diff=64555"/>
		<updated>2014-06-16T17:03:39Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Plural&lt;br /&gt;
|title        = {{PAGENAME}}  &lt;br /&gt;
|image        =  [[Image:Catanese_Rialto2.jpg|200 px]]&lt;br /&gt;
|caption      =   The Rialto Bridge&lt;br /&gt;
|number =  433&lt;br /&gt;
|total length=  &lt;br /&gt;
|total area=  &lt;br /&gt;
|oldest= Rialto&lt;br /&gt;
|newest= Ponte della Costituzione&lt;br /&gt;
|longest= Ponte della Costituzione&lt;br /&gt;
|widest= Rialto Bridge&lt;br /&gt;
|shortest= Ponte del Diavolo&lt;br /&gt;
|narrowest= Ponte privato - Passerella girevole&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;This page is an overview of all the bridges in Venice.&#039;&#039;&lt;br /&gt;
{{for|a typical bridge|Bridge}}&lt;br /&gt;
&lt;br /&gt;
The city of Venice is composed of 126 islands connected by 435 bridges.&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;Canals, Bridges, and Urban Maintenance (https://sites.google.com/site/ve13can/final-report)&amp;lt;/ref&amp;gt; These bridges are essential for the unity of the city and play a major role in daily pedestrian traffic.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
[[File:3dBridgeDiagram.png|right|thumb|A precise model of a Venetian Bridge]]&lt;br /&gt;
Bridges have served as an important piece of infrastructure throughout the history of Venice and its formation from multiple islands. Before bridges existed in Venice, the numerous islands were separate communities with their own churches, stores, and lifestyles. At this time landowners used planks to cross from one island to the next and charged a small toll to those who wanted to cross over.&amp;lt;ref&amp;gt;Venice (Italy): canal boats and bridges. Encyclopedia Britannica. &lt;br /&gt;
http://www.britannica.com/EBchecked/topic/625298/Venice/24379/Canal-boats-and-bridges?anchor=ref388643 &lt;br /&gt;
&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Over time the methods of getting from one island to another in Venice have evolved.  Initially, a boat known as a [[Traghetto|&#039;&#039;traghetto&#039;&#039;]] was used to transport people across the natural water ways.&lt;br /&gt;
&amp;lt;ref&amp;gt;Venice (Italy): canal boats and bridges. Encyclopedia Britannica. &lt;br /&gt;
http://www.britannica.com/EBchecked/topic/625298/Venice/24379/Canal-boats-and-bridges?anchor=ref388643 &lt;br /&gt;
&amp;lt;/ref&amp;gt; As stated above the first bridges were simple wooden planks placed across the smaller [[Canals|canals]] to enable passage.  Eventually permanent bridges began being constructed out of [[Wood Bridge|wood]].  Today [[Masonry Bridge|masonry bridges]] make up the majority of bridges seen in Venice, and a few [[Metal Bridge|metal bridges]] have been .  These bridges vary in structural design and material composition. &lt;br /&gt;
&lt;br /&gt;
Bridges can be separated into private and public bridges.  Public bridges are used by tourists and residents of Venice for regular transportation while private bridges are bridges that lead specifically to one or multiple households or business entrances. Approximately 2% of bridges are private bridges. &amp;lt;ref&amp;gt;Canals, Bridges, and Urban Maintenance (https://sites.google.com/site/ve13can/final-report)&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Statistics==&lt;br /&gt;
&#039;&#039;&#039;Top Ten Longest Bridges:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. [[Ponte della Costituzione]]&lt;br /&gt;
&lt;br /&gt;
2. [[Ponte dell&#039;Accademia]]&lt;br /&gt;
&lt;br /&gt;
3. [[Ponte degli Scalzi]]&lt;br /&gt;
&lt;br /&gt;
4. [[Ponte di Rialto]]&lt;br /&gt;
&lt;br /&gt;
5. [[Ponte Vivarini]]&lt;br /&gt;
&lt;br /&gt;
6. [[Ponte dei Pensieri]]&lt;br /&gt;
&lt;br /&gt;
7. [[Ponte Longo]]&lt;br /&gt;
&lt;br /&gt;
8. [[Ponte Serenella]]&lt;br /&gt;
&lt;br /&gt;
9. [[Ponte S. Donato]]&lt;br /&gt;
&lt;br /&gt;
10. [[Ponte dei Tre Ponti 4]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Top Ten Shortest Bridges:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. [[Ponte del Diavolo]]&lt;br /&gt;
&lt;br /&gt;
2. [[Ponte de l&#039;Ogio]]&lt;br /&gt;
&lt;br /&gt;
3. [[Ponte S. Gregorio]]&lt;br /&gt;
&lt;br /&gt;
4. [[Ponte Ingresso Monumentale Arsenale]]&lt;br /&gt;
&lt;br /&gt;
5. [[Ponte Storto]]&lt;br /&gt;
&lt;br /&gt;
6. [[Ponte de la Dona Onesta]]&lt;br /&gt;
&lt;br /&gt;
7. [[Ponte del Tentor]]&lt;br /&gt;
&lt;br /&gt;
8. [[Ponte Privato va al civico 5964]]&lt;br /&gt;
&lt;br /&gt;
9. [[Ponte S.G.Grisostomo]]&lt;br /&gt;
&lt;br /&gt;
10. [[Ponte piano della Zecca]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Notable Venetian Bridges==&lt;br /&gt;
There are four bridges over the Grand Canal in Venice: the [[Ponte di Rialto|Rialto]], the [[Ponte dell&#039;Accademia|Accademia]], the [[Ponte degli Scalzi]], and the newest, the [[Ponte della Costituzione]].&lt;br /&gt;
&lt;br /&gt;
==Bridge Application and Details==&lt;br /&gt;
{{#widget:Iframe |url= http://bridges.veniceprojectcenter.org/ |width=800 |height=600 |border=0 }}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Template: BridgesNav}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Category:Bridges_in_Venice Bridges in Venice - Wikipedia English]&lt;br /&gt;
*[http://it.wikipedia.org/wiki/Categoria:Ponti_di_Venezia Bridges in Venice - Wikipedia Italia]&lt;br /&gt;
&lt;br /&gt;
[[Category:Bridges]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge_Step&amp;diff=64554</id>
		<title>Bridge Step</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge_Step&amp;diff=64554"/>
		<updated>2014-06-16T16:44:50Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Bridge_step.jpg|right|thumb|Cross section of a bridge step]]&lt;br /&gt;
&#039;&#039;&#039;Bridge steps&#039;&#039;&#039; and landings follow the same structure and only differ in the width. Steps are usually about 30 cm wide and landings are 2-3 times wider. Steps and landings of a [[wood bridge]] and [[metal bridge]] are simple while the step of a traditional [[masonry bridge]] is more complex.&lt;br /&gt;
&lt;br /&gt;
== Masonry bridge step structure ==&lt;br /&gt;
The [[masonry bridge]] step is built upon the foundation of the [[bridge]]. The facade of every step is made of a white stone that resembles but is not [[istria stone]].  This stone is 26 cm tall. However only 12-16 cm is exposed, while the rest is buried into the bridge foundation. These stones are 7 cm deep.&amp;lt;ref&amp;gt; Ing. Michele Regini. Insula SpA, Dec 2011 &amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the gaps created by these stones, the steps and landings are constructed (&#039;&#039;see diagram&#039;&#039;). [[Mortar]] fill is dumped on top of the base brick and the [[masegni]] are laid on top of this. Steps are composed of a single &#039;&#039;corso&#039;&#039;, or &amp;quot;run,&amp;quot; of [[masegni]], while landings, depending on how long, are composed of multiple runs of [[masegni]] following the same rules and patterns of [[street pavement]].&amp;lt;ref&amp;gt; &lt;br /&gt;
The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Bridge]]&lt;br /&gt;
*[[Masonry Bridge]]&lt;br /&gt;
*[[Bridge Parapet]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Brick_Pavement&amp;diff=64553</id>
		<title>Brick Pavement</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Brick_Pavement&amp;diff=64553"/>
		<updated>2014-06-16T16:43:04Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Brick pavement.jpg|right|thumb|300 px|an example of a paved &#039;&#039;campo&#039;&#039;]]The first walkways in Venice were paved in 1264.&amp;lt;ref&amp;gt;G. Tassini, &#039;&#039;Curiosita Venezia&#039;&#039;, (6th edition, 1931)&amp;lt;/ref&amp;gt;  These paved walkways were called &#039;&#039;[[salizada]]&#039;&#039; and were composed entirely of [[brick]]. Over time the bricks became weathered and needed to be replaced.  In 1676 &#039;&#039;[[masegni]]&#039;&#039; stones were introduced and used to restore the majority of [[streets]]. &lt;br /&gt;
&lt;br /&gt;
Now, [[brick]] pavements make up only 2% of paved walk ways in Venice. &lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Brick]]&lt;br /&gt;
*[[Street Pavement]]&lt;br /&gt;
*[[Street]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Brick#See_also English Wikipedia article on bricks]&lt;br /&gt;
*[http://it.wikipedia.org/wiki/Mattone Italian Wikipedia article on bricks]&lt;br /&gt;
&lt;br /&gt;
[[Category:Streets]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64552</id>
		<title>Bridge</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64552"/>
		<updated>2014-06-16T16:42:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Venetian Bridge.jpg|275px|thumb|right|A Venetian bridge]]&lt;br /&gt;
&#039;&#039;This article contains information about a typical Venetian bridge.&#039;&#039; {{For|a list of bridges|bridges}}&lt;br /&gt;
A Venetian &#039;&#039;&#039;bridge&#039;&#039;&#039; (&#039;&#039;ponte&#039;&#039; in Italian) is generally composed of an [[Masonry Bridge#Archways|arch]], a [[Bridge Wall|bridge wall]], and [[Bridge Step|steps]]. Within Venice, a bridge chiefly serves two primary purposes: pedestrian and cargo [[Transportation|transportation]] as well as a carrier and passageway for [[Utilities|utilities]] such as water and electricity. &amp;lt;ref&amp;gt;Gianpietro Zucchetta, &#039;&#039;Venezia, ponte per ponte&#039;&#039; (Verlag Stamperia di Venezia, 1992)&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
Venetian [[bridges]] fall into 3 different categories based on the materials that are used in its construction:&lt;br /&gt;
*[[Masonry bridge]] - the most common type, found all over the city. The most famous example is the [[Rialto]].&lt;br /&gt;
*[[Wood bridge]] - somewhat uncommon, they can still be found dotted throughout parts of Venice. The most famous example is the [[Ponte del&#039;Accademia]].&lt;br /&gt;
*[[Metal bridge]] - quite rare due to aesthetic incongruity, these bridges have been quite controversial when built by the city.&lt;br /&gt;
&lt;br /&gt;
==Processes affecting bridges==&lt;br /&gt;
The high tides and frequent flooding in Venice damage the foundations of the bridge.  &#039;&#039;[[Moto Ondoso]]&#039;&#039;, the Italian phrase for wakes of passing boats, deteriorates the masonry and sometimes breaks off segments of the arch and or plaster.  In addition to the gradual process of &#039;&#039;[[Moto Ondoso]]&#039;&#039; erosion, the constant foot traffic and cargo [[Transportation|transportation]] over time causes wear and tear on the steps and railings.  More rarely (but also more violently) the undersides of [[Bridges|bridges]] experience deterioration when boats crash into the foundations or lower parts of the [[Masonry Bridge|Arches]].  Over time, [[Bridges|bridges]] suffer a certain degree of decay and [[Bridge Maintenance|bridge maintenance]] becomes necessary to keep them fully functional.&lt;br /&gt;
&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Bridges]]&lt;br /&gt;
*[[Bridge Wall]]&lt;br /&gt;
*[[Bridge Maintenance]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia article about bridge structure: http://en.wikipedia.org/wiki/Bridge&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64551</id>
		<title>Bridge</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64551"/>
		<updated>2014-06-16T16:41:56Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Venetian Bridge.jpg|275px|thumb|right|A Venetian Bridge]]&lt;br /&gt;
&#039;&#039;This article contains information about a typical Venetian bridge.&#039;&#039; {{For|a list of bridges|bridges}}&lt;br /&gt;
A Venetian bridge (&#039;&#039;ponte&#039;&#039; in Italian) is generally composed of an [[Masonry Bridge#Archways|arch]], a [[Bridge Wall|bridge wall]], and [[Bridge Step|steps]]. Within Venice, a bridge chiefly serves two primary purposes: pedestrian and cargo [[Transportation|transportation]] as well as a carrier and passageway for [[Utilities|utilities]] such as water and electricity. &amp;lt;ref&amp;gt;Gianpietro Zucchetta, &#039;&#039;Venezia, ponte per ponte&#039;&#039; (Verlag Stamperia di Venezia, 1992)&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
Venetian [[Bridges]] fall into 3 different categories based on the materials that are used in its construction:&lt;br /&gt;
*[[Masonry Bridge]] - the most common type, found all over the city. The most famous example is the [[Rialto]].&lt;br /&gt;
*[[Wood Bridge]] - somewhat uncommon, they can still be found dotted throughout parts of Venice. The most famous example is the [[Ponte del&#039;Accademia]].&lt;br /&gt;
*[[Metal Bridge]] - quite rare due to aesthetic incongruity, these bridges have been quite controversial when built by the city.&lt;br /&gt;
&lt;br /&gt;
==Processes Affecting Bridges==&lt;br /&gt;
The high tides and frequent flooding in Venice damage the foundations of the bridge.  &#039;&#039;[[Moto Ondoso]]&#039;&#039;, the Italian phrase for wakes of passing boats, deteriorates the masonry and sometimes breaks off segments of the arch and or plaster.  In addition to the gradual process of &#039;&#039;[[Moto Ondoso]]&#039;&#039; erosion, the constant foot traffic and cargo [[Transportation|transportation]] over time causes wear and tear on the steps and railings.  More rarely (but also more violently) the undersides of [[Bridges|bridges]] experience deterioration when boats crash into the foundations or lower parts of the [[Masonry Bridge|Arches]].  Over time, [[Bridges|bridges]] suffer a certain degree of decay and [[Bridge Maintenance|bridge maintenance]] becomes necessary to keep them fully functional.&lt;br /&gt;
&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Bridges]]&lt;br /&gt;
*[[Bridge Wall]]&lt;br /&gt;
*[[Bridge Maintenance]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia article about bridge structure: http://en.wikipedia.org/wiki/Bridge&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64550</id>
		<title>Bridge</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64550"/>
		<updated>2014-06-16T16:41:35Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Venetian Bridge.jpg|275px|thumb|right|A Venetian Bridge]]&lt;br /&gt;
&#039;&#039;This article contains information about a typical Venetian bridge.&#039;&#039; &lt;br /&gt;
&#039;&#039;{{For|a list of bridges|bridges}}&#039;&#039;&lt;br /&gt;
A Venetian bridge (&#039;&#039;ponte&#039;&#039; in Italian) is generally composed of an [[Masonry Bridge#Archways|arch]], a [[Bridge Wall|bridge wall]], and [[Bridge Step|steps]]. Within Venice, a bridge chiefly serves two primary purposes: pedestrian and cargo [[Transportation|transportation]] as well as a carrier and passageway for [[Utilities|utilities]] such as water and electricity. &amp;lt;ref&amp;gt;Gianpietro Zucchetta, &#039;&#039;Venezia, ponte per ponte&#039;&#039; (Verlag Stamperia di Venezia, 1992)&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
Venetian [[Bridges]] fall into 3 different categories based on the materials that are used in its construction:&lt;br /&gt;
*[[Masonry Bridge]] - the most common type, found all over the city. The most famous example is the [[Rialto]].&lt;br /&gt;
*[[Wood Bridge]] - somewhat uncommon, they can still be found dotted throughout parts of Venice. The most famous example is the [[Ponte del&#039;Accademia]].&lt;br /&gt;
*[[Metal Bridge]] - quite rare due to aesthetic incongruity, these bridges have been quite controversial when built by the city.&lt;br /&gt;
&lt;br /&gt;
==Processes Affecting Bridges==&lt;br /&gt;
The high tides and frequent flooding in Venice damage the foundations of the bridge.  &#039;&#039;[[Moto Ondoso]]&#039;&#039;, the Italian phrase for wakes of passing boats, deteriorates the masonry and sometimes breaks off segments of the arch and or plaster.  In addition to the gradual process of &#039;&#039;[[Moto Ondoso]]&#039;&#039; erosion, the constant foot traffic and cargo [[Transportation|transportation]] over time causes wear and tear on the steps and railings.  More rarely (but also more violently) the undersides of [[Bridges|bridges]] experience deterioration when boats crash into the foundations or lower parts of the [[Masonry Bridge|Arches]].  Over time, [[Bridges|bridges]] suffer a certain degree of decay and [[Bridge Maintenance|bridge maintenance]] becomes necessary to keep them fully functional.&lt;br /&gt;
&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Bridges]]&lt;br /&gt;
*[[Bridge Wall]]&lt;br /&gt;
*[[Bridge Maintenance]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia article about bridge structure: http://en.wikipedia.org/wiki/Bridge&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64549</id>
		<title>Bridge</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge&amp;diff=64549"/>
		<updated>2014-06-16T16:41:17Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Venetian Bridge.jpg|275px|thumb|right|A Venetian Bridge]]&lt;br /&gt;
&#039;&#039;This article contains information about a typical Venetian bridge. {{For|a list of bridges|bridges}}&#039;&#039;&lt;br /&gt;
A Venetian bridge (&#039;&#039;ponte&#039;&#039; in Italian) is generally composed of an [[Masonry Bridge#Archways|arch]], a [[Bridge Wall|bridge wall]], and [[Bridge Step|steps]]. Within Venice, a bridge chiefly serves two primary purposes: pedestrian and cargo [[Transportation|transportation]] as well as a carrier and passageway for [[Utilities|utilities]] such as water and electricity. &amp;lt;ref&amp;gt;Gianpietro Zucchetta, &#039;&#039;Venezia, ponte per ponte&#039;&#039; (Verlag Stamperia di Venezia, 1992)&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
Venetian [[Bridges]] fall into 3 different categories based on the materials that are used in its construction:&lt;br /&gt;
*[[Masonry Bridge]] - the most common type, found all over the city. The most famous example is the [[Rialto]].&lt;br /&gt;
*[[Wood Bridge]] - somewhat uncommon, they can still be found dotted throughout parts of Venice. The most famous example is the [[Ponte del&#039;Accademia]].&lt;br /&gt;
*[[Metal Bridge]] - quite rare due to aesthetic incongruity, these bridges have been quite controversial when built by the city.&lt;br /&gt;
&lt;br /&gt;
==Processes Affecting Bridges==&lt;br /&gt;
The high tides and frequent flooding in Venice damage the foundations of the bridge.  &#039;&#039;[[Moto Ondoso]]&#039;&#039;, the Italian phrase for wakes of passing boats, deteriorates the masonry and sometimes breaks off segments of the arch and or plaster.  In addition to the gradual process of &#039;&#039;[[Moto Ondoso]]&#039;&#039; erosion, the constant foot traffic and cargo [[Transportation|transportation]] over time causes wear and tear on the steps and railings.  More rarely (but also more violently) the undersides of [[Bridges|bridges]] experience deterioration when boats crash into the foundations or lower parts of the [[Masonry Bridge|Arches]].  Over time, [[Bridges|bridges]] suffer a certain degree of decay and [[Bridge Maintenance|bridge maintenance]] becomes necessary to keep them fully functional.&lt;br /&gt;
&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Bridges]]&lt;br /&gt;
*[[Bridge Wall]]&lt;br /&gt;
*[[Bridge Maintenance]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia article about bridge structure: http://en.wikipedia.org/wiki/Bridge&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge_Parapet&amp;diff=64548</id>
		<title>Bridge Parapet</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge_Parapet&amp;diff=64548"/>
		<updated>2014-06-16T16:40:55Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Bridge walls&#039;&#039;&#039; are built on the &#039;&#039;muro andatore&#039;&#039; component of the bridge framework. In both the [[wood bridge]] and [[metal bridge]] designs, the bridge walls resemble [[handrails]] found along the [[canals]]. A [[masonry bridge]], however, may have one of two bridge walls.&lt;br /&gt;
&lt;br /&gt;
== Masonry bridge wall ==&lt;br /&gt;
[[File:Bridge_wall_brick.jpg|right|thumb|250 px|Bridge wall composed of brick]]The masonry bridge wall is composed of brick and is built upon the &#039;&#039;muro andatore&#039;&#039; component of a [[bridge]].  The wall is mostly brick however the last layer is a run of [[istria stone]].  The brick and stones are jointed together using [[mortar]] and the [[istria stone]] joints are similar to [[Listolina|listolina joints]].&amp;lt;ref&amp;gt; Ing. Michele Regini. Insula SpA, Dec 2011 &amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Rail bridge wall == &lt;br /&gt;
[[File:Bridge_wall_rail.jpg|right|thumb|250 px|Bridge wall constructed of a metal fence]]Bridge walls can also be simple railed fences.&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.  These fences are almost always constructed of metal struts in different designs.  Unlike the masonry bridge walls, these rails are built on the &#039;&#039;armilla&#039;&#039; component of a [[bridge]].&amp;lt;ref&amp;gt; Ing. Michele Regini. Insula SpA, Dec 2011 &amp;lt;/ref&amp;gt;  Much like a [[canal wall]], the rails are connected by &#039;&#039;[[colonnina]]&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Bridge]]&lt;br /&gt;
*[[Bridge Step]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bridge_Parapet&amp;diff=64547</id>
		<title>Bridge Parapet</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bridge_Parapet&amp;diff=64547"/>
		<updated>2014-06-16T16:40:03Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Bridge walls&#039;&#039;&#039; are built on the &#039;&#039;muro andatore&#039;&#039; component of the bridge framework. In both the [[wood bridge]] and [[metal bridge]] designs, the bridge walls resemble [[handrails]] found along the [[canals]]. A [[masonry bridge]], however, may have one of two bridge walls.&lt;br /&gt;
&lt;br /&gt;
== Masonry bridge wall ==&lt;br /&gt;
[[File:Bridge_wall_brick.jpg|right|thumb|250 px|bridge wall composed of brick]]The masonry bridge wall is composed of brick and is built upon the &#039;&#039;muro andatore&#039;&#039; component of a [[bridge]].  The wall is mostly brick however the last layer is a run of [[istria stone]].  The brick and stones are jointed together using [[mortar]] and the [[istria stone]] joints are similar to [[Listolina|listolina joints]].&amp;lt;ref&amp;gt; Ing. Michele Regini. Insula SpA, Dec 2011 &amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Rail bridge wall == &lt;br /&gt;
[[File:Bridge_wall_rail.jpg|right|thumb|250 px|bridge wall constructed of a metal fence]]Bridge walls can also be simple railed fences.&amp;lt;ref&amp;gt;The Building Blocks of Venice: Preserving knowledge of a city&#039;s infrastructure and maintenance. Worcester Ma. Worcester Polytechnic Institute.2011 &lt;br /&gt;
[https://sites.google.com/site/venicemaintained/proposal]&lt;br /&gt;
&amp;lt;/ref&amp;gt;.  These fences are almost always constructed of metal struts in different designs.  Unlike the masonry bridge walls, these rails are built on the &#039;&#039;armilla&#039;&#039; component of a [[bridge]].&amp;lt;ref&amp;gt; Ing. Michele Regini. Insula SpA, Dec 2011 &amp;lt;/ref&amp;gt;  Much like a [[canal wall]], the rails are connected by &#039;&#039;[[colonnina]]&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Bridge]]&lt;br /&gt;
*[[Bridge Step]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Brick&amp;diff=64546</id>
		<title>Brick</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Brick&amp;diff=64546"/>
		<updated>2014-06-16T16:24:07Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Brick.jpg|right|thumb|300 px|A brick wall in Venice]] Bricks where the first material used to pave the early walkways of Venice. The first [[streets]] where paved with Venetian bricks in 1264 and were refereed to as &#039;&#039;[[salizada]]&#039;&#039;.&amp;lt;ref&amp;gt;G. Tassini, &#039;&#039;Curiosita Venezia&#039;&#039;, (6th edition, 1931)&amp;lt;/ref&amp;gt; Bricks don&#039;t simply serve as masonry in Venice but also serve as a base for all construction measurements. When constructing a [[canal wall]], [[bridge]], or any other structure, dimensions are based on the size of a standard brick.  &lt;br /&gt;
&lt;br /&gt;
== Dimensions ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
!Length(cm)&lt;br /&gt;
!Width (cm)&lt;br /&gt;
!Height (cm)&lt;br /&gt;
|-&lt;br /&gt;
| Traditional Brick&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Current Brick&lt;br /&gt;
| 26&lt;br /&gt;
| 12.5&lt;br /&gt;
| 5.5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
*[[Street]]&lt;br /&gt;
*[[Street Pavement]]&lt;br /&gt;
*[[Brick Pavement]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bibliography==&lt;br /&gt;
Ing. Michele Regini, Dec 2011&lt;br /&gt;
Ing. Lorenzo Bottazzo, Dec 2011&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Brick English Wikipedia article on bricks]&lt;br /&gt;
*[http://it.wikipedia.org/wiki/Mattone Italian Wikipedia article on bricks]&lt;br /&gt;
&lt;br /&gt;
[[Category:Streets]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bells&amp;diff=64545</id>
		<title>Bells</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bells&amp;diff=64545"/>
		<updated>2014-06-16T16:18:45Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This page is an overview of all the bells in Venice. For a typical bell, see [[Bell]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Venice has 203 &#039;&#039;&#039;bells&#039;&#039;&#039; spread throughout the city.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The beginning of bells dates back to 132 A.D. in China.The idea came from a Chinese philosopher by the name of Chang Heng, who invented the first known earthquake detector.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;For more information about bell history, see our [[Bells#External Links|External Links]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Statistics==&lt;br /&gt;
Venice has 203 bells that have been documented, spread throughout the city. The conclusions made from data collected tell us about the conditions of the bells, what aspects they have in common, and general info such as age, number, and size. By examining the trends for the conditional ratings of bells, it is possible to determine the urgency for renovation. We can also see if this has any relation to the founder or the date of casting of the bells.&lt;br /&gt;
&lt;br /&gt;
===Bell Sizes===&lt;br /&gt;
The largest bell documented is bell 2 of Sant’ Elena with a diameter of 152 cm, and the smallest bell documented is bell 4 of San Nicolò dei Mendicoli with a diameter of 21 cm.&lt;br /&gt;
&lt;br /&gt;
[[File:BellSize.png|500px|center| Size of bells ]]&lt;br /&gt;
&lt;br /&gt;
From the graph above, it can be determined that the most frequent size for the diameter of a bell is from 80 to 99 cm.. Ironically, the shape of the graph resembles a bell curve. The average ratio of diameter to internal bell height is 1.22 cm with a standard deviation of .106 cm. Therefore, the size of the bells may vary, but the shape is similar for all bells in the city.&lt;br /&gt;
&lt;br /&gt;
===Ringing Methods===&lt;br /&gt;
The ringing method is the same for most bells in the city of Venice. Hammer and wheel are the primary types of ringing. However, wheel is most common, as 87% of the bells in Venice are rung by wheel. The second most common, are bells rung by both wheel and hammer, which is 12%.  The graph below gives an idea of the popularity of these ringing mechanisms for the bells of Venice.&lt;br /&gt;
&lt;br /&gt;
[[File:RingingMechanism.png|500px|center| Bell ringing mechanisms ]]&lt;br /&gt;
&lt;br /&gt;
===Bell Condition===&lt;br /&gt;
Because bells are an integral part of the material culture of Venice, it’s important to track the conditions of bells so it is possible to determine when and how much renovation is needed. As discussed in [[Bell]], the materials that they are made from, although durable, are still vulnerable to chipping and cracking, discoloration, and rust. These criteria have been rated on a scale of 0 to 4: 0 meaning there is no need for restoration and 4 meaning that restoration is urgent.&lt;br /&gt;
&lt;br /&gt;
[[File:ConditionOfBells.png|500px|center| Bell condition]]&lt;br /&gt;
&lt;br /&gt;
The majority of the bells measured thus far have had a conditional rating of 1 for both cleanliness and discoloration. This means that there is some, but not a problematic amount. Rust had a slightly higher common rating of 2 which still is not very problematic. The ones that need restoration should have rating of 4 for each category. Luckily, there are 5 or less bells for each of the categories that had ratings of a 4. There seems to be little correlation between the three categories. Where there seems to be a great number of bells with a certain rating for one category, there may only be a few rated the same for a different category. Perhaps, when considering a bell for restoration, one may only have to confront one problem. However, from our data we found some bells with a rating of 4 in all categories, such as those in the bell tower of San Silvestro.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Bell]] &amp;lt;br/&amp;gt;&lt;br /&gt;
*[[Bell Ringing]] &amp;lt;br/&amp;gt;&lt;br /&gt;
*[[Bell Tower]] &amp;lt;br/&amp;gt;&lt;br /&gt;
*[[Bell Towers]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia [http://en.wikipedia.org/wiki/Bell_(instrument) Bell] page&lt;br /&gt;
*[http://cccbr.org.uk/pr/publicity/bellsandbellringing/ UK Central Council of Church Bell Ringers]&lt;br /&gt;
*[http://www.verdin.com/ Verdin Bells &amp;amp; Clocks]&lt;br /&gt;
*AmeriClock Inc., [http://www.usbellco.com/bell-strikers/ Church Bell Ringing &amp;amp; Bell Strikers]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bells&amp;diff=64544</id>
		<title>Bells</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bells&amp;diff=64544"/>
		<updated>2014-06-16T16:18:27Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This page is an overview of all the bells in Venice. For a typical bell, see [[Bell]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Venice has 203 bells spread throughout the city.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The beginning of bells dates back to 132 A.D. in China.The idea came from a Chinese philosopher by the name of Chang Heng, who invented the first known earthquake detector.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;For more information about bell history, see our [[Bells#External Links|External Links]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Statistics==&lt;br /&gt;
Venice has 203 bells that have been documented, spread throughout the city. The conclusions made from data collected tell us about the conditions of the bells, what aspects they have in common, and general info such as age, number, and size. By examining the trends for the conditional ratings of bells, it is possible to determine the urgency for renovation. We can also see if this has any relation to the founder or the date of casting of the bells.&lt;br /&gt;
&lt;br /&gt;
===Bell Sizes===&lt;br /&gt;
The largest bell documented is bell 2 of Sant’ Elena with a diameter of 152 cm, and the smallest bell documented is bell 4 of San Nicolò dei Mendicoli with a diameter of 21 cm.&lt;br /&gt;
&lt;br /&gt;
[[File:BellSize.png|500px|center| Size of bells ]]&lt;br /&gt;
&lt;br /&gt;
From the graph above, it can be determined that the most frequent size for the diameter of a bell is from 80 to 99 cm.. Ironically, the shape of the graph resembles a bell curve. The average ratio of diameter to internal bell height is 1.22 cm with a standard deviation of .106 cm. Therefore, the size of the bells may vary, but the shape is similar for all bells in the city.&lt;br /&gt;
&lt;br /&gt;
===Ringing Methods===&lt;br /&gt;
The ringing method is the same for most bells in the city of Venice. Hammer and wheel are the primary types of ringing. However, wheel is most common, as 87% of the bells in Venice are rung by wheel. The second most common, are bells rung by both wheel and hammer, which is 12%.  The graph below gives an idea of the popularity of these ringing mechanisms for the bells of Venice.&lt;br /&gt;
&lt;br /&gt;
[[File:RingingMechanism.png|500px|center| Bell ringing mechanisms ]]&lt;br /&gt;
&lt;br /&gt;
===Bell Condition===&lt;br /&gt;
Because bells are an integral part of the material culture of Venice, it’s important to track the conditions of bells so it is possible to determine when and how much renovation is needed. As discussed in [[Bell]], the materials that they are made from, although durable, are still vulnerable to chipping and cracking, discoloration, and rust. These criteria have been rated on a scale of 0 to 4: 0 meaning there is no need for restoration and 4 meaning that restoration is urgent.&lt;br /&gt;
&lt;br /&gt;
[[File:ConditionOfBells.png|500px|center| Bell condition]]&lt;br /&gt;
&lt;br /&gt;
The majority of the bells measured thus far have had a conditional rating of 1 for both cleanliness and discoloration. This means that there is some, but not a problematic amount. Rust had a slightly higher common rating of 2 which still is not very problematic. The ones that need restoration should have rating of 4 for each category. Luckily, there are 5 or less bells for each of the categories that had ratings of a 4. There seems to be little correlation between the three categories. Where there seems to be a great number of bells with a certain rating for one category, there may only be a few rated the same for a different category. Perhaps, when considering a bell for restoration, one may only have to confront one problem. However, from our data we found some bells with a rating of 4 in all categories, such as those in the bell tower of San Silvestro.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Bell]] &amp;lt;br/&amp;gt;&lt;br /&gt;
*[[Bell Ringing]] &amp;lt;br/&amp;gt;&lt;br /&gt;
*[[Bell Tower]] &amp;lt;br/&amp;gt;&lt;br /&gt;
*[[Bell Towers]] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia [http://en.wikipedia.org/wiki/Bell_(instrument) Bell] page&lt;br /&gt;
*[http://cccbr.org.uk/pr/publicity/bellsandbellringing/ UK Central Council of Church Bell Ringers]&lt;br /&gt;
*[http://www.verdin.com/ Verdin Bells &amp;amp; Clocks]&lt;br /&gt;
*AmeriClock Inc., [http://www.usbellco.com/bell-strikers/ Church Bell Ringing &amp;amp; Bell Strikers]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Bell_Page_Final&amp;diff=64543</id>
		<title>Template:Bell Page Final</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Bell_Page_Final&amp;diff=64543"/>
		<updated>2014-06-16T16:17:17Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;This bell was first cast in &amp;lt;firebase url=&#039;{{{url}}}/data/first casting&#039; /&amp;gt; by &amp;lt;firebase url=&#039;{{{url}}}/data/Foundry&#039; /&amp;gt; in &amp;lt;firebase url=&#039;{{{url}}}/data/Place of casting&#039; /&amp;gt;. The second casting was in &amp;lt;firebase url=&#039;{{{url}}}/data/Second casting&#039; /&amp;gt;.  It belongs to &amp;lt;firebase url=&#039;{{{url}}}/data/Church name&#039; /&amp;gt; located in &amp;lt;firebase url=&#039;{{{url}}}/data/Sestiere&#039; /&amp;gt;. The bell is rung by &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing method&#039; /&amp;gt;, and the state of the clapper is &amp;lt;firebase url=&#039;{{{url}}}/data/Clapper description&#039; /&amp;gt;.  &amp;lt;firebase url=&#039;{{{url}}}/data/Historic information&#039; /&amp;gt;.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Working&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Working&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label6 = Automatic&lt;br /&gt;
|data6 = &amp;lt;firebase url=&#039;{{{url}}}/data/Automatic&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label7 = Manual&lt;br /&gt;
|data7 = &amp;lt;firebase url=&#039;{{{url}}}/data/Manual&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label8 = Ringing method&lt;br /&gt;
|data8 = &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing method&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Church name&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Church name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label10 = Sestiere&lt;br /&gt;
|data10 = &amp;lt;firebase url=&#039;{{{url}}}/data/Sestiere&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label11 = Diameter (cm)&lt;br /&gt;
|data11 = &amp;lt;firebase url=&#039;{{{url}}}/data/Diameter_cm&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label12 = Height from ground (cm)&lt;br /&gt;
|data12 = &amp;lt;firebase url=&#039;{{{url}}}/data/Height from ground_cm&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Internal height (cm)&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Internal height_cm&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label14 = First casting&lt;br /&gt;
|data14 = &amp;lt;firebase url=&#039;{{{url}}}/data/first casting&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label15 = Foundry&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Foundry&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label16 = Place of casting&lt;br /&gt;
|data16 = &amp;lt;firebase url=&#039;{{{url}}}/data/Place of casting&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label17 = Conservation state&lt;br /&gt;
|data17 = &amp;lt;firebase url=&#039;{{{url}}}/data/Conservation state&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label18 = Cracked side&lt;br /&gt;
|data18 = &amp;lt;firebase url=&#039;{{{url}}}/data/Cracked side&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label19 = Safety cable&lt;br /&gt;
|data19 = &amp;lt;firebase url=&#039;{{{url}}}/data/Safety cable&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
==Crown==&lt;br /&gt;
{|&lt;br /&gt;
| Stock description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Stock description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Decorations===&lt;br /&gt;
{|&lt;br /&gt;
| Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown decoration Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown decoration Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown decoration Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown decoration Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Inscriptions===&lt;br /&gt;
{|&lt;br /&gt;
| Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown inscription Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown inscription Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown inscription Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Crown inscription Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Body==&lt;br /&gt;
===Decorations===&lt;br /&gt;
{|&lt;br /&gt;
| Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body decoration Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body decoration Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body decoration Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body decoration Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Inscriptions===&lt;br /&gt;
{|&lt;br /&gt;
| Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body inscription Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body inscription Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body inscription Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Body inscription Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Lip==&lt;br /&gt;
===Decorations===&lt;br /&gt;
{|&lt;br /&gt;
| Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip decoration Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip decoration Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip decoration Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip decoration Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Inscriptions===&lt;br /&gt;
{|&lt;br /&gt;
| Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip inscription Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip inscription Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip inscription Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lip inscription Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Skidmarks===&lt;br /&gt;
{|&lt;br /&gt;
| Skidmark one Left_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Skidmark one Left_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Skidmark one Right_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Skidmark one Right_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Skidmark one Side: || &amp;lt;firebase url=&#039;{{{url}}}/data/Skidmark one Side&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Skidmark two Left_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Skidmark two Left_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Skidmark two Right_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Skidmark two Right_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Skidmark two Side: || &amp;lt;firebase url=&#039;{{{url}}}/data/Skidmark two Side&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Ringing==&lt;br /&gt;
{|&lt;br /&gt;
| Reason not rung: || &amp;lt;firebase url=&#039;{{{url}}}/data/Reason not rung&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing method: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing method&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belt description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belt description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Chiming frequency: || &amp;lt;firebase url=&#039;{{{url}}}/data/Chiming frequency&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Hammer side: || &amp;lt;firebase url=&#039;{{{url}}}/data/Hammer side&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Swing direction: || &amp;lt;firebase url=&#039;{{{url}}}/data/Swing direction&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Schedule===&lt;br /&gt;
{|&lt;br /&gt;
| Ringing times Friday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Friday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing times Monday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Monday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing times Saturday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Saturday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing times Sunday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Sunday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing times Thursday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Thursday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing times Tuesday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Tuesday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ringing times Wednesday: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ringing times Wednesday&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
===Sound===&lt;br /&gt;
{|&lt;br /&gt;
| Frequency Hz: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frequency Hz&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Musical note: || &amp;lt;firebase url=&#039;{{{url}}}/data/Musical note&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Audio: || &amp;lt;html5media&amp;gt;{{#firebaseraw: {{{url}}}/media/audio/{{#firebaseraw:{{{url}}}/data/Bells Audio Final}}/url }}&amp;lt;/html5media&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
==Photos==&lt;br /&gt;
{|&lt;br /&gt;
| BellCode_B: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_B&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_B_dec: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_B_dec&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_F: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_F&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_F_dec: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_F_dec&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_I: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_I&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_L: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_L&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_L_dec: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_L_dec&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_R: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_R&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BellCode_R_dec: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_R_dec&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Bell_B_Bdec_F_Fdec_I_L_Ldec_R: || &amp;lt;firebase url=&#039;{{{url}}}/data/Bell_B_Bdec_F_Fdec_I_L_Ldec_R&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Bell_B_Bdec_F_Fdec_I_L_Ldec_R_Rdec: || &amp;lt;firebase url=&#039;{{{url}}}/data/Bell_B_Bdec_F_Fdec_I_L_Ldec_R_Rdec&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Bellcode_R: || &amp;lt;firebase url=&#039;{{{url}}}/data/Bellcode_R&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Location==&lt;br /&gt;
{|&lt;br /&gt;
| BellCode_floorplan: || &amp;lt;firebase url=&#039;{{{url}}}/data/BellCode_floorplan&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Bell Page Final]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bell_towers&amp;diff=64542</id>
		<title>Bell towers</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bell_towers&amp;diff=64542"/>
		<updated>2014-06-16T16:16:31Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Bell Towers&lt;br /&gt;
|image= [[File:Bell_Tower_Map.png|300px| Bell tower map ]]&lt;br /&gt;
|total number=107}}&lt;br /&gt;
&#039;&#039;This page is an overview of all the bell towers in Venice. For a typical bell tower, see [[Bell Tower]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There are a total of 107 bell towers in the islands of the Venetian Lagoon.  These towers contain anywhere from 0-9 [[Bells]].  There are different styles of bell towers throughout Venice, mainly dependent on the time periods in which they were constructed.  A bell tower is typically named based on the church_LINK it is associated with.&lt;br /&gt;
&lt;br /&gt;
==Statistics==&lt;br /&gt;
Since 1992, the Venice Project Center has collected data on 41 of the 110 bell towers in Venice. While each tower does not have a complete set of data, several fields are almost if not completely filled.&lt;br /&gt;
&lt;br /&gt;
===Sestiere===&lt;br /&gt;
[[File:PercentageOfBellTowersInEachSestiere.png|thumb||right|Towers by Sestiere]]&lt;br /&gt;
Castello is the sestiere with the most bell towers at 18, while Burano, with only one tower, has the least. Technically speaking, there are several islands that have no bell tower at all, but of the islands that have bell towers, Burano has the least.  Below is a graph showing the percentage of bell towers in each sestiere.&lt;br /&gt;
&lt;br /&gt;
As would be expected, the highest number of bell towers can be found on the main islands of Venice, particularly in Castello, Cannaregio, and Dorsuduro. The sestiere of Giudecca and Murano have almost as many bell towers as the main island districts of San Polo and Santa Croce. As is expected, the outlying islands have the lowest number of bell towers.  Presumably the areas with a higher concentration of churches are in the areas with a higher population density.&lt;br /&gt;
&lt;br /&gt;
===Height===&lt;br /&gt;
[[File:HeightsOfTowers.png|thumb||right|Heights of towers]]&lt;br /&gt;
The shortest tower, Santa Eufemia, is only 10m tall. The tallest tower is San Marco, at a whopping 98m in height. Below is a graph of the various tower heights.&lt;br /&gt;
&lt;br /&gt;
The majority of towers are between 40 and 70 meters tall. For a bell tower this makes sense because the ultimate goal is to be able to hear the bells from some distance away. Between 0 and 40 meters the sound would get obstructed by surrounding buildings and wouldn’t travel very far. However, go too high and the sound has farther to travel and will dissipate considerably before reaching the ground.&lt;br /&gt;
&lt;br /&gt;
===Bells===&lt;br /&gt;
[[File:NumberOfBellsPerTower.png|thumb|right|Bells per Tower]]&lt;br /&gt;
The tower of San Giorgio di Maggiore has 9 bells, the most in the city. With only two bells, Santa Maria di Nazateth Scalzi has the least. Once again, there are towers with no bells, but those are not included in the count. A graph with the number of bells in each tower is below.&lt;br /&gt;
&lt;br /&gt;
Interestingly enough, the number of bells per tower forms an approximate bell curve peaking at 4. The reason for that is most likely musical. Three notes create a chord. In most cases, changing only one note in the chord can produce an entirely different sound. While three bells can produce one chord, having four means the tower can ring four different chords by changing which bell is silent. Another possibility is the size and shape of the belfry. Many of the towers have square belfries. Bell hangings are large and cumbersome, so having more than one per side may not be possible in some cases. &amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;For more facts about bells, see [[Bells]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Map of Bell Towers==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;display_map height=600 zoom=14 centre=45.440155,12.345403&amp;gt;&lt;br /&gt;
45.4323566,12.3188206|[[Bell Tower of San Angelo Raffaele]]&lt;br /&gt;
45.43501243,12.3239859|[[Bell Tower of Santa Margherita]]&lt;br /&gt;
45.4423664,12.3774978|[[Bell Tower of Sant&#039;Erosia]]&lt;br /&gt;
45.4280143,12.3809652|[[Bell Tower of San Nicolò del Lido]]&lt;br /&gt;
45.4980919,12.4196786|[[Bell Tower of Santa Maria Assunta di Torcello]]&lt;br /&gt;
45.4340354,12.3390460|[[Bell Tower of Basilica di San Marco]]&lt;br /&gt;
45.4396126,12.3392768|[[Bell Tower of Santa Maria dei Miracoli]]&lt;br /&gt;
45.4294827,12.3438114|[[Bell Tower of San Giorgio Maggiore in Isola]]&lt;br /&gt;
45.4171964,12.3690657|[[Bell Tower of Santa Maria Elisabetta]]&lt;br /&gt;
45.4319685,12.3244826|[[Bell Tower of Eremite di San Giuseppe]]&lt;br /&gt;
45.4270065,12.3391636|[[Bell Tower of Santa Maria della Presentazione]]&lt;br /&gt;
45.4333027,12.3319441|[[Bell Tower of Santo Stefano di Murano]]&lt;br /&gt;
45.4329587,12.3361009|[[Bell Tower of San Moise&#039; Profeta]]&lt;br /&gt;
45.4434603,12.3392431|[[Bell Tower of Santa Maria Assunta dei Gesuiti]] &lt;br /&gt;
45.4342538,12.3589599|[[Bell Tower of San Pietro]]&lt;br /&gt;
45.4344731,12.3433531|[[Bell Tower of San Zaccaria]]&lt;br /&gt;
45.4356841,12.3324753|[[Bell Tower of San Benedetto]]&lt;br /&gt;
45.4586108,12.3602375|[[Bell Tower of Torre dei Baini]]&lt;br /&gt;
45.4376485,12.3363666|[[Bell Tower of San Bartolomeo]]&lt;br /&gt;
45.4583877,12.3486466|[[Bell Tower of Santa Maria degli Angeli]]&lt;br /&gt;
45.4375508,12.3331982|[[Bell Tower of San Silvestro]]&lt;br /&gt;
45.4357351,12.3248917|[[Bell Tower of San Pantaleone]]&lt;br /&gt;
45.4491356,12.3470493|[[Bell Tower of San Michele]]&lt;br /&gt;
45.4403225,12.3273252|[[Bell Tower of San Giacomo dell&#039;Orio]]&lt;br /&gt;
45.4254298,12.3230490|[[Bell Tower of Santi Cosmo e Damiano]]&lt;br /&gt;
45.43237785,12.31566479|[[Bell Tower of San Nicolo dei Mendicoli]]&lt;br /&gt;
45.4839266,12.4060073|[[Bell Tower of Santa Caterina di Mazzorbo]]&lt;br /&gt;
45.4341933,12.34485933|[[Bell Tower of Santa Maria della Visitazione]]&lt;br /&gt;
45.4552157,12.3523294|[[Bell Tower of San Pietro Martire]]&lt;br /&gt;
45.4370433,12.3250271|[[Bell Tower of San Rocco]]&lt;br /&gt;
45.4323835,12.4104414|[[Bell Tower of Sant&#039;Erasmo]]&lt;br /&gt;
45.4335523,12.3281144|[[Bell Tower of San Samuele Profeta]]&lt;br /&gt;
45.4433516,12.3365896|[[Bell Tower of Santa Caterina]]&lt;br /&gt;
45.43511718,12.31714777|[[Bell Tower of Santa Maria Maggiore]]&lt;br /&gt;
45.43529914,12.3445328|[[Bell Tower of San Giorgio dei Greci]]&lt;br /&gt;
45.44116934,12.34293069|[[Bell Tower of San Lazzaro dei Mendicanti]]&lt;br /&gt;
45.4383174,12.3159849|[[Bell Tower of Sant&#039;Andrea Apostolo]]&lt;br /&gt;
45.2826964,12.3027006|[[Bell Tower of Sant&#039;Antonino]]&lt;br /&gt;
45.4409967,12.3349043|[[Bell Tower of Santa Sophia]]&lt;br /&gt;
45.43992825,12.33027466|[[Bell Tower of Santa Maria Mater Domini]]&lt;br /&gt;
45.4381825,12.3486423|[[Bell Tower of San Francesco de la Vigna]]&lt;br /&gt;
45.4418780,12.3332981|[[Bell Tower of S. Felice]]&lt;br /&gt;
45.432589,12.3542966|[[Tower of San Francesco di Paula]]&lt;br /&gt;
45.4371679,12.3407730|[[Bell Tower of Santa Maria Formosa]]&lt;br /&gt;
45.4474585,12.3293570|[[Bell Tower of S. Alvise]]&lt;br /&gt;
45.4247764,12.3324751|[[Bell Tower of Santissimo Redentore]]&lt;br /&gt;
45.3175159,12.3162271|[[Bell Tower of San Paolo Apostolo]]&lt;br /&gt;
45.4355655,12.3377276|[[Bell Tower of Santa Croce degli Armeni]]&lt;br /&gt;
45.4398159,12.3324059|[[Bell Tower of San Cassiano]]&lt;br /&gt;
45.4330995,12.3160925|[[Bell Tower of Santa Teresa]]&lt;br /&gt;
45.4382155,12.3261180|[[Bell Tower of San Giovanni Evangelista]]&lt;br /&gt;
45.4429493,12.3324341|[[Bell Tower of Santa Fosca]]&lt;br /&gt;
45.4332595,12.3256554|[[Bell Tower of San Barnaba]]&lt;br /&gt;
45.4376376,12.3222354|[[Bell Tower of San Nicolò da Tolentino]]&lt;br /&gt;
45.4251732,12.3306455|[[Bell Tower of Santissima Trinità]]&lt;br /&gt;
45.4322898,12.3295463|[[Bell Tower of S. Vitale]]&lt;br /&gt;
45.4440875,12.33515582|[[Bell Tower of Abbazia di Valverde]]&lt;br /&gt;
45.4416413,12.3217913|[[Bell Tower of Santa Maria di Nazareth]]&lt;br /&gt;
45.4404149,12.3365296|[[Bell Tower of S. Apostoli]]&lt;br /&gt;
45.4273187,12.3657937|[[Bell Tower of S. Elena]]&lt;br /&gt;
45.4380458,12.3323134|[[Bell Tower of Sant&#039;Aponallinare]]&lt;br /&gt;
45.43922864,12.3445328|[[Bell Tower of San Giovanni Crisostomo]]&lt;br /&gt;
45.4364099,12.3366913|[[Bell Tower of Ss. Salvatore]]&lt;br /&gt;
45.4303681,12.3346371|[[Bell Tower of Santa Maria della Salute]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/display_map&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Bell Tower]] &amp;lt;br /&amp;gt;&lt;br /&gt;
*[[Bells]]  &amp;lt;br /&amp;gt;&lt;br /&gt;
*[[Bell]] &amp;lt;br /&amp;gt;&lt;br /&gt;
*[[Bell Ringing]] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Navbox &lt;br /&gt;
|name = Bell Tower Page Final navbox&lt;br /&gt;
|title = Bell Towers of Venice&lt;br /&gt;
&lt;br /&gt;
|group1 = Bell Towers&lt;br /&gt;
|list1 = [[Bell Tower of San Angelo Raffaele | Bell Tower of San Angelo Raffaele]]{{w}}[[Bell Tower of Santi Gervasio e Protasio | Bell Tower of Santi Gervasio e Protasio]]{{w}}[[Bell Tower of Santa Margherita | Bell Tower of Santa Margherita ]]{{w}}[[Bell Tower of Sant&#039;Erosia | Bell Tower of Sant&#039;Erosia]]{{w}}[[Bell Tower of San Nicolò del Lido | Bell Tower of San Nicolò del Lido]]{{w}}[[Bell Tower of Santa Maria Assunta di Torcello | Bell Tower of Santa Maria Assunta di Torcello]]{{w}}[[Bell Tower of Basilica di San Marco | Bell Tower of Basilica di San Marco]]{{w}}[[Bell Tower of Santa Maria dei Miracoli | Bell Tower of Santa Maria dei Miracoli]]{{w}}[[Bell Tower of Ognissanti di Pellestrina | Bell Tower of Ognissanti di Pellestrina]]{{w}}[[Bell Tower of San Giorgio Maggiore in Isola | Bell Tower of San Giorgio Maggiore in Isola ]]{{w}}[[Bell Tower of San Canciano | Bell Tower of San Canciano]]{{w}}[[Bell Tower of Santa Maria Elisabetta | Bell Tower of Santa Maria Elisabetta]]{{w}}[[Bell Tower of Eremite di San Giuseppe | Bell Tower of Eremite di San Giuseppe]]{{w}}[[Bell Tower of Santa Maria della Presentazione | Bell Tower of Santa Maria della Presentazione]]{{w}}[[Bell Tower of Santo Stefano di Murano | Bell Tower of Santo Stefano di Murano]]{{w}}[[Bell Tower of Santa Eufemia | Bell Tower of Santa Eufemia]]{{w}}[[Bell Tower of San Moise&#039; Profeta | Bell Tower of San Moise&#039; Profeta]]{{w}}[[Bell Tower of San Pietro Apostolo | Bell Tower of San Pietro Apostolo]]{{w}}[[Bell Tower of Santa Maria Assunta dei Gesuiti | Bell Tower of Santa Maria Assunta dei Gesuiti]]{{w}}[[Bell Tower of San Pietro| Bell Tower of San Pietro]]{{w}}[[Bell Tower of Santi Ermagora e Fortunato | Bell Tower of Santi Ermagora e Fortunato]]{{w}}[[Bell Tower of San Zaccaria | Bell Tower of San Zaccaria]]{{w}}[[Bell Tower of San Benedetto | Bell Tower of San Benedetto]]{{w}}[[Bell Tower of Torre dei Baini | Bell Tower of Torre dei Baini]]{{w}}[[Bell Tower of San Bartolomeo | Bell Tower of San Bartolomeo]]{{w}}[[Bell Tower of Santa Maria degli Angeli | Bell Tower of Santa Maria degli Angeli]]{{w}}[[Bell Tower of San Silvestro | Bell Tower of San Silvestro]]{{w}}[[Bell Tower of San Pantaleone | Bell Tower of San Pantaleone]]{{w}}[[Bell Tower of San Michele | Bell Tower of San Michele]]{{w}}[[Bell Tower of Ognissanti | Bell Tower of Ognissanti]]{{w}}[[Bell Tower of San Giacomo dell&#039;Orio | Bell Tower of San Giacomo dell&#039;Orio]]{{w}}[[Bell Tower of Sant&#039;Eustachio | Bell Tower of Sant&#039;Eustachio]]{{w}}[[Bell Tower of Santi Cosmo e Damiano | Bell Tower of Santi Cosmo e Damiano]]{{w}}[[Bell Tower of San Nicolo dei Mendicoli | Bell Tower of San Nicolo dei Mendicoli]]{{w}}[[Bell Tower of Santa Caterina di Mazzorbo | Bell Tower of Santa Caterina di Mazzorbo]]{{w}}[[Bell Tower of San Marciliano | Bell Tower of San Marciliano]]{{w}}[[Bell Tower of Santa Maria della Visitazione | Bell Tower of Santa Maria della Visitazione ]]{{w}}[[Bell Tower of San Pietro Martire | Bell Tower of San Pietro Martire]]{{w}}[[Bell Tower of San Rocco | Bell Tower of San Rocco ]]{{w}}[[Bell Tower of San Leone IX pp. | Bell Tower of San Leone IX pp.]]{{w}}[[Bell Tower of Sant&#039;Erasmo | Bell Tower of Sant&#039;Erasmo]]{{w}}[[Bell Tower of Sant&#039;Angelo | Bell Tower of Sant&#039;Angelo]]{{w}}[[Bell Tower of Santa Maria Gloriosa dei Frari | Bell Tower of Santa Maria Gloriosa dei Frari]]{{w}}[[Bell Tower of San Samuele Profeta | Bell Tower of San Samuele Profeta]]{{w}}[[Bell Tower of Sant&#039;Ubaldo | Bell Tower of Sant&#039;Ubaldo]]{{w}}[[Bell Tower of San Geremia e Lucia | Bell Tower of San Geremia e Lucia]]{{w}}[[Bell Tower of S. Cristoforo | Bell Tower of S. Cristoforo]]{{w}}[[Bell Tower of San Giovanni di Rialto | Bell Tower of San Giovanni di Rialto]]{{w}}[[Bell Tower of Santa Caterina | Bell Tower of Santa Caterina]]{{w}}[[Bell Tower of San Sebastiano | Bell Tower of San Sebastiano]]{{w}}[[Bell Tower of Santa Maria Maggiore | Bell Tower of Santa Maria Maggiore]]{{w}}[[Bell Tower of San Giobbe e Barnardino | Bell Tower of San Giobbe e Barnardino]]{{w}}[[Bell Tower of San Martino di Castello | Bell Tower of San Martino di Castello]]{{w}}[[Bell Tower of Santo Stefano Profeta | Bell Tower of Santo Stefano Profeta ]]{{w}}[[Bell Tower of San Giorgio dei Greci | Bell Tower of San Giorgio dei Greci]]{{w}}[[Bell Tower of San Giovanni Decollato | Bell Tower of San Giovanni Decollato]]{{w}}[[Bell Tower of San Lazzaro dei Mendicanti | Bell Tower of San Lazzaro dei Mendicanti]]{{w}}[[Bell Tower of Santa Maria della Consolazione | Bell Tower of Santa Maria della Consolazione]]{{w}}[[Bell Tower of Sant&#039;Andrea Apostolo | Bell Tower of Sant&#039;Andrea Apostolo]]{{w}}[[Bell Tower of San Giovanni Nuovo | Bell Tower of San Giovanni Nuovo]]{{w}}[[Bell Tower of Sant&#039;Antonino | Bell Tower of Sant&#039;Antonino]]{{w}}[[Bell Tower of Santa Sophia | Bell Tower of Santa Sophia]]{{w}}[[Bell Tower of Santa Maria Mater Domini | Bell Tower of Santa Maria Mater Domini]]{{w}}[[Bell Tower of Malamocco | Bell Tower of Malamocco]]{{w}}[[Bell Tower of San Francesco de la Vigna | Bell Tower of San Francesco de la Vigna]]{{w}}[[Bell Tower of S. Felice | Bell Tower of S. Felice]]{{w}}[[Bell Tower of San Francesco di Paula | Bell Tower of San Francesco di Paula]]{{w}}[[Bell Tower of Santi Simone e Giuda | Bell Tower of Santi Simone e Giuda]]{{w}}[[Bell Tower of San Giuliano  | Bell Tower of San Giuliano ]]{{w}}[[Bell Tower of Santa Maria Formosa | Bell Tower of Santa Maria Formosa]]{{w}}[[Bell Tower of S. Alvise | Bell Tower of S. Alvise]]{{w}}[[Bell Tower of Santa Maria Assunta del Carmelo | Bell Tower of Santa Maria Assunta del Carmelo]]{{w}}[[Bell Tower of Santissimo Redentore | Bell Tower of Santissimo Redentore ]]{{w}}[[Bell Tower of San Paolo Apostolo | Bell Tower of San Paolo Apostolo]]{{w}}[[Bell Tower of Santa Croce degli Armeni | Bell Tower of Santa Croce degli Armeni]]{{w}}[[Bell Tower of San Cassiano | Bell Tower of San Cassiano]]{{w}}[[Bell Tower of Santa Teresa | Bell Tower of Santa Teresa]]{{w}}[[Bell Tower of San Giovanni Evangelista | Bell Tower of San Giovanni Evangelista]]{{w}}[[Bell Tower of San Giuseppe | Bell Tower of San Giuseppe]]{{w}}[[Bell Tower of Santa Fosca | Bell Tower of Santa Fosca]]{{w}}[[Bell Tower of S. Maria e Donati | Bell Tower of S. Maria e Donati]]{{w}}[[Bell Tower of San Barnaba | Bell Tower of San Barnaba]]{{w}}[[Bell Tower of San Nicolò da Tolentino | Bell Tower of San Nicolò da Tolentino]]{{w}}[[Bell Tower of Santissima Trinità | Bell Tower of Santissima Trinità]]{{w}}[[Bell Tower of Sant&#039;Antonio                             | Bell Tower of Sant&#039;Antonio]]{{w}}[[Bell Tower of S. Bonaventura Capuccine | Bell Tower of S. Bonaventura Capuccine]]{{w}}[[Bell Tower of S. Vitale | Bell Tower of S. Vitale]]{{w}}[[Bell Tower of Santa Maria di Nazareth  | Bell Tower of Santa Maria di Nazareth ]]{{w}}[[Bell Tower of Abbazia di Valverde | Bell Tower of Abbazia di Valverde]]{{w}}[[Bell Tower of Santa Maria del Rosario | Bell Tower of Santa Maria del Rosario]]{{w}}[[Bell Tower of S. Apostoli | Bell Tower of S. Apostoli]]{{w}}[[Bell Tower of San Luva ev. | Bell Tower of San Luva ev.]]{{w}}[[Bell Tower of S. Elena | Bell Tower of S. Elena]]{{w}}[[Bell Tower of San Simeone Profeta | Bell Tower of San Simeone Profeta]]{{w}}[[Bell Tower of Sant&#039;Aponallinare | Bell Tower of Sant&#039;Aponallinare]]{{w}}[[Bell Tower of S. Martino Vescovo | Bell Tower of S. Martino Vescovo]]{{w}}[[Bell Tower of San Giovanni Crisostomo | Bell Tower of San Giovanni Crisostomo]]{{w}}[[Bell Tower of Ss. Salvatore | Bell Tower of Ss. Salvatore]]{{w}}[[Bell Tower of Santa Maria della Salute | Bell Tower of Santa Maria della Salute]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*Wikipedia [http://en.wikipedia.org/wiki/Bell_tower Bell tower] page&lt;br /&gt;
*[http://whc.unesco.org/ UNESCO]&lt;br /&gt;
*[http://www.churchesofvenice.co.uk/ The Churches of Venice], with Bell Tower information on each church page&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Bell_Tower_Page_Final&amp;diff=64541</id>
		<title>Template:Bell Tower Page Final</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Bell_Tower_Page_Final&amp;diff=64541"/>
		<updated>2014-06-16T16:15:42Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
&amp;lt;!--|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_tower}}/thumb}}&lt;br /&gt;
&lt;br /&gt;
|header3 = Basic Information&lt;br /&gt;
&lt;br /&gt;
|label19 = Construction year&lt;br /&gt;
|data19 = &amp;lt;firebase url=&#039;{{{url}}}/data/Construction year&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label21 = Church name&lt;br /&gt;
|data21 = {{#firebaseraw:{{{url}}}/data/Church name}} &amp;lt;!-- &amp;lt;firebase url=&#039;{{{url}}}/data/Church name&#039; /&amp;gt; --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label50 = Style&lt;br /&gt;
|data50 = &amp;lt;firebase url=&#039;{{{url}}}/data/Tower style&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label22 = Sestiere&lt;br /&gt;
|data22 = &amp;lt;firebase url=&#039;{{{url}}}/data/Sestiere&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label23 = Proprietor&lt;br /&gt;
|data23 = &amp;lt;firebase url=&#039;{{{url}}}/data/Proprietor&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--|label24 = Public access&lt;br /&gt;
|data24 = &amp;lt;firebase url=&#039;{{{url}}}/data/Public access&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label49 = Architect&lt;br /&gt;
|data49 = &amp;lt;firebase url=&#039;{{{url}}}/data/Architect&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|header50 = Technical Information&lt;br /&gt;
&lt;br /&gt;
|label51 = Tower height (m)&lt;br /&gt;
|data51= &amp;lt;firebase url=&#039;{{{url}}}/data/Tower height_m&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label52= Latitude&lt;br /&gt;
|data52 =  &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label53 = Longitude&lt;br /&gt;
|data53 = &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label54 = Building Material&lt;br /&gt;
|data54 = &amp;lt;firebase url=&#039;{{{url}}}/data/Material&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt; &lt;br /&gt;
The {{#ifeq: {{#firebaseraw:{{{url}}}/data/Common name }} | Null | bell tower | of  &amp;lt;firebase url=&#039;{{{url}}}/data/Common name&#039; /&amp;gt; }} was built {{#ifeq: {{#firebaseraw:{{{url}}}/data/Construction year }} | Null | at an unknown date | in &amp;lt;firebase url=&#039;{{{url}}}/data/Construction year&#039; /&amp;gt; }} by {{#ifeq: {{#firebaseraw:{{{url}}}/data/Architect }} | Null | an unknown architect | the architect &amp;lt;firebase url=&#039;{{{url}}}/data/Architect&#039; /&amp;gt; }} and is {{#ifeq: {{#firebaseraw:{{{url}}}/data/Church name}}. | Null | not affiliated with a church. | affiliated with the {{#firebaseraw:{{{url}}}/data/Church name}}. }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
{|&lt;br /&gt;
|||  {{#if: {{#firebaseraw:{{{url}}}/data/Significant history}} | &amp;lt;firebase url=&#039;{{{url}}}/data/Significant history&#039; /&amp;gt; | The history of this bell tower is unknown}}&lt;br /&gt;
&amp;lt;!--&amp;lt;firebase url=&#039;{{{url}}}/data/Architecture&#039; /&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Significant history&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Architecture: || &amp;lt;firebase url=&#039;{{{url}}}/data/Architecture&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Architect: || &amp;lt;firebase url=&#039;{{{url}}}/data/Architect&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Common name: || &amp;lt;firebase url=&#039;{{{url}}}/data/Common name&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Significant history: || &amp;lt;firebase url=&#039;{{{url}}}/data/Significant history&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Time open 1: || &amp;lt;firebase url=&#039;{{{url}}}/data/Time open 1&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Time open 2: || &amp;lt;firebase url=&#039;{{{url}}}/data/Time open 2&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Tower style: || &amp;lt;firebase url=&#039;{{{url}}}/data/Tower style&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Latitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Longitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}--&amp;gt;&lt;br /&gt;
==Structural Details==&lt;br /&gt;
{|&lt;br /&gt;
| {{#if: {{#firebaseraw: {{{url}}}/data/Architecture}} | &amp;lt;firebase url=&#039;{{{url}}}/data/Architecture&#039; /&amp;gt; | }}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
===Foundation===&lt;br /&gt;
{|&lt;br /&gt;
The information for this section is missing or incomplete.&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
===Shaft===&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
The shaft of the bell tower has {{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Front }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Front&#039; /&amp;gt; }} arches on the front, &lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Left }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Left&#039; /&amp;gt; }} arches on the left, &lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Right }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Right&#039; /&amp;gt; }} arches on the right, {{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Back }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Back&#039; /&amp;gt; }} arches on the back.&lt;br /&gt;
There are {{#ifeq: {{#firebaseraw:{{{url}}}/data/Number of steps }} | Null | an unknown number of | a total of &amp;lt;firebase url=&#039;{{{url}}}/data/Number of steps&#039; /&amp;gt; }} {{#ifeq: {{#firebaseraw:{{{url}}}/data/Number of landings&#039; }} | Null | steps. | steps to the &amp;lt;firebase url=&#039;{{{url}}}/data/Number of landings&#039; /&amp;gt; {{#ifeq: {{#firebaseraw:{{{url}}}/data/Number of landings }} | 1 | landing. | landings.}} }}&lt;br /&gt;
&lt;br /&gt;
===Belfry===&lt;br /&gt;
&amp;lt;div&amp;gt; The belfry is made of {{#ifeq: {{#firebaseraw: {{{url}}}/data/Belfry landing material}} | Null | an unknown material | &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing material&#039; /&amp;gt;}} with its bells supported {{#ifeq: {{#firebaseraw: {{{url}}}/data/Frame material}} | Null | in an unknown fashion. | by &amp;lt;firebase url=&#039;{{{url}}}/data/Frame material&#039; /&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Frame type&#039; /&amp;gt; frames. }} &lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_view_0}}/small}}&lt;br /&gt;
View from the Belfry&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_top}}/thumb}}&lt;br /&gt;
Belfry Exterior&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Arches Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Staircase material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Staircase material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Stairs: || &amp;lt;firebase url=&#039;{{{url}}}/data/Stairs&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of bad steps: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bad steps&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing length_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing length_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame missing screws or bolts: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame missing screws or bolts&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame restoration: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame restoration&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame type: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame type&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICE_view_0: || &amp;lt;firebase url=&#039;{{{url}}}/merged-media-ids/CODICE_view_0&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spire===&lt;br /&gt;
&lt;br /&gt;
{{#if: {{#firebaseraw:{{{url}}}/data/Spire Description }} | &amp;lt;firebase url=&#039;{{{url}}}/data/Spire Description&#039;/&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Cross }} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Cross: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Cross&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Balustrade }} | Null | |&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Balustrade: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Balustrade&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Attic}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Attic: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Attic&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Finial }} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Finial: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Finial&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Finial }} | Yes | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Finial description: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Finial description&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Finial }} | Yes | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Finial type: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Finial type&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Lightning rod}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Lightning rod: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Lightning rod&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Weathervane}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Weathervane: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Weathervane&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Ramp}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Ramp: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Ramp&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--==Renovation and Repair==--&amp;gt;&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Renovation and restoration description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Renovation and restoration description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Renovation and restoration years: || &amp;lt;firebase url=&#039;{{{url}}}/data/Renovation and restoration years&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Repair description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Repair description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Repair year: || &amp;lt;firebase url=&#039;{{{url}}}/data/Repair year&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Back&#039; /&amp;gt;&lt;br /&gt;
-&lt;br /&gt;
| Restoration visible_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration_sides: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration_sides&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of lessene: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of lessene&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inclination calculated: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination calculated&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inclination direction: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination direction&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
==Bells==&lt;br /&gt;
&lt;br /&gt;
{{#if: {{#firebaseraw:{{{url}}}/data/Number of bells}} | &amp;lt;div&amp;gt; There are a total of &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bells&#039; /&amp;gt; bells in the belfry.&amp;lt;/div&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_belfry}}/thumb}}&lt;br /&gt;
Bells&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_floorplan}}/thumb}}&lt;br /&gt;
Floorplan of Bells&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_machine}}/thumb}}&lt;br /&gt;
Mechanism that controls the Bells&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Number of bells: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bells&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICECC_1: || &amp;lt;firebase url=&#039;{{{url}}}/data/CODICECC_1&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICE_floorplan: || &amp;lt;firebase url=&#039;{{{url}}}/data/CODICE_floorplan&#039; /&amp;gt;&lt;br /&gt;
|- --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Technical Information==&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Latitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Longitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Material&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
&amp;lt;!--| Orientation degrees_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Right&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Exterior block width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior block width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Exterior door height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICE_int_landing_ground: || &amp;lt;firebase url=&#039;{{{url}}}/data/CODICE_int_landing_ground&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Interior door depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Interior door depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Interior door height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Interior door height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Interior door width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Interior door width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock mechanism landing: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock mechanism landing&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock side: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock side&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock working: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock working&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Window total number: || &amp;lt;firebase url=&#039;{{{url}}}/data/Window total number&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--|  Number of art pieces_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  Number of art pieces_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  Number of art pieces_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  Number of art pieces_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Right&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
|  Number of decorations: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of decorations&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--|  Number of exterior Inscriptions: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of exterior Inscriptions&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Decoration description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Decoration description&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Exterior block depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior block depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior block height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior block height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Inscription: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inscription&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inscription description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inscription description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Internal decoration description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal decoration description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Internal decoration locations: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal decoration locations&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Internal landing material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal landing material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Internal transcription: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal transcription&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Internal wall material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal wall material&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Landing height to ceiling_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Landing height to ceiling_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Number Exterior inscriptions: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number Exterior inscriptions&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number internal inscriptions: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number internal inscriptions&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of decorations: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of decorations&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of internal decorations: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of internal decorations&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of landings: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of landings&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of steps: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of steps&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Staircase material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Staircase material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Stairs: || &amp;lt;firebase url=&#039;{{{url}}}/data/Stairs&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Number of bad steps: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bad steps&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing length_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing length_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Frame material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame missing screws or bolts: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame missing screws or bolts&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame restoration: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame restoration&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame type: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame type&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cross: || &amp;lt;firebase url=&#039;{{{url}}}/data/Cross&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Balustrade: || &amp;lt;firebase url=&#039;{{{url}}}/data/Balustrade&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Attic: || &amp;lt;firebase url=&#039;{{{url}}}/data/Attic&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Finial: || &amp;lt;firebase url=&#039;{{{url}}}/data/Finial&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Finial description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Finial description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Finial type: || &amp;lt;firebase url=&#039;{{{url}}}/data/Finial type&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Lightning rod: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lightning rod&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Weathervane: || &amp;lt;firebase url=&#039;{{{url}}}/data/Weathervane&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ramp: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ramp&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Barred window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Right&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Number of lessene: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of lessene&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Inclination calculated: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination calculated&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inclination direction: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination direction&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Notes&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICECC_1}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_B}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_F}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_L}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_R}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_skyshot}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_top}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_tower}}/thumb}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_floorplan}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_attic}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_belfry}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_ground}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_machine}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_view_0}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!--|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B}}/thumb}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan_attic}}/thumb}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan_attic_belfry}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan_attic_belfry_ground}}/thumb}}&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
==Map==&lt;br /&gt;
&amp;lt;fb-map height=&#039;300px&#039; list=&#039;https://cityknowledge.firebaseIO.com/groups/Bell Tower Page Final/members&#039; root=&#039;https://cityknowledge.firebaseIO.com/data&#039; highlights=&#039;{{{url}}}/birth_certificate/ckID&#039; tooltip=&#039;/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Bell Tower Page Final]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Navbox &lt;br /&gt;
|name = Bell Tower Page Final navbox&lt;br /&gt;
|title = Bell Towers of Venice&lt;br /&gt;
&lt;br /&gt;
|group1 = Bell Towers&lt;br /&gt;
|list1 = [[Bell Tower of San Angelo Raffaele | Bell Tower of San Angelo Raffaele]]{{w}}[[Bell Tower of Santi Gervasio e Protasio | Bell Tower of Santi Gervasio e Protasio]]{{w}}[[Bell Tower of Santa Margherita | Bell Tower of Santa Margherita ]]{{w}}[[Bell Tower of Sant&#039;Erosia | Bell Tower of Sant&#039;Erosia]]{{w}}[[Bell Tower of San Nicolò del Lido | Bell Tower of San Nicolò del Lido]]{{w}}[[Bell Tower of Santa Maria Assunta di Torcello | Bell Tower of Santa Maria Assunta di Torcello]]{{w}}[[Bell Tower of Basilica di San Marco | Bell Tower of Basilica di San Marco]]{{w}}[[Bell Tower of Santa Maria dei Miracoli | Bell Tower of Santa Maria dei Miracoli]]{{w}}[[Bell Tower of Ognissanti di Pellestrina | Bell Tower of Ognissanti di Pellestrina]]{{w}}[[Bell Tower of San Giorgio Maggiore in Isola | Bell Tower of San Giorgio Maggiore in Isola ]]{{w}}[[Bell Tower of San Canciano | Bell Tower of San Canciano]]{{w}}[[Bell Tower of Santa Maria Elisabetta | Bell Tower of Santa Maria Elisabetta]]{{w}}[[Bell Tower of Eremite di San Giuseppe | Bell Tower of Eremite di San Giuseppe]]{{w}}[[Bell Tower of Santa Maria della Presentazione | Bell Tower of Santa Maria della Presentazione]]{{w}}[[Bell Tower of Santo Stefano di Murano | Bell Tower of Santo Stefano di Murano]]{{w}}[[Bell Tower of Santa Eufemia | Bell Tower of Santa Eufemia]]{{w}}[[Bell Tower of San Moise&#039; Profeta | Bell Tower of San Moise&#039; Profeta]]{{w}}[[Bell Tower of San Pietro Apostolo | Bell Tower of San Pietro Apostolo]]{{w}}[[Bell Tower of Santa Maria Assunta dei Gesuiti | Bell Tower of Santa Maria Assunta dei Gesuiti]]{{w}}[[Bell Tower of San Pietro| Bell Tower of San Pietro]]{{w}}[[Bell Tower of Santi Ermagora e Fortunato | Bell Tower of Santi Ermagora e Fortunato]]{{w}}[[Bell Tower of San Zaccaria | Bell Tower of San Zaccaria]]{{w}}[[Bell Tower of San Benedetto | Bell Tower of San Benedetto]]{{w}}[[Bell Tower of Torre dei Baini | Bell Tower of Torre dei Baini]]{{w}}[[Bell Tower of San Bartolomeo | Bell Tower of San Bartolomeo]]{{w}}[[Bell Tower of Santa Maria degli Angeli | Bell Tower of Santa Maria degli Angeli]]{{w}}[[Bell Tower of San Silvestro | Bell Tower of San Silvestro]]{{w}}[[Bell Tower of San Pantaleone | Bell Tower of San Pantaleone]]{{w}}[[Bell Tower of San Michele | Bell Tower of San Michele]]{{w}}[[Bell Tower of Ognissanti | Bell Tower of Ognissanti]]{{w}}[[Bell Tower of San Giacomo dell&#039;Orio | Bell Tower of San Giacomo dell&#039;Orio]]{{w}}[[Bell Tower of Sant&#039;Eustachio | Bell Tower of Sant&#039;Eustachio]]{{w}}[[Bell Tower of Santi Cosmo e Damiano | Bell Tower of Santi Cosmo e Damiano]]{{w}}[[Bell Tower of San Nicolo dei Mendicoli | Bell Tower of San Nicolo dei Mendicoli]]{{w}}[[Bell Tower of Santa Caterina di Mazzorbo | Bell Tower of Santa Caterina di Mazzorbo]]{{w}}[[Bell Tower of San Marciliano | Bell Tower of San Marciliano]]{{w}}[[Bell Tower of Santa Maria della Visitazione | Bell Tower of Santa Maria della Visitazione ]]{{w}}[[Bell Tower of San Pietro Martire | Bell Tower of San Pietro Martire]]{{w}}[[Bell Tower of San Rocco | Bell Tower of San Rocco ]]{{w}}[[Bell Tower of San Leone IX pp. | Bell Tower of San Leone IX pp.]]{{w}}[[Bell Tower of Sant&#039;Erasmo | Bell Tower of Sant&#039;Erasmo]]{{w}}[[Bell Tower of Sant&#039;Angelo | Bell Tower of Sant&#039;Angelo]]{{w}}[[Bell Tower of Santa Maria Gloriosa dei Frari | Bell Tower of Santa Maria Gloriosa dei Frari]]{{w}}[[Bell Tower of San Samuele Profeta | Bell Tower of San Samuele Profeta]]{{w}}[[Bell Tower of Sant&#039;Ubaldo | Bell Tower of Sant&#039;Ubaldo]]{{w}}[[Bell Tower of San Geremia e Lucia | Bell Tower of San Geremia e Lucia]]{{w}}[[Bell Tower of S. Cristoforo | Bell Tower of S. Cristoforo]]{{w}}[[Bell Tower of San Giovanni di Rialto | Bell Tower of San Giovanni di Rialto]]{{w}}[[Bell Tower of Santa Caterina | Bell Tower of Santa Caterina]]{{w}}[[Bell Tower of San Sebastiano | Bell Tower of San Sebastiano]]{{w}}[[Bell Tower of Santa Maria Maggiore | Bell Tower of Santa Maria Maggiore]]{{w}}[[Bell Tower of San Giobbe e Barnardino | Bell Tower of San Giobbe e Barnardino]]{{w}}[[Bell Tower of San Martino di Castello | Bell Tower of San Martino di Castello]]{{w}}[[Bell Tower of Santo Stefano Profeta | Bell Tower of Santo Stefano Profeta ]]{{w}}[[Bell Tower of San Giorgio dei Greci | Bell Tower of San Giorgio dei Greci]]{{w}}[[Bell Tower of San Giovanni Decollato | Bell Tower of San Giovanni Decollato]]{{w}}[[Bell Tower of San Lazzaro dei Mendicanti | Bell Tower of San Lazzaro dei Mendicanti]]{{w}}[[Bell Tower of Santa Maria della Consolazione | Bell Tower of Santa Maria della Consolazione]]{{w}}[[Bell Tower of Sant&#039;Andrea Apostolo | Bell Tower of Sant&#039;Andrea Apostolo]]{{w}}[[Bell Tower of San Giovanni Nuovo | Bell Tower of San Giovanni Nuovo]]{{w}}[[Bell Tower of Sant&#039;Antonino | Bell Tower of Sant&#039;Antonino]]{{w}}[[Bell Tower of Santa Sophia | Bell Tower of Santa Sophia]]{{w}}[[Bell Tower of Santa Maria Mater Domini | Bell Tower of Santa Maria Mater Domini]]{{w}}[[Bell Tower of Malamocco | Bell Tower of Malamocco]]{{w}}[[Bell Tower of San Francesco de la Vigna | Bell Tower of San Francesco de la Vigna]]{{w}}[[Bell Tower of S. Felice | Bell Tower of S. Felice]]{{w}}[[Bell Tower of San Francesco di Paula | Bell Tower of San Francesco di Paula]]{{w}}[[Bell Tower of Santi Simone e Giuda | Bell Tower of Santi Simone e Giuda]]{{w}}[[Bell Tower of San Giuliano  | Bell Tower of San Giuliano ]]{{w}}[[Bell Tower of Santa Maria Formosa | Bell Tower of Santa Maria Formosa]]{{w}}[[Bell Tower of S. Alvise | Bell Tower of S. Alvise]]{{w}}[[Bell Tower of Santa Maria Assunta del Carmelo | Bell Tower of Santa Maria Assunta del Carmelo]]{{w}}[[Bell Tower of Santissimo Redentore | Bell Tower of Santissimo Redentore ]]{{w}}[[Bell Tower of San Paolo Apostolo | Bell Tower of San Paolo Apostolo]]{{w}}[[Bell Tower of Santa Croce degli Armeni | Bell Tower of Santa Croce degli Armeni]]{{w}}[[Bell Tower of San Cassiano | Bell Tower of San Cassiano]]{{w}}[[Bell Tower of Santa Teresa | Bell Tower of Santa Teresa]]{{w}}[[Bell Tower of San Giovanni Evangelista | Bell Tower of San Giovanni Evangelista]]{{w}}[[Bell Tower of San Giuseppe | Bell Tower of San Giuseppe]]{{w}}[[Bell Tower of Santa Fosca | Bell Tower of Santa Fosca]]{{w}}[[Bell Tower of S. Maria e Donati | Bell Tower of S. Maria e Donati]]{{w}}[[Bell Tower of San Barnaba | Bell Tower of San Barnaba]]{{w}}[[Bell Tower of San Nicolò da Tolentino | Bell Tower of San Nicolò da Tolentino]]{{w}}[[Bell Tower of Santissima Trinità | Bell Tower of Santissima Trinità]]{{w}}[[Bell Tower of Sant&#039;Antonio                             | Bell Tower of Sant&#039;Antonio]]{{w}}[[Bell Tower of S. Bonaventura Capuccine | Bell Tower of S. Bonaventura Capuccine]]{{w}}[[Bell Tower of S. Vitale | Bell Tower of S. Vitale]]{{w}}[[Bell Tower of Santa Maria di Nazareth  | Bell Tower of Santa Maria di Nazareth ]]{{w}}[[Bell Tower of Abbazia di Valverde | Bell Tower of Abbazia di Valverde]]{{w}}[[Bell Tower of Santa Maria del Rosario | Bell Tower of Santa Maria del Rosario]]{{w}}[[Bell Tower of S. Apostoli | Bell Tower of S. Apostoli]]{{w}}[[Bell Tower of San Luva ev. | Bell Tower of San Luva ev.]]{{w}}[[Bell Tower of S. Elena | Bell Tower of S. Elena]]{{w}}[[Bell Tower of San Simeone Profeta | Bell Tower of San Simeone Profeta]]{{w}}[[Bell Tower of Sant&#039;Aponallinare | Bell Tower of Sant&#039;Aponallinare]]{{w}}[[Bell Tower of S. Martino Vescovo | Bell Tower of S. Martino Vescovo]]{{w}}[[Bell Tower of San Giovanni Crisostomo | Bell Tower of San Giovanni Crisostomo]]{{w}}[[Bell Tower of Ss. Salvatore | Bell Tower of Ss. Salvatore]]{{w}}[[Bell Tower of Santa Maria della Salute | Bell Tower of Santa Maria della Salute]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Bell_Tower_Page_Final&amp;diff=64540</id>
		<title>Template:Bell Tower Page Final</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Bell_Tower_Page_Final&amp;diff=64540"/>
		<updated>2014-06-16T16:13:34Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
&amp;lt;!--|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_tower}}/thumb}}&lt;br /&gt;
&lt;br /&gt;
|header3 = Basic Information&lt;br /&gt;
&lt;br /&gt;
|label19 = Construction year&lt;br /&gt;
|data19 = &amp;lt;firebase url=&#039;{{{url}}}/data/Construction year&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label21 = Church name&lt;br /&gt;
|data21 = {{#firebaseraw:{{{url}}}/data/Church name}} &amp;lt;!-- &amp;lt;firebase url=&#039;{{{url}}}/data/Church name&#039; /&amp;gt; --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label50 = Style&lt;br /&gt;
|data50 = &amp;lt;firebase url=&#039;{{{url}}}/data/Tower style&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label22 = Sestiere&lt;br /&gt;
|data22 = &amp;lt;firebase url=&#039;{{{url}}}/data/Sestiere&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label23 = Proprietor&lt;br /&gt;
|data23 = &amp;lt;firebase url=&#039;{{{url}}}/data/Proprietor&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--|label24 = Public access&lt;br /&gt;
|data24 = &amp;lt;firebase url=&#039;{{{url}}}/data/Public access&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label49 = Architect&lt;br /&gt;
|data49 = &amp;lt;firebase url=&#039;{{{url}}}/data/Architect&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|header50 = Technical Information&lt;br /&gt;
&lt;br /&gt;
|label51 = Tower height (m)&lt;br /&gt;
|data51= &amp;lt;firebase url=&#039;{{{url}}}/data/Tower height_m&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label52= Latitude&lt;br /&gt;
|data52 =  &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label53 = Longitude&lt;br /&gt;
|data53 = &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label54 = Building Material&lt;br /&gt;
|data54 = &amp;lt;firebase url=&#039;{{{url}}}/data/Material&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt; &lt;br /&gt;
The {{#ifeq: {{#firebaseraw:{{{url}}}/data/Common name }} | Null | bell tower | of  &amp;lt;firebase url=&#039;{{{url}}}/data/Common name&#039; /&amp;gt; }} was built {{#ifeq: {{#firebaseraw:{{{url}}}/data/Construction year }} | Null | at an unknown date | in &amp;lt;firebase url=&#039;{{{url}}}/data/Construction year&#039; /&amp;gt; }} by {{#ifeq: {{#firebaseraw:{{{url}}}/data/Architect }} | Null | an unknown architect | the architect &amp;lt;firebase url=&#039;{{{url}}}/data/Architect&#039; /&amp;gt; }} and is {{#ifeq: {{#firebaseraw:{{{url}}}/data/Church name}}. | Null | not affiliated with a church. | affiliated with the {{#firebaseraw:{{{url}}}/data/Church name}}. }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
{|&lt;br /&gt;
|||  {{#if: {{#firebaseraw:{{{url}}}/data/Significant history}} | &amp;lt;firebase url=&#039;{{{url}}}/data/Significant history&#039; /&amp;gt; | The history of this bell tower is unknown}}&lt;br /&gt;
&amp;lt;!--&amp;lt;firebase url=&#039;{{{url}}}/data/Architecture&#039; /&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Significant history&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Architecture: || &amp;lt;firebase url=&#039;{{{url}}}/data/Architecture&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Architect: || &amp;lt;firebase url=&#039;{{{url}}}/data/Architect&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Common name: || &amp;lt;firebase url=&#039;{{{url}}}/data/Common name&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Significant history: || &amp;lt;firebase url=&#039;{{{url}}}/data/Significant history&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Time open 1: || &amp;lt;firebase url=&#039;{{{url}}}/data/Time open 1&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Time open 2: || &amp;lt;firebase url=&#039;{{{url}}}/data/Time open 2&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Tower style: || &amp;lt;firebase url=&#039;{{{url}}}/data/Tower style&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Latitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Longitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}--&amp;gt;&lt;br /&gt;
==Structural Details==&lt;br /&gt;
{|&lt;br /&gt;
| {{#if: {{#firebaseraw: {{{url}}}/data/Architecture}} | &amp;lt;firebase url=&#039;{{{url}}}/data/Architecture&#039; /&amp;gt; | }}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
===Foundation===&lt;br /&gt;
{|&lt;br /&gt;
The information for this section is missing or incomplete.&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
===Shaft===&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
The shaft of the bell tower has {{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Front }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Front&#039; /&amp;gt; }} arches on the front, &lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Left }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Left&#039; /&amp;gt; }} arches on the left, &lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Right }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Right&#039; /&amp;gt; }} arches on the right, {{#ifeq: {{#firebaseraw:{{{url}}}/data/Arches Back }} | Null | an unknown number of | &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Back&#039; /&amp;gt; }} arches on the back.&lt;br /&gt;
There are {{#ifeq: {{#firebaseraw:{{{url}}}/data/Number of steps }} | Null | an unknown number of | a total of &amp;lt;firebase url=&#039;{{{url}}}/data/Number of steps&#039; /&amp;gt; }} {{#ifeq: {{#firebaseraw:{{{url}}}/data/Number of landings&#039; }} | Null | steps. | steps to the &amp;lt;firebase url=&#039;{{{url}}}/data/Number of landings&#039; /&amp;gt; {{#ifeq: {{#firebaseraw:{{{url}}}/data/Number of landings }} | 1 | landing. | landings.}} }}&lt;br /&gt;
&lt;br /&gt;
===Belfry===&lt;br /&gt;
&amp;lt;div&amp;gt; The belfry is made of {{#ifeq: {{#firebaseraw: {{{url}}}/data/Belfry landing material}} | Null | an unknown material | &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing material&#039; /&amp;gt;}} with its bells supported {{#ifeq: {{#firebaseraw: {{{url}}}/data/Frame material}} | Null | in an unknown fashion. | by &amp;lt;firebase url=&#039;{{{url}}}/data/Frame material&#039; /&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Frame type&#039; /&amp;gt; frames. }} &lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_view_0}}/small}}&lt;br /&gt;
View from the Belfry&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_top}}/thumb}}&lt;br /&gt;
Belfry Exterior&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Arches Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Staircase material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Staircase material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Stairs: || &amp;lt;firebase url=&#039;{{{url}}}/data/Stairs&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of bad steps: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bad steps&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing length_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing length_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame missing screws or bolts: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame missing screws or bolts&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame restoration: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame restoration&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame type: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame type&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICE_view_0: || &amp;lt;firebase url=&#039;{{{url}}}/merged-media-ids/CODICE_view_0&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spire===&lt;br /&gt;
&lt;br /&gt;
{{#if: {{#firebaseraw:{{{url}}}/data/Spire Description }} | &amp;lt;firebase url=&#039;{{{url}}}/data/Spire Description&#039;/&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Cross }} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Cross: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Cross&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Balustrade }} | Null | |&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Balustrade: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Balustrade&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Attic}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Attic: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Attic&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Finial }} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Finial: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Finial&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Finial }} | Yes | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Finial description: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Finial description&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Finial }} | Yes | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Finial type: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Finial type&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Lightning rod}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Lightning rod: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Lightning rod&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Weathervane}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Weathervane: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Weathervane&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{#firebaseraw:{{{url}}}/data/Ramp}} | Null | | &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt; Ramp: &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; &amp;lt;firebase url=&#039;{{{url}}}/data/Ramp&#039; /&amp;gt; &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--==Renovation and Repair==--&amp;gt;&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Renovation and restoration description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Renovation and restoration description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Renovation and restoration years: || &amp;lt;firebase url=&#039;{{{url}}}/data/Renovation and restoration years&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Repair description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Repair description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Repair year: || &amp;lt;firebase url=&#039;{{{url}}}/data/Repair year&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Back&#039; /&amp;gt;&lt;br /&gt;
-&lt;br /&gt;
| Restoration visible_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration visible_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration visible_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Restoration_sides: || &amp;lt;firebase url=&#039;{{{url}}}/data/Restoration_sides&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of lessene: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of lessene&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inclination calculated: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination calculated&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inclination direction: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination direction&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
==Bells==&lt;br /&gt;
&lt;br /&gt;
{{#if: {{#firebaseraw:{{{url}}}/data/Number of bells}} | &amp;lt;div&amp;gt; There are a total of &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bells&#039; /&amp;gt; bells in the belfry.&amp;lt;/div&amp;gt; | }}&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_belfry}}/thumb}}&lt;br /&gt;
Bells&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_floorplan}}/thumb}}&lt;br /&gt;
Floorplan of Bells&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_machine}}/thumb}}&lt;br /&gt;
Mechanism that controls the Bells&lt;br /&gt;
&amp;lt;!--{|&lt;br /&gt;
| Number of bells: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bells&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICECC_1: || &amp;lt;firebase url=&#039;{{{url}}}/data/CODICECC_1&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICE_floorplan: || &amp;lt;firebase url=&#039;{{{url}}}/data/CODICE_floorplan&#039; /&amp;gt;&lt;br /&gt;
|- --&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Technical Information==&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Latitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Longitude: || &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Material&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
&amp;lt;!--| Orientation degrees_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Orientation degrees_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Orientation degrees_Right&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Exterior block width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior block width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Exterior door height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior door_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior door_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| CODICE_int_landing_ground: || &amp;lt;firebase url=&#039;{{{url}}}/data/CODICE_int_landing_ground&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Interior door depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Interior door depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Interior door height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Interior door height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Interior door width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Interior door width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock mechanism landing: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock mechanism landing&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock side: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock side&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Clock working: || &amp;lt;firebase url=&#039;{{{url}}}/data/Clock working&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Window total number: || &amp;lt;firebase url=&#039;{{{url}}}/data/Window total number&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--|  Number of art pieces_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  Number of art pieces_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  Number of art pieces_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  Number of art pieces_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of art pieces_Right&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
|  Number of decorations: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of decorations&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--|  Number of exterior Inscriptions: || &amp;lt;firebase url=&#039;{{{url}}}/data/ Number of exterior Inscriptions&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Decoration description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Decoration description&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Exterior block depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior block depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior block height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior block height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Inscription: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inscription&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inscription description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inscription description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Internal decoration description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal decoration description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Internal decoration locations: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal decoration locations&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Internal landing material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal landing material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Internal transcription: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal transcription&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Internal wall material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Internal wall material&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Landing height to ceiling_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Landing height to ceiling_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Number Exterior inscriptions: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number Exterior inscriptions&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number art pieces_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number art pieces_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number internal inscriptions: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number internal inscriptions&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of art pieces_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of art pieces_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of decorations: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of decorations&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of internal decorations: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of internal decorations&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of landings: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of landings&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of steps: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of steps&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Arches_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Arches_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Staircase material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Staircase material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Stairs: || &amp;lt;firebase url=&#039;{{{url}}}/data/Stairs&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Number of bad steps: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of bad steps&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry block width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry block width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing length_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing length_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry landing width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry landing width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window depth_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window depth_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window height_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window height_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Belfry window width_cm: || &amp;lt;firebase url=&#039;{{{url}}}/data/Belfry window width_cm&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Frame material: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame material&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame missing screws or bolts: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame missing screws or bolts&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame restoration: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame restoration&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Frame type: || &amp;lt;firebase url=&#039;{{{url}}}/data/Frame type&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cross: || &amp;lt;firebase url=&#039;{{{url}}}/data/Cross&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Balustrade: || &amp;lt;firebase url=&#039;{{{url}}}/data/Balustrade&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Attic: || &amp;lt;firebase url=&#039;{{{url}}}/data/Attic&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Finial: || &amp;lt;firebase url=&#039;{{{url}}}/data/Finial&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Finial description: || &amp;lt;firebase url=&#039;{{{url}}}/data/Finial description&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Finial type: || &amp;lt;firebase url=&#039;{{{url}}}/data/Finial type&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Lightning rod: || &amp;lt;firebase url=&#039;{{{url}}}/data/Lightning rod&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Weathervane: || &amp;lt;firebase url=&#039;{{{url}}}/data/Weathervane&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ramp: || &amp;lt;firebase url=&#039;{{{url}}}/data/Ramp&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of ties and bands_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of ties and bands_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Number of windows_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of windows_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Barred window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Barred window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Barred window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Blocked window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Blocked window number_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Meshed window number_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Meshed window number_Right&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Number of lessene: || &amp;lt;firebase url=&#039;{{{url}}}/data/Number of lessene&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Inclination calculated: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination calculated&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Inclination direction: || &amp;lt;firebase url=&#039;{{{url}}}/data/Inclination direction&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes _Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes _Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Back: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Back&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Front: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Front&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Left: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Left&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Exterior tower notes_Right: || &amp;lt;firebase url=&#039;{{{url}}}/data/Exterior tower notes_Right&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Notes&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!--|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICECC_1}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_B}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_F}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_L}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_R}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_skyshot}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_top}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_ext_tower}}/thumb}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_floorplan}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_attic}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_belfry}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_int_landing_ground}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_machine}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/CODICE_view_0}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!--|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B}}/thumb}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan_attic}}/thumb}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan_attic_belfry}}/thumb}}&lt;br /&gt;
|-&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Tower_CC1_B_F_L_R_sky_top_tower_plan_attic_belfry_ground}}/thumb}}&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
==Map==&lt;br /&gt;
&amp;lt;fb-map height=&#039;300px&#039; list=&#039;https://cityknowledge.firebaseIO.com/groups/Bell Tower Page Final/members&#039; root=&#039;https://cityknowledge.firebaseIO.com/data&#039; highlights=&#039;{{{url}}}/birth_certificate/ckID&#039; tooltip=&#039;/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Bell Tower Page Final]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Navbox &lt;br /&gt;
|name = Bell Tower Page Final navbox&lt;br /&gt;
|title = Bell Towers of Venice&lt;br /&gt;
&lt;br /&gt;
|group1 = Bell Towers&lt;br /&gt;
|list1 = [[Bell Tower of San Angelo Raffaele | Bell Tower of San Angelo Raffaele]]{{w}}[[Bell Tower of Santi Gervasio e Protasio | Bell Tower of Santi Gervasio e Protasio]]{{w}}[[Bell Tower of Santa Margherita | Bell Tower of Santa Margherita ]]{{w}}[[Bell Tower of Sant&#039;Erosia | Bell Tower of Sant&#039;Erosia]]{{w}}[[Bell Tower of San Nicolò del Lido | Bell Tower of San Nicolò del Lido]]{{w}}[[Bell Tower of Santa Maria Assunta di Torcello | Bell Tower of Santa Maria Assunta di Torcello]]{{w}}[[Bell Tower of Basilica di San Marco | Bell Tower of Basilica di San Marco]]{{w}}[[Bell Tower of Santa Maria dei Miracoli | Bell Tower of Santa Maria dei Miracoli]]{{w}}[[Bell Tower of Ognissanti di Pellestrina | Bell Tower of Ognissanti di Pellestrina]]{{w}}[[Bell Tower of San Giorgio Maggiore in Isola | Bell Tower of San Giorgio Maggiore in Isola ]]{{w}}[[Bell Tower of San Canciano | Bell Tower of San Canciano]]{{w}}[[Bell Tower of Santa Maria Elisabetta | Bell Tower of Santa Maria Elisabetta]]{{w}}[[Bell Tower of Eremite di San Giuseppe | Bell Tower of Eremite di San Giuseppe]]{{w}}[[Bell Tower of Santa Maria della Presentazione | Bell Tower of Santa Maria della Presentazione]]{{w}}[[Bell Tower of Santo Stefano di Murano | Bell Tower of Santo Stefano di Murano]]{{w}}[[Bell Tower of Santa Eufemia | Bell Tower of Santa Eufemia]]{{w}}[[Bell Tower of San Moise&#039; Profeta | Bell Tower of San Moise&#039; Profeta]]{{w}}[[Bell Tower of San Pietro Apostolo | Bell Tower of San Pietro Apostolo]]{{w}}[[Bell Tower of Santa Maria Assunta dei Gesuiti | Bell Tower of Santa Maria Assunta dei Gesuiti]]{{w}}[[Bell Tower of San Pietro| Bell Tower of San Pietro]]{{w}}[[Bell Tower of Santi Ermagora e Fortunato | Bell Tower of Santi Ermagora e Fortunato]]{{w}}[[Bell Tower of San Zaccaria | Bell Tower of San Zaccaria]]{{w}}[[Bell Tower of San Benedetto | Bell Tower of San Benedetto]]{{w}}[[Bell Tower of Torre dei Baini | Bell Tower of Torre dei Baini]]{{w}}[[Bell Tower of San Bartolomeo | Bell Tower of San Bartolomeo]]{{w}}[[Bell Tower of Santa Maria degli Angeli | Bell Tower of Santa Maria degli Angeli]]{{w}}[[Bell Tower of San Silvestro | Bell Tower of San Silvestro]]{{w}}[[Bell Tower of San Pantaleone | Bell Tower of San Pantaleone]]{{w}}[[Bell Tower of San Michele | Bell Tower of San Michele]]{{w}}[[Bell Tower of Ognissanti | Bell Tower of Ognissanti]]{{w}}[[Bell Tower of San Giacomo dell&#039;Orio | Bell Tower of San Giacomo dell&#039;Orio]]{{w}}[[Bell Tower of Sant&#039;Eustachio | Bell Tower of Sant&#039;Eustachio]]{{w}}[[Bell Tower of Santi Cosmo e Damiano | Bell Tower of Santi Cosmo e Damiano]]{{w}}[[Bell Tower of San Nicolo dei Mendicoli | Bell Tower of San Nicolo dei Mendicoli]]{{w}}[[Bell Tower of Santa Caterina di Mazzorbo | Bell Tower of Santa Caterina di Mazzorbo]]{{w}}[[Bell Tower of San Marciliano | Bell Tower of San Marciliano]]{{w}}[[Bell Tower of Santa Maria della Visitazione | Bell Tower of Santa Maria della Visitazione ]]{{w}}[[Bell Tower of San Pietro Martire | Bell Tower of San Pietro Martire]]{{w}}[[Bell Tower of San Rocco | Bell Tower of San Rocco ]]{{w}}[[Bell Tower of San Leone IX pp. | Bell Tower of San Leone IX pp.]]{{w}}[[Bell Tower of Sant&#039;Erasmo | Bell Tower of Sant&#039;Erasmo]]{{w}}[[Bell Tower of Sant&#039;Angelo | Bell Tower of Sant&#039;Angelo]]{{w}}[[Bell Tower of Santa Maria Gloriosa dei Frari | Bell Tower of Santa Maria Gloriosa dei Frari]]{{w}}[[Bell Tower of San Samuele Profeta | Bell Tower of San Samuele Profeta]]{{w}}[[Bell Tower of Sant&#039;Ubaldo | Bell Tower of Sant&#039;Ubaldo]]{{w}}[[Bell Tower of San Geremia e Lucia | Bell Tower of San Geremia e Lucia]]{{w}}[[Bell Tower of S. Cristoforo | Bell Tower of S. Cristoforo]]{{w}}[[Bell Tower of San Giovanni di Rialto | Bell Tower of San Giovanni di Rialto]]{{w}}[[Bell Tower of Santa Caterina | Bell Tower of Santa Caterina]]{{w}}[[Bell Tower of San Sebastiano | Bell Tower of San Sebastiano]]{{w}}[[Bell Tower of Santa Maria Maggiore | Bell Tower of Santa Maria Maggiore]]{{w}}[[Bell Tower of San Giobbe e Barnardino | Bell Tower of San Giobbe e Barnardino]]{{w}}[[Bell Tower of San Martino di Castello | Bell Tower of San Martino di Castello]]{{w}}[[Bell Tower of Santo Stefano Profeta | Bell Tower of Santo Stefano Profeta ]]{{w}}[[Bell Tower of San Giorgio dei Greci | Bell Tower of San Giorgio dei Greci]]{{w}}[[Bell Tower of San Giovanni Decollato | Bell Tower of San Giovanni Decollato]]{{w}}[[Bell Tower of San Lazzaro dei Mendicanti | Bell Tower of San Lazzaro dei Mendicanti]]{{w}}[[Bell Tower of Santa Maria della Consolazione | Bell Tower of Santa Maria della Consolazione]]{{w}}[[Bell Tower of Sant&#039;Andrea Apostolo | Bell Tower of Sant&#039;Andrea Apostolo]]{{w}}[[Bell Tower of San Giovanni Nuovo | Bell Tower of San Giovanni Nuovo]]{{w}}[[Bell Tower of Sant&#039;Antonino | Bell Tower of Sant&#039;Antonino]]{{w}}[[Bell Tower of Santa Sophia | Bell Tower of Santa Sophia]]{{w}}[[Bell Tower of Santa Maria Mater Domini | Bell Tower of Santa Maria Mater Domini]]{{w}}[[Bell Tower of Malamocco | Bell Tower of Malamocco]]{{w}}[[Bell Tower of San Francesco de la Vigna | Bell Tower of San Francesco de la Vigna]]{{w}}[[Bell Tower of S. Felice | Bell Tower of S. Felice]]{{w}}[[Bell Tower of San Francesco di Paula | Bell Tower of San Francesco di Paula]]{{w}}[[Bell Tower of Santi Simone e Giuda | Bell Tower of Santi Simone e Giuda]]{{w}}[[Bell Tower of San Giuliano  | Bell Tower of San Giuliano ]]{{w}}[[Bell Tower of Santa Maria Formosa | Bell Tower of Santa Maria Formosa]]{{w}}[[Bell Tower of S. Alvise | Bell Tower of S. Alvise]]{{w}}[[Bell Tower of Santa Maria Assunta del Carmelo | Bell Tower of Santa Maria Assunta del Carmelo]]{{w}}[[Bell Tower of Santissimo Redentore | Bell Tower of Santissimo Redentore ]]{{w}}[[Bell Tower of San Paolo Apostolo | Bell Tower of San Paolo Apostolo]]{{w}}[[Bell Tower of Santa Croce degli Armeni | Bell Tower of Santa Croce degli Armeni]]{{w}}[[Bell Tower of San Cassiano | Bell Tower of San Cassiano]]{{w}}[[Bell Tower of Santa Teresa | Bell Tower of Santa Teresa]]{{w}}[[Bell Tower of San Giovanni Evangelista | Bell Tower of San Giovanni Evangelista]]{{w}}[[Bell Tower of San Giuseppe | Bell Tower of San Giuseppe]]{{w}}[[Bell Tower of Santa Fosca | Bell Tower of Santa Fosca]]{{w}}[[Bell Tower of S. Maria e Donati | Bell Tower of S. Maria e Donati]]{{w}}[[Bell Tower of San Barnaba | Bell Tower of San Barnaba]]{{w}}[[Bell Tower of San Nicolò da Tolentino | Bell Tower of San Nicolò da Tolentino]]{{w}}[[Bell Tower of Santissima Trinità | Bell Tower of Santissima Trinità]]{{w}}[[Bell Tower of Sant&#039;Antonio                             | Bell Tower of Sant&#039;Antonio]]{{w}}[[Bell Tower of S. Bonaventura Capuccine | Bell Tower of S. Bonaventura Capuccine]]{{w}}[[Bell Tower of S. Vitale | Bell Tower of S. Vitale]]{{w}}[[Bell Tower of Santa Maria di Nazareth  | Bell Tower of Santa Maria di Nazareth ]]{{w}}[[Bell Tower of Abbazia di Valverde | Bell Tower of Abbazia di Valverde]]{{w}}[[Bell Tower of Santa Maria del Rosario | Bell Tower of Santa Maria del Rosario]]{{w}}[[Bell Tower of S. Apostoli | Bell Tower of S. Apostoli]]{{w}}[[Bell Tower of San Luva ev. | Bell Tower of San Luva ev.]]{{w}}[[Bell Tower of S. Elena | Bell Tower of S. Elena]]{{w}}[[Bell Tower of San Simeone Profeta | Bell Tower of San Simeone Profeta]]{{w}}[[Bell Tower of Sant&#039;Aponallinare | Bell Tower of Sant&#039;Aponallinare]]{{w}}[[Bell Tower of S. Martino Vescovo | Bell Tower of S. Martino Vescovo]]{{w}}[[Bell Tower of San Giovanni Crisostomo | Bell Tower of San Giovanni Crisostomo]]{{w}}[[Bell Tower of Ss. Salvatore | Bell Tower of Ss. Salvatore]]{{w}}[[Bell Tower of Santa Maria della Salute | Bell Tower of Santa Maria della Salute]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bell_tower&amp;diff=64539</id>
		<title>Bell tower</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bell_tower&amp;diff=64539"/>
		<updated>2014-06-16T16:05:18Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This article contains information about a typical Venetian bell tower. For an overview of all the bell towers, see [[Bell towers]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A Venetian bell tower, known in Italian as &#039;&#039;campanile&#039;&#039;, is used to house many [[Bells]]. A bell tower is typically named based on the church it is associated with.&lt;br /&gt;
&lt;br /&gt;
==Bell Tower Structure==&lt;br /&gt;
[[File:AnatomyOfABellTower_SanMarco.jpg|400px|thumb|right| Bell tower structure]] There are four main components to the structure of a bell tower: base, shaft, belfry, and spire. Each of these contributes to the overall style and integrity of the tower.&lt;br /&gt;
&lt;br /&gt;
===Base===&lt;br /&gt;
The main purpose of the base is to maintain the structural integrity of the tower. The walls at the base of the tower are often thicker than those at the top. Non-porous materials are used so that it is resistant to salt water from flooding and heavy enough to withstand the pressure from the weight of the tower.&lt;br /&gt;
&lt;br /&gt;
===Shaft===&lt;br /&gt;
The shaft is the part that contributes to the height of the tower and contains stairs, ramps, and landings that lead to the belfry. It is usually constructed of brick and mortar, which varied in strength based on the year that it was constructed. Brick makers improved upon the method for making bricks so that bricks could withstand a greater amount of pressure. In addition, to provide the tower with greater flexibility and support, some towers were built using metal rods.&lt;br /&gt;
&lt;br /&gt;
===Belfry===&lt;br /&gt;
The belfry, located above the shaft, contains the bells and usually some type of landing. On the exterior, it is generally the most ornate part of the tower, built using brick and other types of stone or clay. Typically, there are windows or arched openings that let light through and occasionally netting to keep pigeons from entering. The bells are hung from the top of the belfry with wood, although some newer towers use metal. It has been found, however, that the vibration of the bell through the metal to the walls increases deterioration.&lt;br /&gt;
&lt;br /&gt;
===Roof===&lt;br /&gt;
Above the belfry there may be an attic which provides additional storage or access to the top of the tower for maintenance. There may also be a balustrade, or a balcony with a railing that runs around the outside of the attic. This is usually accessible from the attic, so that one may enjoy a more expansive view and have additional access to the roof. To get to the attic, there is either a ladder or stairway.&lt;br /&gt;
&lt;br /&gt;
The spire varies depending on the tower, but it can have many shapes: conical, pyramidal, bulbous, and others. On top of the spire there can also be a finial which ranges from functional, such as a weather vane or lightning rod, to ornamental, such as a cross or statue.&lt;br /&gt;
&lt;br /&gt;
==Architectural Style==&lt;br /&gt;
Like most buildings, there are many different styles of tower architecture. Over the centuries many of the towers have seen numerous renovations resulting in overlapping styles, causing the original style to be virtually indistinguishable.  Their eclectic nature reflects the city&#039;s history and the diverse ideas that evolved in Venice.  Overall, bell towers contribute a great deal to the ambiance of the city. &amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;For more information on architectural styles, see [[Bell tower#External Links| External Links]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Bell Tower Maintenance==&lt;br /&gt;
[[File:EarthquakeDestruction_FinaleEmilia.jpg|150px|thumb|left| Earthquake destruction ]] &#039;&#039;This section needs improvement&#039;&#039; &amp;lt;br /&amp;gt;&lt;br /&gt;
Catastrophic events such as earthquakes and flooding do not frequently cause any major damage, but deterioration is possible if the bell towers are not maintained properly. Although modern technology has reduced the need to ring the bells manually, it has resulted in people being removed from the process of maintaining those bells and their towers.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Bell Towers]]&lt;br /&gt;
*[[Bells]]&lt;br /&gt;
*[[Bell]]&lt;br /&gt;
*[[Bell Ringing]]&lt;br /&gt;
*[[Church]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bell_Ringing&amp;diff=64538</id>
		<title>Bell Ringing</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bell_Ringing&amp;diff=64538"/>
		<updated>2014-06-16T15:59:20Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This article discusses the various ways bells are rung. For an overview of all the bells in Venice, see [[Bells]]. For a typical bell, see [[Bell]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Bells don’t have one uniform way of being rung. In fact, the number of ways of ringing bells is almost as diverse as bells themselves.&lt;br /&gt;
&lt;br /&gt;
==Swinging Systems==&lt;br /&gt;
There are two main types of swinging systems; one for western bells and one for Asian bells.&lt;br /&gt;
&lt;br /&gt;
===Western Bells===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float: right;&amp;quot;&lt;br /&gt;
|+ &#039;&#039;&#039;Western Bell Systems&#039;&#039;&#039;&lt;br /&gt;
! English System&lt;br /&gt;
! Central European System&lt;br /&gt;
! Spanish System&lt;br /&gt;
|-&lt;br /&gt;
| [[File:EnglishBellSystem.png|205px| English bell system ]]&lt;br /&gt;
| [[File:CentralEuropeanBellSystem.png|200px| Central European bell system ]]&lt;br /&gt;
| [[File:SpanishBellSystem.png|160px| Spanish bell system ]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Western bells, commonly found in churches, are categorized by three types of swinging systems; English, Central European, and Spanish. However, they all have the common trait of being struck by a piece of metal otherwise known as the clapper. Only the English and Central European systems are used in Italy.&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;English System&#039;&#039;====&lt;br /&gt;
The English system is characterized by its 360° motion where the bells freely make full circles. This system is utilized in Northern Italy as well as Britain, Ireland, USA, Canada, Australia, New Zealand, and Southern Africa.&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Central European System&#039;&#039;====&lt;br /&gt;
The Central European system commonly attaches counterweights to the tops of the bells which only allow them to swing a total of 160°.  This system is found throughout Italy, as well as in Central Europe, USA, Canada, and in some Latin American Countries.&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Spanish System&#039;&#039;====&lt;br /&gt;
&#039;&#039;For more information, see [[Bell Ringing#External Links|External Links]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Asian Bells===&lt;br /&gt;
Asian bells, which are never suspended, are usually struck with a wooden mallet or a horizontal wooden beam in order to produce a sound. &amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;For more information, see [[Bell Ringing#External Links|External Links]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Types of Swinging==&lt;br /&gt;
Swinging bell types can be further divided into four ways they are swung: clocking, chiming, tooling, and ringing.&lt;br /&gt;
&lt;br /&gt;
===Clocking===&lt;br /&gt;
Clocking occurs when a rope attached directly to the clapper is pulled against the bell to strike it.&lt;br /&gt;
&lt;br /&gt;
===Chiming===&lt;br /&gt;
Chiming, also known as tolling, involves an external hammer which is either controlled by hand or by machine.&lt;br /&gt;
&lt;br /&gt;
===Tooling===&lt;br /&gt;
Tooling has a rope attached to the bell directly and the bell itself is swung. This can be extremely difficult, near impossible, considering bells can weigh as much as several tons.&lt;br /&gt;
&lt;br /&gt;
===Ringing===&lt;br /&gt;
During ringing, the bell is swung from side to side, typically on a wheel. This type is the common method used in the western swinging systems. Either a flying or a falling clapper is used with the ringing system.&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Flying Clapper&#039;&#039;====&lt;br /&gt;
A flying clapper begins with a bell attached to the pivot point of what is known as a head-stock or yoke, generally composed of either wood or steel. A pulley system is attached to the yoke from which a rope is fed and pulled to rock the bell which causes the clapper to swing freely or “fly” and strike against the bell. This clapper is used with the English and Central European systems.&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Falling Clapper&#039;&#039;====&lt;br /&gt;
A falling clapper involves a counterweight attached to the yoke allowing the bell to pivot with a high center of gravity. The clapper initially hangs at the pivot point and falls onto the walls of the bell with changing directions. This clapper is used with the Spanish system.&lt;br /&gt;
&lt;br /&gt;
==Automated Ringing==&lt;br /&gt;
While many of the previous sections suggest manual ringing of the bells, a popular trend has developed in which the bells are governed by an automated system.&lt;br /&gt;
&lt;br /&gt;
===Motorized Ringing===&lt;br /&gt;
A common type of automated system involves a motor with cables leading up to either side of the bell wheel. The motor is activated when the bell reaches the peak of its swing by spinning the cables in the opposite direction which, in turn, reverses the bell’s direction. A drawback for this system was that it couldn&#039;t monitor the state of the bell in case its swinging became erratic. This problem was later remedied by outfitting the motor with a computer which would halt the bell in case of malfunction.&lt;br /&gt;
&lt;br /&gt;
===Mechanical Striker===&lt;br /&gt;
Another automated ringing system involves a mechanized striker which can be installed either on the outside of the bell (often used for swinging or stationary bells) or on the inside (only used for stationary bells).&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Bells]]&lt;br /&gt;
*[[Bell]]&lt;br /&gt;
*[[Bell Tower]]&lt;br /&gt;
*[[Bell Towers]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Bell&amp;diff=64537</id>
		<title>Bell</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Bell&amp;diff=64537"/>
		<updated>2014-06-16T15:57:25Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This page is a description of a typical Venetian bell. For an overview of all the bells in Venice, see [[Bells]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A Venetian bell, known in Italian as &#039;&#039;campana&#039;&#039;, has had many different uses. Before modern times, bells had more purpose than pure musical entertainment. They were signals of danger, disaster, and alarm. Many bells of today were built in medieval times, and were manufactured using a specific set of techniques and materials.&lt;br /&gt;
&lt;br /&gt;
==Bell Construction==&lt;br /&gt;
The casting of bells is a delicate and precise process. The style of a particular bell depends upon the foundry in which it was made, along with the materials that compose it and the period of its creation.&lt;br /&gt;
&lt;br /&gt;
===Material of Bells===&lt;br /&gt;
The most common material for bells is bronze, an alloy of copper and tin. Very rarely bells were cast in steel and cast iron. This shift in bell materials occurred mainly during times of war, when alloys such as bronze were in short supply since copper was needed in the manufacturing of some weapons. Around 1857 A.D. a combination of iron and carbon, also known as steel, became a material for bell-making. Not soon after it had begun being used it was discarded since the compound was deemed unsuitable for a material of bells.&lt;br /&gt;
&lt;br /&gt;
===Bell Casting and Founding===&lt;br /&gt;
Bells have typically been made using the same process for over six centuries. A popular method of bell casting is to use sand-casting. In medieval times, when many bells were being produced, molds were made from clay to make a template for the bells. A bell mold had a center mold and an outer mold, where molten bronze was poured between the two and then allowed to cool to take the shape of a bell. Back in the middle ages, sometimes wooden templates were also used.  Through the use of these templates the distinctive shape of the bells was formed. &amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;For more information about bell founding, see external_LINK.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Bell Frame Design===&lt;br /&gt;
Two bell frame types are primarily used to suspend bells, the H frame and the A frame. The H frame occurs when the bell is suspended on a cross bar made of heavy H castings usually composed of a durable metal material such as cast iron. The metal material resists twisting and provides a secure base for the bell. The popularity of this type of design resides in its greater convenience and construction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example of an H Frame: &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:ExampleOfHFrame_SanFelice.jpg|300px||| Example of an H Frame ]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Example of an A Frame: &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:ExampleOfAFrame_SantaMariaDiNazarethScalzi.jpg|300px||| Example of an A Frame ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Anatomy of a Bell===&lt;br /&gt;
All church bells have similar features. There is the crown, in which the vibrations mostly come from and the shoulder, which is the curvature at the top. The part that induces the sound, in most cases, is the clapper which is the long piece that hangs from the top of the inside of the bell. When rung it hits the strike point, or soundbow, of the bell. &amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;For more information on bell ringing, see [[Bell]]&lt;br /&gt;
&lt;br /&gt;
[[File:PartsOfABell.jpg|400px||center| Bell Anatomy ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Bell Decoration===&lt;br /&gt;
When ancient bells were cast, the moldings and decor on them were treated as a form of art. The inscriptions, figures, and design on each bell were well thought out by the founder and were intended to be a reflection of the founders work.&lt;br /&gt;
&lt;br /&gt;
Most European bells are similar in their decorations, which usually include an inscription about where or when they were made or an engraving of a religious figure.  Another trend founders have implemented was to design a trademark with a symbol or initials instead of writing out the full name of the founder.&lt;br /&gt;
&lt;br /&gt;
Historical figures are a common form of art found on bells. These include effigies of saints, angels, or royal leaders. In addition, one may find the shield of the patron who invested in the tower or church. However, the most frequently used decor were inscriptions which offer information of whom the bell was dedicated to, who the maker or donor was, when it was cast, and other supplemental information. These are typically in Latin, although some may be in the native Italian. &lt;br /&gt;
&lt;br /&gt;
IMAGES with examples&lt;br /&gt;
&lt;br /&gt;
==Bronze Corrosion==&lt;br /&gt;
Most of the bells in Venice, being made of bronze, suffer from a cyclic degrading process known as Bronze disease. The disease refers to a chemical process in which the copper in bronze reacts with elements and moisture in the atmosphere creating a film signifying corrosion. Bell towers provide perfect conditions for bronze disease to propagate by leaving bells exposed to environmental conditions such as humidity, high winds, rain, and moisture. The thick green coating has the ability to transform the object by corroding the surface and possibly removing valuable artwork from its face. Many of the bells have intricate images exuding from their surfaces making corrosion a significant problem. &amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;For more information on bronze corrosion, see external_LINK.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Bells]]&lt;br /&gt;
*[[Bell Ringing]]&lt;br /&gt;
*[[Bell Tower]]&lt;br /&gt;
*[[Bell Towers]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:San_Marco_Churches&amp;diff=64536</id>
		<title>Template:San Marco Churches</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:San_Marco_Churches&amp;diff=64536"/>
		<updated>2014-06-16T15:53:14Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle   = &lt;br /&gt;
&lt;br /&gt;
|image        = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Church Facade Images 2012}}/thumb}}&lt;br /&gt;
|imagestyle   = &lt;br /&gt;
|caption      = The façade of the church.&lt;br /&gt;
|captionstyle = &lt;br /&gt;
|headerstyle  = background:#ccf;&lt;br /&gt;
|labelstyle   = background:#ddf;&lt;br /&gt;
|datastyle    = &lt;br /&gt;
&lt;br /&gt;
|header1 =&lt;br /&gt;
|label1  = Full Name&lt;br /&gt;
|data1   = &amp;lt;firebase url=&#039;{{{url}}}/data/Full Name&#039; /&amp;gt;&lt;br /&gt;
|header2 =&lt;br /&gt;
|label2  = Local Name&lt;br /&gt;
|data2   = &amp;lt;firebase url=&#039;{{{url}}}/data/Local Name&#039; /&amp;gt;&lt;br /&gt;
|header3 =&lt;br /&gt;
|label3  = Hours of Operation&lt;br /&gt;
|data3   = &amp;lt;firebase url=&#039;{{{url}}}/data/Hours of Operation&#039; /&amp;gt;&lt;br /&gt;
|header4 = &lt;br /&gt;
|label4  = Service Times&lt;br /&gt;
|data4   = &amp;lt;firebase url=&#039;{{{url}}}/data/Service Times&#039; /&amp;gt;&lt;br /&gt;
|header5 =&lt;br /&gt;
|label5  = Cost of Admission&lt;br /&gt;
|data5   = &amp;lt;firebase url=&#039;{{{url}}}/data/Cost of Admission&#039; /&amp;gt;&lt;br /&gt;
|header6 = Church Information&lt;br /&gt;
|label6  = &lt;br /&gt;
|data6   = &lt;br /&gt;
|header7 =&lt;br /&gt;
|label7  = Year Founded&lt;br /&gt;
|data7   = &amp;lt;firebase url=&#039;{{{url}}}/data/Year Founded&#039; /&amp;gt;&lt;br /&gt;
|header8 =&lt;br /&gt;
|label8  = Current Use&lt;br /&gt;
|data8   = &amp;lt;firebase url=&#039;{{{url}}}/data/Current Use&#039; /&amp;gt;&lt;br /&gt;
|header9 =&lt;br /&gt;
|label9  = Location&lt;br /&gt;
|data9   = &lt;br /&gt;
|header10 =&lt;br /&gt;
|label10  = Denomination&lt;br /&gt;
|data10   = &amp;lt;firebase url=&#039;{{{url}}}/data/Denomination&#039; /&amp;gt;&lt;br /&gt;
|header11 = Technical Details&lt;br /&gt;
|label11  = &lt;br /&gt;
|data11   = &lt;br /&gt;
|header12 =&lt;br /&gt;
|label12  = Church Code&lt;br /&gt;
|data12   = &amp;lt;firebase url=&#039;{{{url}}}/data/Church Code&#039; /&amp;gt;&lt;br /&gt;
|header13 =&lt;br /&gt;
|label13  = Longitude Coordinate&lt;br /&gt;
|data13   = &amp;lt;firebase url=&#039;{{{url}}}/data/Longitude Coordinate&#039; /&amp;gt;&lt;br /&gt;
|header14 =&lt;br /&gt;
|label14  = Latitude Coordinate&lt;br /&gt;
|data14   = &amp;lt;firebase url=&#039;{{{url}}}/data/Latitude Coordinate&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|belowstyle = background:#ddf;&lt;br /&gt;
|below = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/Intro sentence }}&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/History Blurb }}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref&amp;gt;Lorenzetti, Giulio. “Venice and its Lagoon: Historical-Artistic Guide” Edizoni LINT S.R.L. Italy. 1994.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref&amp;gt;Cotton, Jeff. “Churches of Venice” 2012. http://churchesofvenice.co.uk/index.htm&amp;lt;/ref&amp;gt;&lt;br /&gt;
==Structure of Building== &amp;lt;!--&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/StructureBuilding intro&#039; /&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
===Exterior===&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/Exterior blurb&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Bell Tower====&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/Bell tower blurb }}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ===Interior===&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/Interior blurb&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Ceilings====&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/Ceilings blurb&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Art====&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/Art blurb&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Altars====&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/Altars blurb&#039; /&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
====Floor Map====&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/Floors blurb }}&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/data/Church Floor Plan Images}}/medium}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;fb-navbox title=&#039;Floor Artifacts&#039; &lt;br /&gt;
name=&#039;Churches&#039;&lt;br /&gt;
state=&#039;collapsed&#039; &lt;br /&gt;
root=&#039;https://cityknowledge.firebaseIO.com/data/&#039; &lt;br /&gt;
group1=&#039;Artifacts&#039; &lt;br /&gt;
list1=&#039;https://cityknowledge.firebaseIO.com/groups/{{#firebaseraw:{{{url}}}/data/Artifact Group }}/members&#039; &lt;br /&gt;
list1target=&#039;/data/Page Title&#039;&lt;br /&gt;
/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Map== &lt;br /&gt;
&amp;lt;fb-map height=&#039;300px&#039; &lt;br /&gt;
list=&#039;https://cityknowledge.firebaseIO.com/groups/San Marco Churches/members&#039; &lt;br /&gt;
root=&#039;https://cityknowledge.firebaseIO.com/data&#039; &lt;br /&gt;
highlights=&#039;{{{url}}}/birth_certificate/ckID&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Churches]]&lt;br /&gt;
*[[Church Floor Artifacts]]&lt;br /&gt;
*[[Church Floor Artifact]]&lt;br /&gt;
*[[Bell Towers]]&lt;br /&gt;
&lt;br /&gt;
{{Navbox &lt;br /&gt;
|name = Cannaregio Churches navbox&lt;br /&gt;
|title = Churches of Venice&lt;br /&gt;
|group1 = Cannaregio&lt;br /&gt;
|list1 = [[Church of San Geremia | Church of San Geremia]]{{w}}[[Suore Dorotee | Suore Dorotee]]{{w}}[[Church of Servi | Church of Servi]]{{w}}[[Church of San Marziale | Church of San Marziale]]{{w}}[[Church of San Marcuola | Church of San Marcuola]]{{w}}[[Church of Miracoli | Church of Miracoli]]{{w}}[[Church of Gli Scalzi | Church of Gli Scalzi]]{{w}}[[Church of San Giobbe | Church of San Giobbe]]{{w}}[[Church of San Leonardo | Church of San Leonardo]]{{w}}[[Church of Gesuiti | Church of Gesuiti]]{{w}}[[Church of Santa Sofia | Church of Santa Sofia]]{{w}}[[Church of La Madonna dell&#039;Orto | Church of La Madonna dell&#039;Orto]]{{w}}[[Church of Santa Fosca in Cannaregio | Church of Santa Fosca in Cannaregio]]{{w}}[[Church of Le Cappuccine | Church of Le Cappuccine]]{{w}}[[Church of San Felice | Church of San Felice]]{{w}}[[Church of La Maddalena | Church of La Maddalena]]{{w}}[[Church of San Girolomo | Church of San Girolomo]]{{w}}[[Church of Santi Apostoli | Church of Santi Apostoli]]{{w}}[[Church of San Giovanni Grisostomo | Church of San Giovanni Grisostomo]]{{w}}[[Church of Sant&#039;Alvise | Church of Sant&#039;Alvise]]{{w}}[[Church of La Misericordia | Church of La Misericordia]]{{w}}[[Evangelical Lutheran Church | Evangelical Lutheran Church]]{{w}}[[Church of San Bonaventura | Church of San Bonaventura]]{{w}}[[Church of San Canciano | Church of San Canciano]]{{w}}[[Church of Le Penitenti | Church of Le Penitenti]]{{w}}[[Church of Santa Caterina | Church of Santa Caterina]]&lt;br /&gt;
|group2 = Castello&lt;br /&gt;
|list2 = [[Church of San Martino | Church of San Martino]]{{w}}[[Church of San Francesco di Paula | Church of San Francesco di Paula]]{{w}}[[Church of Mendicanti | Church of Mendicanti]]{{w}}[[Church of San Zanipolo | Church of San Zanipolo]]{{w}}[[Church of Santa Maria Formosa | Church of Santa Maria Formosa]]{{w}}[[Church of San Giuseppe | Church of San Giuseppe]]{{w}}[[Church of La Fava | Church of La Fava]]{{w}}[[Church of La Bragora | Church of La Bragora]]{{w}}[[Church of Sant&#039;Elena | Church of Sant&#039;Elena]]{{w}}[[Church of San Giovanni di Malta | Church of San Giovanni di Malta]]{{w}}[[Church of San Antonin | Church of San Antonin]]{{w}}[[Church of San Pietro di Castello | Church of San Pietro di Castello]]{{w}}[[Church of L&#039;Ospedalletto | Church of L&#039;Ospedalletto]]{{w}}[[Church of La Pietà | Church of La Pietà]]{{w}}[[Church of San Zaninovo | Church of San Zaninovo]]{{w}}[[Church of La Vigna | Church of La Vigna]]{{w}}[[Church of San Lorenzo | Church of San Lorenzo]]{{w}}[[Church of San Lio | Church of San Lio]]{{w}}[[Church of Greci | Church of Greci]]{{w}}[[Church of San Gioacchino | Church of San Gioacchino]]{{w}}[[Church of Santa Giustina | Church of Santa Giustina]]{{w}}[[Church of Santa Maria del Pianto | Church of Santa Maria del Pianto]]{{w}}[[Church of San Biagio | Church of San Biagio]]{{w}}[[Church of Sant&#039;Anna | Church of Sant&#039;Anna]]{{w}}[[Church of San Zaccaria | Church of San Zaccaria]]{{w}}[[Church of San Giorgio degli Schiavoni | Church of San Giorgio degli Schiavoni]]&lt;br /&gt;
|group3 = Dorsoduro&lt;br /&gt;
|list3 = [[Church of Gesuati | Church of Gesuati]]{{w}}[[Church of Le Romite | Church of Le Romite]]{{w}}[[Church of San Trovaso | Church of San Trovaso]]{{w}}[[Church of Le Teresa | Church of Le Teresa]]{{w}}[[Church of Carmini | Church of Carmini]]{{w}}[[Church of Catecumeni | Church of Catecumeni]]{{w}}[[Church of La Salute | Church of La Salute]]{{w}}[[Church of San Sebastiano | Church of San Sebastiano]]{{w}}[[Church of Santa Margherita | Church of Santa Margherita]]{{w}}[[Church of San Pantalon | Church of San Pantalon]]{{w}}[[Church of Spirito Santo | Church of Spirito Santo]]{{w}}[[Church of La Carità | Church of La Carità]]{{w}}[[Church of San Gregorio | Church of San Gregorio]]{{w}}[[Church of L&#039;Anzolo Rafael | Church of L&#039;Anzolo Rafael]]{{w}}[[Church of St. George | Church of St. George]]{{w}}[[Church of Santa Marta | Church of Santa Marta]]{{w}}[[Church of Santi Vito e Modesto | Church of Santi Vito e Modesto]]{{w}}[[Church of San Barnaba | Church of San Barnaba]]{{w}}[[Church of Ognisanti | Church of Ognisanti]]{{w}}[[Church of Sant&#039;Agnese | Church of Sant&#039;Agnese]]{{w}}[[Church of Santa Maria della Visitazione | Church of Santa Maria della Visitazione]]{{w}}[[Church of San Nicolo dei Mendicoli | Church of San Nicolo dei Mendicoli]]&lt;br /&gt;
|group4 = San Marco&lt;br /&gt;
|list4 = [[Church of San Fantin | Church of San Fantin]]{{w}}[[Church of San Zulian | Church of San Zulian]]{{w}}[[Church of San Basso | Church of San Basso]]{{w}}[[Basilica of San Marco (Church) | Basilica of San Marco (Church)]]{{w}}[[Church of San Stefano | Church of San Stefano]]{{w}}[[Church of San Luca | Church of San Luca]]{{w}}[[Church of S. Vidal | Church of S. Vidal]]{{w}}[[Church of San Samuele | Church of San Samuele]]{{w}}[[Church of Santa Maria Zobenigo | Church of Santa Maria Zobenigo]]{{w}}[[Church of San Teodoro | Church of San Teodoro]]{{w}}[[Oratorio dell&#039;Annunciata | Oratorio dell&#039;Annunciata]]{{w}}[[Church of San Moisè | Church of San Moisè]]{{w}}[[Church of San Gallo | Church of San Gallo]]{{w}}[[Church of San Salvador | Church of San Salvador]]{{w}}[[Church of Santa Croce degli Armeni | Church of Santa Croce degli Armeni]]{{w}}[[Church of San Bartolomeo | Church of San Bartolomeo]]{{w}}[[Church of San Benedetto | Church of San Benedetto]]{{w}}[[Church of San Maurizio | Church of San Maurizio]]&lt;br /&gt;
|group5 = San Polo&lt;br /&gt;
|list5 = [[Church of San Silvestro | Church of San Silvestro]]{{w}}[[Church of Sant&#039;Aponal | Church of Sant&#039;Aponal]]{{w}}[[Church of San Polo | Church of San Polo]]{{w}}[[Church of Sant&#039;Aponal | Church of Sant&#039;Aponal]]{{w}}[[Church of San Giovanni Elemosinario | Church of San Giovanni Elemosinario]]{{w}}[[Church of Frari | Church of Frari]]{{w}}[[Church of San Giacometo di Rialto | Church of San Giacometo di Rialto]]{{w}}[[Church of San Giovanni Evangelista | Church of San Giovanni Evangelista]]{{w}}[[Church of San Rocco | Church of San Rocco]]{{w}}[[Church of San Cassian | Church of San Cassian]]&lt;br /&gt;
|group6 = Santa Croce&lt;br /&gt;
|list6 = [[Church of Tolentini | Church of Tolentini]]{{w}}[[Church of San Giacomo dell&#039;Orio | Church of San Giacomo dell&#039;Orio]]{{w}}[[Church of Nome di Gesu | Church of Nome di Gesu]]{{w}}[[Church of Maria Mater Domini | Church of Maria Mater Domini]]{{w}}[[Church of San Zandegola | Church of San Zandegola]]{{w}}[[Church of La Zirada | Church of La Zirada]]{{w}}[[Church of Santa Maria Maggiore | Church of Santa Maria Maggiore]]{{w}}[[Church of San Stae | Church of San Stae]]{{w}}[[Church of San Simeon Piccolo | Church of San Simeon Piccolo]]{{w}}[[Church of San Simeon Grando | Church of San Simeon Grando]]&lt;br /&gt;
|group7 = Giudecca&lt;br /&gt;
|list7 = [[Church of Redentore | Church of Redentore]]{{w}}[[Church of Sant&#039;Eufemia | Church of Sant&#039;Eufemia]]{{w}}[[Church of San Convertite | Church of San Convertite]]{{w}}[[Church of San Cosmo | Church of San Cosmo]]{{w}}[[Church of Le Zitelle | Church of Le Zitelle]]{{w}}[[Church of San Gerardo | Church of San Gerardo]]{{w}}[[Church of San Trinità | Church of San Trinità]]{{w}}[[Church of San Giorgio | Church of San Giorgio]]{{w}}[[Church of La Croce | Church of La Croce]]&lt;br /&gt;
|group8 = Islands&lt;br /&gt;
|list8 = [[Church of San Antonio | Church of San Antonio]]{{w}}[[Church of Ognissanti di Pellestrina | Church of Ognissanti di Pellestrina]]{{w}}[[Church of Santa Maria Elisabetta | Church of Santa Maria Elisabetta]]{{w}}[[Church of San Antonio | Church of San Antonio]]{{w}}[[Church of San Barnaba in Burano | Church of San Barnaba in Burano]]{{w}}[[Church of San Michele | Church of San Michele]]{{w}}[[Church of San Pietro | Church of San Pietro]]{{w}}[[Church of San Donato | Church of San Donato]]{{w}}[[Church of Santa Caterina | Church of Santa Caterina]]{{w}}[[Church of Santa Maria dell&#039;Assunzione | Church of Santa Maria dell&#039;Assunzione]]{{w}}[[Church of Santi Vito e Modesto in Pellestrina | Church of Santi Vito e Modesto in Pellestrina]]{{w}}[[Church of Sant&#039;Erosia | Church of Sant&#039;Erosia]]{{w}}[[Church of Santa Maria degli Angeli | Church of Santa Maria degli Angeli]]{{w}}[[Church of Sant&#039;Erasmo | Church of Sant&#039;Erasmo]]{{w}}[[Church of Santa Maria Assunta | Church of Santa Maria Assunta]]{{w}}[[Church of San Martino | Church of San Martino]]{{w}}[[Church of San Nicolò | Church of San Nicolò]]{{w}}[[Church of San Pietro Martire | Church of San Pietro Martire]]{{w}}[[Church of Santa Fosca in Torcello | Church of Santa Fosca in Torcello]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:San Marco Churches]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64535</id>
		<title>Template:Regular segments</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64535"/>
		<updated>2014-06-16T15:52:11Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Type&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{#firebaseraw:{{{url}}}/data/Name }}&#039;&#039;&#039; is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
[[Category:regular segments]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64534</id>
		<title>Template:Regular segments</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64534"/>
		<updated>2014-06-16T15:50:46Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Type&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{#firebaseraw:{{{url}}}/data/Name }}&#039;&#039;&#039; is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
[[Category:regular segments]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64533</id>
		<title>Template:Regular segments</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64533"/>
		<updated>2014-06-16T15:37:19Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Type&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{#firebaseraw:{{{url}}}/data/Name }}&#039;&#039;&#039; is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
[[Category:regular segments]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64532</id>
		<title>Template:Regular segments</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64532"/>
		<updated>2014-06-16T15:36:59Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Type&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{#firebaseraw:{{{url}}}/data/Name }} is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
[[Category:regular segments]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64531</id>
		<title>Template:Regular segments</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Regular_segments&amp;diff=64531"/>
		<updated>2014-06-16T15:01:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label5 = Name&lt;br /&gt;
|data5 = &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label9 = Type&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Type&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Length&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Length&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
|label15 = Minimum Width&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Minimum Width&#039; /&amp;gt; meters&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt; is a street segment in Venice, Italy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:regular segments]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:Final_Altar_Pictures&amp;diff=64530</id>
		<title>Template:Final Altar Pictures</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:Final_Altar_Pictures&amp;diff=64530"/>
		<updated>2014-06-16T14:57:18Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|above = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;&lt;br /&gt;
&amp;lt;!--|title = &amp;lt;firebase url=&#039;{{{url}}}/birth_certificate/birthID&#039; /&amp;gt;--&amp;gt;&lt;br /&gt;
|titlestyle = &lt;br /&gt;
|imagestyle = &lt;br /&gt;
|headerstyle = background:#ccf;&lt;br /&gt;
|labelstyle = background:#ddf;&lt;br /&gt;
|datastyle = &lt;br /&gt;
&lt;br /&gt;
|image = {{#firebaseraw:{{{url}}}/media/images/{{#firebaseraw:{{{url}}}/merged-media-ids/images/Final Altar Pictures}}/thumb}}&lt;br /&gt;
&lt;br /&gt;
|header3 = Information&lt;br /&gt;
&lt;br /&gt;
|label9 = Creator&lt;br /&gt;
|data9 = &amp;lt;firebase url=&#039;{{{url}}}/data/Creator&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label13 = Guild Association&lt;br /&gt;
|data13 = &amp;lt;firebase url=&#039;{{{url}}}/data/Guild Association&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label15 = Level of Damage&lt;br /&gt;
|data15 = &amp;lt;firebase url=&#039;{{{url}}}/data/Level of Damage&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label17 = Location&lt;br /&gt;
|data17 = &amp;lt;firebase url=&#039;{{{url}}}/data/Location&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|label23 = Patron Saint&lt;br /&gt;
|data23 = &amp;lt;firebase url=&#039;{{{url}}}/data/Patron Saint&#039; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;The &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt; was built by &amp;lt;firebase url=&#039;{{{url}}}/data/Creator&#039; /&amp;gt; and is located in the &amp;lt;firebase url=&#039;{{{url}}}/data/Church in which it is located&#039; /&amp;gt;. The patron saint depicted on this altar is &amp;lt;firebase url=&#039;{{{url}}}/data/Patron Saint&#039; /&amp;gt;. &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
{|&lt;br /&gt;
| Altar Code: || &amp;lt;firebase url=&#039;{{{url}}}/data/Altar Code&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Church in which it is located: || &amp;lt;firebase url=&#039;{{{url}}}/data/Church in which it is located&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Creator: || &amp;lt;firebase url=&#039;{{{url}}}/data/Creator&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Date Visited: || &amp;lt;firebase url=&#039;{{{url}}}/data/Date Visited&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Guild Association: || &amp;lt;firebase url=&#039;{{{url}}}/data/Guild Association&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Level of Damage: || &amp;lt;firebase url=&#039;{{{url}}}/data/Level of Damage&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Location: || &amp;lt;firebase url=&#039;{{{url}}}/data/Location&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!--| Name: || &amp;lt;firebase url=&#039;{{{url}}}/data/Name&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Notes: || &amp;lt;firebase url=&#039;{{{url}}}/data/Notes&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Patron Saint: || &amp;lt;firebase url=&#039;{{{url}}}/data/Patron Saint&#039; /&amp;gt;&lt;br /&gt;
|---&amp;gt;&lt;br /&gt;
| Latest Year Assessed: || &amp;lt;firebase url=&#039;{{{url}}}/data/Year Assessed&#039; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Altars]]&lt;br /&gt;
[[Category:CK-data]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=A_Detailed_look_at_the_Changing_Venetian_Retail_Sector&amp;diff=64529</id>
		<title>A Detailed look at the Changing Venetian Retail Sector</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=A_Detailed_look_at_the_Changing_Venetian_Retail_Sector&amp;diff=64529"/>
		<updated>2014-06-16T14:55:22Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Project page&lt;br /&gt;
|image=[[File:B2011 Stores Team.JPG|200px]]&lt;br /&gt;
|year= 2011&lt;br /&gt;
|season= Fall&lt;br /&gt;
|term= B&lt;br /&gt;
|topic= Economy and Tourism&lt;br /&gt;
|team members=Laura Aurilio &amp;lt;br&amp;gt; Heather Lewis &amp;lt;br&amp;gt; Katherine Mattern &amp;lt;br&amp;gt; Christopher Pinola&lt;br /&gt;
|advisors=Fabio Carrerra &amp;lt;br&amp;gt; Frederick Bianchi&lt;br /&gt;
|sponsors=[[Venice Project Center]]&lt;br /&gt;
&lt;br /&gt;
|abstract=Since World War II, the entire face of the Venetian retail sector has changed quite &lt;br /&gt;
considerably. Since 2004, student teams from Worcester Polytechnic Institute have studied the &lt;br /&gt;
evolution of stores in the whole city, revealing that there were at least 4506 shops in Venice of &lt;br /&gt;
which 856 are now closed. Moreover, many stores that used to meet the needs of locals have &lt;br /&gt;
since been converted to cater to tourists. There are multiple reasons for these transformations &lt;br /&gt;
including the demographic decline, the huge increase in the number of visitors, and the advent &lt;br /&gt;
of supermarkets. This project collected the current status of storefronts in the Castello area and &lt;br /&gt;
created a solid baseline for future data collection and analysis, allowing for stronger conclusions &lt;br /&gt;
to be made.&lt;br /&gt;
&lt;br /&gt;
|report=&lt;br /&gt;
[http://www.wpi.edu/Pubs/E-project/Available/E-project-122211-215914/unrestricted/ve11_Super_Final_Report_newest.pdf A Detailed look at the Changing Venetian Retail Sector]&lt;br /&gt;
&lt;br /&gt;
|see also=&lt;br /&gt;
|external links=&lt;br /&gt;
*[https://sites.google.com/site/ve11supermarket/ Team Website]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:VPC Projects]]&lt;br /&gt;
[[Category:Tourism]]&lt;br /&gt;
[[Category:Stores]]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=1800_Stockdale_A_Plan_of_the_City_of_Venice&amp;diff=64528</id>
		<title>1800 Stockdale A Plan of the City of Venice</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=1800_Stockdale_A_Plan_of_the_City_of_Venice&amp;diff=64528"/>
		<updated>2014-06-16T14:53:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This map is a good depiction of the city of Venice in the year 1800. The author, John Stockdale, was born a blacksmith but then moved into making maps. &lt;br /&gt;
&lt;br /&gt;
The map he produced of Venice is a good depiction of the city, taking into account that he was making the map on ground level. &lt;br /&gt;
&lt;br /&gt;
There is a small portion of the map that is incorrect based on the size of the islands. However, the map a a whole is very detailed and through. &lt;br /&gt;
&lt;br /&gt;
This map has been used as a bench mark for the shape of Venice from the year 1800.&lt;br /&gt;
&lt;br /&gt;
The map can be seen below.&lt;br /&gt;
&lt;br /&gt;
[[File:Stockdale_1800_venice_b.jpg||700px]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Venice_Project_Center&amp;diff=64527</id>
		<title>Venice Project Center</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Venice_Project_Center&amp;diff=64527"/>
		<updated>2014-02-04T04:22:15Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox &lt;br /&gt;
|above     = Venice Project Center&lt;br /&gt;
|label2    = Established    &lt;br /&gt;
|data2     = 1988&lt;br /&gt;
|label3    = Director&lt;br /&gt;
|data3     = Fabio Carrera&lt;br /&gt;
|label4    = Staff&lt;br /&gt;
|data4     = Alberto Gallo&amp;lt;br&amp;gt;Andrea Mancuso&lt;br /&gt;
|label5    = Address&lt;br /&gt;
|data5     = San Polo 1932/A&amp;lt;br&amp;gt;Fondamenta de le Tette&amp;lt;br&amp;gt;Venice, 30125&amp;lt;br&amp;gt;Italy&lt;br /&gt;
|label6    = Phone&lt;br /&gt;
|data6     = +39 041 523 3209&lt;br /&gt;
|label7    = Fax&lt;br /&gt;
|data7     = +39 041 241 9344&lt;br /&gt;
|label8    = Website&lt;br /&gt;
|data8     = [http://veniceprojectcenter.org/ veniceprojectcenter.org]&lt;br /&gt;
|label9    = List of projects&lt;br /&gt;
|data9     = [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html Click here]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Venice Project Center&#039;&#039;&#039;, a research facility operated by [http://www.wpi.edu/ Worcester Polytechnic Institute], was founded in 1988 by Fabio Carrera. Since then, [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html more than 180 projects] have been completed (by more than 640 students) addressing a host of challenges, from maintaining the city&#039;s famous canals, analyzing its boat traffic, and cataloging its public art.&lt;br /&gt;
&lt;br /&gt;
The Venice Project Center&#039;s website is located at [http://veniceprojectcenter.org/ veniceprojectcenter.org]. Other VPC projects include:&lt;br /&gt;
* [http://www.venipedia.org/wiki/index.php?title=Main_Page Venipedia]&lt;br /&gt;
* [http://dashboard.veniceprojectcenter.org/ Venice Dashboard]&lt;br /&gt;
* [http://debarbari.veniceprojectcenter.org/ De&#039;Barbari Explorer]&lt;br /&gt;
* [http://www.preservenice.org/ PreserVenice]&lt;br /&gt;
* [http://www.uscript.org/ uScript]&lt;br /&gt;
* [https://twitter.com/wpi_vpc Twitter feed with tide forecasts]&lt;br /&gt;
&lt;br /&gt;
[[File:KHM 9890.jpg|thumb|WPI student projects in the VPC office in Venice]]To see photos of VPC students and projects, please visit the [http://venice2point0.org/gallery/main.php Venice 2.0 Gallery].&lt;br /&gt;
&lt;br /&gt;
==Directions to the Venice Project Center==&lt;br /&gt;
Take &#039;&#039;&#039;Boat Line 1&#039;&#039;&#039; down the Grand Canal to the &#039;&#039;&#039;Rialto Mercato&#039;&#039;&#039; boat stop. Disembark and take a right, walking towards the Rialto Market (Campo de la Pescaria).  You will skirt along the southwest side of the market (with a view of the Grand Canal), and head for the bridge after you walk underneath the arches of the building that constitutes the roof of the covered fish market.  Cross the bridge and walk along the Fondamenta de l&#039;Olio (still along Grand Canal) until you reach Calle dei Boteri (1st left).&amp;lt;br&amp;gt;&lt;br /&gt;
Walk all the way down &#039;&#039;&#039;Calle dei Boteri&#039;&#039;&#039;, then take a right and walk through the little square and down the very narrow street which emerges onto the Calle de le Carampane.  Take a right.  There will be a restaurant on your right.  Walk past the restaurant until you come up to a bridge.  Do not cross it, but walk to the end of &#039;&#039;&#039;Fondamenta de le Tette&#039;&#039;&#039;, look for number 1932/A and the WPI label. Knock on the door.&lt;br /&gt;
&lt;br /&gt;
==How to get to the &#039;&#039;Rialto Mercato&#039;&#039; boat stop from airport==&lt;br /&gt;
When you land at Venice “Marco Polo” airport, you have two options to reach the &#039;&#039;&#039;Rialto Mercato&#039;&#039;&#039; boat stop:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;1 - by land:&#039;&#039;&#039; you need to get to &#039;&#039;&#039;Piazzale Roma&#039;&#039;&#039; with public bus line 5 ([http://www.actv.it/pdf/urbano/U-5.pdf time table] / [http://www.actv.it/pdf/piante_automobilistico/5-UM.pdf bus roadmap]), from &#039;&#039;&#039;Piazzale Roma&#039;&#039;&#039; take pubblic boat line 1 (direction Rialto) and disembark at &#039;&#039;&#039;RIALTO MERCATO&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;2 - by water (venetian-style):&#039;&#039;&#039; you can use water public boat service &#039;&#039;&#039;ALILAGUNA BLUE&#039;&#039;&#039; ([http://www.alilaguna.it/lineablu.html time table and roadmap]) to reach &#039;&#039;&#039;Fondamente Nuove&#039;&#039;&#039; boat stop, then follow path on map below (Figure 4).  This is the easiest way...&amp;lt;BR&amp;gt; From Ca&#039; d&#039;Oro take pubblic boat line 1 (direction Rialto) to &#039;&#039;&#039;RIALTO MERCATO&#039;&#039;&#039; (one stop); alternatively you can take &amp;quot;Gondola Traghetto&amp;quot; and cross the Canal Grande with a Gondola!! It only costs 50 euro cents!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Photo gallery==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:B 10 canals SAM 0801.jpg|2010 Canals project&lt;br /&gt;
File:B 10 origins IMG 0583.JPG|2010 History project&lt;br /&gt;
File:B 10 shops.jpg|2010 Shops project&lt;br /&gt;
File:Group in front of QV 3 B10 Ships.jpg|2010 Ships project&lt;br /&gt;
File:B 08 dna sample origins IMG 0509.JPG|The 2008 Genesis team takes their own DNA samples&lt;br /&gt;
File:B 07KHM 9100 copy.jpg|All VPC students in 2007&lt;br /&gt;
File:2006 b taxi team Team Photo With Alberto jpg.jpg|2006 Taxi Re-engineering&lt;br /&gt;
File:B 2006 retails Venezia 223 .JPG|2006 Food Stores project&lt;br /&gt;
File:E 05 church floors Eric and Kelly With laser level CANC.JPG|Church Floors project, 2005&lt;br /&gt;
File:E 04 reconstructing sea levels 1002.jpg|Sea level reconstruction in 2004&lt;br /&gt;
File:1996earthwatch3.jpg|1995 Bells and Bell Towers&lt;br /&gt;
File:Group dinner E95 2.jpg|Group dinner, 1995&lt;br /&gt;
File:E95 Project Center circa summer 1995 1.jpg|Venice Project Center, 1995&lt;br /&gt;
File:San Marco roof E95 4.jpg|Saskia Rosas and Enith Morillo on the roof of the Basilica di San Marco, E&#039;1994&lt;br /&gt;
File:E93 Students Archeo 93 5.jpg|Lagoon archeology, 1993&lt;br /&gt;
File:C1991Acid Fog 8.jpg|Acid Fog project in 1991&lt;br /&gt;
File:C1991Acid Fog 14.jpg|Acid Fog project in 1991&lt;br /&gt;
File:C 1990 scan0001.jpg|VPC students in 1990&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Main_Page&amp;diff=64526</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Main_Page&amp;diff=64526"/>
		<updated>2014-02-02T21:22:18Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Banner.png|left|x|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; margin-top:1.2em; background:#eeeeee; border:1px solid #cccccc;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:57%; color:#000&amp;quot;|&lt;br /&gt;
{| style=&amp;quot;width:400px; border:solid 0px; background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:400px; text-align:center; white-space:nowrap; color:#000;&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#000;&amp;quot;&amp;gt;Welcome to Venipedia&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;top:+0.2em; font-size:120%;&amp;quot;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&amp;gt;A free, data-driven resource all about Venice, Italy.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;articlecount&amp;quot; style=&amp;quot;width:100%; text-align:center; font-size:90%;&amp;quot;&amp;gt;[[Special:Statistics|{{NUMBEROFARTICLES}}]] articles about Venice...and growing!&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|style=&amp;quot;width:20%; font-size:95%; color:#000;&amp;quot;|&lt;br /&gt;
*[[Portal:Arts and Crafts|Arts &amp;amp; Crafts]]&lt;br /&gt;
*[[Portal:Economy and Society|Economy &amp;amp; Society]]&lt;br /&gt;
*[[Portal:History and Geography|History &amp;amp; Geography]]&lt;br /&gt;
*[[Portal:People and Institutions|People &amp;amp; Institutions]]&lt;br /&gt;
|style=&amp;quot;width:15%; font-size:95%;&amp;quot;|&lt;br /&gt;
*[[Portal:Infrastructure and Mobility|Infrastructure &amp;amp; Mobility]]&lt;br /&gt;
*[[Portal:Nature and Energy|Nature &amp;amp; Energy]]&lt;br /&gt;
*[[Portal:Science and Technology|Science &amp;amp; Technology]]&lt;br /&gt;
*&#039;&#039;&#039;[[Special:Categories|All categories...]]&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin: 0px 0px 5px 0px; background:#DCDCDC; border:1px solid #cccccc; width:100%;&amp;quot;&lt;br /&gt;
| &lt;br /&gt;
&amp;lt;h2  style=&amp;quot;margin:0; background:#ba0000; font-size:120%; font-weight:bold;  border:1px solid #cccccc; text-align:left; color:#fff; padding:0.2em  0.4em;&amp;quot;&amp;gt;What is Venipedia?&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;p style=&amp;quot;padding: 0px 5px;&amp;quot;&amp;gt;&#039;&#039;&#039;Venipedia&#039;&#039;&#039; is a non-commercial wiki-based website dedicated to providing original information and data about the city of Venice, Italy. With the goal of cataloging and understanding every aspect of the unique culture, organization, and history, Venipedia seeks to provide English-speakers with a definitive compendium of up-to-date data on the incredible examples of human achievement found in Venice. Venipedia aims to fill the information gap left by other online knowledge bases by serving as a more detailed and data-oriented primary resource. Whether you are a curious individual or an official organization conducting research, Venipedia is dedicated to preserving all that Venice has to offer the world, and making it available to you.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;padding: 0px 5px;&amp;quot;&amp;gt;To learn more about the purpose, content, and approach that separates Venipedia from other online resources visit the [[Help:About|About Venipedia]] page.&amp;lt;/p&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;float:left; margin: 10px 5px 0px 0px; background:#f1f3ff; border:1px solid #cccccc; width:49%;&amp;quot;&lt;br /&gt;
| &lt;br /&gt;
&amp;lt;div class=&amp;quot;randomarticle&amp;quot;&amp;gt;&lt;br /&gt;
{{#dpl:&lt;br /&gt;
|category=Public Art&lt;br /&gt;
|namespace=&lt;br /&gt;
|includepage=*&lt;br /&gt;
|includemaxlength=600&lt;br /&gt;
|escapelinks=false&lt;br /&gt;
|resultsheader=__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
|randomcount=1&lt;br /&gt;
|mode=userformat&lt;br /&gt;
|addpagecounter=true&lt;br /&gt;
|listseparators=&amp;lt;h2 style=&amp;quot;margin:0; background:#A9A9A9; font-size:120%; font-weight:bold; border:1px solid #cccccc; text-align:left; color:#fff; padding:0.2em 0.4em;&amp;quot;&amp;gt;Featured Article: , [[%PAGE%]]&amp;lt;/h2&amp;gt;,,\n&lt;br /&gt;
}} &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin: 10px 0px 0px 0px; background:#DCDCDC; border:1px solid #cccccc; width:50%; float:right;&amp;quot; &lt;br /&gt;
| &amp;lt;h2   style=&amp;quot;margin:0; background:#006666; font-size:120%; font-weight:bold; border:1px solid #cccccc; text-align:left; color:#fff; padding:0.2em   0.4em;&amp;quot;&amp;gt;Analytics at a glance...&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;center&amp;quot; style=&amp;quot;width:auto; margin-left:auto; margin-right:auto;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Total Number of Pages&#039;&#039;&#039; {{NUMBEROFPAGES}} &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Total Number of Articles&#039;&#039;&#039; {{NUMBEROFARTICLES}} &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Most Popular Pages&#039;&#039;&#039;&lt;br /&gt;
{{#dpl: &lt;br /&gt;
|namespace=  &lt;br /&gt;
|ordermethod=counter&lt;br /&gt;
|order=descending&lt;br /&gt;
|addpagecounter=true&lt;br /&gt;
|count=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
For more statistics click [http://www.venipedia.org/wiki/index.php?title=Special:Statistics here].&lt;br /&gt;
&lt;br /&gt;
[[File:Analytics 2010-2012.JPG|thumb]] &amp;lt;br&amp;gt;&lt;br /&gt;
The figure on the right illustrates results from Google Analytics, taken from October 2010 through October 2012. The site had a total of &#039;&#039;&#039;43,090&#039;&#039;&#039; different visitors with a return rate of 21.41%. Continue to check back for updates!&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
{| style=&amp;quot;margin: 10px 5px 0px 0px; background:#DCDCDC; border:1px solid #cccccc; width:49%; float:left;&amp;quot;&lt;br /&gt;
| &amp;lt;h2   style=&amp;quot;margin:0; background:#993333; font-size:120%; font-weight:bold; border:1px solid #cccccc; text-align:left; color:#fff; padding:0.2em   0.4em;&amp;quot;&amp;gt;Did you know...&amp;lt;/h2&amp;gt;&lt;br /&gt;
*...that the [[Centro Maree]] is responsible for sending out the tide forecast and acqua alta warnings in Venice?&lt;br /&gt;
*...there are 1,098 [[coats of arms]] in Venice?&lt;br /&gt;
*...that Venice is the [[Cruise ships|cruise ship]] capital of the Mediterranean?&lt;br /&gt;
*...there are 238 [[wellheads]] in Venice?&lt;br /&gt;
*...Venice is composed of 182 [[canals]] that are navigated by [[ACTV Boat Lines|public transportation boats]] along with more traditional [[gondolas]]?&lt;br /&gt;
*...that the Venetian [[Sewage disposal|sewage]] system was once the most advanced in the world?&lt;br /&gt;
*...the greatest flood in history was the [[flood of 1966]] which destroyed billions of dollars worth of art?&lt;br /&gt;
*...the [[Streets|2650 streets]] of Venice are connected by [[Bridges|433 bridges]]?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;margin: 10px 0px 0px 0px; background:#DCDCDC; border:1px solid #cccccc; width:50%; float:right;&amp;quot;&lt;br /&gt;
| &amp;lt;h2   style=&amp;quot;margin:0; background:#663333; font-size:120%; font-weight:bold; border:1px solid #cccccc; text-align:left; color:#fff; padding:0.2em   0.4em;&amp;quot;&amp;gt;New to Wiki?&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;center&amp;quot; style=&amp;quot;width:auto; margin-left:auto; margin-right:auto;&amp;quot;&amp;gt;&lt;br /&gt;
Learn more by checking out the [[Help:Contents|Help]] section!&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Want to become a contributor?  Request an account [[Special:RequestAccount|here]].&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Want to &#039;&#039;&#039;contribute&#039;&#039;&#039;? Start creating articles using the [[Venipedia:Article wizard/Subject|article wizard]]. &amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
{| style=&amp;quot;margin: 10px 0px 0px 0px; background:#126180; border:1px solid #cccccc; width:15%; float:center; margin-left: auto; margin-right: auto;&amp;quot;&lt;br /&gt;
| &amp;lt;h2   style=&amp;quot;margin:0; background:#ACE5EE; font-size:120%; font-weight:bold; border:5px solid #0D98BA; text-align:center; color:#fff; padding:0.2em   0.2em;&amp;quot;&amp;gt;[[Article wizard|Contribute!]]&amp;lt;/h2&amp;gt;&lt;br /&gt;
|} &lt;br /&gt;
[[File:Wpi logo.jpg|right|150px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;visibility: hidden;&amp;quot;&amp;gt;&amp;lt;references/&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
[[Category:ArticleFeedbackBlacklist]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Venice_Project_Center&amp;diff=64525</id>
		<title>Venice Project Center</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Venice_Project_Center&amp;diff=64525"/>
		<updated>2014-02-02T20:18:15Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox &lt;br /&gt;
|above     = Venice Project Center&lt;br /&gt;
|label2    = Established    &lt;br /&gt;
|data2     = 1988&lt;br /&gt;
|label3    = Director&lt;br /&gt;
|data3     = Fabio Carrera&lt;br /&gt;
|label4    = Staff&lt;br /&gt;
|data4     = Alberto Gallo&amp;lt;br&amp;gt;Andrea Mancuso&lt;br /&gt;
|label5    = Address&lt;br /&gt;
|data5     = San Polo 1932/A&amp;lt;br&amp;gt;Fondamenta de le Tette&amp;lt;br&amp;gt;Venice, 30125&amp;lt;br&amp;gt;Italy&lt;br /&gt;
|label6    = Phone&lt;br /&gt;
|data6     = +39 041 523 3209&lt;br /&gt;
|label7    = Fax&lt;br /&gt;
|data7     = +39 041 241 9344&lt;br /&gt;
|label8    = Website&lt;br /&gt;
|data8     = [http://veniceprojectcenter.org/ veniceprojectcenter.org]&lt;br /&gt;
|label9    = List of projects&lt;br /&gt;
|data9     = [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html Click here]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Venice Project Center&#039;&#039;&#039;, a research facility operated by [http://www.wpi.edu/ Worcester Polytechnic Institute], was founded in 1988 by Fabio Carrera. Since then, [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html more than 180 projects] have been completed (by more than 640 students) addressing a host of challenges, from maintaining the city&#039;s famous canals, analyzing its boat traffic, and cataloging its public art.&lt;br /&gt;
&lt;br /&gt;
The Venice Project Center&#039;s website is located at [http://veniceprojectcenter.org/ veniceprojectcenter.org]. Other VPC projects include:&lt;br /&gt;
* [http://www.venipedia.org/wiki/index.php?title=Main_Page Venipedia]&lt;br /&gt;
* [http://dashboard.veniceprojectcenter.org/ Venice Dashboard]&lt;br /&gt;
* [http://debarbari.veniceprojectcenter.org/ De&#039;Barbari Explorer]&lt;br /&gt;
* [http://www.preservenice.org/ PreserVenice]&lt;br /&gt;
* [http://www.uscript.org/ uScript]&lt;br /&gt;
* [https://twitter.com/wpi_vpc Twitter feed with tide forecasts]&lt;br /&gt;
&lt;br /&gt;
To see photos of VPC students and projects, please visit the [http://venice2point0.org/gallery/main.php Venice 2.0 Gallery].&lt;br /&gt;
&lt;br /&gt;
==Directions to the Venice Project Center==&lt;br /&gt;
Take &#039;&#039;&#039;Boat Line 1&#039;&#039;&#039; down the Grand Canal to the &#039;&#039;&#039;Rialto Mercato&#039;&#039;&#039; boat stop. Disembark and take a right, walking towards the Rialto Market (Campo de la Pescaria).  You will skirt along the southwest side of the market (with a view of the Grand Canal), and head for the bridge after you walk underneath the arches of the building that constitutes the roof of the covered fish market.  Cross the bridge and walk along the Fondamenta de l&#039;Olio (still along Grand Canal) until you reach Calle dei Boteri (1st left).&amp;lt;br&amp;gt;&lt;br /&gt;
Walk all the way down &#039;&#039;&#039;Calle dei Boteri&#039;&#039;&#039;, then take a right and walk through the little square and down the very narrow street which emerges onto the Calle de le Carampane.  Take a right.  There will be a restaurant on your right.  Walk past the restaurant until you come up to a bridge.  Do not cross it, but walk to the end of &#039;&#039;&#039;Fondamenta de le Tette&#039;&#039;&#039;, look for number 1932/A and the WPI label. Knock on the door.&lt;br /&gt;
 &lt;br /&gt;
==How to get to the &#039;&#039;Rialto Mercato&#039;&#039; boat stop from airport==&lt;br /&gt;
When you land at Venice “Marco Polo” airport, you have two options to reach the &#039;&#039;&#039;Rialto Mercato&#039;&#039;&#039; boat stop:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;1 - by land:&#039;&#039;&#039; you need to get to &#039;&#039;&#039;Piazzale Roma&#039;&#039;&#039; with public bus line 5 ([http://www.actv.it/pdf/urbano/U-5.pdf time table] / [http://www.actv.it/pdf/piante_automobilistico/5-UM.pdf bus roadmap]), from &#039;&#039;&#039;Piazzale Roma&#039;&#039;&#039; take pubblic boat line 1 (direction Rialto) and disembark at &#039;&#039;&#039;RIALTO MERCATO&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;2 - by water (venetian-style):&#039;&#039;&#039; you can use water public boat service &#039;&#039;&#039;ALILAGUNA BLUE&#039;&#039;&#039; ([http://www.alilaguna.it/lineablu.html time table and roadmap]) to reach &#039;&#039;&#039;Fondamente Nuove&#039;&#039;&#039; boat stop, then follow path on map below (Figure 4).  This is the easiest way...&amp;lt;BR&amp;gt; From Ca&#039; d&#039;Oro take pubblic boat line 1 (direction Rialto) to &#039;&#039;&#039;RIALTO MERCATO&#039;&#039;&#039; (one stop); alternatively you can take &amp;quot;Gondola Traghetto&amp;quot; and cross the Canal Grande with a Gondola!! It only costs 50 euro cents!&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Venice_Project_Center&amp;diff=64524</id>
		<title>Venice Project Center</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Venice_Project_Center&amp;diff=64524"/>
		<updated>2014-02-02T20:16:19Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox &lt;br /&gt;
|above     = Venice Project Center&lt;br /&gt;
|label2    = Established    &lt;br /&gt;
|data2     = 1988&lt;br /&gt;
|label3    = Director&lt;br /&gt;
|data3     = Fabio Carrera&lt;br /&gt;
|label4    = Staff&lt;br /&gt;
|data4     = Alberto Gallo&amp;lt;br&amp;gt;Andrea Mancuso&lt;br /&gt;
|label5    = Address&lt;br /&gt;
|data5     = San Polo 1932/A&amp;lt;br&amp;gt;Fondamenta de le Tette&amp;lt;br&amp;gt;Venice, 30125&amp;lt;br&amp;gt;Italy&lt;br /&gt;
|label6    = Phone&lt;br /&gt;
|data6     = +39 041 523 3209&lt;br /&gt;
|label7    = Fax&lt;br /&gt;
|data7     = +39 041 241 9344&lt;br /&gt;
|label8    = Website&lt;br /&gt;
|data8     = [http://veniceprojectcenter.org/ veniceprojectcenter.org]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Venice Project Center&#039;&#039;&#039;, a research facility operated by [http://www.wpi.edu/ Worcester Polytechnic Institute], was founded in 1988 by Fabio Carrera. Since then, [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html more than 180 projects] have been completed (by more than 640 students) addressing a host of challenges, from maintaining the city&#039;s famous canals, analyzing its boat traffic, and cataloging its public art.&lt;br /&gt;
&lt;br /&gt;
The Venice Project Center&#039;s website is located at [http://veniceprojectcenter.org/ veniceprojectcenter.org]. Other VPC projects include:&lt;br /&gt;
* [http://www.venipedia.org/wiki/index.php?title=Main_Page Venipedia]&lt;br /&gt;
* [http://dashboard.veniceprojectcenter.org/ Venice Dashboard]&lt;br /&gt;
* [http://debarbari.veniceprojectcenter.org/ De&#039;Barbari Explorer]&lt;br /&gt;
* [http://www.preservenice.org/ PreserVenice]&lt;br /&gt;
* [http://www.uscript.org/ uScript]&lt;br /&gt;
* [https://twitter.com/wpi_vpc Twitter feed with tide forecasts]&lt;br /&gt;
&lt;br /&gt;
To see photos of VPC students and projects, please visit the [http://venice2point0.org/gallery/main.php Venice 2.0 Gallery].&lt;br /&gt;
&lt;br /&gt;
==Directions to the Venice Project Center==&lt;br /&gt;
Take &#039;&#039;&#039;Boat Line 1&#039;&#039;&#039; down the Grand Canal to the &#039;&#039;&#039;Rialto Mercato&#039;&#039;&#039; boat stop. Disembark and take a right, walking towards the Rialto Market (Campo de la Pescaria).  You will skirt along the southwest side of the market (with a view of the Grand Canal), and head for the bridge after you walk underneath the arches of the building that constitutes the roof of the covered fish market.  Cross the bridge and walk along the Fondamenta de l&#039;Olio (still along Grand Canal) until you reach Calle dei Boteri (1st left).&amp;lt;br&amp;gt;&lt;br /&gt;
Walk all the way down &#039;&#039;&#039;Calle dei Boteri&#039;&#039;&#039;, then take a right and walk through the little square and down the very narrow street which emerges onto the Calle de le Carampane.  Take a right.  There will be a restaurant on your right.  Walk past the restaurant until you come up to a bridge.  Do not cross it, but walk to the end of &#039;&#039;&#039;Fondamenta de le Tette&#039;&#039;&#039;, look for number 1932/A and the WPI label. Knock on the door.&lt;br /&gt;
 &lt;br /&gt;
==How to get to the &#039;&#039;Rialto Mercato&#039;&#039; boat stop from airport==&lt;br /&gt;
When you land at Venice “Marco Polo” airport, you have two options to reach the &#039;&#039;&#039;Rialto Mercato&#039;&#039;&#039; boat stop:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;1 - by land:&#039;&#039;&#039; you need to get to &#039;&#039;&#039;Piazzale Roma&#039;&#039;&#039; with public bus line 5 ([http://www.actv.it/pdf/urbano/U-5.pdf time table] / [http://www.actv.it/pdf/piante_automobilistico/5-UM.pdf bus roadmap]), from &#039;&#039;&#039;Piazzale Roma&#039;&#039;&#039; take pubblic boat line 1 (direction Rialto) and disembark at &#039;&#039;&#039;RIALTO MERCATO&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;2 - by water (venetian-style):&#039;&#039;&#039; you can use water public boat service &#039;&#039;&#039;ALILAGUNA BLUE&#039;&#039;&#039; ([http://www.alilaguna.it/lineablu.html time table and roadmap]) to reach &#039;&#039;&#039;Fondamente Nuove&#039;&#039;&#039; boat stop, then follow path on map below (Figure 4).  This is the easiest way...&amp;lt;BR&amp;gt; From Ca&#039; d&#039;Oro take pubblic boat line 1 (direction Rialto) to &#039;&#039;&#039;RIALTO MERCATO&#039;&#039;&#039; (one stop); alternatively you can take &amp;quot;Gondola Traghetto&amp;quot; and cross the Canal Grande with a Gondola!! It only costs 50 euro cents!&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Venipedia:Article_wizard/Create_a_Project_Page&amp;diff=64523</id>
		<title>Venipedia:Article wizard/Create a Project Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Venipedia:Article_wizard/Create_a_Project_Page&amp;diff=64523"/>
		<updated>2014-02-02T19:55:33Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Project pages are geared towards those projects that are conducted in or for Venice. The most popular type of project within this category are projects conducted at the [[Venice Project Center]] (VPC). If you would like to get an idea of what these pages encompass, please view a full list of the [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html past projects conducted at the VPC].&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
To create your own Project page, choose one of the options below:&lt;br /&gt;
&amp;lt;table border=0 align=&amp;quot;center&amp;quot; width=&amp;quot;96%&amp;quot; cellpadding=&amp;quot;8&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&#039;&#039;&#039;VPC Project&#039;&#039;&#039; If you are a Worcester Polytechnic Institute (WPI) student trying to create a page for your project, you can create your page here. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;InputBox&amp;gt;&lt;br /&gt;
type=create&lt;br /&gt;
preload=Template:Creating a VPC project page&lt;br /&gt;
default=Enter your VPC project name here&lt;br /&gt;
editintro=Template:VPC Project page creation intro&lt;br /&gt;
buttonlabel=Create your VPC Project Page&lt;br /&gt;
&amp;lt;/InputBox&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&#039;&#039;&#039;Other Project&#039;&#039;&#039; If you&#039;re trying to create a page for a project not associated with WPI or the VPC, create a page here. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;InputBox&amp;gt;&lt;br /&gt;
type=create&lt;br /&gt;
preload=Template:Creating a project page&lt;br /&gt;
default=Enter the project name here&lt;br /&gt;
editintro=Template:Project page creation intro&lt;br /&gt;
buttonlabel=Create a Project Page&lt;br /&gt;
&amp;lt;/InputBox&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Template:ProjectsNav&amp;diff=64522</id>
		<title>Template:ProjectsNav</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Template:ProjectsNav&amp;diff=64522"/>
		<updated>2014-02-02T19:55:07Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|bodyclass =  &lt;br /&gt;
|name = VPC Projects&lt;br /&gt;
|title = [https://docs.google.com/spreadsheet/pub?key=0AkELG5jkw_b4dEpxb0d4QWxWSjRYU1hpVWFUMlR1Q3c&amp;amp;output=html VPC Projects]&lt;br /&gt;
|titleclass =  &lt;br /&gt;
|image =  &lt;br /&gt;
|above =  &lt;br /&gt;
|group2 = Art&lt;br /&gt;
|list2 = [[Public Art]]{{w}}[[Functional Art]]&lt;br /&gt;
|group3 = Mobility&lt;br /&gt;
|list3 = [[Pedestrian]]{{w}}[[Boats]]&lt;br /&gt;
|group4 = Infrastructure&lt;br /&gt;
|list4 = [[Plumbing]]{{w}}[[Electrical]]{{w}}[[Canals]]{{w}}[[Bridges]]&lt;br /&gt;
|group5 = Economy&lt;br /&gt;
|list5 = [[Tourism]]&lt;br /&gt;
|group6 = Science&lt;br /&gt;
|list6 = [[Hydrodynamics]]&lt;br /&gt;
|group7 = Miscellaneous&lt;br /&gt;
|list7 = [[Venipedia]]&lt;br /&gt;
|below=&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Navbox templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Torre_Dell%27Orologio&amp;diff=63778</id>
		<title>Torre Dell&#039;Orologio</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Torre_Dell%27Orologio&amp;diff=63778"/>
		<updated>2014-01-13T04:59:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Cleanup}} {{Expand}}&lt;br /&gt;
&lt;br /&gt;
{{ infobox &lt;br /&gt;
| abovestyle =  &lt;br /&gt;
| above = Torre dell&#039;Orologio  &lt;br /&gt;
| image = [[File:Clock Tower.jpg|200px|center|The clock tower in Saint Mark&#039;s Square is of practical and symbolic importance to the city of Venice.]] &lt;br /&gt;
| caption = &lt;br /&gt;
| headerstyle =  &lt;br /&gt;
| Address = &lt;br /&gt;
| label1 = Address&lt;br /&gt;
| data1 = Piazza San Marco&lt;br /&gt;
| Website = &lt;br /&gt;
| label2 = Website  &lt;br /&gt;
| data2 = http://www.vivaticket.it/evento.php?id_evento=409767&amp;amp;idt=567&amp;amp;op=museiCivici&amp;amp;change_language=1&lt;br /&gt;
| Ticket Price = &lt;br /&gt;
| label3 = Ticket Price&lt;br /&gt;
| data3 = €12,00 full priced&lt;br /&gt;
  &lt;br /&gt;
€8,00 reduced price&lt;br /&gt;
| Hours of Operation = &lt;br /&gt;
| label4 = Hours of Operation&lt;br /&gt;
| data4 = Permission into the clock tower is by guided tour only&lt;br /&gt;
&lt;br /&gt;
English: 10:00 - 11:00 Monday to Wednesday, 2:00 - 3:00 Thursday to Sunday&lt;br /&gt;
Italian: 12:00 - 13:00&lt;br /&gt;
French: 14:00 - 15:00 Monday to Wednesday, 10:00 - 11:00 Thursday to Sunday&lt;br /&gt;
(closed on  25 December and 1 January)&lt;br /&gt;
| header5 = &lt;br /&gt;
| label5 = &lt;br /&gt;
| data5 = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A lot of new pages are in the process of being uploaded to Venipedia. Please check back soon to see the full article on Torre Dell&#039;Orologio.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Torre_dell%27Orologio English Wikipedia article on St. Mark’s Clocktower]&lt;br /&gt;
*[http://it.wikipedia.org/wiki/Torre_dell%27Orologio_(Venezia) Italian Wikipedia article on St. Mark’s Clocktower]&lt;br /&gt;
&lt;br /&gt;
[[Category:Museums]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Traditional_Boats&amp;diff=63777</id>
		<title>Traditional Boats</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Traditional_Boats&amp;diff=63777"/>
		<updated>2014-01-13T04:59:01Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The term traditional boat refers to boats with flat bottoms and shallow draft hulls. Due to the shallow water  in the canals, the &#039;&#039;[[squerarioli]]&#039;&#039; were  forced to craft the boats  with a flat bottom to keep them from hitting  the bottom of the canal.   The shallow hull allowed the boats to be  dragged to shore with minimal  structural damage, made it easier for people to get in and  out of the boat, and made it easier for standing passengers to balance.   Such  features were important for passengers  crossing the Grand Canal in a type of  &#039;&#039;[[gondola]]&#039;&#039; called a  &#039;&#039;[[gondola da traghetto]]&#039;&#039; because it was customary for  passengers to remain standing.  &lt;br /&gt;
[[File:gondola.jpg|right|thumb|View of a &#039;&#039;gondola&#039;s&#039;&#039; ferro]]&lt;br /&gt;
&lt;br /&gt;
==Types==&lt;br /&gt;
Traditional  Venetian boats can be sub-divided into the three main categories listed below:   &lt;br /&gt;
&lt;br /&gt;
===Fishing and Hunting===&lt;br /&gt;
&lt;br /&gt;
Venice,  like many coastal cities, is known for its seafood cuisine.  Fishing in  the [[lagoon]] requires boats that are capable of transporting large  amounts of fish back to the island and the ability to  maneuver within the lagoon.  Three of the most-well  known fishing and hunting boats are the &#039;&#039;[[topo]]&#039;&#039;,  &#039;&#039;[[sanpierota]]&#039;&#039;, and the &#039;&#039;[[s&#039;ciopon]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Large Cargo Transport===&lt;br /&gt;
&lt;br /&gt;
The  city of Venice relies on boats for most large [[cargo]] transportation.  Cargo boats are filled with anything from fresh fruit to construction  supplies – everything the city needs is transported by boat.   Transporting large, heavy cargo requires a vessel strong enough to do  so, while maintaining maneuverability throughout the canals.  Two of the most  well-known large cargo transport boats are the &#039;&#039;[[caorlina]]&#039;&#039; and  &#039;&#039;[[peata]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Human Transport===&lt;br /&gt;
&lt;br /&gt;
In early  Venice, traditional boats were used as a means of both personal and  public transportation. The most common and  well-known human transport boats are the &#039;&#039;[[sandolo]]&#039;&#039;,  &#039;&#039;[[mascareta]]&#039;&#039;, &#039;&#039;[[puparin]]&#039;&#039;, and &#039;&#039;[[gondola]]&#039;&#039;.  Today motorized boats have replaced many of these human powered boats, and only the &#039;&#039;[[gondola]]&#039;&#039; remains as a tourist attraction.&lt;br /&gt;
&lt;br /&gt;
==Damage and Preservation==&lt;br /&gt;
&lt;br /&gt;
For information pertaining to the damage of traditional Venetian boats, please see the [[Damage to public art]] page.&lt;br /&gt;
&lt;br /&gt;
For  information pertaining to the preservation of traditional Venetian boats, please  see the [[Restoration and preservation of public art]] page.&lt;br /&gt;
&lt;br /&gt;
{{Map Traditional Boat}}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Arzana]]&lt;br /&gt;
*[[PreserVenice]]&lt;br /&gt;
&lt;br /&gt;
{{PublicArtNav}}&lt;br /&gt;
{{BoatsNav}}&lt;br /&gt;
[[Category:Traditional Boats]]&lt;br /&gt;
&lt;br /&gt;
==Bibliography==&lt;br /&gt;
*Arzana | Per Lo Studio E La Conservazione Delle Imbarcazioni Veneziane. Web. 12 Oct. 2010. &amp;lt;http://www.arzana.org/&amp;gt;. &lt;br /&gt;
*&#039;&#039;The Boats of Venice&#039;&#039;. Venezia: Libreria Editrice, 1999. Print.&lt;br /&gt;
*Bigda,  Bryan, Michelle Dubuke, Daniel LaTorella, and Jennifer Richards. Museo  Arzanà:  Preserving the Traditional Boats of Venice.  Interactive  Qualifying Project, Worcester Polytechnic Institute, 2007.  &lt;br /&gt;
*Candlish,  Sean, Craig Shevlin, and Sarah Stout.  The Traditional Boats of Venice:   Assessing a Maritime Heritage.  Interactive Qualifying Project,  Worcester Polytechnic Institute, 2004. &lt;br /&gt;
*Catalano, Brian, Kristen  Gervais, and Ryan Sinapius.  Preserving the Nautical Traditions and  Maritime Heritage of Venice, Italy.  Interactive Qualifying Project,  Worcester Polytechnic Institute, 2005.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.cityknowledge.org/index.php?title=Torre_Dell%27Orologio&amp;diff=63776</id>
		<title>Torre Dell&#039;Orologio</title>
		<link rel="alternate" type="text/html" href="https://wiki.cityknowledge.org/index.php?title=Torre_Dell%27Orologio&amp;diff=63776"/>
		<updated>2014-01-13T04:58:33Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* See Also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Cleanup}} {{Expand}}&lt;br /&gt;
&lt;br /&gt;
{{ infobox &lt;br /&gt;
| abovestyle =  &lt;br /&gt;
| above = Torre dell&#039;Orologio  &lt;br /&gt;
| image = [[File:Clock Tower.jpg|200px|center|The clock tower in Saint Mark&#039;s Square is of practical and symbolic importance to the city of Venice.]] &lt;br /&gt;
| caption = &lt;br /&gt;
| headerstyle =  &lt;br /&gt;
| Address = &lt;br /&gt;
| label1 = Address&lt;br /&gt;
| data1 = Piazza San Marco&lt;br /&gt;
| Website = &lt;br /&gt;
| label2 = Website  &lt;br /&gt;
| data2 = http://www.vivaticket.it/evento.php?id_evento=409767&amp;amp;idt=567&amp;amp;op=museiCivici&amp;amp;change_language=1&lt;br /&gt;
| Ticket Price = &lt;br /&gt;
| label3 = Ticket Price&lt;br /&gt;
| data3 = €12,00 full priced&lt;br /&gt;
  &lt;br /&gt;
€8,00 reduced price&lt;br /&gt;
| Hours of Operation = &lt;br /&gt;
| label4 = Hours of Operation&lt;br /&gt;
| data4 = Permission into the clock tower is by guided tour only&lt;br /&gt;
&lt;br /&gt;
English: 10:00 - 11:00 Monday to Wednesday, 2:00 - 3:00 Thursday to Sunday&lt;br /&gt;
Italian: 12:00 - 13:00&lt;br /&gt;
French: 14:00 - 15:00 Monday to Wednesday, 10:00 - 11:00 Thursday to Sunday&lt;br /&gt;
(closed on  25 December and 1 January)&lt;br /&gt;
| header5 = &lt;br /&gt;
| label5 = &lt;br /&gt;
| data5 = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A lot of new pages are in the process of being uploaded to Venipedia. Please check back soon to see the full article on Torre Dell&#039;Orologio.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
NULL&lt;br /&gt;
&lt;br /&gt;
==Bibliography==&lt;br /&gt;
NULL&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Torre_dell%27Orologio English Wikipedia article on St. Mark’s Clocktower]&lt;br /&gt;
*[http://it.wikipedia.org/wiki/Torre_dell%27Orologio_(Venezia) Italian Wikipedia article on St. Mark’s Clocktower]&lt;br /&gt;
&lt;br /&gt;
[[Category:Museums]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>