Add an additional hstore (key/value) column containing all tags that start with the specified string, eg --hstore-column "name:" will produce an extra hstore column that contains all name:xx tags --hstore-match-only Only keep objects that have a value in one of the columns (normal ac...
+ CREATE TABLE fk_p_1 PARTITION OF fk_p FOR VALUES IN (1) + CREATE TABLE fk_p_2 PARTITION OF fk_p FOR VALUES IN (2) + CREATE TABLE fk_r_1 ( id bigint PRIMARY KEY, p_id bigint NOT NULL) + CREATE TABLE fk_r_2 ( id bigint PRIMARY KEY, p_id bigint NOT NULL) + CREAT...
+CREATE SCHEMA fkpart12 + CREATE TABLE fk_p ( id int, jd int, PRIMARY KEY(id, jd)) PARTITION BY list (id) + CREATE TABLE fk_p_1 PARTITION OF fk_p FOR VALUES IN (1) PARTITION BY list (jd) + CREATE TABLE fk_p_1_1 PARTITION OF fk_p_1 FOR VALUES IN (1) + CREATE TABLE ...
In order to do manual conversions with proj, you need not enter the whole SRS string. Because proj already has the list of EPSG projections, you can use the option +init=epsg:index instead. The default OpenStreetmap rendering style for Mapnik assumes the default (Pseudo-Mercator) projection,...