Skip to content

pharo-GIS/KML

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KML for pharo Build Status

KML for pharo is a reader for KML files that supports basic element types to mainly extract geometries. For geometric objects it uses the OGC geo model from OGC-Pharo

It can be loaded with

Metacello new
	repository: 'github://Pharo-GIS/KML';
	baseline: #KML;
	load
  

After loading KML markup can be parsed with

kmlString := '<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Placemark>
    <name>A simple placemark on the ground</name>
    <Point>
			<coordinates>8.542952335953721,47.36685263064198,0</coordinates>
    </Point>
  </Placemark>
</kml>'.
reader := KMLReader on: kmlString readStream.
document := reader parse