~ubuntu-branches/ubuntu/wily/liblas/wily-proposed

« back to all changes in this revision

Viewing changes to debian/man/las2ogr.1.xml

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2014-02-21 11:52:35 UTC
  • mto: (2.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20140221115235-ebiz60klt5y0g8d3
Move python dependencies from Build-Depends-Indep to Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
 
3
<refentry id='las2ogr'>
 
4
 
 
5
  <refmeta>
 
6
    <refentrytitle>las2ogr</refentrytitle>
 
7
    <manvolnum>1</manvolnum>
 
8
  </refmeta>
 
9
 
 
10
  <refnamediv>
 
11
    <refname>las2ogr</refname>
 
12
    <refpurpose>convert LAS file to data source using OGR</refpurpose>
 
13
  </refnamediv>
 
14
 
 
15
  <refsynopsisdiv id='synopsis'>
 
16
    <cmdsynopsis>
 
17
      <command>las2ogr</command>
 
18
      <group>
 
19
        <arg choice='plain'><option>-h</option></arg>
 
20
        <arg choice='plain'>
 
21
          <option>-i</option> <arg choice='plain'><replaceable>&lt;infile&gt;</replaceable></arg>
 
22
          <option>-o</option> <arg choice='plain'><replaceable>&lt;outfile&gt;</replaceable></arg>
 
23
          <option>-t</option> <arg choice='plain'><replaceable>&lt;format&gt;</replaceable></arg>
 
24
        </arg>
 
25
        <arg choice='plain'><option>-formats</option></arg>
 
26
      </group>
 
27
    </cmdsynopsis>
 
28
  </refsynopsisdiv>
 
29
 
 
30
  <refsect1 id='description'>
 
31
    <title>DESCRIPTION</title>
 
32
    <para>
 
33
      <command>las2ogr</command> converts LAS file to data source using OGR
 
34
      drivers available from GDAL/OGR package.
 
35
      This utility is useful to translate cloud of points collected by LiDAR
 
36
      sensors to vectors for easier data exchange and processing.
 
37
    </para>
 
38
  </refsect1>
 
39
 
 
40
  <refsect1 id='options'>
 
41
    <title>OPTIONS</title>
 
42
 
 
43
    <variablelist>
 
44
 
 
45
      <varlistentry>
 
46
        <term><option>-h</option></term>
 
47
        <listitem>
 
48
          <para>
 
49
            print usage information
 
50
          </para>
 
51
        </listitem>
 
52
      </varlistentry>
 
53
 
 
54
      <varlistentry>
 
55
        <term><option>-i</option> <replaceable>&gt;infile&gt;</replaceable></term>
 
56
        <listitem>
 
57
          <para>
 
58
            input ASPRS LAS file
 
59
          </para>
 
60
        </listitem>
 
61
      </varlistentry>
 
62
 
 
63
      <varlistentry>
 
64
        <term><option>-o</option> <replaceable>&gt;outfile&gt;</replaceable></term>
 
65
        <listitem>
 
66
          <para>
 
67
            output file
 
68
          </para>
 
69
        </listitem>
 
70
      </varlistentry>
 
71
 
 
72
      <varlistentry>
 
73
        <term><option>-f</option> <replaceable>&gt;format&gt;</replaceable></term>
 
74
        <listitem>
 
75
          <para>
 
76
            OGR format for output file
 
77
          </para>
 
78
        </listitem>
 
79
      </varlistentry>
 
80
 
 
81
      <varlistentry>
 
82
        <term><option>-formats</option></term>
 
83
        <listitem>
 
84
          <para>
 
85
            list supported OGR formats
 
86
          </para>
 
87
        </listitem>
 
88
      </varlistentry>
 
89
 
 
90
    </variablelist>
 
91
  </refsect1>
 
92
 
 
93
  <refsect1 id='example'>
 
94
    <title>EXAMPLE</title>
 
95
 
 
96
    <example>
 
97
      Shows how to convert LAS file to ESRI Shapefile with POINT geometry type:
 
98
 
 
99
      <screen>
 
100
$ las2ogr -i mydata.las -o points.shp -f "ESRI Shapefile"
 
101
      </screen>
 
102
    </example>
 
103
 
 
104
  </refsect1>
 
105
 
 
106
</refentry>