Skip to content

Instantly share code, notes, and snippets.

@schneidan
Created October 31, 2013 04:21
Show Gist options
  • Save schneidan/7244332 to your computer and use it in GitHub Desktop.
Save schneidan/7244332 to your computer and use it in GitHub Desktop.
Campaign tracker 2008-2012 -- KML file and instructions for updating. (by Joe Murphy)
How to update the 2012 campaign visit tracker
The candidate tracker map is made up of three components
Parent file: DenverPost/media/maps/kml/visits-vs-wins-colorado-2008-2012.kml
2008 results: DenverPost/media/maps/kml/2008-election-results.kml
2012 visits: DenverPost/media/maps/kml/campaigning-in-colorado-07102012
To update the candidate tracker map that you see on the Obama and Romney pages, you only need to update one file. You can download the most recent version of the file from the FTP server and save it on your desktop: Denver Post/media/maps/kml/campaigning-in-colorado-07102012.kml (July 10, 2012 was the creation date. Do not change this in the file name unless you change it in the parent KML file.)
-------------------------------------------------------------------------------------------------------------------
To add a new point to the map, you need to add a "placemark" to the KML file. Every placemark ends in <placemark> and ends in </placemark>. For your convenience, I've put the visits in chronological order. Anything in green below must be changed.
For Romney visits, use the one with #RomneyVisit as the style:
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 14, 2012</div>
<p>Paul Ryan holds a campaign event at Lakewood High School on August 14, 2012. </p></div>]]>
</description>
<Point><coordinates>-105.106519, 39.728376</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Paul Ryan holds a campaign event at Lakewood High School on August 14, 2012. </value>
</Data>
<Data name="Date">
<value>August 14, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
For Obama visits, use the one with #ObamaVisit as the style.
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 9, 2012</div>
<p>Barack Obama speaks to a crowd at the Colorado State Fairgrounds in Pueblo.</p></div>]]>
</description>
<Point><coordinates>-104.642561,38.250084</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Barack Obama speaks to a crowd at the Colorado State Fairgrounds in Pueblo.</value>
</Data>
<Data name="Date">
<value>August 9, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
----------------------------------------------------------------
In order to get the proper coordinates for the event location, simply go to http://maps.google.com and find the location. Right click on it and select "Get Directions to Here". Google will compute coordinates. If Google computes 38.250084,-104.642561 as the coordinates, you will need to reverse those in the KML file...So, you would type them as -104.642561,38.250084.
Replace the file with the updated one and you've successfully updated the candidate tracker map.
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>Campaigning in Colorado 2012</name>
<description><![CDATA[Red markers indicate major campaign visits by Mitt Romney or a major event headlined by a supporter (such as Ann Romney.) Blue markers indicate major campaign visits by President Barack Obama or a major event headlined by a supporter (such as Michelle Obama.)]]></description>
<Style id="ObamaVisit">
<IconStyle>
<Icon>
<href>http://maps.gstatic.com/mapfiles/ms2/micons/blue-dot.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="RomneyVisit">
<IconStyle>
<Icon>
<href>http://maps.gstatic.com/mapfiles/ms2/micons/red-dot.png</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
September 24, 2012</div>
<p>Mitt Romney hits Obama on economy, foreign policy in Pueblo visit, Sept. 24, 2012. </p></div>]]>
</description>
<Point><coordinates>-104.499761, 38.288751</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney hits Obama on economy, foreign policy in Pueblo visit, Sept. 24, 2012.</value>
</Data>
<Data name="Date">
<value>September 24, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
September 23, 2012</div>
<p>Romney jabs Obama’s record, pushes energy independence at JeffCo rally, Sept. 23, 2012. </p></div>]]>
</description>
<Point><coordinates>-105.114489, 39.643073</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Romney jabs Obama’s record, pushes energy independence at JeffCo rally, Sept. 23, 2012.</value>
</Data>
<Data name="Date">
<value>September 23, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
September 6, 2012</div>
<p>Paul Ryan speech fires up Colorado Springs crowd, Thursday, Sept. 6, 2012.</p></div>]]>
</description>
<Point><coordinates>-104.722465, 38.821916</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Paul Ryan speech fires up Colorado Springs crowd, Thursday, Sept. 6, 2012.</value>
</Data>
<Data name="Date">
<value>September 6, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 14, 2012</div>
<p>Paul Ryan holds a campaign event at Lakewood High School on August 14, 2012. </p></div>]]>
</description>
<Point><coordinates>-105.106519, 39.728376</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Paul Ryan holds a campaign event at Lakewood High School on August 14, 2012. </value>
</Data>
<Data name="Date">
<value>August 14, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 13, 2012</div>
<p>Paul Ryan attends a fundraiser at the private home of Michael and Amber Fries. </p></div>]]>
</description>
<Point><coordinates>-104.96921,39.732698</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Paul Ryan attends a fundraiser at the private home of Michael and Amber Fries. </value>
</Data>
<Data name="Date">
<value>August 13, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 13, 2012</div>
<p>Paul Ryan attends a fundraiser at the private home of Lanny and Sharon Martin. </p></div>]]>
</description>
<Point><coordinates>-104.989564,39.737517</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Paul Ryan attends a fundraiser at the private home of Lanny and Sharon Martin. </value>
</Data>
<Data name="Date">
<value>August 13, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 11, 2012</div>
<p>Michelle Obama attends a private fundraiser at the Museum of Contemporary Art in Denver.</p></div>]]>
</description>
<Point><coordinates>-105.00427,39.75245</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Michelle Obama attends a private fundraiser at the Museum of Contemporary Art in Denver.</value>
</Data>
<Data name="Date">
<value>August 11, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 9, 2012</div>
<p>Barack Obama speaks to a crowd at Colorado College.</p></div>]]>
</description>
<Point><coordinates>-104.823245,38.848256</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Barack Obama speaks to a crowd at Colorado College.</value>
</Data>
<Data name="Date">
<value>August 9, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 28, 2012</div>
<p>Obama rallies young voters at Colorado State University, Aug. 28, 2012.</p></div>]]>
</description>
<Point><coordinates>-105.081708, 40.572603</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Obama rallies young voters at Colorado State University, Aug. 28, 2012.</value>
</Data>
<Data name="Date">
<value>August 28, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
September 2, 2012</div>
<p>Obama speech at University of Colorado shows optimistic, combative sides, Sept. 2, 2012.</p></div>]]>
</description>
<Point><coordinates>-105.27381, 40.00878</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Obama speech at University of Colorado shows optimistic, combative sides, Sept. 2, 2012.</value>
</Data>
<Data name="Date">
<value>September 2, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
September 13, 2012</div>
<p>In Golden, Obama vows "no act of terror will go unpunished," Sept. 13, 2012.</p></div>]]>
</description>
<Point><coordinates>-105.229508, 39.754803</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>In Golden, Obama vows "no act of terror will go unpunished," Sept. 13, 2012.</value>
</Data>
<Data name="Date">
<value>September 13, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 9, 2012</div>
<p>Barack Obama speaks to a crowd at the Colorado State Fairgrounds in Pueblo.</p></div>]]>
</description>
<Point><coordinates>-104.642561,38.250084</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Barack Obama speaks to a crowd at the Colorado State Fairgrounds in Pueblo.</value>
</Data>
<Data name="Date">
<value>August 9, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 8, 2012</div>
<p>Barack Obama speaks to a crowd at Grand Junction High School.</p></div>]]>
</description>
<Point><coordinates>-108.563194,39.079924</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Barack Obama speaks to a crowd at Grand Junction High School.</value>
</Data>
<Data name="Date">
<value>August 8, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 8, 2012</div>
<p>Barack Obama speaks to a crowd at Auraria Events Center.</p></div>]]>
</description>
<Point><coordinates>-105.003957,39.744525</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Barack Obama speaks to a crowd at Auraria Events .</value>
</Data>
<Data name="Date">
<value>August 8, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 2, 2012</div>
<p>Mitt Romney holds a campaign event with GOP governors at Basalt High School on August 2, 2012. </p></div>]]>
</description>
<Point><coordinates>-107.038552, 39.356119</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney holds a campaign event with GOP governors at Basalt High School on August 2, 2012. </value>
</Data>
<Data name="Date">
<value>August 2, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
August 2, 2012</div>
<p>Mitt Romney holds a campaign event at the Jefferson County Fairgrounds in Golden on August 2, 2012. </p></div>]]>
</description>
<Point><coordinates>-105.170277, 39.722488</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney holds a campaign event at the Jefferson County Fairgrounds in Golden on August 2, 2012. </value>
</Data>
<Data name="Date">
<value>August 2, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
July 10, 2012</div>
<p>Mitt Romney holds a town hall meeting at Central High School on July 10, 2012.</p></div>]]>
</description>
<Point><coordinates>-108.47197,39.087593,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney holds a town hall meeting at Central High School on July 10, 2012.</value>
</Data>
<Data name="Date">
<value>July 10, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
July 9, 2012</div>
<p>Mitt Romney holds a private fundraiser at the home of Susan Crown and William Kunkler on July 9, 2012. Crown's family owns the Aspen Skiing Company.</p></div>]]>
</description>
<Point><coordinates>-106.819229,39.190674,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney holds a private fundraiser at the home of Susan Crown and William Kunkler on July 9, 2012. Crown's family owns the Aspen Skiing Company.</value>
</Data>
<Data name="Date">
<value>July 9, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
5/29/12</div>
<p>Mitt Romney holds a campaign event at Alice Pleasant Park in Craig on May 29, 2012. </p></div>]]>
</description>
<Point><coordinates>-107.546715,40.513798,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney holds a campaign event at Alice Pleasant Park in Craig on May 29, 2012. </value>
</Data>
<Data name="Date">
<value>May 29, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
May 23, 2012</div>
<p>Barack Obama speaks to supporters at a fundraiser at the Hyatt Regency Denver at Colorado Convention Center.</p></div>]]>
</description>
<Point><coordinates>-104.993486,39.74347,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Obama speaks to supporters at a fundraiser at the Hyatt Regency Denver at Colorado Convention Center.</value>
</Data>
<Data name="Date">
<value>May 23, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#RomneyVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
Feburary 7, 2012</div>
<p>Mitt Romney spoke to supporters at the Tivoli Student Center on the Auraria campus after the Colorado Caucuses on February 7, 2012. </p></div>]]>
</description>
<Point><coordinates>-105.005814,39.745037,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Mitt Romney spoke to supporters at the Tivoli Student Center on the Auraria campus after the Colorado Caucuses on February 7, 2012. </value>
</Data>
<Data name="Date">
<value>February 7, 2012</value>
</Data>
<Data name="icon_type">
<value>large_red</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
April 25, 2012</div>
<p>Barack Obama spoke to a crowd at the University of Colorado about rising student loan rates on April 25, 2012. </p></div>]]>
</description>
<Point><coordinates>-105.260582,40.004826,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Barack Obama spoke to a crowd at the University of Colorado about rising student loan rates on April 25, 2012. </value>
</Data>
<Data name="Date">
<value>April 25, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
June 20, 2012</div>
<p>Michelle Obama campaigns for her husband, President Barack Obama, at Arapahoe High School on June 20, 2012. </p></div>]]>
</description>
<Point><coordinates>-104.962807,39.581612,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Michelle Obama campaigns for her husband, President Barack Obama, at Arapahoe High School on June 20, 2012. </value>
</Data>
<Data name="Date">
<value>June 20, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
<Placemark>
<styleUrl>#ObamaVisit</styleUrl>
<description>
<![CDATA[<div class="googft-info-window" style="font-family:sans-serif;width:200px;height:auto">
<div style="color:black;display:block;font-family:arial,sans-serif;font-size:16px;font-weight:bold;line-height:normal;margin-bottom:0px;margin-left:0px;margin-right:16px;padding-bottom:14px;width:auto">
June 20, 2012</div>
<p>Michelle Obama campaigned for her husband, President Barack Obama, at the Creative Arts Building at the Colorado Fairgrounds on June 20, 2012.</p></div>]]>
</description>
<Point><coordinates>-104.642403,38.250145,0.0</coordinates></Point>
<ExtendedData>
<Data name="Description">
<value>Michelle Obama campaigned for her husband, President Barack Obama, at the Creative Arts Building at the Colorado Fairgrounds on June 20, 2012.</value>
</Data>
<Data name="Date">
<value>June 20, 2012</value>
</Data>
<Data name="icon_type">
<value>large_blue</value>
</Data>
</ExtendedData>
</Placemark>
</Document>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment