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 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?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_osm_map'>
<refmeta>
<refentrytitle>spatialite_osm_map</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>spatialite_osm_map</refname>
<refpurpose>load OSM-XML maps into a SpatiaLite DB</refpurpose>
</refnamediv>
<refsynopsisdiv id='synopsis'>
<cmdsynopsis>
<command>spatialite_osm_map</command>
<arg choice='opt'><option>-h</option></arg>
<arg choice='opt'><option>-o</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-d</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-cs</option> <replaceable>num</replaceable></arg>
<arg choice='opt'><option>-m</option></arg>
<arg choice='opt'><option>-n</option></arg>
<arg choice='opt'><option>-jo</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 id='description'>
<title>DESCRIPTION</title>
<para>
<command>spatialite_osm_map</command> is a tool for loading OSM-XML maps
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>-o</option> <replaceable>pathname</replaceable></term>
<term><option>--osm-path</option> <replaceable>pathname</replaceable></term>
<listitem>
<para>the OSM-XML file path</para>
<para>
both OSM-XML (*.osm) and OSM-ProtoBuf (*.osm.pbf) are
indifferently supported.
</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>-cs</option> <replaceable>num</replaceable></term>
<term><option>--cache-size</option> <replaceable>num</replaceable></term>
<listitem>
<para>DB cache size (how many pages)</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>
<varlistentry>
<term><option>-jo</option></term>
<term><option>--journal-off</option></term>
<listitem>
<para>unsafe (but faster) mode</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
</refentry>
|