Changes between Initial Version and Version 1 of kmlsuperoverlayplugin


Ignore:
Timestamp:
Jul 26, 2012, 4:52:49 PM (12 years ago)
Author:
pborissow
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • kmlsuperoverlayplugin

    v1 v1  
     1= KML "Superoverlay" Plugin =
     2The KML Superoverlay Plugin is used to generate tiled images for visualization in Google Earth:
     3
     4http://code.google.com/apis/kml/documentation/kml_21tutorial.html#superoverlays
     5
     6
     7== Formats ==
     8The KML Superoverlay Plugin can be used to output both kml and kmz files. OSSIM apps like orthoigen and icp key off of the output file extension to determine which format to output.
     9 * '''kml''' Outputs a kml file and a set of image tiles into an output directory
     10 * '''kmz''' Outputs a single zip file that includes the kml file and image files you would normally get when outputting to kml
     11
     12== Writer properties ==
     13The KML Superoverlay Plugin exposes two writer properties used to specify the file format for individual tiles.
     14 * '''PNG'''
     15 * '''JPG'''
     16
     17== Example ==
     18Convert a GeoTIFF to a KMZ file using [wiki:orthoigen] using visually lossless PNG compression.
     19{{{
     20ossim-orthoigen.exe --writer-prop FORMAT=PNG san_o.tif san_o.kmz
     21}}}