You are not logged in.
Here comes my little showcase:
http://kap.grade.de/int-chart-ol2.html
Feedback and/or support is appreciated, Dirk
Offline
Very nice service.
The pontoons in most of the harbours seem to be obscured by the depth layer though.
Cheers,
Christian
Offline
Thanks,
indeed, the Dutch depth layer covers some land area. I will switch to an other layer ....
Have a nice day, Dirk
Offline
Dutch depth layer?
Where does that come from? License?
I believe the depth layer we are using on the online map is transparent. How about doing it the other way round, making the sea area of the mapnik base map transparent (a simple color swapping should do). Then you stack the layers as follows: depth layer on the bottom, then mapnik and then our seamark layer on top. This should give us much less trouble. Any thoughts?
IMHO, the ultimate goal should be a proper custom rendering of the whole map. The smrender from Bernard comes into my mind there. Or is this too much load on the servers?
Again, thanks for the great work on the INT maps. BTW, how can I help getting more areas covered?
Cheers,
Christian
Offline
Dutch depth layer:
http://www.rijkswaterstaat.nl/zakelijk/ … aterstaat/
[...]
Geodata
Om toegang te verkrijgen tot de geodata van Rijkswaterstaat kunt u gebruikmaken van de Mapviewer. Hierin kunt u diverse kaartlagen bekijken. Daarnaast kunt u de url's van de webservices in uw eigen applicatie gebruiken.
[...]
Base Layer:
I picked http://developer.mapquest.com/de/web/products/open/map since there are almost no restrictons on tile usage. Unfortunately their water style is pretty odd ... Might be hard to get this transparent.
smrender:
Yes, Bernhard's maps look best. Samples here: http://kap.grade.de/Europe/Germany/
Help:
http://wiki.openseamap.org/wiki/OpenSea … ter_Charts
http://wiki.openseamap.org/wiki/OpenSea … ter_Charts
http://wiki.openseamap.org/wiki/OpenSea … INT_Charts
Offline
Hi Christian,
changed the Dutch depth layer: http://kap.grade.de/INT-CHART/INT-1470_ … aM-BSH.jpg
Have a nice day, Dirk
Offline
Looks good.
Still have no idea on how to actually contribute to the project- I'm probably too dumb to see it :-D.
Do you need people to actually provide the csv files?
Like the ones here: https://github.com/OpenSeaMap/chart-she … n_C1/1.csv
Cheers,
Christian
Offline
Yes, converting the
int-chart pdf > csv > geojson
is one task.
'C1', 'C2', 'D' & 'E' is done.
Reviewing and improving the code is welcome, too: https://github.com/OpenSeaMap/general/issues/10
Offline
Hi there
My first post here and my first time working with MBtiles format, so please excuse me if I have misunderstood how they work - but it appears the latitude for the tiles is incorrect, in at least the two "mbtiles" files I have checked which are http://kap.grade.de/cgi-bin/download.php?Chart=1046 and http://kap.grade.de/cgi-bin/download.php?Chart=1473.
For 1473, for example, the text file at http://kap.grade.de/INT-CHART/INT-1473_ … aM-BSH.txt gives the top/bottom tile numbers are 2704 and 2723 (correct). However if I open the "mbtiles" file in sqllite and run "select min(tile_row), max(tile_row) from tiles", I get 5468 and 5487 - which are way down in the south atlantic.
Is it my error or are the "mbtiles" files incorrect?
Cheers... Mike
Offline
Hi Mike,
y-tile-names are flipped at mbtiles-format.
Math to flip y-coords: coord.row = Math.pow(2, coord.zoom) - coord.row - 1;
Hope this helps, Dirk
Offline