Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIlya Zverev <zverik@textual.ru>2018-03-16 12:25:09 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2018-03-16 13:11:54 +0300
commitd7641c1ccfd90602308ad0a4c1b6c459b8fcbb81 (patch)
treea199d7f270283e5a0519d561eb8902cd1e25028f /tools
parent2ed3d3cdf6574db9ee351b409385350440f10dec (diff)
Replace http with https for openstreetmap.org links
Diffstat (limited to 'tools')
m---------tools/osmctools0
-rwxr-xr-xtools/unix/generate_planet.sh2
2 files changed, 1 insertions, 1 deletions
diff --git a/tools/osmctools b/tools/osmctools
-Subproject 96953b50c96cee15f2742432cf7dea587be7c40
+Subproject 3b333771243a2df15dc28d13c9713507f96430b
diff --git a/tools/unix/generate_planet.sh b/tools/unix/generate_planet.sh
index 2806ab2230..0d802878c5 100755
--- a/tools/unix/generate_planet.sh
+++ b/tools/unix/generate_planet.sh
@@ -344,7 +344,7 @@ if [ "$MODE" == "coast" ]; then
# Planet download is requested
log "STATUS" "Step 0: Downloading and converting the planet"
PLANET_PBF="$(dirname "$PLANET")/planet-latest.osm.pbf"
- curl -s -o "$PLANET_PBF" http://planet.openstreetmap.org/pbf/planet-latest.osm.pbf
+ curl -s -o "$PLANET_PBF" https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf
"$OSMCTOOLS/osmconvert" "$PLANET_PBF" --drop-author --drop-version --out-o5m "-o=$PLANET"
rm "$PLANET_PBF"
fi