Changes between Initial Version and Version 1 of Ticket #545


Ignore:
Timestamp:
Nov 11, 2014, 11:29:43 AM (9 years ago)
Author:
dac
Comment:

Updated library structure.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #545 – Description

    initial v1  
    3636   --inproj [shouldn't be needed if projection is stored properly with lidar]
    3737   --outproj [default same as input]
     38   --aster [bool - patch with aster]
     39   --nmb [bool - patch with nmb]
    3840   --mosaic [mosaic if multiple input files are provided]
    3941Outputs:
     
    4143   --screenshots [File(s) optional]
    4244
    43 ''create_apl_dem_from_lidar.py''
    44 Create DEM from lidar data suitible for use with APL.
    45 Inputs:
    46    lidar file(s)
    47    --aster [bool - patch with aster]
    48    --nmb [bool - patch with nmb]
    49    --demmosaic [File, patch with custom DEM]
    50    --inproj [shouldn't be needed if projection is stored properly with lidar]
    51 Outputs
    52    --outdem [File]
    53    --screenshots [File(s) optional]
    54 
    5545'''New DEM Library'''
    56 Putting all the DEM functions in a separate module (arsfdem) is proposed rather than multiple libraries.
     46Putting all the DEM functions in a separate module (arsf_dem) is proposed rather than multiple libraries.
    5747
    5848{{{
    59 arsfdem
    60    |--lidar
    61       def las2dsm
    62       def las2intensity
    63       def asci2dsm
    64       def asci2intensity
    65       def get_bb
    66    |--utilities
    67       def reproject
    68       def patch_dems
    69       def mosaic_dems
    70    |--projection
    71       def bng_to_wgs84
    72       def wgs84_to_bng
    73    |--navigation
    74       def get_bb_from_hyperspectral
    75    |--tiled_dem
    76       def get_nmb_tiles
    77       def get_aster_tiles
     49|-- arsf_dem
     50|   |-- dem_common.py
     51|   |-- dem_lidar
     52|   |   |-- grass_lidar.py
     53|   |   |-- laspy_lidar.py
     54|   |   |-- lastools_lidar.py
     55|   |   |-- lidar_utilities.py
     56|   |   |-- spdlib_lidar.py
     57|   |-- dem_nav_utilities.py
     58|   |-- dem_utilities.py
     59|-- scripts
     60|   |-- create_apl_dem.py
     61|   |-- create_dem_from_lidar.py
     62
    7863}}}