| #!/bin/sh |
| |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to you under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| # Start from the scripts directory |
| DIR="$(dirname "$0")" |
| cd "$DIR" || exit |
| cd ../examples/openstreetmap |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Execute the OpenStreetMap workflow" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| baremaps workflow execute --file workflow.json |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Start the OpenStreetMap server" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| nohup baremaps map dev --tileset 'tileset.json' --style 'style.json' > /dev/null 2>&1 & |
| baremaps=$! |
| |
| sleep 1 |
| |
| echo "Get the status of the root (/):" |
| curl -I http://localhost:9000/ |
| |
| echo "Get the status of the style (/style.json):" |
| curl -I http://localhost:9000/style.json |
| |
| echo "Get the status of the tileset (/tiles.json):" |
| curl -I http://localhost:9000/tiles.json |
| |
| echo "Get the status of a tile (/tiles/14/8625/5746.mvt):" |
| curl -I http://localhost:9000/tiles/14/8625/5746.mvt |
| |
| echo "Get the status of an out-of-bound tile (/tiles/16/16398/10986.mvt):" |
| curl -I http://localhost:9000/tiles/16/16398/10986.mvt |
| |
| kill $baremaps |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Export the OpenStreetMap tiles (directory)" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| baremaps map export \ |
| --tileset 'tileset.json' \ |
| --style 'style.json' \ |
| --repository 'tiles/' |
| |
| echo "Display the size of the tiles:" |
| du -a tiles |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Export the OpenStreetMap tiles (mbtiles)" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| baremaps map export \ |
| --tileset 'tileset.json' \ |
| --style 'style.json' \ |
| --repository 'tiles.mbtiles' \ |
| --format mbtiles |
| |
| echo "Display the size of the tiles:" |
| du -a tiles.mbtiles |
| |
| cd ../.. |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Execute the NaturalEarth workflow" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| cd examples/naturalearth |
| |
| baremaps workflow execute --file workflow.json |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Start the NaturalEarth server" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| nohup baremaps map dev --tileset 'tileset.json' --style 'style.json' > /dev/null 2>&1 & |
| baremaps=$! |
| sleep 1 |
| |
| echo "Get the status of the root (/):" |
| curl -I http://localhost:9000/ |
| |
| echo "Get the status of the style (/style.json):" |
| curl -I http://localhost:9000/style.json |
| |
| echo "Get the status of the tileset (/tiles.json):" |
| curl -I http://localhost:9000/tiles.json |
| |
| echo "Get the status of a tile (/tiles/14/8625/5746.mvt):" |
| curl -I http://localhost:9000/tiles/1/1/1.mvt |
| |
| echo "Get the status of an out-of-bound tile (/tiles/16/16398/10986.mvt):" |
| curl -I http://localhost:9000/tiles/16/16398/10986.mvt |
| |
| kill $baremaps |
| |
| echo "" |
| echo "--------------------------------------------------------------------" |
| echo "Export the NaturalEarth tiles" |
| echo "--------------------------------------------------------------------" |
| echo "" |
| |
| baremaps map export \ |
| --tileset 'tileset.json' \ |
| --style 'style.json' \ |
| --repository 'tiles/' |
| |
| echo "Display the size of the tiles:" |
| du -h tiles |