Skip to content

Instantly share code, notes, and snippets.

@mgalgs
Created October 25, 2023 17:28
Show Gist options
  • Save mgalgs/f691b51d8948e9ad01338519043b4a03 to your computer and use it in GitHub Desktop.
Save mgalgs/f691b51d8948e9ad01338519043b4a03 to your computer and use it in GitHub Desktop.
kml to visualize the coordinate range from https://twitter.com/tinyklaus/status/1717179233741451521
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>GPS Coordinates Area</name>
<Placemark>
<name>Rectangle Area</name>
<Style>
<LineStyle>
<color>ff0000ff</color>
<width>2</width>
</LineStyle>
<PolyStyle>
<fill>0</fill>
</PolyStyle>
</Style>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
-152.51666666666668,63.28333333333333,0
-152.53305555555556,63.28333333333333,0
-152.53305555555556,63.29972222222222,0
-152.51666666666668,63.29972222222222,0
-152.51666666666668,63.28333333333333,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>Corner 1</name>
<Point>
<coordinates>-152.51666666666668,63.28333333333333,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Corner 2</name>
<Point>
<coordinates>-152.53305555555556,63.29972222222222,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment