Skip to content

Instantly share code, notes, and snippets.

View scogle's full-sized avatar
⛰️

Scott Ogle scogle

⛰️
View GitHub Profile
Scott Ogle
Mount Remington
We climb the stairs like Miyazaki kites
I am immune to harm and goddamn, it’s a miracle
Wearing gasoline cologne,
Minor chords rattle between our ears,
Deep and dark and blue
I can taste the
try:
if line[20]:
geo = geocode(line[20])
f.write( '\tbldg:siteAddress "%s"^^xsd:string ;\n' % line[20] )
f.write( '\tbldg:siteLocationLat "%s"^^xsd:decimal ;\n' % geo['lat'] )
f.write( '\tbldg:siteLocationLong "%s"^^xsd:decimal ;\n' % geo['lng'] )
f.write( '\twgs84_pos:lat "%s"^^xsd:decimal ;\n' % geo['lat'] )
f.write( '\twgs84_pos:long "%s"^^xsd:decimal ;\n' % geo['lng'] )
except:
pass