Hi gang,<br><br>Some background info before I present my questions:<br><br>I've been teaching my self PostGIS and GIS in general for that last few weeks.    <br><br>My main source of "bootstrapping" education material has been the O'Reilly book, Web Mapping Illustrated, which introduced me to PostGIS and OGR.
<br><br>My workflow is this:<br><br>1.) Find data on the web<br>2.) Get it into a shapefile somehow<br>3.) ogr2ogr the shapefiles into PostGIS<br>4.) ogr2ogr the postgis data into GML files using sql to refine the data and edit the geometry for the specific need.
<br><br>Currently I'm trying to create a single data file which plots out the coastlines for the entire globe, at a low detail level suitable for quick plotting and animation (think google earth zoomed out all the way)
<br><br>My data source is the VMAP0 dataset which used to be the Digital Chart of the World. <br><br>Right now I'm using this sql to create my GML:<br><br>SELECT ST_SnapToGrid( ST_Simplify(wkb_geometry, 5), .5, .5 ) <br>
FROM europe_north_asia_coastlines <br>UNION ALL <br>SELECT ST_SnapToGrid( ST_Simplify(wkb_geometry, 5), .5, .5 ) <br>FROM north_america_coastlines <br>UNION ALL <br>SELECT ST_SnapToGrid( ST_Simplify(wkb_geometry, 5), .5, .5 ) 
<br>FROM south_asia_austrailia_coastlines <br>UNION ALL <br>SELECT ST_SnapToGrid( ST_Simplify(wkb_geometry, 5), .5, .5 ) <br>FROM south_america_africa_coastlines<br><br>Questions:<br>1.) What do people think of my workflow
<br>2.) What do people think of my data source choice<br>3.) Am I doing the geometry editing right?  It seems I'm missing a step, because I'm simplifying the data, but I'm still working with a bunch of features, don't I want to combine my features somehow?
<br>4.) Am I on the right track?<br>5.) Is this the best list for these questions?<br><br>Thanks,<br>Chris<br><br><br clear="all"><br>-- <br>Chris Hinkle<br>Brooklyn, NY<br><a href="mailto:lilhinx@gmail.com">lilhinx@gmail.com
</a><br>646-240-3024