Created
October 25, 2023 17:28
-
-
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
This file contains hidden or 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
<?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