-
Notifications
You must be signed in to change notification settings - Fork 2
RenderingOsmData
The map displayed on the front page of the MapServer website is an example of MapServer's rendering capabilities.
OpenStreetMap data can be used freely under the terms of the Creative Commons Attribution-ShareAlike 2.0 license:
OpenStreetMap creates and provides free geographic data such as street maps to anyone who wants them. The project was started because most maps you think
of as free actually have legal or technical restrictions on their use, holding back people from using them in creative, productive, or unexpected ways.
The mapfile presented here assumes a very recent version of MapServer is used, i.e. at least 5.4. You will have to include (at least) support for AGG rendering,postgis, and wms server.). Once you're done compiling, copy the ''mapserv'' binary to a cgi executable directory of your mapserver (/usr/lib/cgi-bin on debian)
This howto will take australian data as an example. Note: if you already have imported OSM data, see the section "[#Usinganexistingdatabase Using an existing database]" below.
-
Download an osm excerpt, for example from http://downloads.cloudmade.com/oceania/australia/australia.osm.bz2, other countries can be found at http://downloads.cloudmade.com/
-
Optionally, download and unzip the shapefiles containing the world coastlines from http://hypercube.telascience.org/~kleptog/processed_p.zip (this shapefile isn't included or rendered with the supplied mapfile)
-
Download and install [http://www.cygwin.com cygwin] and make sure you add the following packages: "wget", "unzip", "gcc" and "make".
-
Download and install [http://www.postgresql.org/download/windows PostgreSQL] for windows and select to install PostGIS in PostgreSQL setup.
-
If you don't have MapServer for windows - install it - just make sure you have the latest version of MapServer and not an old one...
svn checkout http://mapserver-utils.googlecode.com/svn/trunk/ mapserver-utils-read-only
We'll assume that the data will be imported into a database named
osm
. We will also grant access to a {{{www-data}}} user.
# sudo su postgres
# createdb -E utf8 osm
# createlang plpgsql osm
# cat /usr/share/postgresql-8.3-postgis/lwpostgis.sql | psql -d osm
# cat /usr/share/postgresql-8.3-postgis/spatial_ref_sys.sql | psql -d osm
Now log into the created database (as postgres user):
# psql -d osm
And run create the www-data user:
create user "www-data" with password 'www-data';
eventually add the 900913 projection to your epsg database if it isn't already present (usually in /usr/share/proj/epsg):
<900913> +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs
-
If you haven't installed it yet - install PostgreSQL for windows with PostGIS extension (you can select to add PostGIS during the PostgreSQL setup).
-
Start-->"Programs"-->"PostgreSQL 8.x"-->"pgAdmin III".
-
Connect to the server.
-
Go to the server's "Databases" tree node, right click, "New Database...", a window titled "New Database..." will be opened.
-
Enter "osm" in the name field.
-
Select the template "template_postgis" in the template field combo box.
-
Press the "OK" button on the new database window.
-
Select with the mouse the new osm database under the Databases subtree.
-
From the main menu select: Tools-->"Query tool".
-
Enter the following text in the "Query tool":
create user "www-data" with password 'www-data';
- Press F5 to run the query.
Leave the "Query tool" on - you will need it later to run more queries.
-
Make sure the 'C:/Program Files/PostgreSQL/xx/bin/' directory is added to your PATH environment variable
-
These instructions assume that you already have a 'postgres' user
-
Open a command prompt and enter the following commands:
-
createdb -E utf8 -U postgres osm
-
psql -U postgres -d osm -f "C:\Program Files\PostgreSQL\8.4\share\contrib\postgis-1.4\postgis.sql"
-
psql -U postgres -d osm -f "C:\Program Files\PostgreSQL\8.4\share\contrib\postgis-1.4\spatial_ref_sys.sql"
-
createuser -U postgres -P www-data
enter 'www-data' for password for new user
-
try connecting as this new user to the 'osm' database:
psql -U www-data -d osm
(enter 'www-data' for password)
-
Install the [http://wiki.openstreetmap.org/wiki/Osm2pgsql Osm2pgsql] helper program
-
On windows make sure that PROJ_LIB environment variable is define to the location of your epsg file (In some case the path is: "C:\ms4w\proj\nad") - else you will get a "Projection code failed to initialise" error.
-
Run the importation process (as the postgres user) (this will take some time, depending on your processing power and the quantity of data you want to import):
# osm2pgsql -l -d osm -p osm -s -C 1024 /path/to/australia.osm.bz2
Example on Windows (notice the extra path to the style):
osm2pgsql -U postgres -W -l -d osm -p osm -s -C 1024 -S "C\Program Files\osm2pgsql\default.style" colorado.osm.bz2
- Postprocess the imported data:
Optionally, edit mapserver-utils-read-only/postprocess.sql to comment out or remove the following two lines if you'd rather leave names unchanged:
-- optional, makes it easier to wrap place names
update osm_point set name = replace(name,'-',' ');
Note that you can also use "WRAP [character] MAXLENGTH [integer]" wrap names on hyphen.
Then proceed with postprocessing:
# cat mapserver-utils-read-only/postprocess.sql | psql -d osm
-
Open the file named postprocess.sql in a text editor.
-
Copy the text to the "Query tool".
-
Press F5 to run the query.
-
Open a command prompt
-
cd to the 'mapserver-utils-read-only' directory, and execute the command:
-
psql -U postgres -d osm -f postprocess.sql
''Note:'' you might also want to execute the command 'vacuum analyze' on the osm database before moving on, to optimize queries:
psql -U postgres -d osm -c "vacuum analyze"
If you already have a postgis database with OSM data imported, all there is left to do (besides compiling mapserver with postgis support) is editing generate_style.py. at approx. line 72 change
'db_connection': '"host=localhost dbname=osm user=osm password=osm port=5432"'
to reflect your database port, name, user name and user password.
Open the folder of "osm-mapserver utils" you downloaded earlier.
this is a work in progress mapfile, that compiles a template and a style file into a full-blown MapServer mapfile. The supplied Makefile supposes that the C preprocessor is installed on debian-ish systems (or cygwin on windows). The ''fonts.lst'' file contains the path to the two fonts used: adapt to reference similar fonts if the ones in the file don't exist on your system.
You may need to edit the Makefile to change the OSM_EXTENT parameter to suit your own data. To find the correct extent, run this command:
# su postgres
# psql -d osm -c "SELECT extent(way) FROM osm_line"
You can also enter 'SELECT extent(way) FROM osm_line' (without the quotes) as a SQL command in the pgAdmin Query tool.
Return should be (for France) something like:
extent
-------------------------------------------------
BOX(-572406.4375 5067315,1064254.875 6637725.5)
(1 row)
- On windows use cygwin command prompt and you may also need to edit the "Makefile" file first line to be "CPP=cpp".
# cd mapserverosm (or the "osm-mapserver utils" path)
# make
check that you now have a full mapfile, named ''osm-mapserver.map'', and that all the paths and database accesses are ok by running :
# /path/to/mapserver/shp2img -m osm.map -o osm.png
If you get permission denied errors probably you will need to edit the file.
''osm.png'' should be an image centered on sydney
copy/paste this block to a file accessible on your webserver. you will have to adapt at least the path to ''osm.map'' file, and the url of your ''mapserv'' binary. If necesary change also the ''maxExtent'' parameter with the extent found above:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
body {
width:100%;
height:100%;
border: 0px;
margin: 0px;
padding: 0px;
font:sans-serif;
font-size:small;
}
#map {
width: 800px;
height: 600px;
border: 1px solid black;
padding: 0px;
margin:0px auto;
margin-top:30px;
position:relative;
}
</style>
<script src="http://www.openlayers.org/api/OpenLayers.js"></script>
<script type="text/javascript">
var lon = 16831422;
var lat=-4012608;
var zoom = 3;
var map, layer;
function init(){
map = new OpenLayers.Map( 'map' );
var wms = new OpenLayers.Layer.WMS( "WMS",
/*
change here to suit your setup
*/
"http://myserver/cgi-bin/mapserv-trunk?",
{map: '/path/to/osm.map',
layers: 'default',
format: 'aggpng24',
transparent: 'off'},
{maxExtent: new OpenLayers.Bounds(11548635,-5889094,18604187,-597430),
scales: [5000,10000,25000,50000,100000,250000,500000,
1000000,2500000,5000000,10000000,25000000,50000000,100000000],
units: 'm',
projection:new OpenLayers.Projection("EPSG:900913"),
gutter:0,
ratio:1,
wrapDateLine: true,
isBaselayer:true,
singleTile:true,
transitionEffect:'resize'} );
map.addLayers([wms]);
if(!map.getCenter())
map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
map.addControl(new OpenLayers.Control.Scale('scale'));
map.addControl(new OpenLayers.Control.Permalink('permalink'));
map.addControl(new OpenLayers.Control.MousePosition());
}
</script>
</head>
<body onload="init()">
<div id="map">
</div>
<div id="controls">
<span id="scale" style="float:left"></span>
<a href="#" id="permalink" style="float:right">lien direct</a>
</div>
</body>
</html>
-
you can change the color scheme by editing the ''osm1.style'' file, and rerunning ''make''
-
feel free to edit this page to include any solutions to problems you might have had following these steps
-
for more info: thomas.bonfort at gmail dot com