From 79e2e180612b80166f163737ab7901896443cb4c Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Mon, 1 Sep 2025 22:06:51 +0100 Subject: [PATCH] Add Bulgaria MAF Imagery --- cookbooks/imagery/recipes/bg_imagery.rb | 36 +++++++++++++++++++++++++ roles/imagery.rb | 1 + 2 files changed, 37 insertions(+) create mode 100644 cookbooks/imagery/recipes/bg_imagery.rb diff --git a/cookbooks/imagery/recipes/bg_imagery.rb b/cookbooks/imagery/recipes/bg_imagery.rb new file mode 100644 index 000000000..a3adb5f64 --- /dev/null +++ b/cookbooks/imagery/recipes/bg_imagery.rb @@ -0,0 +1,36 @@ +# +# Cookbook:: imagery +# Recipe:: bg_imagery +# +# Copyright:: 2025, 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 "bg-imagery.openstreetmap.org" do + title "OpenStreetMap - Bulgaria - Aerial Imagery" + aliases ["bg-imagery.osm.org"] + bbox [[41.235, 22.357], [44.215, 28.608]] +end + +imagery_layer "maf-orthophoto-latest" do + site "bg-imagery.openstreetmap.org" + title "Bulgaria MAF Orthophoto Latest" + source "/store/imagery/bg/maf-orthophoto-map/maf-orthophoto.vrt" + copyright "(c) Ministry of Agriculture and Food of Bulgaria" + max_zoom 20 + extension "jpg" + default_layer true +end diff --git a/roles/imagery.rb b/roles/imagery.rb index 4c9562992..c82d8c185 100644 --- a/roles/imagery.rb +++ b/roles/imagery.rb @@ -28,6 +28,7 @@ run_list( "recipe[imagery::au_agri]", "recipe[imagery::au_act_aerial]", "recipe[imagery::au_vic_melbourne_aerial]", + "recipe[imagery::bg_imagery]", "recipe[imagery::gb_ea]", "recipe[imagery::gb_hampshire_aerial]", "recipe[imagery::gb_os_sv]", -- 2.39.5