- <%@ Page Language="C#" Inherits="dlgr_FireTheXslt_20090504" %>
- <script runat="server">
- /* 4/3/2007 - 5/6/2009 Written by David L. Greene, 111 Park Street, Apt 6D, New Haven, CT 06511-5429, Tel 203-624-6860, Fax 203-624-9795, Dave@DLGreene.com */
- protected override String xslt_xml
- protected override String xslt_xslt
- {
- get
- {
- return "vr_quicktime.xsl";
- }
- }
- </script>
vr_quicktime.xsl
- <?xml version="1.0" encoding="utf-8"?>
- <!-- 4/3/2007 - 5/6/2009 Written by David L. Greene, 111 Park Street, Apt 6D, New Haven, CT 06511-5429, Tel 203-624-6860, Fax 203-624-9795, Dave@DLGreene.com -->
- <xsl:stylesheet version="1.0" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:import href="vr_002.xsl/>
- <xsl:output media-type="text/html" encoding="utf-8" method="xml" indent="no" omit-xml-declaration="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
- <xsl:variable name="css-url">css/vr_quicktime.css</xsl:variable>
- <xsl:variable name="current-viewer">QuickTime</xsl:variable>
- <xsl:variable name="VrViewerMinVer">6,0,2,0</xsl:variable>
- <xsl:param name="panid" select="/panoramas/panorama[vr-viewers/vr-viewer/id = $current-viewer][1]/id"/>
- <xsl:variable name="viewer-node" select="/panoramas/panorama[id=$panid]/vr-viewers/vr-viewer[id = $current-viewer]"/>
- <xsl:template name="html-head-extra">
- <xsl:if test="starts-with($browser-platform,'Mac')">
- <xsl:element name="script">
- <xsl:attribute name="type">text/javascript</xsl:attribute>
- <xsl:attribute name="src">scripts/ac_quicktime.js</xsl:attribute>
- <xsl:text/>
- </xsl:element>
- </xsl:if>
- <xsl:element name="script">
- <xsl:attribute name="type">text/javascript</xsl:attribute>
- <xsl:attribute name="src">scripts/mootools_122.js</xsl:attribute>
- <xsl:text/>
- </xsl:element>
- <xsl:element name="script">
- <xsl:attribute name="type">text/javascript</xsl:attribute>
- <xsl:attribute name="src">scripts/dlg_vr_script_20090505.js</xsl:attribute>
- <xsl:text/>
- </xsl:element>
- <xsl:call-template name="vr-script"/>
- </xsl:template>
- <xsl:template name="vr-script">
- <xsl:element name="script">
- <xsl:attribute name="type">text/javascript</xsl:attribute>
- <xsl:text disable-output-escaping="yes">/* <![CDATA[ */</xsl:text>
- window.addEvent('domready',function(){var VrObject=new dlg_VrObject();var DivObj=$('div-
- <xsl:value-of select="id"/>
- ');VrObject.CalcWidthHeight(DivObj,
- <xsl:value-of select="$viewer-node/width"/>
- ,
- <xsl:value-of select="$viewer-node/height"/>
- );
- <xsl:choose>
- <xsl:when test="starts-with($browser-platform,'Mac')">
- VrObject.objHTML=QT_GenerateOBJECTText_XHTML('http://www.dlgreene.com/vr_files/
- <xsl:value-of select="id"/>
- .mov',VrObject.width,VrObject.height,'','autoplay','True','scale','ToFit','controller','True','bgcolor','#000000');
- </xsl:when>
- <xsl:when test="$browser = 'IE'">
- VrObject.objHTML='
- <xsl:call-template name="object-content"/>
- ';VrObject.AdjustWidthHeight();
- </xsl:when>
- <xsl:otherwise>
- <xsl:text disable-output-escaping="yes">if(VrObject.NavigatorHasPlugin('QuickTime','video/quicktime',[</xsl:text>
- <xsl:value-of select="$VrViewerMinVer"/>
- <xsl:text disable-output-escaping="yes">])){VrObject.objHTML='</xsl:text>
- <xsl:call-template name="object-content"/>
- <xsl:text disable-output-escaping="yes">';VrObject.AdjustWidthHeight();}else VrObject.objHTML='</xsl:text>
- <xsl:call-template name="object-alt"/>
- <xsl:text disable-output-escaping="yes">';</xsl:text>
- </xsl:otherwise>
- </xsl:choose>
- DivObj.set('html',VrObject.objHTML);});
- <xsl:text disable-output-escaping="yes">/* ]]> */</xsl:text>
- </xsl:element>
- </xsl:template>
- <xsl:template name="vr-object">
- <xsl:element name="div">
- <xsl:attribute name="id">
- div-
- <xsl:value-of select="id"/>
- </xsl:attribute>
- <xsl:attribute name="class">vr-viewer</xsl:attribute>
- <xsl:element name="noscript">
- <xsl:element name="div">
- <xsl:attribute name="class">vr-viewer</xsl:attribute>
- <xsl:call-template name="object-content"/>
- <xsl:element name="p">
- <xsl:attribute name="class">center</xsl:attribute>
- <xsl:text>This content is better viewed if JavaScript available and enabled!</xsl:text>
- </xsl:element>
- </xsl:element>
- </xsl:element>
- </xsl:element>
- </xsl:template>
- <xsl:template name="object-content">
- <!-- This serves client xhtml essentially like the Gillay Method -->
- <!-- See note in http://www.dlgreene.com/code_info.aspx -->
- <xsl:element name="object">
- <xsl:attribute name="id">
- object-
- <xsl:value-of select="id"/>
- </xsl:attribute>
- <xsl:attribute name="class">vr-viewer</xsl:attribute>
- <xsl:attribute name="style">
- <xsl:text>width:</xsl:text>
- <xsl:value-of select="$viewer-node/width"/>
- <xsl:text>px;height:</xsl:text>
- <xsl:value-of select="$viewer-node/height"/>
- <xsl:text>px;</xsl:text>
- </xsl:attribute>
- <xsl:choose>
- <xsl:when test="$browser = 'IE'">
- <xsl:attribute name="codebase">
- http://www.apple.com/qtactivex/qtplugin.cab#version=
- <xsl:value-of select="$VrViewerMinVer"/>
- </xsl:attribute>
- <xsl:attribute name="classid">clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B</xsl:attribute>
- <xsl:element name="param">
- <xsl:attribute name="name">src</xsl:attribute>
- <xsl:attribute name="value">
- <xsl:text>http://www.dlgreene.com/vr_files/</xsl:text>
- <xsl:value-of select="id"/>
- <xsl:text>.mov</xsl:text>
- </xsl:attribute>
- </xsl:element>
- </xsl:when>
- <xsl:otherwise>
- <xsl:attribute name="type">video/quicktime</xsl:attribute>
- <xsl:attribute name="data">
- <xsl:text>http://www.dlgreene.com/vr_files/</xsl:text>
- <xsl:value-of select="id"/>
- <xsl:text>.mov</xsl:text>
- </xsl:attribute>
- </xsl:otherwise>
- </xsl:choose>
- <xsl:element name="param">
- <xsl:attribute name="name">scale</xsl:attribute>
- <xsl:attribute name="value">tofit</xsl:attribute>
- </xsl:element>
- <xsl:element name="param">
- <xsl:attribute name="name">controller</xsl:attribute>
- <xsl:attribute name="value">true</xsl:attribute>
- </xsl:element>
- <xsl:element name="param">
- <xsl:attribute name="name">bgcolor</xsl:attribute>
- <xsl:attribute name="value">#000000</xsl:attribute>
- </xsl:element>
- <xsl:call-template name="object-alt"/>
- </xsl:element>
- </xsl:template>
- <xsl:template name="object-alt">
- <xsl:element name="p">
- <xsl:attribute name="class">center</xsl:attribute>
- <xsl:text>This content requires Quicktime version </xsl:text>
- <xsl:value-of select="$VrViewerMinVer"/>
- <xsl:element name="br"/>
- <xsl:element name="br"/>
- <xsl:element name="a">
- <xsl:attribute name="href">http://www.apple.com/quicktime/download/</xsl:attribute>
- <xsl:attribute name="title">Get QuickTime</xsl:attribute>
- <xsl:attribute name="class">btn-download-quicktime</xsl:attribute>
- <xsl:element name="img">
- <xsl:attribute name="alt">Get QuickTime</xsl:attribute>
- <xsl:attribute name="class">btn-download-quicktime</xsl:attribute>
- <xsl:attribute name="title">Get QuickTime</xsl:attribute>
- <xsl:attribute name="src">images/btn_download_quicktime.gif</xsl:attribute>
- </xsl:element>
- </xsl:element>
- </xsl:element>
- </xsl:template>
- </xsl:stylesheet>
vr_data.xml
- <?xml version="1.0" encoding="utf-8"?>
- <!-- 4/3/2007 - 5/6/2009 Written by David L. Greene, 111 Park Street, Apt 6D, New Haven, CT 06511-5429, Tel 203-624-6860, Fax 203-624-9795, Dave@DLGreene.com -->
- <panoramas xsi:noNamespaceSchemaLocation="vr_data.xsd" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <panorama>
- <id>2007-07-01_05-55-51</id>
- <date-time-digitized>2007-07-01T05:55:51</date-time-digitized>
- <title>College and Grove</title>
- <jpg-width>640</jpg-width>
- <jpg-height>289</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <dlg-gps google-map="true">
- <gps>
- <GPSLatitude GPSLatitudeRef="N" degree="41" minute="18" second="41.78"/>
- <GPSLongitude GPSLongitudeRef="W" degree="72" minute="55" second="32.524"/>
- </gps>
- </dlg-gps>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>4</images>
- <pitch>90°</pitch>
- <yaw>0°, 30°, 60°, 90°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>0°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>-35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>40</panorama-total-images>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>ExposureTime</name>
- <value>1/5</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>14.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0mm (35mm equivalent: 22.0mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting at lightest part of sky.</p></value>
- </exif-item>
- </exif>
- </panorama>
- <panorama>
- <id>2007-05-03_09-01-11</id>
- <date-time-digitized>2007-05-03T09:01:11</date-time-digitized>
- <title>Crown Towers</title>
- <jpg-width>640</jpg-width>
- <jpg-height>291</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <dlg-gps google-map="true">
- <gps>
- <GPSLatitude GPSLatitudeRef="N" degree="41" minute="18" second="23.85"/>
- <GPSLongitude GPSLongitudeRef="W" degree="72" minute="55" second="56.007"/>
- </gps>
- </dlg-gps>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>4</images>
- <pitch>90°</pitch>
- <yaw>0°, 30°, 60°, 90°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>0°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>-35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>40</panorama-total-images>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>ExposureTime</name>
- <value>1/15</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>20.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0mm (35mm equivalent: 22.0mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting directly into the sun.</p></value>
- </exif-item>
- </exif>
- </panorama>
- <panorama>
- <id>2007-04-20_18-46-35</id>
- <date-time-digitized>2007-04-20T18:46:35</date-time-digitized>
- <title>New Haven Green</title>
- <jpg-width>640</jpg-width>
- <jpg-height>290</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <dlg-gps google-map="true">
- <gps>
- <GPSLatitude GPSLatitudeRef="N" degree="41" minute="18" second="28.696"/>
- <GPSLongitude GPSLongitudeRef="W" degree="72" minute="55" second="37.198"/>
- </gps>
- </dlg-gps>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>4</images>
- <pitch>90°</pitch>
- <yaw>0°, 30°, 60°, 90°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>0°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>-35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>40</panorama-total-images>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>ExposureTime</name>
- <value>1/10</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>20.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0mm (35mm equivalent: 22.0mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting directly into the sun.</p></value>
- </exif-item>
- </exif>
- </panorama>
- <panorama>
- <id>2007-04-03_04-07-27</id>
- <date-time-digitized>2007-04-03T04:07:27</date-time-digitized>
- <title>Madison Towers Lobby</title>
- <jpg-width>640</jpg-width>
- <jpg-height>292</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <strip-preview>true</strip-preview>
- <dlg-gps google-map="true">
- <gps>
- <GPSLatitude GPSLatitudeRef="N" degree="41" minute="18" second="26.055"/>
- <GPSLongitude GPSLongitudeRef="W" degree="72" minute="56" second="3.655"/>
- </gps>
- </dlg-gps>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>4</images>
- <pitch>90°</pitch>
- <yaw>0°, 30°, 60°, 90°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>0°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>-35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>40</panorama-total-images>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>ExposureTime</name>
- <value>1.3</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>10.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0mm (35mm equivalent: 22.0mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting directly into one of the lobby lights. The lights had just been installed about 2 weeks before shooting so the bulbs were all the same. (purple hue in one hallway is also visible to naked eye.)</p></value>
- </exif-item>
- </exif>
- </panorama>
- <panorama>
- <id>2007-03-28_16-56-53</id>
- <date-time-digitized>2007-03-28T16:56:53</date-time-digitized>
- <title>Apartment Porch</title>
- <jpg-width>640</jpg-width>
- <jpg-height>293</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <strip-preview>true</strip-preview>
- <dlg-gps google-map="true">
- <gps>
- <GPSLatitude GPSLatitudeRef="N" degree="41" minute="18" second="25.12"/>
- <GPSLongitude GPSLongitudeRef="W" degree="72" minute="56" second="4.244"/>
- </gps>
- </dlg-gps>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>4</images>
- <pitch>90°</pitch>
- <yaw>0°, 30°, 60°, 90°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>0°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>-35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>40</panorama-total-images>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>ExposureTime</name>
- <value>1/50</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>20.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0mm (35mm equivalent: 22.0mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting directly into the sun.</p></value>
- </exif-item>
- </exif>
- </panorama>
- <panorama>
- <id>2007-03-25_11-31-15</id>
- <date-time-digitized>2007-03-25T11:31:15</date-time-digitized>
- <title>Over the Edge Auto</title>
- <jpg-width>640</jpg-width>
- <jpg-height>259</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <dlg-gps google-map="false">
- <gps>
- <GPSLatitude GPSLatitudeRef="N" degree="41" minute="16" second="9.304"/>
- <GPSLongitude GPSLongitudeRef="W" degree="72" minute="59" second="48.832"/>
- </gps>
- </dlg-gps>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>4</images>
- <pitch>90°</pitch>
- <yaw>0°, 30°, 60°, 90°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>0°</pitch>
- <yaw>every 30°</yaw>
- </row>
- <row>
- <images>12</images>
- <pitch>-35°</pitch>
- <yaw>every 30°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>40</panorama-total-images>
- <notes>In this case I took out the 4 images at top because of the wires going overhead. I was able to get them close but because the clouds were moving so fast and there was nothing to "catch on to" it ended up looking better just dropping them out. It's unlikely this particular vr would be confused with a "photographic dream" anyway!</notes>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>ExposureTime</name>
- <value>1/250</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>10.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0mm (35mm equivalent: 22.0mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting directly into the sun.</p></value>
- </exif-item>
- </exif>
- </panorama>
- <panorama>
- <id>2006-10-08_15-00-02</id>
- <date-time-digitized>2006-10-08T15:00:02</date-time-digitized>
- <title>Florida Backyard</title>
- <jpg-width>640</jpg-width>
- <jpg-height>305</jpg-height>
- <thumb-width>150</thumb-width>
- <thumb-height>150</thumb-height>
- <strip-preview>true</strip-preview>
- <vr-viewers>
- <vr-viewer>
- <id>DevalVR</id>
- <aspx-page>vr_devalvr.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>Flash</id>
- <aspx-page>vr_flash.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>PureTools</id>
- <aspx-page>vr_puretools.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>QuickTime</id>
- <aspx-page>vr_quicktime.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- <vr-viewer>
- <id>SPi-V</id>
- <aspx-page>vr_spi_v.aspx</aspx-page>
- <width>640</width>
- <height>480</height>
- </vr-viewer>
- </vr-viewers>
- <panorama-shot-info>
- <panorama-rows>
- <row>
- <images>1</images>
- <pitch>90°</pitch>
- <yaw>0°</yaw>
- </row>
- <row>
- <images>10</images>
- <pitch>45°</pitch>
- <yaw>every 36°</yaw>
- </row>
- <row>
- <images>10</images>
- <pitch>0°</pitch>
- <yaw>every 36°</yaw>
- </row>
- <row>
- <images>10</images>
- <pitch>-45°</pitch>
- <yaw>every 36°</yaw>
- </row>
- </panorama-rows>
- <panorama-total-images>31</panorama-total-images>
- </panorama-shot-info>
- <exif>
- <exif-item>
- <name>CircleOfConfusion</name>
- <value>0.015 mm</value>
- </exif-item>
- <exif-item>
- <name>ExposureTime</name>
- <value>1/400</value>
- </exif-item>
- <exif-item>
- <name>FNumber</name>
- <value>8.0</value>
- </exif-item>
- <exif-item>
- <name>FocalLength35efl</name>
- <value>11.0 mm (35 mm equivalent: 22.0 mm)</value>
- </exif-item>
- <exif-item>
- <name>ISO</name>
- <value>100</value>
- </exif-item>
- <exif-item>
- <name>LensType</name>
- <value>Olympus Zuiko Digital 11-22mm F2.8-3.5</value>
- </exif-item>
- <exif-item>
- <name>Make</name>
- <value>OLYMPUS IMAGING CORP.</value>
- </exif-item>
- <exif-item>
- <name>Model</name>
- <value>E-500</value>
- </exif-item>
- <exif-item>
- <name>White Balance</name>
- <value><p>White balance set using <a href="http://www.expodisc.com" title="expodisc">expodisc</a> shooting directly into the sun.</p></value>
- </exif-item>
- </exif>
- </panorama>
- </panoramas>