1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<refentry id='spatialite_gml'>
<refmeta>
<refentrytitle>spatialite_gml</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>spatialite_gml</refname>
<refpurpose>load GML into a SpatiaLite DB</refpurpose>
</refnamediv>
<refsynopsisdiv id='synopsis'>
<cmdsynopsis>
<command>spatialite_gml</command>
<arg choice='opt'><option>-h</option></arg>
<arg choice='opt'><option>-g</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-d</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-t</option> <replaceable>name</replaceable></arg>
<arg choice='opt'><option>-m</option></arg>
<arg choice='opt'><option>-n</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 id='description'>
<title>DESCRIPTION</title>
<para>
<command>spatialite_gml</command> is a tool for loading GML into a
SpatiaLite DB.
</para>
</refsect1>
<refsect1 id='options'>
<title>OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>-h</option></term>
<term><option>--help</option></term>
<listitem>
<para>show help message</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-g</option> <replaceable>pathname</replaceable></term>
<term><option>--gml-path</option> <replaceable>pathname</replaceable></term>
<listitem>
<para>the GML-XML file path</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-d</option> <replaceable>pathname</replaceable></term>
<term><option>--db-path</option> <replaceable>pathname</replaceable></term>
<listitem>
<para>the SpatiaLite DB path</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-t</option> <replaceable>name</replaceable></term>
<term><option>--table-name</option> <replaceable>name</replaceable></term>
<listitem>
<para>the DB table name</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-m</option></term>
<term><option>--in-memory</option></term>
<listitem>
<para>using IN-MEMORY database</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-n</option></term>
<term><option>--no-spatial-index</option></term>
<listitem>
<para>suppress R*Tree generation</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
</refentry>
|