Skip to content

Instantly share code, notes, and snippets.

@mgalgs
Created October 25, 2023 17:28
Show Gist options
  • Select an option

  • Save mgalgs/f691b51d8948e9ad01338519043b4a03 to your computer and use it in GitHub Desktop.

Select an option

Save mgalgs/f691b51d8948e9ad01338519043b4a03 to your computer and use it in GitHub Desktop.

Revisions

  1. mgalgs created this gist Oct 25, 2023.
    43 changes: 43 additions & 0 deletions gps_coordinates_area_outline.kml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,43 @@
    <?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>