[Liblas-commits] hg: more 3d fixes, still not sure if we're there yet though

liblas-commits at liblas.org liblas-commits at liblas.org
Tue Oct 13 15:55:43 EDT 2009


changeset 76664fc4c414 in /home/www/liblas.org/hg
details: http://hg.liblas.org/main/hg?cmd=changeset;node=76664fc4c414
summary: more 3d fixes, still not sure if we're there yet though

diffstat:

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

diffs (31 lines):

diff -r d327b4670729 -r 76664fc4c414 apps/las2oci.cpp
--- a/apps/las2oci.cpp	Tue Oct 13 14:13:59 2009 -0500
+++ b/apps/las2oci.cpp	Tue Oct 13 14:53:04 2009 -0500
@@ -310,7 +310,7 @@
     oss_geom.setf(std::ios_base::fixed, std::ios_base::floatfield);
     oss_geom.precision(2);
     oss_geom << "mdsys.sdo_geometry(3008,"<<srid<<", null,"
-              "mdsys.sdo_elem_info_array(1,1003,3),"
+              "mdsys.sdo_elem_info_array(1,1007,3),"
               "mdsys.sdo_ordinate_array("<< b->getLow(0) <<","<<
                                             b->getLow(1) <<","<<
                                             b->getLow(2) <<","<<
@@ -489,13 +489,15 @@
 "          '"<< cloudColumnName_u<<"',   -- Column name of the SDO_POINT_CLOUD object\n"
 "          '"<<blkTableName_u<<"', -- Table to store blocks of the point cloud\n"
 "           'blk_capacity="<<blk_capacity<<"', -- max # of points per block\n"
-"           mdsys.sdo_geometry(2003, "<<srid<<", null,\n"
-"              mdsys.sdo_elem_info_array(1,1003,3),\n"
+"           mdsys.sdo_geometry(3008, "<<srid<<", null,\n"
+"              mdsys.sdo_elem_info_array(1,1007,3),\n"
 "              mdsys.sdo_ordinate_array(\n"
 << query->bounds.getLow(0) << ","
 << query->bounds.getLow(1) << ","
+<< query->bounds.getLow(2) << ","
 << query->bounds.getHigh(0) << ","
-<< query->bounds.getHigh(1) << ")),  -- Extent\n"
+<< query->bounds.getHigh(1) << ","
+<< query->bounds.getHigh(2) << ")),  -- Extent\n"
 "     0.5, -- Tolerance for point cloud\n"
 "           "<<nDimension<<", -- Total number of dimensions\n"
 "           null);\n"


More information about the Liblas-commits mailing list