// ------------------------------------------------------------------------ // $Id$ // // Description: ossim_preferences_template // // This file will be automatically loaded by ossim applications provided the // environment variable "OSSIM_PREFS_FILE" is set to point to some form of // this file. // // Note: c++ comments "//" can be used to comment a line. // // To set the environment variable for automatic preference file loading: // // This assumes a preference file in your home called "ossim_preferences". // Typically this would be put in a dot file read at startup of a shell. // // tcsh and csh users: setenv OSSIM_PREFS_FILE ~/ossim_preferences // // bash and sh users: export OSSIM_PREFS_FILE=~/ossim_preferences // // windoze users: I'll have to look this up... // // You can also use the "-P " option at application startup. // // ------------------------------------------------------------------------ // --- // Keyword: dted_directory // Path to DTED elevation cells. Can have more than one diretory. dted_directory1: /data/ele1/level2 dted_directory2: /data/ele1/level1 // --- // --- // Keyword: dted_cell // Path to a DTED elevation cell. dted_cell1: /data/ele1/DTED3arc/w122/n38.dt1 dted_cell2: /data/ele2/ned/w122/n38.dt1 dted_cell3: /data/ele1/DTED3arc/w122/n37.dt1 dted_cell4: /data/ele2/ned/w122/n37.dt1 dted_cell5: /data/ele2/ned/w123/n37.dt1 // --- // --- // Keyword: default_elevation_path // Default path for the elevation manager popup "Add" to start at. default_elevation_path: /data/ele2 // --- // --- // Keyword: elevation.enabled // If disabled calls to the elevation manager getHeightAboveMSL and // getHeightAboveEllipsoid will return a null height. (default=true) // Use: "true", "yes", "y" or "1" to enable, // "false", "no", "n" or "0" to disable. elevation.enabled: true // --- // --- // Keyword: elevation.auto_load_dted.enabled // Enable autoloading of dted elevation as need from above directories. // (default=true) // Use: "true", "yes", "y" or "1" to enable, // "false", "no", "n" or "0" to disable. elevation.auto_load_dted.enabled: true // --- // --- // Keyword: elevation.auto_sort.enabled // Enable sorting of elevation cells on an add by the lowest(best) mean post // spacing. (default=true) // Use: "true", "yes", "y" or "1" to enable, // "false", "no", "n" or "0" to disable. elevation.auto_sort.enabled: true // --- // --- // Geoid support // --- // GEOID 99: Set keyword to the directory containing the GEOID 99 grids. geoid_99_directory: /data/ele1/geoid/geoid99 // GEOID EGM 96: Set keyword to the path to the egm96.grd geoid_egm_96_grid: /data/ele1/geoid/geoid96/egm96.grd // --- // font support // //font.file1: /usr/share/fonts/default/Type1/b018032l.pfb //font.dir1: /usr/share/fonts/default/Type1 // plugin support // plugin.dir1: /work/gpotts/ossim-plugin // You can also list files individually // plugin.file1: //--- // Keywords for plugin registration. // // plugin.dir1: < directory where plugins are > // // you can also list by individual file names // // plugin.file1: < full path and file name > // Toggles for recceVue application: statusLatLon: true statusHeight: true statusDatum: true statusGSD: true statusUpdateOnClick: true // -------------------------- // Some keywords for the OSSIM GUI application // // // igen spec files output./ This is the directory location you would // like the igen export GUI to default to when outputing spec files ossim.igen_spec_output_directory: /work/gpotts/igen_test // this is the igen executable. Make sure you put the full path ossim.igen_executable: /work/gpotts/ossim/bin/igen // END KEywords for OSSIM GUI //--------------------------