[Liblas-commits] hg: apply Pete's doc fix for xmin vs. minx

liblas-commits at liblas.org liblas-commits at liblas.org
Mon Mar 28 10:36:59 EDT 2011


details:   http://hg.liblas.orghg/rev/8716cc1bfac4
changeset: 2909:8716cc1bfac4
user:      Howard Butler <hobu.inc at gmail.com>
date:      Mon Mar 28 09:36:53 2011 -0500
description:
apply Pete's doc fix for xmin vs. minx

diffstat:

 apps/las2oci.cpp |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (25 lines):

diff -r 899d457f44a8 -r 8716cc1bfac4 apps/las2oci.cpp
--- a/apps/las2oci.cpp	Mon Mar 28 08:46:49 2011 -0500
+++ b/apps/las2oci.cpp	Mon Mar 28 09:36:53 2011 -0500
@@ -633,7 +633,7 @@
     ("post-sql", po::value< string >(), "Quoted SQL or filename location of PL/SQL to run after inserting block data.")
     ("solid", po::value<bool>()->zero_tokens(), "Define the point cloud's PC_EXTENT geometry gtype as (1,1007,3) instead of the normal (1,1003,3), and use gtype 3008/2008 vs 3003/2003 for BLK_EXTENT geometry values.")
     ("3d", po::value<bool>()->zero_tokens(), "Use Z values for insertion of all extent (PC_EXTENT, BLK_EXTENT, USER_SDO_GEOM_METADATA) entries")
-    ("global-extent", po::value< std::string >(), "Extent window to define for the PC_EXTENT.\nUse a comma-separated or quoted, space-separated list, for example, \n -e minx, miny, maxx, maxy\n or \n -e minx, miny, minz, maxx, maxy, maxz\n -e \"minx miny minz maxx maxy maxz\"")
+    ("global-extent", po::value< std::string >(), "Extent window to define for the PC_EXTENT.\nUse a comma-separated or quoted, space-separated list, for example, \n -e xmin, ymin, maxx, maxy\n or \n -e xmin, ymin, zmin, maxx, maxy, maxz\n -e \"xmin ymin zmin maxx maxy maxz\"")
     ("cached", po::value<bool>()->zero_tokens(), "Cache the entire file on the first read")
 
 
@@ -646,9 +646,9 @@
 {
     po::options_description hidden_options("hidden options");
 hidden_options.add_options()
-    ("xmin", po::value< double >(), "global-extent minx value")
-    ("ymin", po::value< double >(), "global-extent miny value")
-    ("zmin", po::value< double >(), "global-extent minz value")
+    ("xmin", po::value< double >(), "global-extent xmin value")
+    ("ymin", po::value< double >(), "global-extent ymin value")
+    ("zmin", po::value< double >(), "global-extent zmin value")
     ("xmax", po::value< double >(), "global-extent maxx value")
     ("ymax", po::value< double >(), "global-extent maxy value")
     ("zmax", po::value< double >(), "global-extent maxz value")


More information about the Liblas-commits mailing list