Changeset 622:f5a2eb76ff09
- Timestamp:
- 05/08/08 20:28:00 (2 years ago)
- Branch:
- default
- Convert:
- svn:1766ff46-f334-0410-ab20-d63176f87757/trunk@689
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
README
r435 r622 1 *************************************************************** 2 libLAS - - A C++ library for reading and writing LAS LiDAR data3 *************************************************************** 1 ============================================================================== 2 libLAS - LAS 1.0/1.1 ASPRS LiDAR data translation toolset 3 ============================================================================== 4 4 5 This library is available under the terms of the `BSD License`_ 6 for reading and writing LAS `LIDAR`_ data. It was originally developed by 7 `Martin Isenburg and Jonathan Shewchuk`_ of the University of North Carolina. 8 Continuing development by Mateusz Loskot and Howard Butler is supported by 9 the `IGSB`_ of the Iowa DNR for use in its state-wide `LIDAR`_ project. 5 libLAS is a BSD library for reading and writing ASPRS LAS version 1.0 and 1.1 6 data. LAS-formatted data is heavily used in `LiDAR`_ processing operations, and 7 the LAS format is a sequential binary format used to store data from sensors 8 and as intermediate processing storage by some applications. 10 9 11 The library currently only reads/writes LAS 1.0 and 1.1 data. LAS 2.0 support 12 is not scheduled to be developed in the near future. The library provides 13 both a C and a C++ API along with some utility applications for manipulating 14 LAS files (they utilize the C API). 10 libLAS is available under the terms of the `BSD License`_. It builds on work 11 by `Martin Isenburg and Jonathan Shewchuk`_ of the University of North 12 Carolina in their `LAStools`_ project. The base C++ library that reads 13 and writes LAS 1.0/1.1 data was replaced with new development, and Martin's 14 tools were ported to use this new code. 15 15 16 Limitations 17 ~~~~~~~~~~~~~~~~~~~~~~~ 16 libLAS' initial development was supported by the `IGSB`_ of the Iowa DNR 17 for use in its state-wide `LIDAR`_ project. 18 18 19 As of version 0.9.0, the following is not supported: 19 Download 20 ------------------------------------------------------------------------------ 20 21 21 - Variable length headers (will be complete by 1.0.0) 22 - Spatial reference interpretation 23 - txt2las (port to new library is not complete) 24 - lasdiff (port to new library is not complete) 22 The latest version of libLAS can be downloaded from 23 http://liblas.org/wiki/Releases 25 24 26 Installation 27 ~~~~~~~~~~~~~~~~~~~~~~~ 25 FAQ 26 ------------------------------------------------------------------------------ 28 27 29 See INSTALL for notes how to install libLAS on unix-like platforms. Windows 30 installation should be a simple as copying the dll and library executables to 31 a path in which you wish to run them from. 28 The FAQ is available from http://liblas.org/wiki/FAQ 32 29 33 ------------------------- 30 State of the Library 31 ------------------------------------------------------------------------------ 32 33 libLAS provides excellent coverage of the ASPRS LAS 1.0 and 1.1 specifications, 34 but it only provides weak support for the concept of variable length records. 35 Notably, libLAS concentrates on reading and writing point data for processing 36 pipelines and it does not concentrate on vendor-specific items for which 37 variable length records would likely be used. It is hoped that libLAS' 38 coverage of these items will be improved in the future. Contact the `Authors`_ 39 if you have money burning a hole in your pocket to implement these items :) 40 41 Another deficiency with libLAS as of version 0.9.6 is lack of support for 42 coordinate reference systems descriptions and storage. These are also part 43 of the variable length header operations, but they are required as specified 44 in the 1.0 and 1.1 spec. It is hoped that libLAS will support these operations 45 through the optional linkage of libgeotiff by the time 1.0 is released. 46 34 47 LAS Format Specifications 35 ------------------------- 48 ------------------------------------------------------------------------------ 36 49 37 LAS Format standard documents in PDF format: 50 The LAS Format Standard is maintained by `ASPRS Standards Committee`_. LAS 51 format standard documents are available in PDF format: 38 52 39 * `LAS 2.0 Format Standard`_ (2007-05-01) - *Proposed* 53 * `LAS 2.0 Format Standard`_ (2007-08-17) - *Proposed* 54 * `LAS 1.2 Format Standard`_ (2008-05-02) - *Proposed* 40 55 * `LAS 1.1 Format Standard`_ (2005-05-07) 41 56 * `LAS 1.0 Format Standard`_ (2003-05-09) 42 57 43 The LAS Format Standard is maintained by `ASPRS Standards Committee`_. 58 Authors 59 ------------------------------------------------------------------------------ 44 60 45 ------------- 46 Mailing lists 47 ------------- 61 The libLAS development team are: 62 63 * `Howard Butler`_ 64 * `Mateusz Loskot`_ 65 * `Phil Vachon`_ 66 67 Special thanks to `Martin Isenburg and Jonathan Shewchuk`_ for their 68 `LAStools`_ pioneering implementation of the ASPRS LAS standard that made 69 development of the libLAS library possible. 70 71 Mailing Lists 72 ------------------------------------------------------------------------------ 48 73 49 74 * liblas-devel - http://mail.hobu.net/mailman/listinfo/liblas-devel 50 75 * liblas-commits - http://mail.hobu.net/mailman/listinfo/liblas-commits 51 76 52 --------------------- 53 Subversion Repository 54 --------------------- 77 Subversion Tree 78 ------------------------------------------------------------------------------ 55 79 56 80 The SVN repository URL is available at http://liblas.org/svn 57 81 58 * svn checkout http://liblas.org/svn/trunk/ 82 :: 59 83 60 ----------------- 84 svn checkout http://liblas.org/svn/trunk/ 85 61 86 License 62 ----------------- 87 ------------------------------------------------------------------------------ 63 88 64 libLAS is `BSD licensed <http://www.opensource.org/licenses/bsd-license.php>`_. 65 See LICENSE.txt for a copy of the license. 89 libLAS is available under the terms of the `BSD License`_. 90 See `License`_ for a copy. 91 92 libLAS Wiki 93 ------------------------------------------------------------------------------ 94 95 * :trac:`LASElements LAS Format Elements` - comparison of elements of LAS Format 1.0 and 1.1 96 * :trac:`Software` - list of geospatial software with reading and writing capabilities of LAS Format 97 * :trac:`Resources` - list of LiDAR/LAS resources 98 99 About Trac 100 ------------------------------------------------------------------------------ 101 102 * `Trac <http://trac.edgewall.org/>`_ Open Source Project 103 * :trac:`TracGuide` - Built-in Documentation 104 * `TracFaq <http://trac.edgewall.org/wiki/TracFaq>`_ - Frequently Asked Questions 105 * :trac:`TracSupport` - Trac Support 106 * `reStructuredText Support in Trac <http://bitten.edgewall.org/wiki/WikiRestructuredText>`_ 107 108 66 109 67 110 .. _`LIDAR`: http://en.wikipedia.org/wiki/LIDAR … … 71 114 .. _`Martin Isenburg and Jonathan Shewchuk`: http://www.cs.unc.edu/~isenburg/lastools/ 72 115 .. _`LAS Format`: http://www.lasformat.org/ 73 .. _`LAS 2.0 Format Standard`: http://www.asprs.org/society/divisions/ppd/standards/asprs_las_format_v20.pdf 74 .. _`LAS 1.1 Format Standard`: http://www.asprs.org/society/divisions/ppd/standards/asprs_las_format_v11.pdf 75 .. _`LAS 1.0 Format Standard`: http://www.asprs.org/society/divisions/ppd/standards/asprs_las_format_v10.pdf 116 .. _`LAS 2.0 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/incitsl1_las_format_v20.pdf 117 .. _`LAS 1.2 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/LAS1_2_Final.pdf 118 .. _`LAS 1.1 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/asprs_las_format_v11.pdf 119 .. _`LAS 1.0 Format Standard`: http://liblas.org/raw-attachment/wiki/WikiStart/asprs_las_format_v10.pdf 76 120 .. _`ASPRS Standards Committee`: http://www.asprs.org/society/divisions/ppd/standards/standards_comm.htm 77 .. _`BSD License`: http://www.opensource.org/licenses/bsd-license.php 121 .. _`Howard Butler`: http://hobu.biz 122 .. _`Mateusz Loskot`: http://mateusz.loskot.net 123 .. _`Phil Vachon`: http://www.geoscan.info 124 .. _`BSD license`: http://www.opensource.org/licenses/bsd-license.php 125 .. _`License`: http://liblas.org/wiki/License
Note: See TracChangeset
for help on using the changeset viewer.
