Hi;<br><br>1) is your osm data table in Epsg:4326 projection?<br>if so use;  "init=epsg:4326" for each layer..<br>2) 'grey empty image'?? so you can get map from mapserver?<br>right click on a tile and copy image location. Try the copied url, is there an error?<br>
<br>Regards..<br><br><br><div class="gmail_quote">On Tue, Mar 16, 2010 at 12:20 PM, Mulone1 <span dir="ltr"><<a href="mailto:mulone@rome.com">mulone@rome.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
(apologies for cross-posting)<br>
<br>
Hi everybody,<br>
I'm trying to render openstreetmap data on a WMS on MapServer.<br>
The system used to work with epsg:4326 but in our project we need a<br>
GoogleMaps like projection and we chose epsg:900913.<br>
<br>
These are the steps I followed to reimport everything for the new<br>
projection:<br>
<br>
1) download osm xml file from Cloudmade (e.g. Italy.osm.bz2)<br>
2) Run 900913.sql on my PostGIS<br>
3) import that file into PostGIS with command:<br>
<br>
./osm2pgsql -U userid -W -H host -d maps -p myprefix -S default.style -c -m<br>
italy.osm.bz2<br>
<br>
4) At this point everything seems ok. The geometry columns have 900913 as<br>
SRID.<br>
5) update MapFile with:<br>
<br>
WEB<br>
    METADATA<br>
        wms_srs "epsg:900913"<br>
...<br>
<br>
PROJECTION<br>
    "init=epsg:900913"<br>
END<br>
<br>
Then in each layer I put:<br>
<br>
PROJECTION  "init=epsg:900913"      END<br>
<br>
and all of the queries have:  using srid=900913<br>
<br>
6) load the wms layer into OpenLayers<br>
with<br>
<br>
var wms = new OpenLayers.Layer.WMS("OpenStreetMap", mainurl, {<br>
...<br>
units : 'm',<br>
projection:new OpenLayers.Projection("EPSG:900913"),<br>
...<br>
<br>
<br>
<br>
Unfortunately all I get is a grey empty image. Looking at the map server log<br>
I noticed that it's full of:<br>
<br>
[Mon Mar 15 17:49:44 2010].517000 msPostGISLayerWhichShapes query status: 2<br>
[Mon Mar 15 17:49:44 2010].517000 msPostGISLayerWhichShapes got 0 records in<br>
result.<br>
[Mon Mar 15 17:49:44 2010].517000 msPostGISLayerNextShape called.<br>
<br>
<br>
With the other projection I was getting the records.<br>
<br>
Do you have any idea about what could be wrong in my set up? I tried to<br>
debug it in several ways but I couldn't find anything wrong.<br>
<br>
Cheers,<br>
Mulone<br>
<font color="#888888">--<br>
View this message in context: <a href="http://old.nabble.com/OSM2pgsql%2C-OpenStreetMap%2C-MapServer%2C-EPSG%3A900913%2C-OpenLayers%3A-issue-tp27915684p27915684.html" target="_blank">http://old.nabble.com/OSM2pgsql%2C-OpenStreetMap%2C-MapServer%2C-EPSG%3A900913%2C-OpenLayers%3A-issue-tp27915684p27915684.html</a><br>

Sent from the PostGIS - User mailing list archive at Nabble.com.<br>
<br>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
</font></blockquote></div><br>