A member of the forum is keeping up with the game on a Google map, and I became curious about the centroid of all the tags.
KML file
I downloaded the KML file and opened it up in Notepad++. It turns out the Placemarks are really easy to read:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Placemark> | |
<name>Tag #58 - White Brothers Auto Parts</name> | |
<description><![CDATA[]]></description> | |
<styleUrl>#style29</styleUrl> | |
<Point> | |
<coordinates>-84.357826,33.754772,0.000000</coordinates> | |
</Point> | |
</Placemark> |
XML Parsing
I fired up Python. Here's a quick and easy import for an XML parsing package.from xml.dom.minidom import parseString
Basic steps
Since this kml file is pretty simple, the steps are easy:- Read KML file as a string
- Parse that string into a DOM
- Iterate through a collection of coordinates elements from the DOM
- Read the data out of the coordinates elements
- Break them up into latitude and longitude
- Find the centroid
So, let's get to it.
Read KML file as a string
#Read KML file as a string
file = open(location)
data = file.read()
file.close()
Parse that string into a DOM
#Parse that string into a DOM
dom = parseString(data)
Iterate through a collection of coordinates elements from the DOM
for d in dom.getElementsByTagName('coordinates'):
Read data out of the coordinates elements, break them up into latitude and longitude
coords = d.firstChild.data.split(',')
longitudes.append(float(coords[0]))latitudes.append(float(coords[1]))
Find the centroid
centerLatitude = sum(latitudes)/len(latitudes)I will note that this is technically wrong. The Earth is a sphere, and this really only works for a Cartesian plane. However, over a relatively small area, the error isn't great enough to make a difference.
centerLongitude = sum(longitudes)/len(longitudes)
return ([centerLongitude,centerLatitude])
Finished product
Here's the whole thing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from xml.dom.minidom import parseString | |
def findCentroidGivenKML(location): | |
#Read KML file as a string | |
file = open(location) | |
data = file.read() | |
file.close() | |
#Parse that string into a DOM | |
dom = parseString(data) | |
#initialize latitude and longitude lists | |
latitudes = [] | |
longitudes = [] | |
#Iterate through a collection of coordinates elements | |
for d in dom.getElementsByTagName('coordinates'): | |
#Break them up into latitude and longitude | |
coords = d.firstChild.data.split(',') | |
longitudes.append(float(coords[0])) | |
latitudes.append(float(coords[1])) | |
#find the centroid | |
centerLatitude = sum(latitudes)/len(latitudes) | |
centerLongitude = sum(longitudes)/len(longitudes) | |
return ([centerLongitude,centerLatitude]) | |