Packages

p

com

kodekutters

package kodekutters

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. class KmlConverter extends AnyRef

    converts Kml objects into GeoJson objects

    converts Kml objects into GeoJson objects

    Kml object -> GeoJson object Kml Folder -> GeoJson FeatureCollection Kml Document -> GeoJson FeatureCollection Kml MultiGeometry -> GeoJson GeometryCollection Kml Placemark -> GeoJson Feature Kml Point -> GeoJson Point Kml LineString -> GeoJson LineString Kml LinearRing -> GeoJson LineString Kml Polygon -> GeoJson Polygon Kml Feature (Placemark, Document, Folder) -> GeoJson object equivalent Kml sequence of Feature -> GeoJson FeatureCollection Kml region latLonAltBox -> GeoJson bbox

    ref: https://github.com/workingDog/scalakml ref: https://github.com/jroper/play-geojson

  2. case class LatLngAlt(lat: Double, lng: Double, alt: Option[Double] = None) extends Product with Serializable

    A latitude longitude and altitude CRS, for use with WGS84 ( == EPSG:4326).

    A latitude longitude and altitude CRS, for use with WGS84 ( == EPSG:4326). Extension of the original code play.extras.geojson.LatLng see https://github.com/jroper/play-geojson

    lat

    The latitude in decimal degrees.

    lng

    The longitude in decimal degrees.

    alt

    The altitude in meters, default relative to the WGS84 ellipsoid, but can be interpreted according to the AltitudeMode of a Feature

Value Members

  1. object KmlConverter

    converts Kml objects into GeoJson objects

  2. object KmlToGeojson

    converts a Kml or Kmz file into a GeoJSON representation

  3. object LatLngAlt extends Serializable
  4. object Wgs84Format extends CrsFormat[LatLngAlt]

    The WGS84 CRS format.

    The WGS84 CRS format. Equals to EPSG:4326 CRS format. for GeoJSON read and write (lng,lat,alt) not (lat,lng,alt)

Ungrouped