[Liblas-commits] r1306 - trunk/apps
liblas-commits at liblas.org
liblas-commits at liblas.org
Mon Jul 6 21:43:05 EDT 2009
Author: hobu
Date: Mon Jul 6 21:43:04 2009
New Revision: 1306
URL: http://liblas.org/changeset/1306
Log:
<1 fill factor for rtree
Modified:
trunk/apps/las2oci.cpp
Modified: trunk/apps/las2oci.cpp
==============================================================================
--- trunk/apps/las2oci.cpp (original)
+++ trunk/apps/las2oci.cpp Mon Jul 6 21:43:04 2009
@@ -465,7 +465,7 @@
bool bDropTable = false;
liblas::uint32_t nCapacity = 10000;
- double dFillFactor = 1.0;
+ double dFillFactor = 0.99;
int srid = 8307;
for (int i = 1; i < argc; i++)
@@ -582,7 +582,7 @@
LASIndex* idx = new LASIndex(input);
idx->SetType(LASIndex::eExternalIndex);
idx->SetLeafCapacity(nCapacity);
- idx->SetFillFactor(1.0);
+ idx->SetFillFactor(dFillFactor);
idx->Initialize(*idxstrm);
LASQuery* query = new LASQuery;
More information about the Liblas-commits
mailing list