Jump to content


Photo
- - - - -

Vojvodina KML


  • Please log in to reply
1 reply to this topic

#1 rapidrudy

rapidrudy
  • Members
  • 17 posts

Posted 11 June 2012 - 09:36

Gde ima da se skine Vojvodina u kml formatu za Google Earth? Tacnije Vojvodina razdeljenja po opstinama u kml formatu.

#2 netizen_k

netizen_k
  • Members
  • 875 posts

Posted 12 June 2012 - 23:30

Bojim se da tako nesto ne postoji, KML je obican XML file koji prvenstveno sluzi da obelezi i opise neku konkretnu tacku na geografskom koordinatnom sistemu sa tacnom geografskom duzinom i sirinom.

Iz toga proizilazi da jedna cela teritorija ne moze biti opisana KML formatom...

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Placemark>
    <name>Simple placemark</name>
    <description>Attached to the ground. Intelligently places itself 
       at the height of the underlying terrain.</description>
    <Point>
      <coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
    </Point>
  </Placemark>
</kml>



The structure of this file breaks down as follows:

  • An XML header. This is line 1 in every KML file. No spaces or other characters can appear before this line.
  • A KML namespace declaration. This is line 2 in every KML 2.2 file.
  • A Placemark object that contains the following elements:
    • A name that is used as the label for the Placemark
    • A description that appears in the "balloon" attached to the Placemark
    • A Point that specifies the position of the Placemark on the Earth's surface (longitude, latitude, and optional altitude)