From 5897a82a16b233abac7b8f339c019b931c2bbf54 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Tue, 14 Jan 2025 18:56:08 +0800 Subject: [PATCH] Reuse toml (#518) * add REUSE.toml [#480] * add REUSE.toml and clarify license of different parts - software, specification, sample data [#480] --- LICENSE | 8 ++++++++ REUSE.toml | 21 +++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 REUSE.toml diff --git a/LICENSE b/LICENSE index 62168d4..ec3d69a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,11 @@ +The below license (BSD-3) applies to the reference implementations in this repository. + +The PMTiles specification itself is public domain, or CC0 where applicable. + +Sample tilesets available in this repository are subject to their own license terms. + +--- + Copyright 2021 Protomaps LLC Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 0000000..692542d --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,21 @@ +version = 1 + +[[annotations]] +path = ["app/**","cpp/**","js/**","openlayers/**","python/**","serverless/**"] +SPDX-FileCopyrightText = "2021 and later, Protomaps LLC and contributors" +SPDX-License-Identifier = "BSD-3-Clause" + +[[annotations]] +path = "spec/**/*.md" +SPDX-FileCopyrightText = "2021 and later, Protomaps LLC and contributors" +SPDX-License-Identifier = "CC0-1.0" + +[[annotations]] +path = "spec/v3/protomaps(vector)ODbL_firenze.pmtiles" +SPDX-FileCopyrightText = "© OpenStreetMap Contributors" +SPDX-License-Identifier = "ODbL-1.0" + +[[annotations]] +path = "stamen_toner(raster)CC-BY+ODbL_z3.pmtiles" +SPDX-FileCopyrightText = "Stamen Design, © OpenStreetMap Contributors" +SPDX-License-Identifier = "CC-BY-4.0" \ No newline at end of file