From 65202672bcdfc73d58272afa47f5d713986a77c9 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Tue, 24 Mar 2020 21:45:40 +0000 Subject: [PATCH] imagery: Add initial lu ngl dtm --- cookbooks/imagery/recipes/lu_ngl_dtm.rb | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 cookbooks/imagery/recipes/lu_ngl_dtm.rb diff --git a/cookbooks/imagery/recipes/lu_ngl_dtm.rb b/cookbooks/imagery/recipes/lu_ngl_dtm.rb new file mode 100644 index 000000000..452252a24 --- /dev/null +++ b/cookbooks/imagery/recipes/lu_ngl_dtm.rb @@ -0,0 +1,44 @@ +# +# Cookbook:: imagery +# Recipe:: gb_surrey_aerial +# +# Copyright:: 2016, OpenStreetMap Foundation +# +# Licensed 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 +# +# https://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. +# + +include_recipe "imagery" + +imagery_site "ana_dtm_2017.openstreetmap.lu" do + title "OpenStreetMap - ANA DTM 2017" + bbox [[49.38, 5.64], [50.2, 6.64]] +end + +imagery_layer "ana_dtm_2017" do + site "ana_dtm_2017.openstreetmap.lu" + default_layer true + projection "EPSG:3857" + source "/data/imagery/lu/LUREF_NGL/ANA_LUREF_NGL_DTM-epsg-3857-compress.tif" + max_zoom 21 + title "DTM" + copyright "Copyright" +end + +imagery_layer "ana_dtm_2017_hillshading" do + site "ana_dtm_2017.openstreetmap.lu" + projection "EPSG:2169" + source "/data/imagery/lu/LUREF_NGL/lu_hillshade_2017.tif" + max_zoom 21 + title "DTM Hillshading" + copyright "Copyright" +end -- 2.39.5