[Liblas-commits] hg: update docs to reflect beta release
liblas-commits at liblas.org
liblas-commits at liblas.org
Tue Oct 12 21:37:14 EDT 2010
changeset 6e16ffeea5f4 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=6e16ffeea5f4
summary: update docs to reflect beta release
diffstat:
doc/conf.py | 8 ++++----
doc/development/release_plan.txt | 38 +++++++++++++++++++++++++++++---------
doc/download.txt | 6 +++---
3 files changed, 36 insertions(+), 16 deletions(-)
diffs (117 lines):
diff -r 754479364728 -r 6e16ffeea5f4 doc/conf.py
--- a/doc/conf.py Tue Oct 12 20:18:31 2010 -0500
+++ b/doc/conf.py Tue Oct 12 20:37:08 2010 -0500
@@ -64,18 +64,18 @@
line = line.replace('SET('+major+' ', '')
line = line.replace(')','')
line = line.replace('"','')
- major = int(line)
+ maj = line.strip()
if str(minor) in line:
line = line.replace('SET('+minor+' ', '')
line = line.replace(')','')
line = line.replace('"','')
- minor = int(line)
+ min = line.strip()
if str(patch) in line:
line = line.replace('SET('+patch+' ', '')
line = line.replace(')','')
line = line.replace('"','')
- patch = int(line)
- return '%d.%d.%d'%(major, minor, patch)
+ pat = line.strip()
+ return '%s.%s.%s'%(maj, min, pat)
version = read_version('../CMakeLists.txt')
diff -r 754479364728 -r 6e16ffeea5f4 doc/development/release_plan.txt
--- a/doc/development/release_plan.txt Tue Oct 12 20:18:31 2010 -0500
+++ b/doc/development/release_plan.txt Tue Oct 12 20:37:08 2010 -0500
@@ -7,7 +7,7 @@
:Author: Howard Butler
:Contact: hobu.inc at gmail dot com
-:Date: 7/27/2010
+:Date: 10/12/2010
.. contents::
:depth: 3
@@ -76,11 +76,24 @@
Generic spatial indexing
..............................................................................
-A octree-based spatial index is being developed for libLAS to speed up random,
-bounding-box-based queries to LAS files. It is expected that this will be
-released as part of libLAS 1.6, but it is not yet complete. The index will be
-able to be stored within VLRs (requires a file rewrite) in addition to in a
-file alongside the .las file.
+A octree-based spatial index was developed for libLAS to speed up random,
+bounding-box-based queries to LAS files. It is released as part of libLAS 1.6,
+but its full implementation within the library is not yet complete. The index
+can store its data within VLRs (requires a file rewrite) in addition to
+in a file alongside the .las file.
+
+Rewritten :ref:`lasinfo <lasinfo>` and :ref:`las2las <las2las>`
+..............................................................................
+
+:ref:`lasinfo <lasinfo>` and :ref:`las2las <las2las>` have been completely
+rewritten to take advantage of faster access and summary methods within the
+libLAS C++ API. In addition to nearly double the speed of the previous
+libLAS-provided lasinfo and las2las implementations, both applications
+gained a number of features including much more expressive filtering and
+more detailed header and file transformation. The old versions of :ref:`lasinfo <lasinfo_old>`
+and :ref:`las2las <las2las_old>` are still available to people who have
+embedded them in processes and applications. They are now called ``lasinfo-old`` and
+``las2las-old``.
Migration to CMake
..............................................................................
@@ -129,6 +142,13 @@
that are as full as possible, square as possible, and made in a reasonable
amount of time (chips at a rate of ~1 million points per second).
+Faster binary i/o
+..............................................................................
+
+libLAS gained a more savvy implementation for its binary i/o which should
+provide some significant performance improvements.
+
+
Release Schedule
------------------------------------------------------------------------------
@@ -136,9 +156,9 @@
The following dates are approximate:
-* Beta 1: 8/20/2010
-* Beta 2: 9/10/2010
-* 1.6.0: 9/30/2010
+* Beta 1: 10/12/2010
+* Beta 2: 11/1/2010
+* 1.6.0: 11/15/2010
libPC
------------------------------------------------------------------------------
diff -r 754479364728 -r 6e16ffeea5f4 doc/download.txt
--- a/doc/download.txt Tue Oct 12 20:18:31 2010 -0500
+++ b/doc/download.txt Tue Oct 12 20:37:08 2010 -0500
@@ -10,15 +10,15 @@
* **2010-10-12**
- - `libLAS-1.6.0b1.tar.gz`_
+ - `libLAS-1.6.0b1-src.tar.gz`_
`(md5) <http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.tar.gz.md5>`__
- - `libLAS-1.6.0b1.zip <http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.zip>`_
+ - `libLAS-1.6.0b1-src.zip <http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.zip>`_
`(md5) <http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.zip.md5>`__
- `Release Notes <http://trac.liblas.org/wiki/1.2.1>`__
-.. _`libLAS-1.6.0b1.tar.gz`: http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.tar.gz
+.. _`libLAS-1.6.0b1-src.tar.gz`: http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.tar.gz
.. seealso::
:ref:`source`
More information about the Liblas-commits
mailing list