From d7c8ee49d73736b6d7f8fd41c9d24a8276b68086 Mon Sep 17 00:00:00 2001 From: Bertil Chapuis Date: Sun, 24 Nov 2024 15:06:28 +0100 Subject: [PATCH] Add a licenses directory and update the LICENSE file --- LICENSE | 22 +- baremaps-cli/src/assembly/bin.xml | 1 + baremaps-cli/src/assembly/src.xml | 1 + .../baremaps/dem/ContourTracerTest.java | 17 +- .../baremaps/postgres/copy/CopyWriter.java | 701 +++++++++--------- licenses/flatgeobuf | 9 + licenses/geopackage-java | 19 + licenses/osm-binary | 7 + licenses/osm-testdata | 208 ++++++ licenses/palantir-streams | 201 +++++ licenses/pgbulkinsert | 21 + licenses/planetiler | 201 +++++ licenses/pmtiles | 11 + licenses/pyosmium | 23 + licenses/vector-tile-spec | 319 ++++++++ 15 files changed, 1394 insertions(+), 367 deletions(-) create mode 100644 licenses/flatgeobuf create mode 100644 licenses/geopackage-java create mode 100644 licenses/osm-binary create mode 100644 licenses/osm-testdata create mode 100644 licenses/palantir-streams create mode 100644 licenses/pgbulkinsert create mode 100644 licenses/planetiler create mode 100644 licenses/pmtiles create mode 100644 licenses/pyosmium create mode 100644 licenses/vector-tile-spec diff --git a/LICENSE b/LICENSE index ef5e788e1..808167178 100644 --- a/LICENSE +++ b/LICENSE @@ -208,14 +208,14 @@ Code and data produced outside the ASF that is included in the distribution of this product is subject to the following - additional license terms: - - - FlatGeobuf, BSD-2-Clause license, see https://github.com/flatgeobuf/flatgeobuf. - - GeoPackage Java, MIT License, see https://github.com/ngageoint/geopackage-java. - - OSMPBF, MIT License, see https://github.com/openstreetmap/OSM-binary/pull/35. - - OSM Test Data, Public domain, see https://github.com/osmcode/osm-testdata. - - Mapbox Vector Tile, Creative Commons Public License, see https://github.com/mapbox/vector-tile-spec. - - Palantir Streams, Apache License 2.0, see https://github.com/palantir/streams. - - Planetiler, Apache License 2.0, see https://github.com/onthegomap/planetiler. - - PMTiles, BSD-3-Clause license, see https://github.com/protomaps/PMTiles. - - pyosmium, BSD 2-Clause "Simplified" License, see https://github.com/osmcode/pyosmium. + additional license terms. + + - FlatGeobuf, BSD-2-Clause license, see licenses/flatgeobuf. + - GeoPackage Java, MIT License, see licenses/geopackage-java. + - OSMPBF, MIT License, see licenses/osm-binary. + - OSM Test Data, Public domain, see licenses/osm-testdata. + - Mapbox Vector Tile, Creative Commons Public License, see licenses/vector-tile-spec. + - Palantir Streams, Apache License 2.0, see licenses/palantir-streams. + - Planetiler, Apache License 2.0, see licenses/planetiler. + - PMTiles, BSD-3-Clause license, see licenses/pmtiles. + - pyosmium, BSD 2-Clause "Simplified" License, see licenses/pyosmium. diff --git a/baremaps-cli/src/assembly/bin.xml b/baremaps-cli/src/assembly/bin.xml index 5da375d5e..21ed6e7df 100644 --- a/baremaps-cli/src/assembly/bin.xml +++ b/baremaps-cli/src/assembly/bin.xml @@ -30,6 +30,7 @@ limitations under the License. DISCLAIMER NOTICE + licenses/** unix diff --git a/baremaps-cli/src/assembly/src.xml b/baremaps-cli/src/assembly/src.xml index 63583ef0a..fe80bafde 100644 --- a/baremaps-cli/src/assembly/src.xml +++ b/baremaps-cli/src/assembly/src.xml @@ -47,6 +47,7 @@ limitations under the License. .asf.yaml CONTRIBUTING.md LICENSE + licenses/** examples/** .gitignore RELEASE.md diff --git a/baremaps-dem/src/test/java/org/apache/baremaps/dem/ContourTracerTest.java b/baremaps-dem/src/test/java/org/apache/baremaps/dem/ContourTracerTest.java index f09e4978d..450c7852c 100644 --- a/baremaps-dem/src/test/java/org/apache/baremaps/dem/ContourTracerTest.java +++ b/baremaps-dem/src/test/java/org/apache/baremaps/dem/ContourTracerTest.java @@ -21,9 +21,12 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; +import java.io.File; import java.io.IOException; +import java.net.URI; import java.nio.file.Path; import javax.imageio.ImageIO; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.locationtech.jts.geom.Polygon; @@ -46,13 +49,17 @@ void testGrid1() { @Test @DisplayName("Test Mount Fuji") + @Disabled("This test requires an internet connection") void testMountFuji() throws IOException { - var fujiImage = ImageIO.read( - Path.of("") - .toAbsolutePath() - .resolveSibling("baremaps-dem/src/test/resources/fuji.png") - .toAbsolutePath().toFile()); + // Download the image to a temporary file + URI uri = URI.create( + "https://raw.githubusercontent.com/mapbox/martini/refs/heads/main/test/fixtures/fuji.png"); + File file = File.createTempFile("fuji", ".png", Path.of("").toAbsolutePath().toFile()); + file.deleteOnExit(); + ImageIO.write(ImageIO.read(uri.toURL()), "png", file); + + var fujiImage = ImageIO.read(file); var fujiGrid = ElevationUtils.imageToGrid(fujiImage, ElevationUtils::rgbToElevation); var fujiContours = new ContourTracer(fujiGrid, fujiImage.getWidth(), fujiImage.getHeight(), false, true) diff --git a/baremaps-postgres/src/main/java/org/apache/baremaps/postgres/copy/CopyWriter.java b/baremaps-postgres/src/main/java/org/apache/baremaps/postgres/copy/CopyWriter.java index b3e5c980f..13e4bcbb6 100644 --- a/baremaps-postgres/src/main/java/org/apache/baremaps/postgres/copy/CopyWriter.java +++ b/baremaps-postgres/src/main/java/org/apache/baremaps/postgres/copy/CopyWriter.java @@ -26,11 +26,6 @@ import de.bytefish.pgbulkinsert.pgsql.handlers.*; -import org.locationtech.jts.geom.Envelope; -import org.locationtech.jts.geom.Geometry; -import org.postgresql.copy.PGCopyOutputStream; -import org.postgresql.core.Oid; - import java.io.BufferedOutputStream; import java.io.DataOutputStream; import java.io.IOException; @@ -41,6 +36,10 @@ import java.util.Collection; import java.util.List; import java.util.Map; +import org.locationtech.jts.geom.Envelope; +import org.locationtech.jts.geom.Geometry; +import org.postgresql.copy.PGCopyOutputStream; +import org.postgresql.core.Oid; /** * A helper for writing in a {@code PGCopyOutputStream}. @@ -55,357 +54,357 @@ */ public class CopyWriter implements AutoCloseable { - public static final StringValueHandler STRING_HANDLER = - new StringValueHandler(); + public static final StringValueHandler STRING_HANDLER = + new StringValueHandler(); - public static final CollectionValueHandler> STRING_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.TEXT, new StringValueHandler()); + public static final CollectionValueHandler> STRING_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.TEXT, new StringValueHandler()); - public static final BooleanValueHandler BOOLEAN_HANDLER = - new BooleanValueHandler(); + public static final BooleanValueHandler BOOLEAN_HANDLER = + new BooleanValueHandler(); - public static final CollectionValueHandler> BOOLEAN_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.BOOL, new BooleanValueHandler()); + public static final CollectionValueHandler> BOOLEAN_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.BOOL, new BooleanValueHandler()); - public static final ByteValueHandler BYTE_HANDLER = - new ByteValueHandler<>(); + public static final ByteValueHandler BYTE_HANDLER = + new ByteValueHandler<>(); - public static final ByteArrayValueHandler BYTE_ARRAY_HANDLER = - new ByteArrayValueHandler(); + public static final ByteArrayValueHandler BYTE_ARRAY_HANDLER = + new ByteArrayValueHandler(); - public static final ShortValueHandler SHORT_HANDLER = - new ShortValueHandler<>(); + public static final ShortValueHandler SHORT_HANDLER = + new ShortValueHandler<>(); - public static final CollectionValueHandler> SHORT_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.INT2, new ShortValueHandler<>()); - - public static final IntegerValueHandler INTEGER_HANDLER = - new IntegerValueHandler<>(); - - public static final CollectionValueHandler> INTEGER_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.INT4, new IntegerValueHandler<>()); - - public static final LongValueHandler LONG_HANDLER = - new LongValueHandler<>(); - - public static final CollectionValueHandler> LONG_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.INT8, new LongValueHandler<>()); - - public static final FloatValueHandler FLOAT_HANDLER = - new FloatValueHandler<>(); - - public static final CollectionValueHandler> FLOAT_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.FLOAT4, new FloatValueHandler<>()); - - public static final DoubleValueHandler DOUBLE_HANDLER = - new DoubleValueHandler<>(); - - public static final CollectionValueHandler> DOUBLE_COLLECTION_HANDLER = - new CollectionValueHandler<>(Oid.FLOAT8, new DoubleValueHandler<>()); - - public static final LocalDateValueHandler LOCAL_DATE_HANDLER = - new LocalDateValueHandler(); - - public static final LocalDateTimeValueHandler LOCAL_DATE_TIME_HANDLER = - new LocalDateTimeValueHandler(); - - public static final Inet4AddressValueHandler INET_4_ADDRESS_HANDLER = - new Inet4AddressValueHandler(); - - public static final Inet6AddressValueHandler INET_6_ADDRESS_HANDLER = - new Inet6AddressValueHandler(); - - public static final HstoreValueHandler HSTORE_HANDLER = - new HstoreValueHandler(); - - public static final JsonbValueHandler JSONB_HANDLER = - new JsonbValueHandler(); - - public static final GeometryValueHandler GEOMETRY_HANDLER = - new GeometryValueHandler(); - - public static final EnvelopeValueHandler ENVELOPE_HANDLER = - new EnvelopeValueHandler(); - - private final DataOutputStream data; - - /** - * Creates a new writer with the specified {@code PGCopyOutputStream}. - * - * @param data - */ - public CopyWriter(PGCopyOutputStream data) { - this.data = new DataOutputStream(new BufferedOutputStream(data, 65536)); - } - - /** - * Writes the header of the query. - * - * @throws IOException - */ - public void writeHeader() throws IOException { - // 11 bytes required header - data.writeBytes("PGCOPY\n\377\r\n\0"); - // 32 bit integer indicating no OID - data.writeInt(0); - // 32 bit header extension area length - data.writeInt(0); - } - - /** - * Writes the number of columns affected by the query. - * - * @param columns - * @throws IOException - */ - public void startRow(int columns) throws IOException { - data.writeShort(columns); - } - - /** - * Writes a null value. - * - * @throws IOException - */ - public void writeNull() throws IOException { - data.writeInt(-1); - } - - /** - * Writes a null value. - * - * @param handler the value handler - * @param value the value - */ - public void write(BaseValueHandler handler, T value) { - handler.handle(data, value); - } - - /** - * Writes a string value. - * - * @param value the value - */ - public void write(String value) { - STRING_HANDLER.handle(data, value); - } - - /** - * Writes a list of string values. - * - * @param value the value - */ - public void write(List value) { - STRING_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes a boolean value. - * - * @param value the value - */ - public void writeBoolean(Boolean value) { - BOOLEAN_HANDLER.handle(data, value); - } - - /** - * Writes a list of boolean values. - * - * @param value the value - */ - public void writeBooleanList(List value) { - BOOLEAN_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes a byte value. - * - * @param value the value - */ - public void writeByte(Byte value) { - BYTE_HANDLER.handle(data, value); - } - - /** - * Writes a byte array value. - * - * @param value the value - */ - public void writeByteArray(byte[] value) { - BYTE_ARRAY_HANDLER.handle(data, value); - } - - /** - * Writes a short value. - * - * @param value the value - */ - public void writeShort(Short value) { - SHORT_HANDLER.handle(data, value); - } - - /** - * Writes a list of short values. - * - * @param value the value - */ - public void writeShortList(List value) { - SHORT_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes an integer value. - * - * @param value the value - */ - public void writeInteger(Integer value) { - INTEGER_HANDLER.handle(data, value); - } - - /** - * Writes a list of integer values. - * - * @param value the value - */ - public void writeIntegerList(List value) { - INTEGER_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes a long value. - * - * @param value the value - */ - public void writeLong(Long value) { - LONG_HANDLER.handle(data, value); - } - - /** - * Writes a list of long values. - * - * @param value the value - */ - public void writeLongList(List value) { - LONG_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes a float value. - * - * @param value the value - */ - public void writeFloat(Float value) { - FLOAT_HANDLER.handle(data, value); - } - - /** - * Writes a list of float values. - * - * @param value the value - */ - public void writeFloatList(List value) { - FLOAT_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes a double value. - * - * @param value the value - */ - public void writeDouble(Double value) { - DOUBLE_HANDLER.handle(data, value); - } - - /** - * Writes a list of double values. - * - * @param value the value - */ - public void writeDoubleArray(List value) { - DOUBLE_COLLECTION_HANDLER.handle(data, value); - } - - /** - * Writes a date value. - * - * @param value the value - */ - public void writeLocalDate(LocalDate value) { - LOCAL_DATE_HANDLER.handle(data, value); - } - - /** - * Writes a list of date values. - * - * @param value the value - */ - public void writeLocalDateTime(LocalDateTime value) { - LOCAL_DATE_TIME_HANDLER.handle(data, value); - } - - /** - * Writes an inet adress value. - * - * @param value the value - */ - public void writeInet4Adress(Inet4Address value) { - INET_4_ADDRESS_HANDLER.handle(data, value); - } - - /** - * Writes a list of inet adress values. - * - * @param value the value - */ - public void writeInet6Adress(Inet6Address value) { - INET_6_ADDRESS_HANDLER.handle(data, value); - } - - /** - * Writes a map value. - * - * @param value the value - */ - public void writeHstore(Map value) { - HSTORE_HANDLER.handle(data, value); - } - - /** - * Writes a jsonb array - * - * @param value the value - */ - public void writeJsonb(String value) { - JSONB_HANDLER.handle(data, value); - } - - /** - * Writes a geometry value. - * - * @param value the value - */ - public void writeGeometry(Geometry value) { - GEOMETRY_HANDLER.handle(data, value); - } - - /** - * Writes an envelope value. - * - * @param value the value - */ - public void writeEnvelope(Envelope value) { - ENVELOPE_HANDLER.handle(data, value); - } - - /** - * Writes the end of the row. - * - * @throws IOException - */ - @Override - public void close() throws IOException { - data.writeShort(-1); - data.flush(); - data.close(); - } + public static final CollectionValueHandler> SHORT_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.INT2, new ShortValueHandler<>()); + + public static final IntegerValueHandler INTEGER_HANDLER = + new IntegerValueHandler<>(); + + public static final CollectionValueHandler> INTEGER_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.INT4, new IntegerValueHandler<>()); + + public static final LongValueHandler LONG_HANDLER = + new LongValueHandler<>(); + + public static final CollectionValueHandler> LONG_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.INT8, new LongValueHandler<>()); + + public static final FloatValueHandler FLOAT_HANDLER = + new FloatValueHandler<>(); + + public static final CollectionValueHandler> FLOAT_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.FLOAT4, new FloatValueHandler<>()); + + public static final DoubleValueHandler DOUBLE_HANDLER = + new DoubleValueHandler<>(); + + public static final CollectionValueHandler> DOUBLE_COLLECTION_HANDLER = + new CollectionValueHandler<>(Oid.FLOAT8, new DoubleValueHandler<>()); + + public static final LocalDateValueHandler LOCAL_DATE_HANDLER = + new LocalDateValueHandler(); + + public static final LocalDateTimeValueHandler LOCAL_DATE_TIME_HANDLER = + new LocalDateTimeValueHandler(); + + public static final Inet4AddressValueHandler INET_4_ADDRESS_HANDLER = + new Inet4AddressValueHandler(); + + public static final Inet6AddressValueHandler INET_6_ADDRESS_HANDLER = + new Inet6AddressValueHandler(); + + public static final HstoreValueHandler HSTORE_HANDLER = + new HstoreValueHandler(); + + public static final JsonbValueHandler JSONB_HANDLER = + new JsonbValueHandler(); + + public static final GeometryValueHandler GEOMETRY_HANDLER = + new GeometryValueHandler(); + + public static final EnvelopeValueHandler ENVELOPE_HANDLER = + new EnvelopeValueHandler(); + + private final DataOutputStream data; + + /** + * Creates a new writer with the specified {@code PGCopyOutputStream}. + * + * @param data + */ + public CopyWriter(PGCopyOutputStream data) { + this.data = new DataOutputStream(new BufferedOutputStream(data, 65536)); + } + + /** + * Writes the header of the query. + * + * @throws IOException + */ + public void writeHeader() throws IOException { + // 11 bytes required header + data.writeBytes("PGCOPY\n\377\r\n\0"); + // 32 bit integer indicating no OID + data.writeInt(0); + // 32 bit header extension area length + data.writeInt(0); + } + + /** + * Writes the number of columns affected by the query. + * + * @param columns + * @throws IOException + */ + public void startRow(int columns) throws IOException { + data.writeShort(columns); + } + + /** + * Writes a null value. + * + * @throws IOException + */ + public void writeNull() throws IOException { + data.writeInt(-1); + } + + /** + * Writes a null value. + * + * @param handler the value handler + * @param value the value + */ + public void write(BaseValueHandler handler, T value) { + handler.handle(data, value); + } + + /** + * Writes a string value. + * + * @param value the value + */ + public void write(String value) { + STRING_HANDLER.handle(data, value); + } + + /** + * Writes a list of string values. + * + * @param value the value + */ + public void write(List value) { + STRING_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes a boolean value. + * + * @param value the value + */ + public void writeBoolean(Boolean value) { + BOOLEAN_HANDLER.handle(data, value); + } + + /** + * Writes a list of boolean values. + * + * @param value the value + */ + public void writeBooleanList(List value) { + BOOLEAN_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes a byte value. + * + * @param value the value + */ + public void writeByte(Byte value) { + BYTE_HANDLER.handle(data, value); + } + + /** + * Writes a byte array value. + * + * @param value the value + */ + public void writeByteArray(byte[] value) { + BYTE_ARRAY_HANDLER.handle(data, value); + } + + /** + * Writes a short value. + * + * @param value the value + */ + public void writeShort(Short value) { + SHORT_HANDLER.handle(data, value); + } + + /** + * Writes a list of short values. + * + * @param value the value + */ + public void writeShortList(List value) { + SHORT_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes an integer value. + * + * @param value the value + */ + public void writeInteger(Integer value) { + INTEGER_HANDLER.handle(data, value); + } + + /** + * Writes a list of integer values. + * + * @param value the value + */ + public void writeIntegerList(List value) { + INTEGER_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes a long value. + * + * @param value the value + */ + public void writeLong(Long value) { + LONG_HANDLER.handle(data, value); + } + + /** + * Writes a list of long values. + * + * @param value the value + */ + public void writeLongList(List value) { + LONG_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes a float value. + * + * @param value the value + */ + public void writeFloat(Float value) { + FLOAT_HANDLER.handle(data, value); + } + + /** + * Writes a list of float values. + * + * @param value the value + */ + public void writeFloatList(List value) { + FLOAT_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes a double value. + * + * @param value the value + */ + public void writeDouble(Double value) { + DOUBLE_HANDLER.handle(data, value); + } + + /** + * Writes a list of double values. + * + * @param value the value + */ + public void writeDoubleArray(List value) { + DOUBLE_COLLECTION_HANDLER.handle(data, value); + } + + /** + * Writes a date value. + * + * @param value the value + */ + public void writeLocalDate(LocalDate value) { + LOCAL_DATE_HANDLER.handle(data, value); + } + + /** + * Writes a list of date values. + * + * @param value the value + */ + public void writeLocalDateTime(LocalDateTime value) { + LOCAL_DATE_TIME_HANDLER.handle(data, value); + } + + /** + * Writes an inet adress value. + * + * @param value the value + */ + public void writeInet4Adress(Inet4Address value) { + INET_4_ADDRESS_HANDLER.handle(data, value); + } + + /** + * Writes a list of inet adress values. + * + * @param value the value + */ + public void writeInet6Adress(Inet6Address value) { + INET_6_ADDRESS_HANDLER.handle(data, value); + } + + /** + * Writes a map value. + * + * @param value the value + */ + public void writeHstore(Map value) { + HSTORE_HANDLER.handle(data, value); + } + + /** + * Writes a jsonb array + * + * @param value the value + */ + public void writeJsonb(String value) { + JSONB_HANDLER.handle(data, value); + } + + /** + * Writes a geometry value. + * + * @param value the value + */ + public void writeGeometry(Geometry value) { + GEOMETRY_HANDLER.handle(data, value); + } + + /** + * Writes an envelope value. + * + * @param value the value + */ + public void writeEnvelope(Envelope value) { + ENVELOPE_HANDLER.handle(data, value); + } + + /** + * Writes the end of the row. + * + * @throws IOException + */ + @Override + public void close() throws IOException { + data.writeShort(-1); + data.flush(); + data.close(); + } } diff --git a/licenses/flatgeobuf b/licenses/flatgeobuf new file mode 100644 index 000000000..acd7d34a3 --- /dev/null +++ b/licenses/flatgeobuf @@ -0,0 +1,9 @@ +Copyright (c) 2018, Björn Harrtell + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/geopackage-java b/licenses/geopackage-java new file mode 100644 index 000000000..412caf261 --- /dev/null +++ b/licenses/geopackage-java @@ -0,0 +1,19 @@ +Copyright (c) 2015 Bit Systems + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/osm-binary b/licenses/osm-binary new file mode 100644 index 000000000..0952a7737 --- /dev/null +++ b/licenses/osm-binary @@ -0,0 +1,7 @@ +Copyright (c) 2010 Scott A. Crosby. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/licenses/osm-testdata b/licenses/osm-testdata new file mode 100644 index 000000000..01c80c031 --- /dev/null +++ b/licenses/osm-testdata @@ -0,0 +1,208 @@ +Public Domain Dedication and License (PDDL) + + +Preamble + + +The Open Data Commons – Public Domain Dedication and Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents (“data”), either together or individually. + + +Many databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the “sui generis” database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for those wishing to share databases and their underlying data but retain a limited amount of rights under a “some rights reserved” approach to licensing as outlined in the Science Commons Protocol for Implementing Open Access Data. As a result, this waiver and licence tries to the fullest extent possible to eliminate or fully license any rights that cover this database and data. Any Community Norms or similar statements of use of the database or data do not form a part of this document, and do not act as a contract for access or other terms of use for the database or data. + + +The position of the recipient of the work + + +Because this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other databases or data, and share their changes and additions or keep them secret. It is not a requirement that recipients provide further users with a copy of this licence or attribute the original creator of the data or database as a source. The goal is to eliminate restrictions held by the original creator of the data and database on the use of it by others. + + +The position of the dedicator of the work + + +Copyright law, as with most other law under the banner of “intellectual property”, is inherently national law. This means that there exists several differences in how copyright and other IP rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of minimum levels of protection. The internet and other communication technologies span these many disparate legal jurisdictions and thus pose special difficulties for a document relinquishing and waiving intellectual property rights, including copyright and database rights, for use by the global community. Because of this feature of intellectual property law, this document first relinquishes the rights and waives the relevant rights and claims. It then goes on to license these same rights for jurisdictions or areas of law that may make it difficult to relinquish or waive rights or claims. + + +The purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to “dual license” their work by releasing the same work under different licences. This is because they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore can’t re-license it under copyright or database rights on different terms because they have nothing left to license. Doing so creates truly accessible data to build rich applications and advance the progress of science and the arts. + + +This document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content – not just factual data – rightsholders should use the Open Data Commons – Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed under the terms of this document. Because even factual data can sometimes have intellectual property rights, rightsholders should use this licence to cover both the database and its factual data when making material available under this document; even if it is likely that the data would not be covered by copyright or database rights. + + +Rightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the “Work”, which can be either – or both – the database and its contents. As a result, rightsholders need to clearly state what they are dedicating under this document when they dedicate it. + + +Just like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document. + + +This document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen. + + +Part I: Introduction + + +The Rightsholder (the Person holding rights or claims over the Work) agrees as follows: + + +1.0 Definitions of Capitalised Words + + +“Copyright” – Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4. + + +“Data” – The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document. + + +“Database” – A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document. + + +“Database Right” – Means rights over Data resulting from the Chapter III (“sui generis”) rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant jurisdiction under Section 6.4. + + +“Document” – means this relinquishment and waiver of rights and claims and back up licence agreement. + + +“Person” – Means a natural or legal person or a body of persons corporate or incorporate. + + +“Use” – As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work. + + +“Work” – Means either or both of the Database and Data offered under the terms of this Document. + + +“You” – the Person acquiring rights under the licence elements of this Document. + + +Words in the singular include the plural and vice versa. + + +2.0 What this document covers + + +2.1. Legal effect of this Document. This Document is: + + + a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and + + + b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver. + + +2.2. Legal rights covered. + + + a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Data stored in the Database. Copyright may also cover the Data depending on the jurisdiction and type of Data; and + + + b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in a way that would not infringe any applicable copyright. + + +2.2 Rights not covered. + + + a. This Document does not apply to computer programs used in the making or operation of the Database; + + + b. This Document does not cover any patents over the Data or the Database. Please see Section 4.2 later in this Document for further details; and + + + c. This Document does not cover any trade marks associated with the Database. Please see Section 4.3 later in this Document for further details. + + +Users of this Database are cautioned that they may have to clear other rights or consult other licences. + + +2.3 Facts are free. The Rightsholder takes the position that factual information is not covered by Copyright. This Document however covers the Work in jurisdictions that may protect the factual information in the Work by Copyright, and to cover any information protected by Copyright that is contained in the Work. + + +Part II: Dedication to the public domain + + +3.0 Dedication, waiver, and licence of Copyright and Database Rights + + +3.1 Dedication of Copyright and Database Rights to the public domain. The Rightsholder by using this Document, dedicates the Work to the public domain for the benefit of the public and relinquishes all rights in Copyright and Database Rights over the Work. + + +a. The Rightsholder realises that once these rights are relinquished, that the Rightsholder has no further rights in Copyright and Database Rights over the Work, and that the Work is free and open for others to Use. + + +b. The Rightsholder intends for their relinquishment to cover all present and future rights in the Work under Copyright and Database Rights, whether they are vested or contingent rights, and that this relinquishment of rights covers all their heirs and successors. + + +The above relinquishment of rights applies worldwide and includes media and formats now known or created in the future. + + +3.2 Waiver of rights and claims in Copyright and Database Rights when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and claims that the Rightsholder may have or acquire in the future over the Work in: + + +a. Copyright; and + + +b. Database Rights. + + +To the extent possible in the relevant jurisdiction, the above waiver of rights and claims applies worldwide and includes media and formats now known or created in the future. The Rightsholder agrees not to assert the above rights and waives the right to enforce them over the Work. + + +3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder and You agree as follows: + + +a. The Licensor grants to You a worldwide, royalty-free, non-exclusive, licence to Use the Work for the duration of any applicable Copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future. + + +3.4 Moral rights. This section covers moral rights, including the right to be identified as the author of the Work or to object to treatment that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatment: + + +a. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Work to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; + + +b. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Work and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; and + + +c. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 3.4 a and b, the author may retain their moral rights over the copyrighted aspects of the Work. + + +Please note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the work in some jurisdictions. + + +4.0 Relationship to other rights + + +4.1 No other contractual conditions. The Rightsholder makes this Work available to You without any other contractual obligations, either express or implied. Any Community Norms statement associated with the Work is not a contract and does not form part of this Document. + + +4.2 Relationship to patents. This Document does not grant You a licence for any patents that the Rightsholder may own. Users of this Database are cautioned that they may have to clear other rights or consult other licences. + + +4.3 Relationship to trade marks. This Document does not grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder may use to cover the Work. Users of this Database are cautioned that they may have to clear other rights or consult other licences. + + +Part III: General provisions + + +5.0 Warranties, disclaimer, and limitation of liability + + +5.1 The Work is provided by the Rightsholder “as is” and without any warranty of any kind, either express or implied, whether of title, of accuracy or completeness, of the presence of absence of errors, of fitness for purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You. + + +5.2 Subject to any liability that may not be excluded or limited by law, the Rightsholder is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this Document, whether by You or by anyone else, and whether caused by any fault on the part of the Rightsholder or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion applies even if the Rightsholder has been advised of the possibility of such damages. + + +5.3 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Rightsholder. + + +6.0 General + + +6.1 If any provision of this Document is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms of this Document. + + +6.2 This Document is the entire agreement between the parties with respect to the Work covered here. It replaces any earlier understandings, agreements or representations with respect to the Work not specified here. + + +6.3 This Document does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Work, including (for jurisdictions where this Document is a licence) fair dealing, fair use, database exceptions, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. + + +6.4 This Document takes effect in the relevant jurisdiction in which the Document terms are sought to be enforced. If the rights waived or granted under applicable law in the relevant jurisdiction includes additional rights not waived or granted under this Document, these additional rights are included in this Document in order to meet the intent of this Document. diff --git a/licenses/palantir-streams b/licenses/palantir-streams new file mode 100644 index 000000000..8dada3eda --- /dev/null +++ b/licenses/palantir-streams @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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 + + 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. diff --git a/licenses/pgbulkinsert b/licenses/pgbulkinsert new file mode 100644 index 000000000..853972e4f --- /dev/null +++ b/licenses/pgbulkinsert @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) The PgBulkInsert Team + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/planetiler b/licenses/planetiler new file mode 100644 index 000000000..f49a4e16e --- /dev/null +++ b/licenses/planetiler @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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 + + 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. \ No newline at end of file diff --git a/licenses/pmtiles b/licenses/pmtiles new file mode 100644 index 000000000..51fba0bda --- /dev/null +++ b/licenses/pmtiles @@ -0,0 +1,11 @@ +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: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/pyosmium b/licenses/pyosmium new file mode 100644 index 000000000..29162f68f --- /dev/null +++ b/licenses/pyosmium @@ -0,0 +1,23 @@ +Copyright (c) 2014-2018, Sarah Hoffmann +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/licenses/vector-tile-spec b/licenses/vector-tile-spec new file mode 100644 index 000000000..1a16e0556 --- /dev/null +++ b/licenses/vector-tile-spec @@ -0,0 +1,319 @@ +Creative Commons Legal Code + +Attribution 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE +COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY +COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS +AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE +TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY +BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS +CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND +CONDITIONS. + +1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, +limit, or restrict any uses free from copyright or rights arising from +limitations or exceptions that are provided for in connection with the +copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights in +other media and formats. Subject to Section 8(f), all rights not expressly +granted by Licensor are hereby reserved. + +4. Restrictions. The license granted in Section 3 above is expressly made +subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(b), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(b), as requested. + b. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4 (b) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + c. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR +OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY +KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, +INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, +FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF +LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, +WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION +OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/.