Changeset 889
- Timestamp:
- 09/28/08 00:17:22 (3 months ago)
- Location:
- trunk
- Files:
-
- 15 modified
-
HOWTORELEASE.txt (modified) (1 diff, 1 prop)
-
LICENSE.txt (modified) (2 diffs, 1 prop)
-
README (modified) (1 diff)
-
include/liblas/detail/endian.hpp (modified) (1 diff)
-
include/liblas/lasrecordheader.hpp (modified) (1 diff)
-
python/liblas/core.py (modified) (1 diff)
-
python/liblas/file.py (modified) (1 diff)
-
python/liblas/guid.py (modified) (1 diff)
-
python/liblas/header.py (modified) (1 diff)
-
python/liblas/point.py (modified) (1 diff)
-
python/liblas/vlr.py (modified) (1 diff)
-
python/setup.py (modified) (1 diff, 1 prop)
-
python/tests/test_doctests.py (modified) (1 diff, 1 prop)
-
src/Version.rc (modified) (2 diffs, 1 prop)
-
src/las_c_api.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/HOWTORELEASE.txt
- Property svn:keywords changed from Rev Date to Rev Date Id Author
r860 r889 96 96 new release. 97 97 98 $Id$ -
trunk/LICENSE.txt
- Property svn:mime-type set to text/x-rst
r379 r889 1 libLAS Main License 2 ============================================================================== 3 1 4 Copyright (c) 2007, Martin Isenburg isenburg@cs.unc.edu 2 5 Copyright (c) 2008, Howard Butler hobu.inc@gmail.com 3 6 Copyright (c) 2008, Mateusz Loskot mateusz@loskot.net 4 7 Copyright (c) 2008, Phil Vachon philippe@cowpig.ca 8 Copyright (c) 2008, Frank Warmerdam warmerdam@pobox.com 9 Copyright (c) 2008, Martin Rodriguez mrodriguez@stereocarto.com 5 10 6 11 All rights reserved. … … 33 38 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 34 39 OF SUCH DAMAGE. 40 41 include/liblas/cstdint.hpp 42 ============================================================================== 43 44 This file has been stolen from <boost/cstdint.hpp> and 45 modified for libLAS purposes. 46 47 (C) Copyright Mateusz Loskot 2007, mateusz@loskot.net 48 (C) Copyright Phil Vachon 2007, philippe@cowpig.ca 49 (C) Copyright John Maddock 2001 50 (C) Copyright Jens Mauer 2001 51 (C) Copyright Beman Dawes 1999 52 53 Boost Software License - Version 1.0 - August 17th, 2003 54 55 Permission is hereby granted, free of charge, to any person or organization 56 obtaining a copy of the software and accompanying documentation covered by 57 this license (the "Software") to use, reproduce, display, distribute, 58 execute, and transmit the Software, and to prepare derivative works of the 59 Software, and to permit third-parties to whom the Software is furnished to 60 do so, all subject to the following: 61 62 The copyright notices in the Software and this entire statement, including 63 the above license grant, this restriction and the following disclaimer, 64 must be included in all copies of the Software, in whole or in part, and 65 all derivative works of the Software, unless such copies or derivative 66 works are solely in the form of machine-executable object code generated by 67 a source language processor. 68 69 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 70 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 71 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 72 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 73 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 74 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 75 DEALINGS IN THE SOFTWARE. 76 77 include/liblas/detail/endian.hpp 78 ============================================================================== 79 80 This file has been stolen from <boost/endian.hpp> and 81 modified for libLAS purposes. 82 83 (C) Copyright Mateusz Loskot 2007, mateusz@loskot.net 84 (C) Copyright Caleb Epstein 2005 85 (C) Copyright John Maddock 2006 86 87 Boost Software License - Version 1.0 - August 17th, 2003 88 89 Permission is hereby granted, free of charge, to any person or organization 90 obtaining a copy of the software and accompanying documentation covered by 91 this license (the "Software") to use, reproduce, display, distribute, 92 execute, and transmit the Software, and to prepare derivative works of the 93 Software, and to permit third-parties to whom the Software is furnished to 94 do so, all subject to the following: 95 96 The copyright notices in the Software and this entire statement, including 97 the above license grant, this restriction and the following disclaimer, 98 must be included in all copies of the Software, in whole or in part, and 99 all derivative works of the Software, unless such copies or derivative 100 works are solely in the form of machine-executable object code generated by 101 a source language processor. 102 103 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 104 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 105 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 106 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 107 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 108 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 109 DEALINGS IN THE SOFTWARE. 110 111 include/liblas/detail/sha1.hpp 112 ============================================================================== 113 114 Copyright (C) 1998 115 Paul E. Jones <paulej@arid.us> 116 All Rights Reserved. 117 This software is licensed as "freeware." Permission to distribute 118 this software in source and binary forms is hereby granted without 119 a fee. THIS SOFTWARE IS PROVIDED 'AS IS' AND WITHOUT ANY EXPRESSED 120 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 121 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 122 THE AUTHOR SHALL NOT BE HELD LIABLE FOR ANY DAMAGES RESULTING 123 FROM THE USE OF THIS SOFTWARE, EITHER DIRECTLY OR INDIRECTLY, INCLUDING, 124 BUT NOT LIMITED TO, LOSS OF DATA OR DATA BEING RENDERED INACCURATE. 125 126 include/liblas/detail/sharedptr.hpp 127 ============================================================================== 128 129 The SharedPtr class is based on implementation of CountedPtr 130 from the book "The C++ Standard Library - A Tutorial and Reference". It is 131 released under the main libLAS licensing terms. 132 133 (C) Copyright Nicolai M. Josuttis 1999 134 (C) Copyright Mateusz Loskot 2008, mateusz@loskot.net (modifications) 135 136 python/tests/test_doctests.py 137 ============================================================================== 138 139 Copyright (c) 2007, Sean C. Gillies sgillies@frii.com 140 All rights reserved. 141 142 Redistribution and use in source and binary forms, with or without 143 modification, are permitted provided that the following conditions are met: 144 145 * Redistributions of source code must retain the above copyright 146 notice, this list of conditions and the following disclaimer. 147 * Redistributions in binary form must reproduce the above copyright 148 notice, this list of conditions and the following disclaimer in the 149 documentation and/or other materials provided with the distribution. 150 * Neither the name of Sean C. Gillies nor the names of 151 its contributors may be used to endorse or promote products derived from 152 this software without specific prior written permission. 153 154 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 155 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 156 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 157 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 158 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 159 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 160 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 161 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 162 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 163 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 164 POSSIBILITY OF SUCH DAMAGE. 165 166 src/Verson.rc 167 ============================================================================== 168 169 Copyright (c) 2005, Frank Warmerdam <warmerdam@pobox.com> 170 171 All rights reserved. 172 173 Permission is hereby granted, free of charge, to any person obtaining a 174 copy of this software and associated documentation files (the "Software"), 175 to deal in the Software without restriction, including without limitation 176 the rights to use, copy, modify, merge, publish, distribute, sublicense, 177 and/or sell copies of the Software, and to permit persons to whom the 178 Software is furnished to do so, subject to the following conditions: 179 180 The above copyright notice and this permission notice shall be included 181 in all copies or substantial portions of the Software. 182 183 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 184 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 185 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 186 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 187 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 188 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -
trunk/README
r886 r889 235 235 .. _`GDAL`: http://www.gdal.org 236 236 .. _`OSGeo4W`: http://wiki.osgeo.org/wiki/OSGeo_Win32_Installer 237 238 """ 239 240 $Id$ 241 -
trunk/include/liblas/detail/endian.hpp
r813 r889 6 6 * Author: Mateusz Loskot, mateusz@loskot.net 7 7 * 8 * This file has been stolen from <boost/ cstdint.hpp> and8 * This file has been stolen from <boost/endian.hpp> and 9 9 * modified for libLAS purposes. 10 10 * -
trunk/include/liblas/lasrecordheader.hpp
r816 r889 8 8 ****************************************************************************** 9 9 * Copyright (c) 2008, Phil Vachon 10 * Copyright (c) 2008, Howard Butler 10 11 * 11 12 * All rights reserved. -
trunk/python/liblas/core.py
r888 r889 4 4 * 5 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: Main prototypes for the libLAS C API6 * Purpose: Python ctypes function calls 7 7 * Author: Howard Butler, hobu.inc@gmail.com 8 8 * -
trunk/python/liblas/file.py
r813 r889 4 4 * 5 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: Main prototypes for the libLAS C API6 * Purpose: Python LASFile implementation 7 7 * Author: Howard Butler, hobu.inc@gmail.com 8 8 * -
trunk/python/liblas/guid.py
r813 r889 4 4 * 5 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: Main prototypes for the libLAS C API6 * Purpose: Python LASGUID implementation 7 7 * Author: Howard Butler, hobu.inc@gmail.com 8 8 * -
trunk/python/liblas/header.py
r867 r889 4 4 * 5 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: Main prototypes for the libLAS C API6 * Purpose: Python LASHeader implementation 7 7 * Author: Howard Butler, hobu.inc@gmail.com 8 8 * -
trunk/python/liblas/point.py
r813 r889 4 4 * 5 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: Main prototypes for the libLAS C API6 * Purpose: Python LASPoint implementation 7 7 * Author: Howard Butler, hobu.inc@gmail.com 8 8 * -
trunk/python/liblas/vlr.py
r888 r889 4 4 * 5 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: Main prototypes for the libLAS C API6 * Purpose: Python VLR implementation 7 7 * Author: Howard Butler, hobu.inc@gmail.com 8 8 * -
trunk/python/setup.py
- Property svn:keywords set to Id Author Revision Date
r885 r889 1 """ 2 $Id$ 3 4 """ 1 5 from setuptools import setup, Extension 2 6 from sys import version_info 3 7 4 readme = file('../README','rb').read() 8 try: 9 readme = file('../README','rb').read() 10 except: 11 readme = '' 12 5 13 # Require ctypes egg only for Python < 2.5 6 14 install_requires = ['setuptools'] -
trunk/python/tests/test_doctests.py
- Property svn:keywords set to Id Author Date Version
r545 r889 1 #from Shapely http://trac.gispython.org/projects/PCL/browser/Shapely/trunk/tests/test_doctests.py 1 """ 2 /****************************************************************************** 3 * $Id$ 4 * 5 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 6 * Purpose: A script to marshal .txt files into Python doctests 7 * Author: Sean C. Gillies, sgillies@frii.com 8 * 9 ****************************************************************************** 10 * 11 * This file is from the Shapely project: 12 * http://trac.gispython.org/projects/PCL/browser/Shapely/trunk/tests/test_doctests.py 13 * 14 * Copyright (c) 2007, Sean C. Gillies 15 * All rights reserved. 16 * 17 * Redistribution and use in source and binary forms, with or without 18 * modification, are permitted provided that the following conditions are met: 19 * 20 * * Redistributions of source code must retain the above copyright 21 * notice, this list of conditions and the following disclaimer. 22 * * Redistributions in binary form must reproduce the above copyright 23 * notice, this list of conditions and the following disclaimer in the 24 * documentation and/or other materials provided with the distribution. 25 * * Neither the name of Sean C. Gillies nor the names of 26 * its contributors may be used to endorse or promote products derived from 27 * this software without specific prior written permission. 28 * 29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 30 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 32 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 33 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 34 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 35 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 36 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 37 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 38 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 39 * POSSIBILITY OF SUCH DAMAGE. 40 **** 41 """ 2 42 3 43 import doctest -
trunk/src/Version.rc
- Property svn:keywords set to Id Auther Revision Date
r852 r889 1 1 /****************************************************************************** 2 * $Id : lasheader.cpp 816 2008-07-31 00:04:36Z mloskot$2 * $Id$ 3 3 * 4 4 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. … … 21 21 * All rights reserved. 22 22 * 23 * Redistribution and use in source and binary forms, with or without24 * modification, are permitted provided that the following25 * conditions are met:26 23 * 27 * * Redistributions of source code must retain the above copyright 28 * notice, this list of conditions and the following disclaimer. 29 * * Redistributions in binary form must reproduce the above copyright 30 * notice, this list of conditions and the following disclaimer in 31 * the documentation and/or other materials provided 32 * with the distribution. 33 * * Neither the name of the Martin Isenburg or Iowa Department 34 * of Natural Resources nor the names of its contributors may be 35 * used to endorse or promote products derived from this software 36 * without specific prior written permission. 24 * Permission is hereby granted, free of charge, to any person obtaining a 25 * copy of this software and associated documentation files (the "Software"), 26 * to deal in the Software without restriction, including without limitation 27 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 28 * and/or sell copies of the Software, and to permit persons to whom the 29 * Software is furnished to do so, subject to the following conditions: 37 30 * 38 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 39 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 40 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 41 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 42 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 43 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 44 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 45 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 46 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 47 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 48 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 49 * OF SUCH DAMAGE. 31 * The above copyright notice and this permission notice shall be included 32 * in all copies or substantial portions of the Software. 33 * 34 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 35 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 36 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 37 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 38 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 39 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 40 * DEALINGS IN THE SOFTWARE. 41 * 50 42 ****************************************************************************/ 51 43 -
trunk/src/las_c_api.cpp
r888 r889 4 4 * Project: libLAS - http://liblas.org - A BSD library for LAS format data. 5 5 * Purpose: C API for libLAS 6 * Author: Howard Butler, hobu.inc@gmail.com 6 * Author: Howard Butler, hobu.inc@gmail.com, but I'm not proud of it. 7 * I also swiped a lot of it from GDAL. 7 8 * 8 9 ******************************************************************************
