Skip to content

Commit 7609e0e

Browse files
committed
prepare release 2.0.0
1 parent 5a6a4d8 commit 7609e0e

File tree

4 files changed

+13
-22
lines changed

4 files changed

+13
-22
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
cmake_minimum_required(VERSION 3.8.0)
33

4-
project(osm2pgsql VERSION 1.11.0 LANGUAGES CXX C)
4+
project(osm2pgsql VERSION 2.0.0 LANGUAGES CXX C)
55

66
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
77

man/osm2pgsql-gen.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "OSM2PGSQL" "1" "1.11.0" "" ""
1+
.TH "OSM2PGSQL" "1" "2.0.0" "" ""
22
.SH NAME
33
.PP
44
osm2pgsql-gen - Generalize OpenStreetMap data - EXPERIMENTAL!

man/osm2pgsql-replication.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "OSM2PGSQL-REPLICATION" "1" "1.11.0" "" ""
1+
.TH "OSM2PGSQL-REPLICATION" "1" "2.0.0" "" ""
22
.SH NAME
33
osm2pgsql-replication \- osm2pgsql database updater
44
.SH SYNOPSIS

man/osm2pgsql.1

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "OSM2PGSQL" "1" "1.11.0" "" ""
1+
.TH "OSM2PGSQL" "1" "2.0.0" "" ""
22
.SH NAME
33
.PP
44
osm2pgsql - OpenStreetMap data to PostgreSQL converter
@@ -170,17 +170,12 @@ Include attributes of each object in the middle tables and make them
170170
available to the outputs.
171171
Attributes are: user name, user id, changeset id, timestamp and version.
172172
.TP
173-
--flat-nodes=FILENAME
174-
The flat-nodes mode is a separate method to store slim mode node
175-
information on disk.
176-
Instead of storing this information in the main PostgreSQL database,
177-
this mode creates its own separate custom database to store the
178-
information.
179-
As this custom database has application level knowledge about the data
180-
to store and is not general purpose, it can store the data much more
181-
efficiently.
173+
-F, --flat-nodes=FILENAME
174+
Use a file on disk to store node locations instead of storing them in
175+
memory (in non-slim mode) or in the database (in slim mode).
176+
This is much more efficient than storing the data in the database.
182177
Storing the node information for the full planet requires more than
183-
300GB in PostgreSQL, the same data is stored in \[lq]only\[rq] 50GB
178+
500GB in PostgreSQL, the same data is stored in \[lq]only\[rq] 90GB
184179
using the flat-nodes mode.
185180
This can also increase the speed of applying diff files.
186181
This option activates the flat-nodes mode and specifies the location of
@@ -189,6 +184,8 @@ It is a single large file.
189184
This mode is only recommended for full planet imports as it doesn\[cq]t
190185
work well with small imports.
191186
The default is disabled.
187+
The file will stay on disk after import, use --drop to remove it (but
188+
you can\[cq]t do updates then).
192189
.TP
193190
--middle-schema=SCHEMA
194191
Use PostgreSQL schema SCHEMA for all tables, indexes, and functions in
@@ -198,15 +195,9 @@ user.
198195
By default the schema set with \f[V]--schema\f[R] is used, or
199196
\f[V]public\f[R] if that is not set.
200197
.TP
201-
--middle-way-node-index-id-shift=SHIFT
202-
Set ID shift for way node bucket index in middle.
203-
Experts only.
204-
See documentation for details.
205-
.TP
206198
--middle-with-nodes
207-
Used together with the \f[B]new\f[R] middle database format when a flat
208-
nodes file is used to force storing nodes with tags in the database,
209-
too.
199+
When a flat nodes file is used, nodes are not stored in the database.
200+
Use this option to force storing nodes with tags in the database, too.
210201
.SH OUTPUT OPTIONS
211202
.TP
212203
-O, --output=OUTPUT

0 commit comments

Comments
 (0)