I'm trying to render coastlines in a desktop GIS application to distinguish land from water.
My Configuration
- PostgreSQL 8.4
- PostGIS 1.5
- Osmosis 0.40.1
- GeoTools 2.7.4
- europe.osm.bz2
- No internet access
Setup
Set up my PostGIS enabled database by executing these sql scripts in order:
[PATH_TO_POSTGRESQL_8.4]/share/contrib/postgis-1.5/postgis.sql [PATH_TO_POSTGRESQL_8.4]/share/contrib/postgis-1.5/spatial_ref_sys.sql [PATH_TO_POSTGRESQL_8.4]/postgresql/8.4/contrib/hstore.sql [PATH_TO_OSMOSIS_0_40_1/script/pgsnapshot_schema_0.6.sql [PATH_TO_OSMOSIS_0_40_1/script/pgsnapshot_schema_0.6_action.sql [PATH_TO_OSMOSIS_0_40_1/script/pgsnapshot_schema_0.6_bbox.sql [PATH_TO_OSMOSIS_0_40_1/script/pgsnapshot_schema_0.6_linestring.sqlExtract a bounding box from europe.osm.bz2:
osmosis.bat -v --fast-read-xml file=[PATH_TO_OSM_FILES]europe.osm.bz2 compressionMethod=bzip2 outPipe.0=1 --bounding-box left=5 right=15 top=60 bottom=53 completeWays=yes completeRelations=yes inPipe.0=1 outPipe.0=2 --write-xml file=[PATH_TO_OSM_FILES]boundingbox.osm.bz2 compressionMethod=bzip2 inPipe.0=2Import data into my database:
osmosis.bat --read-xml file=[PATH_TO_OSM_FILES]boundingbox.osm.bz2 outPipe.0=1 --write-pgsql host=localhost:5432 database=postgis user=usr password=pwd inPipe.0=1
So this is my basic setup I'm starting with. To reduce the amount of data I created a separate table containing my coastlines from the existing ways-table by executing:
CREATE TABLE coastline as SELECT * from ways WHERE tags @> 'natural => coastline'
INSERT into geometry_columns (f_table_catalog, f_table_schema, f_table_name, f_geometry_column, coord_dimension, srid, "type") VALUES ('', 'public', 'coastline', 'linestring', 2, 4326, 'GEOMETRY');
INSERT into geometry_columns (f_table_catalog, f_table_schema, f_table_name, f_geometry_column, coord_dimension, srid, "type") VALUES ('', 'public', 'coastline', 'bbox', 2, 4326, 'GEOMETRY');
ALTER TABLE coastline ADD CONSTRAINT pk_coastline PRIMARY KEY(id);
ALTER TABLE coastline ADD CONSTRAINT enforce_dims_bbox CHECK (st_ndims(bbox) = 2);
ALTER TABLE coastline ADD CONSTRAINT enforce_dims_linestring CHECK (st_ndims(linestring) = 2);
ALTER TABLE coastline ADD CONSTRAINT enforce_srid_bbox CHECK (st_srid(bbox) = 4326);
ALTER TABLE coastline ADD CONSTRAINT enforce_srid_linestring CHECK (st_srid(linestring) = 4326);
Next, I flag rows as a polygon in a column named 'isPolygon' (boolean) using a PostGIS function (maybe, there is a smarter way to check for polygons encoded in the given linestrings I get when importing data with Osmosis)
UPDATE coastline set isPolygon = true WHERE BuildArea(linestring) is not null;
After this a large amout of data is flagged as poylgons. Fine so far. Now, I am able to read these coastlines using GeoTools. By filtering on the 'isPolygon'-column I easily distinguish polygons from lines. So I can fill these poylgons with a different color e.g. white.
Problem
Not all the land (and I'm really sure there is land :)) is painted white. The application behaves right, since not all rows are flagged as polygons. So what is the issue? Looking at different renderers at OpenStreetMap tells me that it's possible. I must have missed something important. Is filtering by 'natural=coastline' not enough?
One idea is to close lines outside the visible area to get valid polygons, but this does not feel quite right for me.
Thanks for any hint.