Changeset 657:a24e416e459f


Ignore:
Timestamp:
05/17/08 20:14:41 (2 years ago)
Author:
Howard Butler <hobu.inc@…>
Branch:
default
Convert:
svn:1766ff46-f334-0410-ab20-d63176f87757/trunk@724
Message:

propsets and start on VLR stuff

Location:
python
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • python/liblas/__init__.py

    r583 r657  
    33import point 
    44import header 
     5import vlr 
  • python/liblas/core.py

    r656 r657  
     1""" 
     2/****************************************************************************** 
     3 * $Id$ 
     4 * 
     5 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data. 
     6 * Purpose:  Main prototypes for the libLAS C API 
     7 * Author:   Howard Butler, hobu.inc@gmail.com 
     8 * 
     9 ****************************************************************************** 
     10 * Copyright (c) 2008, Howard Butler 
     11 * 
     12 * All rights reserved. 
     13 *  
     14 * Redistribution and use in source and binary forms, with or without  
     15 * modification, are permitted provided that the following  
     16 * conditions are met: 
     17 *  
     18 *     * Redistributions of source code must retain the above copyright  
     19 *       notice, this list of conditions and the following disclaimer. 
     20 *     * Redistributions in binary form must reproduce the above copyright  
     21 *       notice, this list of conditions and the following disclaimer in  
     22 *       the documentation and/or other materials provided  
     23 *       with the distribution. 
     24 *     * Neither the name of the Martin Isenburg or Iowa Department  
     25 *       of Natural Resources nor the names of its contributors may be  
     26 *       used to endorse or promote products derived from this software  
     27 *       without specific prior written permission. 
     28 *  
     29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  
     30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  
     31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  
     32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE  
     33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  
     34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  
     35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  
     36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  
     37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,  
     38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  
     39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY  
     40 * OF SUCH DAMAGE. 
     41 ****************************************************************************/ 
     42 """ 
    143import atexit, os, re, sys 
    244import ctypes 
  • python/liblas/file.py

    r619 r657  
     1""" 
     2/****************************************************************************** 
     3 * $Id$ 
     4 * 
     5 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data. 
     6 * Purpose:  Main prototypes for the libLAS C API 
     7 * Author:   Howard Butler, hobu.inc@gmail.com 
     8 * 
     9 ****************************************************************************** 
     10 * Copyright (c) 2008, Howard Butler 
     11 * 
     12 * All rights reserved. 
     13 *  
     14 * Redistribution and use in source and binary forms, with or without  
     15 * modification, are permitted provided that the following  
     16 * conditions are met: 
     17 *  
     18 *     * Redistributions of source code must retain the above copyright  
     19 *       notice, this list of conditions and the following disclaimer. 
     20 *     * Redistributions in binary form must reproduce the above copyright  
     21 *       notice, this list of conditions and the following disclaimer in  
     22 *       the documentation and/or other materials provided  
     23 *       with the distribution. 
     24 *     * Neither the name of the Martin Isenburg or Iowa Department  
     25 *       of Natural Resources nor the names of its contributors may be  
     26 *       used to endorse or promote products derived from this software  
     27 *       without specific prior written permission. 
     28 *  
     29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  
     30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  
     31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  
     32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE  
     33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  
     34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  
     35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  
     36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  
     37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,  
     38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  
     39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY  
     40 * OF SUCH DAMAGE. 
     41 ****************************************************************************/ 
     42 """ 
    143import core 
    244import header as lasheader 
  • python/liblas/guid.py

    r597 r657  
     1""" 
     2/****************************************************************************** 
     3 * $Id$ 
     4 * 
     5 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data. 
     6 * Purpose:  Main prototypes for the libLAS C API 
     7 * Author:   Howard Butler, hobu.inc@gmail.com 
     8 * 
     9 ****************************************************************************** 
     10 * Copyright (c) 2008, Howard Butler 
     11 * 
     12 * All rights reserved. 
     13 *  
     14 * Redistribution and use in source and binary forms, with or without  
     15 * modification, are permitted provided that the following  
     16 * conditions are met: 
     17 *  
     18 *     * Redistributions of source code must retain the above copyright  
     19 *       notice, this list of conditions and the following disclaimer. 
     20 *     * Redistributions in binary form must reproduce the above copyright  
     21 *       notice, this list of conditions and the following disclaimer in  
     22 *       the documentation and/or other materials provided  
     23 *       with the distribution. 
     24 *     * Neither the name of the Martin Isenburg or Iowa Department  
     25 *       of Natural Resources nor the names of its contributors may be  
     26 *       used to endorse or promote products derived from this software  
     27 *       without specific prior written permission. 
     28 *  
     29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  
     30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  
     31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  
     32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE  
     33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  
     34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  
     35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  
     36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  
     37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,  
     38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  
     39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY  
     40 * OF SUCH DAMAGE. 
     41 ****************************************************************************/ 
     42 """ 
    143import core 
    244 
  • python/liblas/header.py

    r655 r657  
     1""" 
     2/****************************************************************************** 
     3 * $Id$ 
     4 * 
     5 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data. 
     6 * Purpose:  Main prototypes for the libLAS C API 
     7 * Author:   Howard Butler, hobu.inc@gmail.com 
     8 * 
     9 ****************************************************************************** 
     10 * Copyright (c) 2008, Howard Butler 
     11 * 
     12 * All rights reserved. 
     13 *  
     14 * Redistribution and use in source and binary forms, with or without  
     15 * modification, are permitted provided that the following  
     16 * conditions are met: 
     17 *  
     18 *     * Redistributions of source code must retain the above copyright  
     19 *       notice, this list of conditions and the following disclaimer. 
     20 *     * Redistributions in binary form must reproduce the above copyright  
     21 *       notice, this list of conditions and the following disclaimer in  
     22 *       the documentation and/or other materials provided  
     23 *       with the distribution. 
     24 *     * Neither the name of the Martin Isenburg or Iowa Department  
     25 *       of Natural Resources nor the names of its contributors may be  
     26 *       used to endorse or promote products derived from this software  
     27 *       without specific prior written permission. 
     28 *  
     29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  
     30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  
     31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  
     32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE  
     33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  
     34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  
     35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  
     36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  
     37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,  
     38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  
     39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY  
     40 * OF SUCH DAMAGE. 
     41 ****************************************************************************/ 
     42 """ 
    143import core 
    244import datetime 
    345import guid 
     46import vlr 
    447 
    548class Header(object): 
  • python/liblas/point.py

    r602 r657  
     1""" 
     2/****************************************************************************** 
     3 * $Id$ 
     4 * 
     5 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data. 
     6 * Purpose:  Main prototypes for the libLAS C API 
     7 * Author:   Howard Butler, hobu.inc@gmail.com 
     8 * 
     9 ****************************************************************************** 
     10 * Copyright (c) 2008, Howard Butler 
     11 * 
     12 * All rights reserved. 
     13 *  
     14 * Redistribution and use in source and binary forms, with or without  
     15 * modification, are permitted provided that the following  
     16 * conditions are met: 
     17 *  
     18 *     * Redistributions of source code must retain the above copyright  
     19 *       notice, this list of conditions and the following disclaimer. 
     20 *     * Redistributions in binary form must reproduce the above copyright  
     21 *       notice, this list of conditions and the following disclaimer in  
     22 *       the documentation and/or other materials provided  
     23 *       with the distribution. 
     24 *     * Neither the name of the Martin Isenburg or Iowa Department  
     25 *       of Natural Resources nor the names of its contributors may be  
     26 *       used to endorse or promote products derived from this software  
     27 *       without specific prior written permission. 
     28 *  
     29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  
     30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  
     31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  
     32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE  
     33 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  
     34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  
     35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  
     36 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  
     37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,  
     38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  
     39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY  
     40 * OF SUCH DAMAGE. 
     41 ****************************************************************************/ 
     42 """ 
    143import core 
    244import datetime 
Note: See TracChangeset for help on using the changeset viewer.