[Liblas-commits] hg: 2 new changesets

liblas-commits at liblas.org liblas-commits at liblas.org
Wed Jan 13 11:21:27 EST 2010


changeset 88420b95ebdc in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=88420b95ebdc
summary: merge latest README

changeset 0e87c536350f in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=0e87c536350f
summary: fix #161 - guid temporaries in C API

diffstat:

 README            |  30 ++++++++++++++++++------------
 src/las_c_api.cpp |   4 ++--
 2 files changed, 20 insertions(+), 14 deletions(-)

diffs (98 lines):

diff -r 9213c9acea54 -r 0e87c536350f README
--- a/README	Fri Oct 02 12:49:20 2009 -0500
+++ b/README	Wed Jan 13 10:17:04 2010 -0600
@@ -70,6 +70,7 @@
 * `LAS 1.2 Format Standard`_ (2008-09-02)
 * `LAS 1.1 Format Standard`_ (2005-05-07)
 * `LAS 1.0 Format Standard`_ (2003-05-09)
+* `LAS permutation matrix`_
 
 License
 ------------------------------------------------------------------------------
@@ -103,7 +104,9 @@
 Linked against a 1.2.5+ version of `libgeotiff`_, you can set and get the spatial reference 
 systems of LAS files using simple `proj.4`_ coordinate system definitions.  
 Alternatively, with libLAS 1.2, you can link against `GDAL`_ to be able to 
-manipulate spatial references using WKT.
+manipulate spatial references using WKT.  The current development version of 
+libLAS can be used in combination with `GDAL`_ 1.7 to support `vertical coordinate systems`_ 
+as well.
 
 Simple Variable Length Record Abstraction
 ..............................................................................
@@ -144,14 +147,15 @@
 `LAStools`_ pioneering implementation of the ASPRS LAS standard that made 
 development of the libLAS library possible.
 
-Subversion Tree
+Mercurial Repository Tree
 ..............................................................................
 
-The SVN repository URL is available at http://liblas.org/svn
+The Mercurial repository for libLAS is located at http://hg.liblas.org/main
 
-::
+You can obtain a copy of the active source code by issuing the following::
 
-    svn checkout http://liblas.org/svn/trunk/
+    hg clone http://hg.liblas.org/main
+
 
 Information about Trac
 ..............................................................................
@@ -187,6 +191,7 @@
 .. _`LAS 1.2 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/asprs_las_format_v12.pdf
 .. _`LAS 1.1 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/asprs_las_format_v11.pdf
 .. _`LAS 1.0 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/asprs_las_format_v10.pdf
+.. _`LAS permutation matrix`: http://liblas.org/raw-attachment/wiki/WikiStart/LAS-1.0-1.3-feature-matrix.pdf
 .. _`ASPRS Standards Committee`: http://www.asprs.org/society/committees/standards/lidar_exchange_format.html
 .. _`Howard Butler`: http://hobu.biz
 .. _`Mateusz Loskot`: http://mateusz.loskot.net
@@ -198,12 +203,12 @@
 .. _`Software`: http://liblas.org/wiki/Software
 .. _`Resources`: http://liblas.org/wiki/Resources
 .. _`License`: http://liblas.org/wiki/License
-.. _`las2las`: http://liblas.org/browser/trunk/doc/las2las.txt
-.. _`las2txt`: http://liblas.org/browser/trunk/doc/las2txt.txt
-.. _`lasinfo`: http://liblas.org/browser/trunk/doc/lasinfo.txt
-.. _`lasmerge`: http://liblas.org/browser/trunk/doc/lasmerge.txt
-.. _`txt2las`: http://liblas.org/browser/trunk/doc/txt2las.txt
-.. _`las2ogr`: http://liblas.org/browser/trunk/doc/las2ogr.txt
+.. _`las2las`: http://liblas.org/browser/doc/las2las.txt
+.. _`las2txt`: http://liblas.org/browser/doc/las2txt.txt
+.. _`lasinfo`: http://liblas.org/browser/doc/lasinfo.txt
+.. _`lasmerge`: http://liblas.org/browser/doc/lasmerge.txt
+.. _`txt2las`: http://liblas.org/browser/doc/txt2las.txt
+.. _`las2ogr`: http://liblas.org/browser/doc/las2ogr.txt
 .. _`Freenode`: http://freenode.net
 .. _`Library Design`: http://liblas.org/wiki/LibraryDesign
 .. _`FOSS4G 2008`: http://liblas.org/raw-attachment/wiki/WikiStart/liblas_foss4g_2008.pdf
@@ -217,4 +222,5 @@
 .. _`OSGeo4W`: http://wiki.osgeo.org/wiki/OSGeo_Win32_Installer
 .. _`dotnetLibLAS API`: http://liblas.org/wiki/dotnetapi
 .. _`FOSS4G 2008`: http://liblas.org/raw-attachment/wiki/WikiStart/liblas_foss4g_2008.pdf
-.. _`ASPRS Workshop Demo`: http://liblas.org/raw-attachment/wiki/WikiStart/ASPRS-Workshop-NOAA-Demo.pdf
\ No newline at end of file
+.. _`ASPRS Workshop Demo`: http://liblas.org/raw-attachment/wiki/WikiStart/ASPRS-Workshop-NOAA-Demo.pdf
+.. _`vertical coordinate systems`: http://liblas.org/wiki/VerticalCS
diff -r 9213c9acea54 -r 0e87c536350f src/las_c_api.cpp
--- a/src/las_c_api.cpp	Fri Oct 02 12:49:20 2009 -0500
+++ b/src/las_c_api.cpp	Wed Jan 13 10:17:04 2010 -0600
@@ -745,7 +745,7 @@
 
     try {
         liblas::guid id;
-        id = liblas::guid::guid(value);
+        id = liblas::guid(value);
         ((LASHeader*) hHeader)->SetProjectId(id);    
     } catch (std::exception const& e)
     {
@@ -1542,7 +1542,7 @@
     VALIDATE_LAS_POINTER1(string, "LASGuid_CreateFromString", NULL);    
     liblas::guid id;
     try {
-        id = liblas::guid::guid(string);
+        id = liblas::guid(string);
         return (LASGuidH) new liblas::guid(id);
     }
     catch (std::exception const& e) {


More information about the Liblas-commits mailing list