Changes between Version 2 and Version 3 of Procedures/AlsprocProcessing
- Timestamp:
- Aug 13, 2013, 4:59:04 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Procedures/AlsprocProcessing
v2 v3 36 36 * '''output-projection''' - will need to be set per-flight depending on where the flight is based, consult the projections table below 37 37 * output_dir - default is probably fine, but it can be useful to change, especially when working on the pitch and roll values later 38 * '''sol-file''' - change this to the location of the sol file created during navigation processing 38 * '''sol-file''' - change this to the location of the sol file created during navigation processing, it may already be filled in for you 39 39 * '''sup-file''' - as with the sol file 40 40 41 PROJECTIONS TABLE GOES HERE 41 || '''Projection''' || '''Use-Case''' || '''proj.4 string''' || 42 || British National Grid || all British flights || +init=epsg:27700 +nadgrids=/users/rsg/arsf/usr/share/proj/OSTN02_NTv2.gsb +geoidgrids=/users/rsg/arsf/usr/share/proj/osgm02_wgs.gtx || 43 || UTM || everywhere else || +proj=utm +zone='''<zone number>*''' +ellps=WGS84 +datum=WGS84 || 44 45 * UTM zones need to be selected appropriately, a map of UTM zones can be found here: [http://www.dmap.co.uk/utmworld.htm] 42 46 43 47 You will then see a section for each flightline. process_line should be set to true for each flightline unless there was some problem, in which case the maintainer for alsproc should be contacted. 44 48 {{{ 45 49 [110618_090736] 46 output-file = %(output_dir)s/ldr110618_090736 .las50 output-file = %(output_dir)s/ldr110618_090736%(output-file-ext)s 47 51 process_line = true 52 line_number = 1 48 53 49 54 # GMT 09:07:52 to 09:08:39, 47.3 seconds … … 60 65 Alsproc is fed its arguments with the wrapper script alsproc_batch.py, which also handles certain LiDAR preformatting if using las12_las. 61 66 {{{ 62 alsproc _batch.pyprocessing/als50/2013121.cfg67 alsproc processing/als50/2013121.cfg 63 68 }}} 64 69 … … 100 105 {{{ 101 106 output-projection = +init=epsg:27700 +nadgrids=/users/rsg/arsf/usr/share/proj/OSTN02_NTv2.gsb +geoidgrids=/users/rsg/arsf/usr/share/proj/osgm02_wgs.gtx 102 sol-file = %( ipas_dir)s/20130524_103914.sol103 sup-file = %( ipas_dir)s/20130524_103914.sup107 sol-file = %(project_dir)s/posatt/ipas_honeywell/proc/20130524_103914.sol 108 sup-file = %(project_dir)s/posatt/ipas_honeywell/proc/20130524_103914.sup 104 109 }}} 105 110 … … 110 115 111 116 112 Then process the dataset. 117 Then process the dataset. This can take a while; 20 minutes to 20 hours depending on the size of the dataset and load on the network. On early iterations, you may identify just a few flightlines and focus your efforts on those, but you '''must''' check flightlines from across the entire dataset, as pitch and roll has been known to change over the course of a flight in the most unfortunate cases. 113 118 114 119 {{{ … … 117 122 118 123 119 < how to prh correct>124 <TO BE CONTINUED>