From 252fb0edfec736f2e25f657fe8a09a6b70363fe3 Mon Sep 17 00:00:00 2001 From: lossyrob Date: Thu, 3 Nov 2016 17:24:54 -0400 Subject: [PATCH 1/3] Added plugin for creating license headers. --- build.sbt | 5 +++++ proj4/build.sbt | 7 +++++++ project/plugins.sbt | 2 ++ scripts/createHeaders.sh | 25 +++++++++++++++++++++++++ 4 files changed, 39 insertions(+) create mode 100755 scripts/createHeaders.sh diff --git a/build.sbt b/build.sbt index 177f89c110..25ed9f67b6 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,7 @@ import Dependencies._ import UnidocKeys._ import sbt.Keys._ +import de.heikoseeberger.sbtheader.license.Apache2_0 lazy val commonSettings = Seq( version := Version.geotrellis, @@ -56,6 +57,10 @@ lazy val commonSettings = Seq( resolvers ++= Seq( "geosolutions" at "http://maven.geo-solutions.it/", "osgeo" at "http://download.osgeo.org/webdav/geotools/" + ), + headers := Map( + "scala" -> Apache2_0("2016", "Azavea"), + "conf" -> Apache2_0("2016", "Azavea", "#") ) ) diff --git a/proj4/build.sbt b/proj4/build.sbt index 2e6b8a052b..f7f30b3ec1 100644 --- a/proj4/build.sbt +++ b/proj4/build.sbt @@ -1,4 +1,5 @@ import Dependencies._ +import de.heikoseeberger.sbtheader.license.Apache2_0 name := "geotrellis-proj4" @@ -6,3 +7,9 @@ libraryDependencies ++= Seq( openCSV, scalatest % "test", scalacheck % "test") + +headers := Map( + "scala" -> Apache2_0("2016", "Azavea"), + "java" -> Apache2_0("2016", "Martin Davis, Azavea"), + "conf" -> Apache2_0("2016", "Azavea", "#") +) diff --git a/project/plugins.sbt b/project/plugins.sbt index c74c150b1b..86b1e13f5d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -18,3 +18,5 @@ addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.3") addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.10") + +addSbtPlugin("de.heikoseeberger" % "sbt-header" % "1.6.0") diff --git a/scripts/createHeaders.sh b/scripts/createHeaders.sh new file mode 100755 index 0000000000..bb8c0886fd --- /dev/null +++ b/scripts/createHeaders.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +./sbt "project accumulo" createHeaders test:createHeaders \ + "project cassandra" createHeaders test:createHeaders \ + "project doc-examples" createHeaders test:createHeaders \ + "project geomesa" createHeaders test:createHeaders \ + "project geotools" createHeaders test:createHeaders \ + "project geowave" createHeaders test:createHeaders \ + "project hbase" createHeaders test:createHeaders \ + "project proj4" createHeaders test:createHeaders \ + "project raster" createHeaders test:createHeaders \ + "project raster-test" createHeaders test:createHeaders \ + "project raster-testkit" createHeaders test:createHeaders \ + "project s3" createHeaders test:createHeaders \ + "project s3-test" createHeaders test:createHeaders \ + "project s3-testkit" createHeaders test:createHeaders \ + "project shapefile" createHeaders test:createHeaders \ + "project slick" createHeaders test:createHeaders \ + "project spark" createHeaders test:createHeaders \ + "project spark-etl" createHeaders test:createHeaders \ + "project spark-testkit" createHeaders test:createHeaders \ + "project util" createHeaders test:createHeaders \ + "project vector" createHeaders test:createHeaders \ + "project vector-test" createHeaders test:createHeaders \ + "project vectortile" createHeaders test:createHeaders From 3ecbdefe1b8392c2312b51aeb901b3c5b0f6f8f4 Mon Sep 17 00:00:00 2001 From: lossyrob Date: Fri, 4 Nov 2016 13:30:15 -0400 Subject: [PATCH 2/3] Modified contributing.md to reflect CLA changes --- contributing.md | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/contributing.md b/contributing.md index a1334a6e92..19ccecd489 100644 --- a/contributing.md +++ b/contributing.md @@ -38,7 +38,7 @@ We follow the 'imperative present tense' style for commit messages. If you find a bug and would like to report it please go there and create an issue. As always, if you need some help join us on -[Gitter](https://gitter.im/geotrellis/geotrellis) to chat with a +[Gitter](https://gitter.im/locationtech/geotrellis) to chat with a developer. ## Pull Requests @@ -65,20 +65,5 @@ of the source](./docs). Contributions to the project, no matter what kind, are always very welcome. -Everyone who contributes code to GeoTrellis will be asked to sign the -GeoTrellis and Eclipse Contributor License Agreements. We currently require both CLAs to be signed. The Eclipse CLA requires an Eclipse account and is signed electronically. The GeoTrellis CLA will be kept as a hard copy by Azavea, Inc. - -1. Electronically sign the [Eclipse Contributor License - Agreement](http://www.eclipse.org/legal/CLA.php). - -2. Download a copy of the [GeoTrellis Inidividual CLA](http://geotrellis.github.com/files/2014_05_20-GeoTrellis-Open-Source-Contributor-Agreement-Individual.pdf?raw=true), - or the [GeoTrellis Corporate CLA](http://geotrellis.github.com/files/2012_04_04-GeoTrellis-Open-Source-Contributor-Agreement-Corporate.pdf?raw=true). - -3. Sign the GeoTrellis CLA, either with PDF signing software or by printing out the CLA and hand signing. - -4. Send the GeoTrellis CLA to Azavea by one of: - - Scanning and emailing the document to cla -at- azavea -dot- com - - Faxing a copy to +1-215-925-2600. - - Mailing a hardcopy to: - Azavea, 990 Spring Garden Street, 5th Floor, Philadelphia, PA 19107 USA - +Everyone who contributes code to GeoTrellis will be asked to sign the Eclipse Contributor Agreement. +You can electronically sign the [Eclipse Contributor Agreement here.](https://www.eclipse.org/legal/ECA.php). From bc09ab8c49fc0c34a98d53c626a0fdd7e82f858f Mon Sep 17 00:00:00 2001 From: lossyrob Date: Tue, 15 Nov 2016 19:12:06 -0500 Subject: [PATCH 3/3] Updated license headers. --- accumulo/src/main/resources/reference.conf | 14 ++++++++ .../io/accumulo/AccumuloAttributeStore.scala | 16 ++++++++++ .../AccumuloCollectionLayerReader.scala | 16 ++++++++++ .../accumulo/AccumuloCollectionReader.scala | 16 ++++++++++ .../spark/io/accumulo/AccumuloInstance.scala | 16 ++++++++++ .../io/accumulo/AccumuloKeyEncoder.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerCopier.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerDeleter.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerHeader.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerManager.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerMover.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerReader.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerReindexer.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerUpdater.scala | 16 ++++++++++ .../io/accumulo/AccumuloLayerWriter.scala | 16 ++++++++++ .../spark/io/accumulo/AccumuloRDDReader.scala | 16 ++++++++++ .../spark/io/accumulo/AccumuloRDDWriter.scala | 16 ++++++++++ .../spark/io/accumulo/AccumuloUtils.scala | 16 ++++++++++ .../io/accumulo/AccumuloValueReader.scala | 16 ++++++++++ .../io/accumulo/AccumuloWriteStrategy.scala | 16 ++++++++++ .../spark/io/accumulo/package.scala | 16 ++++++++++ .../spark/AccumuloTestEnvironment.scala | 4 +-- .../accumulo/AccumuloAttributeStoreSpec.scala | 16 ++++++++++ .../io/accumulo/AccumuloSpaceTimeSpec.scala | 16 ++++++++++ .../io/accumulo/AccumuloSpatialSpec.scala | 16 ++++++++++ .../AccumuloTileFeatureSpaceTimeSpec.scala | 16 ++++++++++ .../AccumuloTileFeatureSpatialSpec.scala | 16 ++++++++++ .../io/accumulo/MockAccumuloInstance.scala | 16 ++++++++++ cassandra/src/main/resources/reference.conf | 14 ++++++++ .../cassandra/CassandraAttributeStore.scala | 16 ++++++++++ .../CassandraCollectionLayerReader.scala | 16 ++++++++++ .../cassandra/CassandraCollectionReader.scala | 16 ++++++++++ .../io/cassandra/CassandraInstance.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerCopier.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerDeleter.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerHeader.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerManager.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerMover.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerReader.scala | 16 ++++++++++ .../cassandra/CassandraLayerReindexer.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerUpdater.scala | 16 ++++++++++ .../io/cassandra/CassandraLayerWriter.scala | 16 ++++++++++ .../io/cassandra/CassandraRDDReader.scala | 16 ++++++++++ .../io/cassandra/CassandraRDDWriter.scala | 16 ++++++++++ .../io/cassandra/CassandraValueReader.scala | 16 ++++++++++ .../spark/CassandraTestEnvironment.scala | 4 +-- .../CassandraAttributeStoreSpec.scala | 16 ++++++++++ .../io/cassandra/CassandraSpaceTimeSpec.scala | 16 ++++++++++ .../io/cassandra/CassandraSpatialSpec.scala | 16 ++++++++++ .../CassandraTileFeatureSpaceTimeSpec.scala | 16 ++++++++++ .../CassandraTileFeatureSpatialSpec.scala | 16 ++++++++++ .../doc/examples/raster/MatchingRasters.scala | 16 ++++++++++ .../doc/examples/raster/RasterExamples.scala | 16 ++++++++++ .../doc/examples/spark/ShardingKeyIndex.scala | 16 ++++++++++ .../doc/examples/spark/SparkExamples.scala | 16 ++++++++++ .../doc/examples/spark/VectorExamples.scala | 16 ++++++++++ .../doc/examples/spark/VoxelKey.scala | 16 ++++++++++ .../src/test/resources/application.conf | 14 ++++++++ .../examples/spark/ShardingKeyIndexSpec.scala | 16 ++++++++++ .../examples/spark/SparkExamplesTests.scala | 16 ++++++++++ geomesa/src/main/resources/reference.conf | 14 ++++++++ ...FeatureToGeoMesaSimpleFeatureMethods.scala | 16 ++++++++++ .../geomesa/geotools/GeoMesaImplicits.scala | 16 ++++++++++ .../GeometryToGeoMesaSimpleFeature.scala | 16 ++++++++++ .../geotrellis/geomesa/geotools/package.scala | 16 ++++++++++ .../io/geomesa/GeoMesaFeatureReader.scala | 16 ++++++++++ .../io/geomesa/GeoMesaFeatureWriter.scala | 16 ++++++++++ .../spark/io/geomesa/GeoMesaInstance.scala | 16 ++++++++++ .../geotrellis/spark/io/geomesa/package.scala | 16 ++++++++++ .../jobs/mapreduce/GeoMesaInputFormat.scala | 22 +++++++++---- .../geotools/GeoMesaSimpleFeatureType.scala | 16 ++++++++++ .../io/geomesa/GeoMesaPersistenceSpec.scala | 16 ++++++++++ .../FeatureToSimpleFeatureMethods.scala | 4 +-- .../geotools/GeometryToSimpleFeature.scala | 4 +-- .../GeometryToSimpleFeatureMethods.scala | 4 +-- .../GridCoverage2DConversionMethods.scala | 16 ++++++++++ .../geotools/GridCoverage2DConverters.scala | 16 ++++++++++ ...ltibandRasterToGridCoverage2DMethods.scala | 16 ++++++++++ .../geotools/SimpleFeatureToFeature.scala | 4 +-- .../SimpleFeatureToFeatureMethods.scala | 4 +-- .../SimpleFeatureToGeometryMethods.scala | 4 +-- ...glebandRasterToGridCoverage2DMethods.scala | 16 ++++++++++ .../geotools/ToGridCoverage2DMethods.scala | 16 ++++++++++ .../scala/geotrellis/geotools/package.scala | 16 ++++++++++ .../FeatureToSimpleFeatureMethodsSpec.scala | 4 +-- .../GeometryToSimpleFeatureMethodsSpec.scala | 4 +-- .../GeometryToSimpleFeatureSpec.scala | 4 +-- .../GridCoverage2DConvertersSpec.scala | 16 ++++++++++ .../geotools/RasterToGridCoverage2DSpec.scala | 4 +-- .../SimpleFeatureToFeatureMethodsSpec.scala | 4 +-- .../geotools/SimpleFeatureToFeatureSpec.scala | 4 +-- .../SimpleFeatureToGeometryMethodsSpec.scala | 4 +-- .../io/geowave/GeoWaveFeatureRDDReader.scala | 16 ++++++++++ .../io/geowave/GeoWaveFeatureRDDWriter.scala | 16 ++++++++++ .../io/geowave/GeowaveAttributeStore.scala | 16 ++++++++++ .../spark/io/geowave/GeowaveLayerReader.scala | 16 ++++++++++ .../spark/io/geowave/GeowaveLayerWriter.scala | 16 ++++++++++ .../spark/io/geowave/GeowaveUtil.scala | 16 ++++++++++ .../io/geowave/SerializablePersistable.scala | 16 ++++++++++ .../io/kryo/GeowaveKryoRegistrator.scala | 16 ++++++++++ .../spark/GeowaveTestEnvironment.scala | 4 +-- .../geowave/GeoWaveFeatureRDDReaderSpec.scala | 16 ++++++++++ .../geowave/GeowaveAttributeStoreSpec.scala | 16 ++++++++++ .../spark/io/geowave/GeowaveSpatialSpec.scala | 16 ++++++++++ hbase/src/main/resources/reference.conf | 14 ++++++++ .../spark/io/hbase/HBaseAttributeStore.scala | 16 ++++++++++ .../io/hbase/HBaseCollectionLayerReader.scala | 16 ++++++++++ .../io/hbase/HBaseCollectionReader.scala | 16 ++++++++++ .../spark/io/hbase/HBaseInstance.scala | 16 ++++++++++ .../spark/io/hbase/HBaseKeyEncoder.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerCopier.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerDeleter.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerHeader.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerManager.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerMover.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerReader.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerReindexer.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerUpdater.scala | 16 ++++++++++ .../spark/io/hbase/HBaseLayerWriter.scala | 16 ++++++++++ .../spark/io/hbase/HBaseRDDReader.scala | 16 ++++++++++ .../spark/io/hbase/HBaseRDDWriter.scala | 16 ++++++++++ .../spark/io/hbase/HBaseValueReader.scala | 16 ++++++++++ .../geotrellis/spark/io/hbase/package.scala | 16 ++++++++++ .../spark/HBaseTestEnvironment.scala | 4 +-- .../io/hbase/HBaseAttributeStoreSpec.scala | 16 ++++++++++ .../spark/io/hbase/HBaseSpaceTimeSpec.scala | 16 ++++++++++ .../spark/io/hbase/HBaseSpatialSpec.scala | 16 ++++++++++ .../hbase/HBaseTileFeatureSpaceTimeSpec.scala | 16 ++++++++++ .../hbase/HBaseTileFeatureSpatialSpec.scala | 16 ++++++++++ .../proj4j/BasicCoordinateTransform.java | 16 ++++++++++ .../java/org/osgeo/proj4j/CRSFactory.java | 16 ++++++++++ .../proj4j/ConvergenceFailureException.java | 15 +++++++++ .../proj4j/CoordinateReferenceSystem.java | 16 ++++++++++ .../org/osgeo/proj4j/CoordinateTransform.java | 16 ++++++++++ .../proj4j/CoordinateTransformFactory.java | 16 ++++++++++ .../osgeo/proj4j/InvalidValueException.java | 16 ++++++++++ .../org/osgeo/proj4j/NotFoundException.java | 16 ++++++++++ .../org/osgeo/proj4j/Proj4jException.java | 16 ++++++++++ .../java/org/osgeo/proj4j/ProjCoordinate.java | 16 ++++++++++ .../org/osgeo/proj4j/ProjectionException.java | 28 ++++++++-------- .../main/java/org/osgeo/proj4j/Registry.java | 16 ++++++++++ .../proj4j/UnknownAuthorityCodeException.java | 15 +++++++++ .../proj4j/UnsupportedParameterException.java | 15 +++++++++ .../org/osgeo/proj4j/datum/AxisOrder.java | 16 ++++++++++ .../java/org/osgeo/proj4j/datum/CTABLEV2.java | 16 ++++++++++ .../java/org/osgeo/proj4j/datum/Datum.java | 28 ++++++++-------- .../org/osgeo/proj4j/datum/Ellipsoid.java | 26 +++++++-------- .../proj4j/datum/GeocentricConverter.java | 16 ++++++++++ .../java/org/osgeo/proj4j/datum/Grid.java | 16 ++++++++++ .../java/org/osgeo/proj4j/datum/NTV1.java | 16 ++++++++++ .../org/osgeo/proj4j/datum/PrimeMeridian.java | 16 ++++++++++ .../org/osgeo/proj4j/io/Proj4FileReader.java | 16 ++++++++++ .../osgeo/proj4j/parser/DatumParameters.java | 16 ++++++++++ .../osgeo/proj4j/parser/ParameterUtil.java | 16 ++++++++++ .../org/osgeo/proj4j/parser/Proj4Keyword.java | 16 ++++++++++ .../org/osgeo/proj4j/parser/Proj4Parser.java | 16 ++++++++++ .../org/osgeo/proj4j/proj/AiryProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/AitoffProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/AlbersProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/AugustProjection.java | 28 ++++++++-------- .../proj4j/proj/AzimuthalProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/BipolarProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/BoggsProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/BonneProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/CassiniProjection.java | 28 ++++++++-------- .../proj/CentralCylindricalProjection.java | 28 ++++++++-------- .../proj4j/proj/CollignonProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/ConicProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/CrasterProjection.java | 28 ++++++++-------- .../proj/CylindricalEqualAreaProjection.java | 28 ++++++++-------- .../proj4j/proj/CylindricalProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/DenoyerProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Eckert1Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Eckert2Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Eckert4Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Eckert5Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Eckert6Projection.java | 16 ++++++++++ .../proj/EqualAreaAzimuthalProjection.java | 28 ++++++++-------- .../proj/EqualAreaCylindricalProjection.java | 16 ++++++++++ .../proj/EquidistantAzimuthalProjection.java | 28 ++++++++-------- .../proj/EquidistantConicProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/EulerProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/FaheyProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/FoucautProjection.java | 28 ++++++++-------- .../proj/FoucautSinusoidalProjection.java | 28 ++++++++-------- .../org/osgeo/proj4j/proj/GallProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/GaussProjection.java | 28 ++++++++-------- .../proj4j/proj/Ginsburg8Projection.java | 28 ++++++++-------- .../proj/GnomonicAzimuthalProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/GoodeProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/HammerProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/HatanoProjection.java | 28 ++++++++-------- .../proj4j/proj/KavraiskyVProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/KrovakProjection.java | 16 ++++++++++ .../osgeo/proj4j/proj/LagrangeProjection.java | 28 ++++++++-------- .../LambertAzimuthalEqualAreaProjection.java | 28 ++++++++-------- .../proj/LambertConformalConicProjection.java | 28 ++++++++-------- .../proj/LambertEqualAreaConicProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/LandsatProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/LarriveeProjection.java | 28 ++++++++-------- .../proj4j/proj/LaskowskiProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/LinearProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/LongLatProjection.java | 28 ++++++++-------- .../proj4j/proj/LoximuthalProjection.java | 28 ++++++++-------- ...ydeThomasFlatPolarParabolicProjection.java | 28 ++++++++-------- ...BrydeThomasFlatPolarQuarticProjection.java | 28 ++++++++-------- ...McBrydeThomasFlatPolarSine1Projection.java | 28 ++++++++-------- ...McBrydeThomasFlatPolarSine2Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/MercatorProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/MillerProjection.java | 28 ++++++++-------- .../proj4j/proj/ModStereoProjection.java | 28 ++++++++-------- .../proj4j/proj/MolleweideProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Murdoch1Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Murdoch2Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Murdoch3Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/NellHProjection.java | 28 ++++++++-------- .../org/osgeo/proj4j/proj/NellProjection.java | 28 ++++++++-------- .../proj/NewZealandMapGridProjection.java | 16 ++++++++++ .../osgeo/proj4j/proj/NicolosiProjection.java | 28 ++++++++-------- .../org/osgeo/proj4j/proj/NullProjection.java | 28 ++++++++-------- .../proj/ObliqueMercatorProjection.java | 28 ++++++++-------- ...queStereographicAlternativeProjection.java | 28 ++++++++-------- .../proj/OrthographicAzimuthalProjection.java | 28 ++++++++-------- .../proj/PerspectiveConicProjection.java | 28 ++++++++-------- .../proj4j/proj/PerspectiveProjection.java | 28 ++++++++-------- .../proj4j/proj/PlateCarreeProjection.java | 28 ++++++++-------- .../proj4j/proj/PolyconicProjection.java | 28 ++++++++-------- .../org/osgeo/proj4j/proj/Projection.java | 28 ++++++++-------- .../proj/PseudoCylindricalProjection.java | 28 ++++++++-------- .../proj4j/proj/PutninsP2Projection.java | 28 ++++++++-------- .../proj4j/proj/PutninsP4Projection.java | 28 ++++++++-------- .../proj4j/proj/PutninsP5PProjection.java | 28 ++++++++-------- .../proj4j/proj/PutninsP5Projection.java | 28 ++++++++-------- .../proj/QuarticAuthalicProjection.java | 28 ++++++++-------- .../proj/RectangularPolyconicProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/RobinsonProjection.java | 28 ++++++++-------- .../proj4j/proj/SimpleConicProjection.java | 28 ++++++++-------- .../proj/SineTangentSeriesProjection.java | 28 ++++++++-------- .../proj4j/proj/SinusoidalProjection.java | 28 ++++++++-------- .../StereographicAzimuthalProjection.java | 28 ++++++++-------- .../proj/SwissObliqueMercatorProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/TissotProjection.java | 28 ++++++++-------- .../proj/TransverseCylindricalEqualArea.java | 28 ++++++++-------- .../proj/TransverseMercatorProjection.java | 28 ++++++++-------- ...TranverseCentralCylindricalProjection.java | 28 ++++++++-------- .../UrmaevFlatPolarSinusoidalProjection.java | 28 ++++++++-------- .../proj4j/proj/VanDerGrintenProjection.java | 28 ++++++++-------- .../proj4j/proj/VitkovskyProjection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Wagner1Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Wagner2Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Wagner3Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Wagner4Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Wagner5Projection.java | 28 ++++++++-------- .../osgeo/proj4j/proj/Wagner7Projection.java | 28 ++++++++-------- .../proj4j/proj/WerenskioldProjection.java | 28 ++++++++-------- .../proj4j/proj/WinkelTripelProjection.java | 28 ++++++++-------- .../java/org/osgeo/proj4j/units/Angle.java | 16 ++++++++++ .../org/osgeo/proj4j/units/AngleFormat.java | 28 ++++++++-------- .../org/osgeo/proj4j/units/DegreeUnit.java | 28 ++++++++-------- .../java/org/osgeo/proj4j/units/Unit.java | 28 ++++++++-------- .../java/org/osgeo/proj4j/units/Units.java | 28 ++++++++-------- .../java/org/osgeo/proj4j/util/CRSCache.java | 16 ++++++++++ .../java/org/osgeo/proj4j/util/Complex.java | 16 ++++++++++ .../proj4j/util/FloatPolarCoordinate.java | 16 ++++++++++ .../osgeo/proj4j/util/IntPolarCoordinate.java | 16 ++++++++++ .../osgeo/proj4j/util/PolarCoordinate.java | 16 ++++++++++ .../org/osgeo/proj4j/util/ProjectionMath.java | 28 ++++++++-------- .../org/osgeo/proj4j/util/ProjectionUtil.java | 16 ++++++++++ .../src/main/scala/geotrellis/proj4/CRS.scala | 16 ++++++++++ .../scala/geotrellis/proj4/ConusAlbers.scala | 16 ++++++++++ .../geotrellis/proj4/EPSGCSVReader.scala | 4 +-- .../main/scala/geotrellis/proj4/LatLng.scala | 16 ++++++++++ .../main/scala/geotrellis/proj4/Memoize.scala | 16 ++++++++++ .../scala/geotrellis/proj4/Transform.scala | 16 ++++++++++ .../scala/geotrellis/proj4/WebMercator.scala | 16 ++++++++++ .../scala/geotrellis/proj4/io/wkt/WKT.scala | 16 ++++++++++ .../main/scala/geotrellis/proj4/package.scala | 16 ++++++++++ .../scala/geotrellis/proj4/util/UTM.scala | 16 ++++++++++ .../proj4/BaseCoordinateTransformTest.scala | 16 ++++++++++ .../test/scala/geotrellis/proj4/CRSTest.scala | 16 ++++++++++ .../geotrellis/proj4/CSVRecordParser.scala | 16 ++++++++++ .../proj4/CoordainteTransformTester.scala | 16 ++++++++++ .../proj4/CoordinateTransformTest.scala | 16 ++++++++++ .../scala/geotrellis/proj4/ExampleTest.scala | 16 ++++++++++ .../scala/geotrellis/proj4/FeatureTest.scala | 16 ++++++++++ .../geotrellis/proj4/GenerateTestCases.scala | 16 ++++++++++ .../scala/geotrellis/proj4/MetaCRSTest.scala | 16 ++++++++++ .../proj4/MetaCRSTestFileReader.scala | 16 ++++++++++ .../scala/geotrellis/proj4/Proj4JTest.scala | 16 ++++++++++ .../geotrellis/proj4/Proj4VariousTest.scala | 16 ++++++++++ .../proj4/RepeatedTransformTest.scala | 16 ++++++++++ .../geotrellis/proj4/TransformFailures.scala | 16 ++++++++++ .../geotrellis/proj4/io/wkt/WKTTest.scala | 16 ++++++++++ .../proj/ProjectionGridRoundTripper.scala | 16 ++++++++++ .../proj4/proj/ProjectionGridTest.scala | 16 ++++++++++ .../geotrellis/raster/ArrayTileSpec.scala | 4 +-- .../raster/BitArrayRasterDataSpec.scala | 10 +++--- .../geotrellis/raster/CellTypeSpec.scala | 16 ++++++++++ .../geotrellis/raster/CompositeTileSpec.scala | 4 +-- .../geotrellis/raster/CroppedTileSpec.scala | 16 ++++++++++ .../DelayedConversionMultibandTileSpec.scala | 4 +-- .../raster/DelayedConversionTileSpec.scala | 4 +-- .../raster/DoubleArrayTileSpec.scala | 4 +-- .../raster/DoubleConstantTileTest.scala | 4 +-- .../geotrellis/raster/GridBoundsSpec.scala | 16 ++++++++++ .../raster/IntConstantTileTest.scala | 4 +-- .../raster/MultibandCombinersSpec.scala | 16 ++++++++++ .../scala/geotrellis/raster/PackageTest.scala | 10 +++--- .../geotrellis/raster/RasterExtentSpec.scala | 4 +-- .../scala/geotrellis/raster/TestFiles.scala | 16 ++++++++++ .../geotrellis/raster/TileExtentsSpec.scala | 10 +++--- .../scala/geotrellis/raster/TileSpec.scala | 4 +-- .../costdistance/CostDistanceSpec.scala | 4 +-- .../CostDistanceWithPathsSpec.scala | 16 ++++++++++ .../crop/SinglebandTileCropMethodsSpec.scala | 16 ++++++++++ .../raster/density/KernelDensitySpec.scala | 4 +-- .../distance/EuclideanDistanceTileSpec.scala | 16 ++++++++++ .../HistogramEqualizationSpec.scala | 4 +-- .../histogram/FastMapHistogramSpec.scala | 4 +-- .../raster/histogram/HistogramSpec.scala | 4 +-- .../histogram/StreamingHistogramSpec.scala | 4 +-- .../raster/hydrology/AccumulationSpec.scala | 10 +++--- .../raster/hydrology/FillSpec.scala | 10 +++--- .../raster/hydrology/FlowDirectionSpec.scala | 10 +++--- .../InverseDistanceWieghtedSpec.scala | 16 ++++++++++ .../raster/interpolation/KrigingSpec.scala | 28 ++++++++-------- .../scala/geotrellis/raster/io/ArgTest.scala | 10 +++--- .../geotrellis/raster/io/FilesystemSpec.scala | 4 +-- .../raster/io/arg/ArgReaderSpec.scala | 10 +++--- .../geotrellis/raster/io/arg/ArgTest.scala | 10 +++--- .../geotrellis/raster/io/arg/BoolTest.scala | 10 +++--- .../io/geotiff/ArrayMultibandTileSpec.scala | 16 ++++++++++ .../raster/io/geotiff/BigTiffSpec.scala | 16 ++++++++++ .../geotiff/BitGeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../io/geotiff/BitGeoTiffTileSpec.scala | 16 ++++++++++ .../geotiff/CroppedWindowedGeoTiffSpec.scala | 16 ++++++++++ .../Float32GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../Float64GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../io/geotiff/GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../raster/io/geotiff/GeoTiffTestUtils.scala | 4 +-- .../Int16GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../Int32GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../geotiff/MultibandCropIteratorSpec.scala | 16 ++++++++++ .../raster/io/geotiff/SegmentBytesSpec.scala | 16 ++++++++++ .../geotiff/SinglebandCropIteratorSpec.scala | 16 ++++++++++ .../UByteGeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../UInt16GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../io/geotiff/UInt16GeoTiffTileSpec.scala | 16 ++++++++++ .../UInt32GeoTiffMultibandTileSpec.scala | 16 ++++++++++ .../raster/io/geotiff/ZipArchive.scala | 16 ++++++++++ .../geotiff/compression/CompressionSpec.scala | 16 ++++++++++ .../io/geotiff/reader/GeoTiffReaderSpec.scala | 4 +-- .../io/geotiff/reader/GeoTiffTileSpec.scala | 16 ++++++++++ .../reader/MultibandGeoTiffReaderSpec.scala | 16 ++++++++++ .../reader/PredictorGeoTiffReaderSpec.scala | 16 ++++++++++ .../reader/SinglebandGeoTiffReaderSpec.scala | 16 ++++++++++ .../io/geotiff/writer/GeoTiffWriterSpec.scala | 4 +-- .../raster/mapalgebra/focal/AspectSpec.scala | 4 +-- .../mapalgebra/focal/ConvolveSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/ConwaySpec.scala | 4 +-- .../mapalgebra/focal/CursorMaskSpec.scala | 10 +++--- .../raster/mapalgebra/focal/CursorSpec.scala | 10 +++--- .../mapalgebra/focal/FocalStrategySpec.scala | 10 +++--- .../mapalgebra/focal/FocalTestUtils.scala | 4 +-- .../raster/mapalgebra/focal/MaxSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/MeanSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/MedianSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/MinSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/ModeSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/MoranSpec.scala | 10 +++--- .../mapalgebra/focal/NeighborhoodSpec.scala | 10 +++--- .../focal/StandardDeviationSpec.scala | 4 +-- .../raster/mapalgebra/focal/SumSpec.scala | 16 ++++++++++ .../raster/mapalgebra/focal/TestCursor.scala | 10 +++--- .../focal/hillshade/HillshadeSpec.scala | 4 +-- .../SurfacePointCalculationSpec.scala | 4 +-- .../raster/mapalgebra/local/AbsSpec.scala | 10 +++--- .../raster/mapalgebra/local/AcosSpec.scala | 10 +++--- .../raster/mapalgebra/local/AddSpec.scala | 10 +++--- .../raster/mapalgebra/local/AndSpec.scala | 10 +++--- .../raster/mapalgebra/local/AsinSpec.scala | 10 +++--- .../raster/mapalgebra/local/Atan2Spec.scala | 10 +++--- .../raster/mapalgebra/local/AtanSpec.scala | 10 +++--- .../raster/mapalgebra/local/CeilSpec.scala | 10 +++--- .../raster/mapalgebra/local/CosSpec.scala | 10 +++--- .../raster/mapalgebra/local/CoshSpec.scala | 10 +++--- .../raster/mapalgebra/local/DefinedSpec.scala | 10 +++--- .../raster/mapalgebra/local/DivideSpec.scala | 10 +++--- .../raster/mapalgebra/local/EqualSpec.scala | 10 +++--- .../raster/mapalgebra/local/FloorSpec.scala | 10 +++--- .../mapalgebra/local/GreaterOrEqualSpec.scala | 10 +++--- .../raster/mapalgebra/local/GreaterSpec.scala | 10 +++--- .../mapalgebra/local/InverseMaskSpec.scala | 4 +-- .../mapalgebra/local/LessOrEqualSpec.scala | 10 +++--- .../raster/mapalgebra/local/LessSpec.scala | 4 +-- .../mapalgebra/local/LocalMapSpec.scala | 10 +++--- .../raster/mapalgebra/local/LogSpec.scala | 4 +-- .../mapalgebra/local/MajoritySpec.scala | 10 +++--- .../raster/mapalgebra/local/MaxNSpec.scala | 10 +++--- .../raster/mapalgebra/local/MaxSpec.scala | 10 +++--- .../raster/mapalgebra/local/MeanSpec.scala | 10 +++--- .../raster/mapalgebra/local/MinNSpec.scala | 10 +++--- .../raster/mapalgebra/local/MinSpec.scala | 10 +++--- .../mapalgebra/local/MinoritySpec.scala | 10 +++--- .../mapalgebra/local/MultiplySpec.scala | 10 +++--- .../raster/mapalgebra/local/NegateSpec.scala | 10 +++--- .../raster/mapalgebra/local/NotSpec.scala | 10 +++--- .../raster/mapalgebra/local/OrSpec.scala | 10 +++--- .../raster/mapalgebra/local/PowSpec.scala | 10 +++--- .../raster/mapalgebra/local/RoundSpec.scala | 10 +++--- .../raster/mapalgebra/local/SinSpec.scala | 10 +++--- .../raster/mapalgebra/local/SinhSpec.scala | 10 +++--- .../raster/mapalgebra/local/SqrtSpec.scala | 10 +++--- .../mapalgebra/local/SubtractSpec.scala | 10 +++--- .../raster/mapalgebra/local/TanSpec.scala | 10 +++--- .../raster/mapalgebra/local/TanhSpec.scala | 10 +++--- .../mapalgebra/local/UndefinedSpec.scala | 10 +++--- .../raster/mapalgebra/local/UnequalSpec.scala | 10 +++--- .../mapalgebra/local/VarianceSpec.scala | 16 ++++++++++ .../raster/mapalgebra/local/VarietySpec.scala | 10 +++--- .../raster/mapalgebra/local/XorSpec.scala | 10 +++--- .../mapalgebra/local/conditionalSpec.scala | 10 +++--- .../mapalgebra/zonal/ZonalHistogramSpec.scala | 4 +-- .../zonal/ZonalPercentageSpec.scala | 4 +-- .../zonal/ZonalStatisticsSpec.scala | 4 +-- .../mask/MultibandTileMaskMethodsSpec.scala | 16 ++++++++++ .../mask/SinglebandTileMaskMethodsSpec.scala | 4 +-- .../matching/HistogramMatchingSpec.scala | 4 +-- .../raster/merge/TileMergeMethodsSpec.scala | 16 ++++++++++ .../geotrellis/raster/mosaic/MosaicSpec.scala | 16 ++++++++++ .../prototype/TilePrototypeMethodsSpec.scala | 16 ++++++++++ .../rasterize/RasterizeMethodsSpec.scala | 4 +-- .../raster/rasterize/RasterizerSpec.scala | 10 +++--- .../extent/ExtentRasterizerSpec.scala | 4 +-- .../polygon/PolygonRasterizerSpec.scala | 4 +-- .../raster/regiongroup/RegionGroupSpec.scala | 4 +-- .../raster/render/ColorMapSpec.scala | 4 +-- .../raster/render/ColorRampSpec.scala | 4 +-- .../raster/render/ColorRasterSpec.scala | 4 +-- .../geotrellis/raster/render/ColorSpec.scala | 4 +-- .../raster/render/GetColorBreaksSpec.scala | 4 +-- .../raster/render/RenderMethodsSpec.scala | 16 ++++++++++ .../raster/render/jpg/EncoderSpec.scala | 4 +-- .../raster/render/jpg/RenderJpgTests.scala | 16 ++++++++++ .../raster/render/png/EncoderSpec.scala | 10 +++--- .../raster/render/png/RenderPngTests.scala | 16 ++++++++++ .../reproject/ReprojectRasterExtentSpec.scala | 16 ++++++++++ .../raster/reproject/ReprojectSpec.scala | 16 ++++++++++ .../raster/reproject/RowTransformCheck.scala | 16 ++++++++++ .../raster/reproject/RowTransformSpec.scala | 16 ++++++++++ .../resample/AggregateResampleSpec.scala | 16 ++++++++++ .../raster/resample/AverageResampleSpec.scala | 16 ++++++++++ .../BicubicConvolutionResampleSpec.scala | 16 ++++++++++ .../raster/resample/BicubicResampleSpec.scala | 16 ++++++++++ .../resample/BicubicSplineResampleSpec.scala | 16 ++++++++++ .../resample/BilinearResampleSpec.scala | 16 ++++++++++ .../raster/resample/CubicResampleSpec.scala | 16 ++++++++++ .../raster/resample/LanczosResampleSpec.scala | 16 ++++++++++ .../raster/resample/MaxResampleSpec.scala | 16 ++++++++++ .../raster/resample/MedianResampleSpec.scala | 16 ++++++++++ .../raster/resample/MinResampleSpec.scala | 16 ++++++++++ .../raster/resample/ModeResampleSpec.scala | 16 ++++++++++ .../raster/resample/NearestNeighborSpec.scala | 16 ++++++++++ .../raster/resample/ResampleSpec.scala | 16 ++++++++++ .../sigmoidal/SigmoidalContrastSpec.scala | 4 +-- .../split/MultibandTileSplitMethodsSpec.scala | 16 ++++++++++ .../raster/split/RasterSplitMethodsSpec.scala | 16 ++++++++++ .../raster/stitch/StitcherSpec.scala | 16 ++++++++++ .../raster/summary/StatsMethodsSpec.scala | 16 ++++++++++ .../summary/polygonal/HistogramSpec.scala | 4 +-- .../raster/summary/polygonal/MaxSpec.scala | 10 +++--- .../raster/summary/polygonal/MeanSpec.scala | 10 +++--- .../raster/summary/polygonal/MinSpec.scala | 10 +++--- .../raster/summary/polygonal/SumSpec.scala | 10 +++--- .../raster/vectorize/VectorizeSpec.scala | 4 +-- .../raster/viewshed/ApproxViewshedSpec.scala | 16 ++++++++++ .../raster/viewshed/ViewshedSpec.scala | 16 ++++++++++ .../raster/testkit/RasterMatchers.scala | 4 +-- .../raster/testkit/TileBuilders.scala | 4 +-- .../raster/ArrayMultibandTile.scala | 16 ++++++++++ .../scala/geotrellis/raster/ArrayTile.scala | 4 +-- .../geotrellis/raster/BitArrayTile.scala | 4 +-- .../geotrellis/raster/ByteArrayTile.scala | 16 ++++++++++ .../scala/geotrellis/raster/CellGrid.scala | 16 ++++++++++ .../scala/geotrellis/raster/CellSet.scala | 16 ++++++++++ .../scala/geotrellis/raster/CellSize.scala | 16 ++++++++++ .../scala/geotrellis/raster/CellType.scala | 4 +-- .../geotrellis/raster/CompositeTile.scala | 4 +-- .../geotrellis/raster/Connectivity.scala | 16 ++++++++++ .../geotrellis/raster/ConstantTile.scala | 4 +-- .../scala/geotrellis/raster/CroppedTile.scala | 4 +-- .../raster/DelayedConversionMethods.scala | 16 ++++++++++ .../DelayedConversionMultibandTile.scala | 16 ++++++++++ .../raster/DelayedConversionTile.scala | 16 ++++++++++ .../geotrellis/raster/DoubleArrayTile.scala | 4 +-- .../geotrellis/raster/FloatArrayTile.scala | 4 +-- .../main/scala/geotrellis/raster/Grid.scala | 16 ++++++++++ .../scala/geotrellis/raster/GridBounds.scala | 16 ++++++++++ .../scala/geotrellis/raster/GridExtent.scala | 16 ++++++++++ .../geotrellis/raster/IntArrayTile.scala | 4 +-- .../geotrellis/raster/IterableTile.scala | 16 ++++++++++ .../geotrellis/raster/MappableTile.scala | 16 ++++++++++ .../geotrellis/raster/MultibandTile.scala | 16 ++++++++++ .../geotrellis/raster/MutableArrayTile.scala | 4 +-- .../raster/PixelInterleaveBandArrayTile.scala | 16 ++++++++++ .../geotrellis/raster/PixelSampleType.scala | 16 ++++++++++ .../geotrellis/raster/ProjectedRaster.scala | 16 ++++++++++ .../main/scala/geotrellis/raster/Raster.scala | 16 ++++++++++ .../geotrellis/raster/RasterExtent.scala | 4 +-- .../geotrellis/raster/ShortArrayTile.scala | 16 ++++++++++ .../main/scala/geotrellis/raster/Tile.scala | 4 +-- .../scala/geotrellis/raster/TileExtents.scala | 4 +-- .../scala/geotrellis/raster/TileFeature.scala | 4 +-- .../scala/geotrellis/raster/TileLayout.scala | 4 +-- .../geotrellis/raster/UByteArrayTile.scala | 16 ++++++++++ .../geotrellis/raster/UShortArrayTile.scala | 16 ++++++++++ .../raster/UserDefinedNoDataConversions.scala | 16 ++++++++++ .../raster/costdistance/CostDistance.scala | 4 +-- .../costdistance/CostDistanceMethods.scala | 16 ++++++++++ .../costdistance/CostDistanceWithPaths.scala | 16 ++++++++++ .../scala/geotrellis/raster/crop/Crop.scala | 16 ++++++++++ .../geotrellis/raster/crop/CropMethods.scala | 16 ++++++++++ .../geotrellis/raster/crop/Implicits.scala | 16 ++++++++++ .../crop/MultibandTileCropMethods.scala | 16 ++++++++++ .../raster/crop/RasterCropMethods.scala | 16 ++++++++++ .../crop/SinglebandTileCropMethods.scala | 16 ++++++++++ .../raster/crop/TileCropMethods.scala | 16 ++++++++++ .../density/DoubleKernelDensityMethods.scala | 16 ++++++++++ .../geotrellis/raster/density/Implicits.scala | 16 ++++++++++ .../density/IntKernelDensityMethods.scala | 16 ++++++++++ .../raster/density/KernelDensity.scala | 4 +-- .../raster/density/KernelStamper.scala | 4 +-- .../distance/EuclideanDistanceTile.scala | 16 ++++++++++ .../EuclideanDistanceTileMethods.scala | 16 ++++++++++ .../raster/distance/Implicits.scala | 16 ++++++++++ .../equalization/HistogramEqualization.scala | 16 ++++++++++ .../MultibandEqualizationMethods.scala | 16 ++++++++++ .../SinglebandEqualizationMethods.scala | 16 ++++++++++ .../raster/histogram/DoubleHistogram.scala | 4 +-- .../raster/histogram/FastMapHistogram.scala | 4 +-- .../raster/histogram/Histogram.scala | 4 +-- .../raster/histogram/IntHistogram.scala | 4 +-- .../raster/histogram/MutableHistogram.scala | 4 +-- .../histogram/MutableIntHistogram.scala | 4 +-- .../raster/histogram/StreamingHistogram.scala | 4 +-- .../raster/hydrology/Accumulation.scala | 4 +-- .../geotrellis/raster/hydrology/Fill.scala | 28 ++++++++-------- .../raster/hydrology/FlowDirection.scala | 10 +++--- .../raster/hydrology/HydrologyMethods.scala | 16 ++++++++++ .../interpolation/GeoKrigingMethods.scala | 28 ++++++++-------- .../raster/interpolation/Implicits.scala | 28 ++++++++-------- .../raster/interpolation/Interpolation.scala | 28 ++++++++-------- .../InverseDistanceWeighted.scala | 16 ++++++++++ .../InverseDistanceWieghtedMethods.scala | 16 ++++++++++ .../OrdinaryKrigingMethods.scala | 28 ++++++++-------- .../interpolation/SimpleKrigingMethods.scala | 28 ++++++++-------- .../UniversalKrigingMethods.scala | 28 ++++++++-------- .../geotrellis/raster/io/arg/ArgReader.scala | 4 +-- .../geotrellis/raster/io/arg/ArgWriter.scala | 10 +++--- .../geotrellis/raster/io/arg/CellWriter.scala | 10 +++--- .../raster/io/ascii/AsciiReadState.scala | 16 ++++++++++ .../raster/io/ascii/AsciiReader.scala | 16 ++++++++++ .../raster/io/ascii/AsciiWriter.scala | 16 ++++++++++ .../raster/io/ascii/FileReader.scala | 10 +++--- .../raster/io/ascii/IntReadState.scala | 10 +++--- .../raster/io/ascii/ReadState.scala | 10 +++--- .../raster/io/geotiff/ArraySegmentBytes.scala | 16 ++++++++++ .../raster/io/geotiff/BandTypes.scala | 16 ++++++++++ .../io/geotiff/BitGeoTiffMultibandTile.scala | 16 ++++++++++ .../raster/io/geotiff/BitGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/BitGeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/BitGeoTiffTile.scala | 16 ++++++++++ .../ByteConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../io/geotiff/ByteGeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/ByteGeoTiffSegment.scala | 16 ++++++++++ .../ByteGeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/ByteGeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/ByteRawGeoTiffSegment.scala | 16 ++++++++++ .../ByteUserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../raster/io/geotiff/CropIterator.scala | 16 ++++++++++ .../Float32ConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/Float32GeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/Float32GeoTiffSegment.scala | 16 ++++++++++ .../Float32GeoTiffSegmentCollection.scala | 16 ++++++++++ .../io/geotiff/Float32GeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/Float32RawGeoTiffSegment.scala | 16 ++++++++++ ...oat32UserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../Float64ConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/Float64GeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/Float64GeoTiffSegment.scala | 16 ++++++++++ .../Float64GeoTiffSegmentCollection.scala | 16 ++++++++++ .../io/geotiff/Float64GeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/Float64RawGeoTiffSegment.scala | 16 ++++++++++ ...oat64UserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../raster/io/geotiff/GeoTiff.scala | 16 ++++++++++ .../raster/io/geotiff/GeoTiffImageData.scala | 16 ++++++++++ .../io/geotiff/GeoTiffMultibandTile.scala | 16 ++++++++++ .../raster/io/geotiff/GeoTiffOptions.scala | 16 ++++++++++ .../raster/io/geotiff/GeoTiffSegment.scala | 16 ++++++++++ .../io/geotiff/GeoTiffSegmentCollection.scala | 16 ++++++++++ .../io/geotiff/GeoTiffSegmentLayout.scala | 16 ++++++++++ .../raster/io/geotiff/GeoTiffTile.scala | 16 ++++++++++ .../Int16ConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/Int16GeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/Int16GeoTiffSegment.scala | 16 ++++++++++ .../Int16GeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/Int16GeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/Int16RawGeoTiffSegment.scala | 16 ++++++++++ ...Int16UserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../Int32ConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/Int32GeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/Int32GeoTiffSegment.scala | 16 ++++++++++ .../Int32GeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/Int32GeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/Int32RawGeoTiffSegment.scala | 16 ++++++++++ ...Int32UserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../raster/io/geotiff/Intersection.scala | 16 ++++++++++ .../raster/io/geotiff/LazySegmentBytes.scala | 16 ++++++++++ .../io/geotiff/MultibandCropIterator.scala | 16 ++++++++++ .../raster/io/geotiff/MultibandGeoTiff.scala | 16 ++++++++++ .../raster/io/geotiff/SegmentBytes.scala | 16 ++++++++++ .../io/geotiff/SinglebandCropIterator.scala | 16 ++++++++++ .../raster/io/geotiff/SinglebandGeoTiff.scala | 16 ++++++++++ .../raster/io/geotiff/StorageMethod.scala | 16 ++++++++++ .../geotrellis/raster/io/geotiff/Tags.scala | 16 ++++++++++ .../UByteConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/UByteGeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/UByteGeoTiffSegment.scala | 16 ++++++++++ .../UByteGeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/UByteGeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/UByteRawGeoTiffSegment.scala | 16 ++++++++++ ...UByteUserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../UInt16ConstantNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/UInt16GeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/UInt16GeoTiffSegment.scala | 16 ++++++++++ .../UInt16GeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/UInt16GeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/UInt16RawGeoTiffSegment.scala | 16 ++++++++++ ...Int16UserDefinedNoDataGeoTiffSegment.scala | 16 ++++++++++ .../geotiff/UInt32GeoTiffMultibandTile.scala | 16 ++++++++++ .../io/geotiff/UInt32GeoTiffSegment.scala | 16 ++++++++++ .../UInt32GeoTiffSegmentCollection.scala | 16 ++++++++++ .../raster/io/geotiff/UInt32GeoTiffTile.scala | 16 ++++++++++ .../io/geotiff/compression/Compression.scala | 16 ++++++++++ .../io/geotiff/compression/Compressor.scala | 16 ++++++++++ .../io/geotiff/compression/Decompressor.scala | 16 ++++++++++ .../compression/DeflateCompression.scala | 4 +-- .../compression/FloatingPointPredictor.scala | 16 ++++++++++ .../compression/HorizontalPredictor.scala | 16 ++++++++++ .../compression/LZWDecompression.scala | 16 ++++++++++ .../geotiff/compression/NoCompression.scala | 16 ++++++++++ .../compression/PackBitsDecompression.scala | 16 ++++++++++ .../io/geotiff/compression/Predictor.scala | 16 ++++++++++ .../raster/io/geotiff/package.scala | 16 ++++++++++ .../io/geotiff/reader/GeoTiffCSParser.scala | 4 +-- .../io/geotiff/reader/GeoTiffReader.scala | 4 +-- .../io/geotiff/reader/TiffTagsReader.scala | 16 ++++++++++ .../raster/io/geotiff/tags/BasicTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/CmykTags.scala | 16 ++++++++++ .../io/geotiff/tags/ColimetryTags.scala | 16 ++++++++++ .../geotiff/tags/DataSampleFormatTags.scala | 16 ++++++++++ .../io/geotiff/tags/DocumentationTags.scala | 16 ++++++++++ .../io/geotiff/tags/GeoKeyConstants.scala | 16 ++++++++++ .../io/geotiff/tags/GeoKeyDirectory.scala | 16 ++++++++++ .../raster/io/geotiff/tags/GeoKeyReader.scala | 4 +-- .../raster/io/geotiff/tags/GeoTiffTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/JpegTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/MetadataTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/NonBasicTags.scala | 16 ++++++++++ .../io/geotiff/tags/NonStandardizedTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/Pixel3D.scala | 16 ++++++++++ .../io/geotiff/tags/TiffTagMetadata.scala | 16 ++++++++++ .../raster/io/geotiff/tags/TiffTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/TileTags.scala | 16 ++++++++++ .../raster/io/geotiff/tags/YCbCrTags.scala | 16 ++++++++++ .../io/geotiff/tags/codes/ColorSpace.scala | 16 ++++++++++ .../geotiff/tags/codes/CompressionType.scala | 16 ++++++++++ .../io/geotiff/tags/codes/Orientations.scala | 16 ++++++++++ .../tags/codes/PlanarConfigurations.scala | 16 ++++++++++ .../io/geotiff/tags/codes/SampleFormat.scala | 16 ++++++++++ .../io/geotiff/tags/codes/TagCodes.scala | 16 ++++++++++ .../io/geotiff/tags/codes/TiffFieldType.scala | 16 ++++++++++ .../io/geotiff/util/ArrayExtensions.scala | 4 +-- .../raster/io/geotiff/util/ByteInverter.scala | 4 +-- .../geotiff/util/ByteReaderExtensions.scala | 4 +-- .../io/geotiff/util/GdalNoDataParser.scala | 4 +-- .../raster/io/geotiff/util/package.scala | 16 ++++++++++ .../writer/CoordinateSystemParser.scala | 4 +-- .../io/geotiff/writer/GeoTiffWriter.scala | 4 +-- .../io/geotiff/writer/TiffTagFieldValue.scala | 16 ++++++++++ .../raster/io/geotiff/writer/ToBytes.scala | 16 ++++++++++ .../raster/io/json/HistogramJsonFormats.scala | 4 +-- .../geotrellis/raster/io/json/Implicits.scala | 16 ++++++++++ .../scala/geotrellis/raster/io/package.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Aspect.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Convolve.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Conway.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Cursor.scala | 4 +-- .../raster/mapalgebra/focal/CursorMask.scala | 4 +-- .../mapalgebra/focal/FocalCalculation.scala | 4 +-- .../mapalgebra/focal/FocalMethods.scala | 16 ++++++++++ .../mapalgebra/focal/FocalStrategy.scala | 4 +-- .../raster/mapalgebra/focal/Kernel.scala | 16 ++++++++++ .../mapalgebra/focal/KernelCursor.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Max.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Mean.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Median.scala | 16 ++++++++++ .../focal/MedianModeCalculation.scala | 10 +++--- .../raster/mapalgebra/focal/Min.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Mode.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Moran.scala | 16 ++++++++++ .../mapalgebra/focal/Neighborhood.scala | 10 +++--- .../raster/mapalgebra/focal/Slope.scala | 16 ++++++++++ .../mapalgebra/focal/StandardDeviation.scala | 16 ++++++++++ .../raster/mapalgebra/focal/Sum.scala | 16 ++++++++++ .../mapalgebra/focal/TileWithNeighbors.scala | 10 +++--- .../focal/hillshade/Hillshade.scala | 16 ++++++++++ .../focal/hillshade/HillshadeMethods.scala | 16 ++++++++++ .../focal/hillshade/Implicits.scala | 4 +-- .../hillshade/SurfacePointCalculation.scala | 4 +-- .../raster/mapalgebra/local/Abs.scala | 4 +-- .../raster/mapalgebra/local/Acos.scala | 10 +++--- .../raster/mapalgebra/local/Add.scala | 4 +-- .../raster/mapalgebra/local/And.scala | 4 +-- .../raster/mapalgebra/local/Asin.scala | 10 +++--- .../raster/mapalgebra/local/Atan.scala | 4 +-- .../raster/mapalgebra/local/Atan2.scala | 4 +-- .../raster/mapalgebra/local/Ceil.scala | 10 +++--- .../raster/mapalgebra/local/Cos.scala | 4 +-- .../raster/mapalgebra/local/Cosh.scala | 4 +-- .../raster/mapalgebra/local/Defined.scala | 10 +++--- .../raster/mapalgebra/local/Divide.scala | 4 +-- .../raster/mapalgebra/local/Equal.scala | 4 +-- .../raster/mapalgebra/local/Floor.scala | 10 +++--- .../raster/mapalgebra/local/Greater.scala | 4 +-- .../mapalgebra/local/GreaterOrEqual.scala | 4 +-- .../raster/mapalgebra/local/InverseMask.scala | 4 +-- .../raster/mapalgebra/local/Less.scala | 4 +-- .../raster/mapalgebra/local/LessOrEqual.scala | 4 +-- .../mapalgebra/local/LocalMethods.scala | 4 +-- .../mapalgebra/local/LocalSeqMethods.scala | 16 ++++++++++ .../mapalgebra/local/LocalTileBinaryOp.scala | 10 +++--- .../local/LocalTileComparatorOp.scala | 16 ++++++++++ .../raster/mapalgebra/local/Log.scala | 10 +++--- .../raster/mapalgebra/local/Majority.scala | 4 +-- .../raster/mapalgebra/local/Mask.scala | 4 +-- .../raster/mapalgebra/local/Max.scala | 4 +-- .../raster/mapalgebra/local/MaxN.scala | 4 +-- .../raster/mapalgebra/local/Mean.scala | 4 +-- .../raster/mapalgebra/local/Min.scala | 4 +-- .../raster/mapalgebra/local/MinN.scala | 4 +-- .../raster/mapalgebra/local/Minority.scala | 4 +-- .../raster/mapalgebra/local/Multiply.scala | 4 +-- .../raster/mapalgebra/local/Negate.scala | 4 +-- .../raster/mapalgebra/local/Not.scala | 10 +++--- .../raster/mapalgebra/local/Or.scala | 4 +-- .../raster/mapalgebra/local/Pow.scala | 4 +-- .../raster/mapalgebra/local/Round.scala | 4 +-- .../raster/mapalgebra/local/Sin.scala | 4 +-- .../raster/mapalgebra/local/Sinh.scala | 4 +-- .../raster/mapalgebra/local/Sqrt.scala | 10 +++--- .../raster/mapalgebra/local/Subtract.scala | 4 +-- .../raster/mapalgebra/local/Tan.scala | 4 +-- .../raster/mapalgebra/local/Tanh.scala | 4 +-- .../raster/mapalgebra/local/TileReducer.scala | 10 +++--- .../raster/mapalgebra/local/Undefined.scala | 10 +++--- .../raster/mapalgebra/local/Unequal.scala | 4 +-- .../raster/mapalgebra/local/Variance.scala | 16 ++++++++++ .../raster/mapalgebra/local/Variety.scala | 4 +-- .../raster/mapalgebra/local/Xor.scala | 4 +-- .../raster/mapalgebra/local/conditional.scala | 4 +-- .../zonal/DoubleZonalHistogram.scala | 4 +-- .../mapalgebra/zonal/IntZonalHistogram.scala | 4 +-- .../mapalgebra/zonal/ZonalHistograms.scala | 4 +-- .../mapalgebra/zonal/ZonalMethods.scala | 16 ++++++++++ .../mapalgebra/zonal/ZonalPercentage.scala | 4 +-- .../geotrellis/raster/mask/Implicits.scala | 16 ++++++++++ .../mask/MultibandTileMaskMethods.scala | 16 ++++++++++ .../raster/mask/RasterMaskMethods.scala | 16 ++++++++++ .../mask/SinglebandTileMaskMethods.scala | 16 ++++++++++ .../raster/mask/TileMaskMethods.scala | 16 ++++++++++ .../raster/matching/HistogramMatching.scala | 16 ++++++++++ .../matching/MultibandMatchingMethods.scala | 16 ++++++++++ .../matching/SinglebandMatchingMethods.scala | 16 ++++++++++ .../geotrellis/raster/merge/Implicits.scala | 16 ++++++++++ .../merge/MultibandTileMergeMethods.scala | 16 ++++++++++ .../raster/merge/RasterMergeMethods.scala | 16 ++++++++++ .../merge/SinglebandTileMergeMethods.scala | 16 ++++++++++ .../raster/merge/TileMergeMethods.scala | 16 ++++++++++ .../scala/geotrellis/raster/package.scala | 4 +-- .../MultibandTilePrototypeMethods.scala | 16 ++++++++++ .../SinglebandTilePrototypeMethods.scala | 16 ++++++++++ .../prototype/TilePrototypeMethods.scala | 16 ++++++++++ .../rasterize/FeatureRasterizeMethods.scala | 4 +-- .../rasterize/GeometryRasterizeMethods.scala | 4 +-- .../RasterExtentRasterizeMethods.scala | 4 +-- .../raster/rasterize/Rasterizer.scala | 4 +-- .../rasterize/extent/ExtentRasterizer.scala | 4 +-- .../geotrellis/raster/rasterize/package.scala | 16 ++++++++++ .../rasterize/polygon/PolygonRasterizer.scala | 4 +-- .../raster/regiongroup/RegionGroup.scala | 4 +-- .../regiongroup/RegionGroupMethods.scala | 16 ++++++++++ .../geotrellis/raster/render/BreakMap.scala | 16 ++++++++++ .../geotrellis/raster/render/ColorMap.scala | 4 +-- .../raster/render/ColorMethods.scala | 16 ++++++++++ .../geotrellis/raster/render/ColorRamp.scala | 16 ++++++++++ .../geotrellis/raster/render/ColorRamps.scala | 4 +-- .../raster/render/ImageFormats.scala | 16 ++++++++++ .../raster/render/JpgRenderMethods.scala | 16 ++++++++++ .../render/MultibandJpgRenderMethods.scala | 16 ++++++++++ .../render/MultibandPngRenderMethods.scala | 16 ++++++++++ .../raster/render/PngRenderMethods.scala | 16 ++++++++++ .../raster/render/jpg/JpgEncoder.scala | 10 +++--- .../raster/render/jpg/Settings.scala | 4 +-- .../geotrellis/raster/render/package.scala | 16 ++++++++++ .../geotrellis/raster/render/png/Chunk.scala | 10 +++--- .../geotrellis/raster/render/png/Filter.scala | 10 +++--- .../raster/render/png/PngColorEncoding.scala | 4 +-- .../raster/render/png/PngEncoder.scala | 4 +-- .../raster/render/png/Settings.scala | 10 +++--- .../geotrellis/raster/render/png/Util.scala | 10 +++--- .../raster/reproject/Implicits.scala | 16 ++++++++++ .../MultibandRasterReprojectMethods.scala | 16 ++++++++++ .../MultibandTileReprojectMethods.scala | 16 ++++++++++ .../ProjectedRasterReprojectMethods.scala | 16 ++++++++++ .../reproject/RasterReprojectMethods.scala | 16 ++++++++++ .../raster/reproject/Reproject.scala | 16 ++++++++++ .../reproject/ReprojectRasterExtent.scala | 16 ++++++++++ .../raster/reproject/RowTransform.scala | 16 ++++++++++ .../SinglebandRasterReprojectMethods.scala | 16 ++++++++++ .../SinglebandTileReprojectMethods.scala | 16 ++++++++++ .../reproject/TileReprojectMethods.scala | 16 ++++++++++ .../geotrellis/raster/reproject/package.scala | 16 ++++++++++ .../raster/resample/AggregateResample.scala | 16 ++++++++++ .../raster/resample/AverageResample.scala | 16 ++++++++++ .../resample/BicubicConvolutionResample.scala | 16 ++++++++++ .../raster/resample/BicubicResample.scala | 16 ++++++++++ .../resample/BicubicSplineResample.scala | 16 ++++++++++ .../raster/resample/BilinearResample.scala | 16 ++++++++++ .../raster/resample/CubicResample.scala | 16 ++++++++++ .../raster/resample/LanczosResample.scala | 16 ++++++++++ .../raster/resample/MaxResample.scala | 16 ++++++++++ .../raster/resample/MedianResample.scala | 16 ++++++++++ .../raster/resample/MinResample.scala | 16 ++++++++++ .../raster/resample/ModeResample.scala | 16 ++++++++++ .../MultibandRasterResampleMethods.scala | 16 ++++++++++ .../MultibandTileResampleMethods.scala | 16 ++++++++++ .../resample/NearestNeighborResample.scala | 16 ++++++++++ .../resample/RasterResampleMethods.scala | 16 ++++++++++ .../geotrellis/raster/resample/Resample.scala | 16 ++++++++++ .../raster/resample/ResampleAssign.scala | 10 +++--- .../raster/resample/ResampleMethods.scala | 16 ++++++++++ .../SinglebandRasterResampleMethods.scala | 16 ++++++++++ .../SinglebandTileResampleMethods.scala | 16 ++++++++++ .../raster/resample/TileResampleMethods.scala | 16 ++++++++++ .../geotrellis/raster/resample/package.scala | 16 ++++++++++ .../sigmoidal/MultibandSigmoidalMethods.scala | 4 +-- .../raster/sigmoidal/SigmoidalContrast.scala | 4 +-- .../SinglebandSigmoidalMethods.scala | 4 +-- .../geotrellis/raster/split/Implicits.scala | 16 ++++++++++ .../split/MultibandTileSplitMethods.scala | 16 ++++++++++ .../split/RasterExtentSplitMethods.scala | 16 ++++++++++ .../raster/split/RasterSplitMethods.scala | 16 ++++++++++ .../split/SinglebandTileSplitMethods.scala | 16 ++++++++++ .../scala/geotrellis/raster/split/Split.scala | 16 ++++++++++ .../raster/split/SplitMethods.scala | 16 ++++++++++ .../geotrellis/raster/stitch/Stitcher.scala | 16 ++++++++++ .../summary/MultibandTileSummaryMethods.scala | 16 ++++++++++ .../SinglebandTileSummaryMethods.scala | 16 ++++++++++ .../raster/summary/Statistics.scala | 4 +-- .../polygonal/DoubleHistogramSummary.scala | 16 ++++++++++ .../polygonal/IntHistogramSummary.scala | 16 ++++++++++ .../raster/summary/polygonal/MaxSummary.scala | 16 ++++++++++ .../summary/polygonal/MeanSummary.scala | 16 ++++++++++ .../raster/summary/polygonal/MinSummary.scala | 16 ++++++++++ .../polygonal/PolygonalSummaryMethods.scala | 16 ++++++++++ .../raster/summary/polygonal/SumSummary.scala | 16 ++++++++++ .../TilePolygonalSummaryHandler.scala | 16 ++++++++++ .../raster/vectorize/Polygonizer.scala | 16 ++++++++++ .../raster/vectorize/RasterToPoints.scala | 16 ++++++++++ .../SinglebandRasterVectorizeMethods.scala | 16 ++++++++++ .../vectorize/TileVectorizeMethods.scala | 16 ++++++++++ .../raster/vectorize/Vectorize.scala | 4 +-- .../raster/viewshed/ApproxViewshed.scala | 16 ++++++++++ .../geotrellis/raster/viewshed/Viewshed.scala | 16 ++++++++++ .../raster/viewshed/ViewshedMethods.scala | 16 ++++++++++ .../io/s3/GeoTiffS3InputFormatSpec.scala | 16 ++++++++++ .../spark/io/s3/S3AttributeStoreSpec.scala | 16 ++++++++++ .../spark/io/s3/S3GeoTiffRDDSpec.scala | 16 ++++++++++ .../spark/io/s3/S3GeoTiffReadingSpec.scala | 16 ++++++++++ .../spark/io/s3/S3InputFormatSpec.scala | 16 ++++++++++ .../spark/io/s3/S3RangeReaderSpec.scala | 16 ++++++++++ .../spark/io/s3/S3SaveImagesSpec.scala | 16 ++++++++++ .../spark/io/s3/S3SpaceTimeSpec.scala | 16 ++++++++++ .../spark/io/s3/S3SpatialSpec.scala | 16 ++++++++++ .../io/s3/S3TileFeatureSpaceTimeSpec.scala | 16 ++++++++++ .../io/s3/S3TileFeatureSpatialSpec.scala | 16 ++++++++++ .../s3/TemporalGeoTiffS3InputFormatSpec.scala | 16 ++++++++++ .../io/s3/TiffTagsS3InputFormatSpec.scala | 16 ++++++++++ .../spark/io/s3/testkit/MockS3Client.scala | 16 ++++++++++ .../testkit/MockS3CollectionLayerReader.scala | 16 ++++++++++ .../io/s3/testkit/MockS3LayerReader.scala | 16 ++++++++++ .../io/s3/testkit/MockS3LayerWriter.scala | 16 ++++++++++ .../io/s3/testkit/MockS3ClientSpec.scala | 16 ++++++++++ s3/src/main/resources/reference.conf | 14 ++++++++ .../spark/io/s3/AmazonS3Client.scala | 16 ++++++++++ .../spark/io/s3/BytesS3InputFormat.scala | 16 ++++++++++ .../spark/io/s3/GeoTiffS3InputFormat.scala | 16 ++++++++++ .../io/s3/MultibandGeoTiffS3InputFormat.scala | 16 ++++++++++ .../spark/io/s3/S3AttributeStore.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/S3Client.scala | 16 ++++++++++ .../spark/io/s3/S3CollectionLayerReader.scala | 16 ++++++++++ .../spark/io/s3/S3CollectionReader.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/S3GeoTiffRDD.scala | 16 ++++++++++ .../spark/io/s3/S3InputFormat.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/S3InputSplit.scala | 16 ++++++++++ .../spark/io/s3/S3LayerCopier.scala | 16 ++++++++++ .../spark/io/s3/S3LayerDeleter.scala | 16 ++++++++++ .../spark/io/s3/S3LayerHeader.scala | 16 ++++++++++ .../spark/io/s3/S3LayerManager.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/S3LayerMover.scala | 16 ++++++++++ .../spark/io/s3/S3LayerReader.scala | 16 ++++++++++ .../spark/io/s3/S3LayerReindexer.scala | 16 ++++++++++ .../spark/io/s3/S3LayerUpdater.scala | 16 ++++++++++ .../spark/io/s3/S3LayerWriter.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/S3RDDReader.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/S3RDDWriter.scala | 16 ++++++++++ .../spark/io/s3/S3RecordReader.scala | 16 ++++++++++ .../spark/io/s3/S3ValueReader.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/SaveToS3.scala | 16 ++++++++++ .../spark/io/s3/SaveToS3Methods.scala | 16 ++++++++++ .../io/s3/TemporalGeoTiffS3InputFormat.scala | 16 ++++++++++ ...emporalMultibandGeoTiffS3InputFormat.scala | 16 ++++++++++ .../spark/io/s3/TiffTagsS3InputFormat.scala | 16 ++++++++++ .../geotrellis/spark/io/s3/package.scala | 16 ++++++++++ .../io/s3/slippy/S3SlippyTileReader.scala | 16 ++++++++++ .../spark/io/s3/util/S3RangeReader.scala | 16 ++++++++++ .../shapefile/ShapeFileReader.scala | 4 +-- .../shapefile/ShapeFileReaderSpec.scala | 16 ++++++++++ slick/src/main/resources/reference.conf | 14 ++++++++ .../slick/PostGisProjectionSupport.scala | 32 ++++++------------- .../geotrellis/slick/PostGisSupport.scala | 32 ++++++------------- .../scala/geotrellis/slick/Projected.scala | 4 +-- .../main/scala/geotrellis/slick/package.scala | 4 +-- .../test/scala/geotrellis/slick/Data.scala | 6 ++-- .../scala/geotrellis/slick/PostgisSpec.scala | 6 ++-- .../geotrellis/slick/ProjectedSpec.scala | 10 +++--- .../scala/geotrellis/slick/TestDatabase.scala | 16 ++++++++++ .../main/scala/geotrellis/spark/etl/Etl.scala | 16 ++++++++++ .../geotrellis/spark/etl/InputPlugin.scala | 16 ++++++++++ .../spark/etl/MultibandIngest.scala | 16 ++++++++++ .../geotrellis/spark/etl/OutputPlugin.scala | 16 ++++++++++ .../scala/geotrellis/spark/etl/Plugin.scala | 16 ++++++++++ .../spark/etl/SinglebandIngest.scala | 16 ++++++++++ .../geotrellis/spark/etl/TypedModule.scala | 16 ++++++++++ .../spark/etl/accumulo/AccumuloModule.scala | 16 ++++++++++ .../spark/etl/accumulo/AccumuloOutput.scala | 16 ++++++++++ .../MultibandSpaceTimeAccumuloOutput.scala | 16 ++++++++++ .../MultibandSpatialAccumuloOutput.scala | 16 ++++++++++ .../accumulo/SpaceTimeAccumuloOutput.scala | 16 ++++++++++ .../etl/accumulo/SpatialAccumuloOutput.scala | 16 ++++++++++ .../spark/etl/accumulo/package.scala | 16 ++++++++++ .../spark/etl/cassandra/CassandraModule.scala | 16 ++++++++++ .../spark/etl/cassandra/CassandraOutput.scala | 16 ++++++++++ .../MultibandSpaceTimeCassandraOutput.scala | 16 ++++++++++ .../MultibandSpatialCassandraOutput.scala | 16 ++++++++++ .../cassandra/SpaceTimeCassandraOutput.scala | 16 ++++++++++ .../cassandra/SpatialCassandraOutput.scala | 16 ++++++++++ .../spark/etl/cassandra/package.scala | 16 ++++++++++ .../geotrellis/spark/etl/config/Backend.scala | 16 ++++++++++ .../spark/etl/config/BackendPath.scala | 16 ++++++++++ .../spark/etl/config/BackendProfiles.scala | 16 ++++++++++ .../spark/etl/config/BackendType.scala | 16 ++++++++++ .../spark/etl/config/BaseEtlConf.scala | 16 ++++++++++ .../spark/etl/config/ConfigParse.scala | 16 ++++++++++ .../geotrellis/spark/etl/config/EtlConf.scala | 16 ++++++++++ .../etl/config/IngestKeyIndexMethod.scala | 16 ++++++++++ .../spark/etl/config/IngestLayoutScheme.scala | 16 ++++++++++ .../geotrellis/spark/etl/config/Input.scala | 16 ++++++++++ .../geotrellis/spark/etl/config/Output.scala | 16 ++++++++++ .../spark/etl/config/ReprojectMethod.scala | 16 ++++++++++ .../spark/etl/config/json/ConfigFormats.scala | 16 ++++++++++ .../spark/etl/config/json/package.scala | 16 ++++++++++ .../spark/etl/file/FileModule.scala | 16 ++++++++++ .../spark/etl/file/FileOutput.scala | 16 ++++++++++ .../file/MultibandSpaceTimeFileOutput.scala | 16 ++++++++++ .../etl/file/MultibandSpatialFileOutput.scala | 16 ++++++++++ .../spark/etl/file/SpaceTimeFileOutput.scala | 16 ++++++++++ .../spark/etl/file/SpatialFileOutput.scala | 16 ++++++++++ .../geotrellis/spark/etl/file/package.scala | 16 ++++++++++ .../spark/etl/hadoop/GeoTiffHadoopInput.scala | 16 ++++++++++ .../hadoop/GeoTiffSequenceHadoopInput.scala | 16 ++++++++++ .../spark/etl/hadoop/HadoopInput.scala | 16 ++++++++++ .../spark/etl/hadoop/HadoopModule.scala | 16 ++++++++++ .../spark/etl/hadoop/HadoopOutput.scala | 16 ++++++++++ .../hadoop/MultibandGeoTiffHadoopInput.scala | 16 ++++++++++ .../MultibandGeoTiffSequenceHadoopInput.scala | 16 ++++++++++ .../MultibandSpaceTimeHadoopOutput.scala | 16 ++++++++++ .../hadoop/MultibandSpatialHadoopOutput.scala | 16 ++++++++++ .../etl/hadoop/SpaceTimeHadoopOutput.scala | 16 ++++++++++ .../etl/hadoop/SpatialHadoopOutput.scala | 16 ++++++++++ .../etl/hadoop/SpatialRenderOutput.scala | 16 ++++++++++ .../hadoop/TemporalGeoTiffHadoopInput.scala | 16 ++++++++++ .../TemporalMultibandGeoTiffHadoopInput.scala | 16 ++++++++++ .../geotrellis/spark/etl/hadoop/package.scala | 16 ++++++++++ .../spark/etl/hbase/HBaseModule.scala | 16 ++++++++++ .../spark/etl/hbase/HBaseOutput.scala | 16 ++++++++++ .../hbase/MultibandSpaceTimeHBaseOutput.scala | 16 ++++++++++ .../hbase/MultibandSpatialHBaseOutput.scala | 16 ++++++++++ .../etl/hbase/SpaceTimeHBaseOutput.scala | 16 ++++++++++ .../spark/etl/hbase/SpatialHBaseOutput.scala | 16 ++++++++++ .../geotrellis/spark/etl/hbase/package.scala | 16 ++++++++++ .../spark/etl/s3/GeoTiffS3Input.scala | 16 ++++++++++ .../etl/s3/MultibandGeoTiffS3Input.scala | 16 ++++++++++ .../geotrellis/spark/etl/s3/S3Input.scala | 16 ++++++++++ .../geotrellis/spark/etl/s3/S3Module.scala | 16 ++++++++++ .../geotrellis/spark/etl/s3/S3Output.scala | 16 ++++++++++ .../etl/s3/SpaceTimeMultibandS3Output.scala | 16 ++++++++++ .../spark/etl/s3/SpaceTimeS3Output.scala | 16 ++++++++++ .../etl/s3/SpatialMultibandS3Output.scala | 16 ++++++++++ .../spark/etl/s3/SpatialS3Output.scala | 16 ++++++++++ .../spark/etl/s3/TemporalGeoTiffS3Input.scala | 16 ++++++++++ .../s3/TemporalMultibandGeoTiffS3Input.scala | 16 ++++++++++ .../geotrellis/spark/etl/s3/package.scala | 16 ++++++++++ .../scala/geotrellis/spark/etl/EtlSpec.scala | 16 ++++++++++ .../spark/testkit/TileLayerRDDBuilders.scala | 16 ++++++++++ .../spark/testkit/TileLayerRDDMatchers.scala | 4 +-- .../geotrellis/spark/testkit/package.scala | 16 ++++++++++ spark/src/main/resources/reference.conf | 14 ++++++++ .../scala/geotrellis/spark/Boundable.scala | 16 ++++++++++ .../CellGridLayoutCollectionMethods.scala | 16 ++++++++++ .../spark/CellGridLayoutRDDMethods.scala | 16 ++++++++++ .../geotrellis/spark/ContextCollection.scala | 16 ++++++++++ .../scala/geotrellis/spark/ContextRDD.scala | 16 ++++++++++ .../geotrellis/spark/ContextRDDMethods.scala | 16 ++++++++++ .../scala/geotrellis/spark/KeyBounds.scala | 16 ++++++++++ .../main/scala/geotrellis/spark/LayerId.scala | 16 ++++++++++ .../scala/geotrellis/spark/Metadata.scala | 16 ++++++++++ .../spark/MultibandTileLayerRDDMethods.scala | 16 ++++++++++ .../scala/geotrellis/spark/SpaceTimeKey.scala | 16 ++++++++++ .../scala/geotrellis/spark/SpatialKey.scala | 16 ++++++++++ .../scala/geotrellis/spark/TemporalKey.scala | 16 ++++++++++ .../spark/TemporalProjectedExtent.scala | 16 ++++++++++ .../geotrellis/spark/TileLayerMetadata.scala | 16 ++++++++++ .../spark/TileLayerRDDMethods.scala | 16 ++++++++++ .../geotrellis/spark/buffer/BufferSizes.scala | 16 ++++++++++ .../geotrellis/spark/buffer/BufferTiles.scala | 16 ++++++++++ .../spark/buffer/BufferTilesMethods.scala | 16 ++++++++++ .../spark/buffer/BufferedTile.scala | 16 ++++++++++ .../buffer/CollectionBufferTilesMethods.scala | 16 ++++++++++ .../geotrellis/spark/buffer/Implicits.scala | 16 ++++++++++ .../scala/geotrellis/spark/crop/Crop.scala | 16 ++++++++++ .../geotrellis/spark/crop/Implicits.scala | 16 ++++++++++ .../spark/crop/LayerRDDCropMethods.scala | 4 +-- .../geotrellis/spark/density/Implicits.scala | 16 ++++++++++ .../RDDDoubleKernelDensityMethods.scala | 16 ++++++++++ .../density/RDDIntKernelDensityMethods.scala | 16 ++++++++++ .../spark/density/RDDKernelDensity.scala | 4 +-- .../spark/equalization/Implicits.scala | 16 ++++++++++ .../RDDHistogramEqualization.scala | 16 ++++++++++ .../RDDMultibandEqualizationMethods.scala | 16 ++++++++++ .../RDDSinglebandEqualizationMethods.scala | 16 ++++++++++ .../scala/geotrellis/spark/exceptions.scala | 16 ++++++++++ .../geotrellis/spark/filter/Filter.scala | 16 ++++++++++ .../geotrellis/spark/filter/Implicits.scala | 16 ++++++++++ .../filter/SpaceTimeToSpatialMethods.scala | 4 +-- .../filter/TileLayerRDDFilterMethods.scala | 4 +-- .../geotrellis/spark/filter/ToSpatial.scala | 16 ++++++++++ .../geotrellis/spark/ingest/Ingest.scala | 4 +-- .../spark/ingest/MultibandIngest.scala | 16 ++++++++++ .../spark/io/AttributeCaching.scala | 16 ++++++++++ .../geotrellis/spark/io/AttributeStore.scala | 16 ++++++++++ .../spark/io/CollectionLayerReader.scala | 16 ++++++++++ .../spark/io/FilteringLayerReader.scala | 16 ++++++++++ .../spark/io/GenericLayerCopier.scala | 16 ++++++++++ .../spark/io/GenericLayerMover.scala | 16 ++++++++++ .../spark/io/GenericLayerReindexer.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerCopier.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerDeleter.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerFilter.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerHeader.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerManager.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerMover.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerQuery.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerReader.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerReindexer.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerUpdater.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerWriter.scala | 16 ++++++++++ .../geotrellis/spark/io/RasterReader.scala | 16 ++++++++++ .../scala/geotrellis/spark/io/Reader.scala | 16 ++++++++++ .../geotrellis/spark/io/ValueReader.scala | 16 ++++++++++ .../scala/geotrellis/spark/io/Writer.scala | 16 ++++++++++ .../geotrellis/spark/io/avro/AvroCodec.scala | 16 ++++++++++ .../spark/io/avro/AvroEncoder.scala | 16 ++++++++++ .../spark/io/avro/AvroRecordCodec.scala | 16 ++++++++++ .../spark/io/avro/AvroUnionCodec.scala | 16 ++++++++++ .../spark/io/avro/codecs/ExtentCodec.scala | 16 ++++++++++ .../spark/io/avro/codecs/Implicits.scala | 16 ++++++++++ .../spark/io/avro/codecs/KeyCodecs.scala | 16 ++++++++++ .../io/avro/codecs/KeyValueRecordCodec.scala | 16 ++++++++++ .../spark/io/avro/codecs/TileCodecs.scala | 16 ++++++++++ .../io/avro/codecs/TileFeatureCodec.scala | 16 ++++++++++ .../spark/io/avro/codecs/TupleCodec.scala | 16 ++++++++++ .../io/avro/codecs/VectorTileCodec.scala | 16 ++++++++++ .../geotrellis/spark/io/avro/package.scala | 16 ++++++++++ .../spark/io/file/FileAttributeStore.scala | 16 ++++++++++ .../io/file/FileCollectionLayerReader.scala | 16 ++++++++++ .../spark/io/file/FileCollectionReader.scala | 16 ++++++++++ .../spark/io/file/FileLayerCopier.scala | 16 ++++++++++ .../spark/io/file/FileLayerDeleter.scala | 16 ++++++++++ .../spark/io/file/FileLayerHeader.scala | 16 ++++++++++ .../spark/io/file/FileLayerManager.scala | 16 ++++++++++ .../spark/io/file/FileLayerMover.scala | 16 ++++++++++ .../spark/io/file/FileLayerReader.scala | 16 ++++++++++ .../spark/io/file/FileLayerReindexer.scala | 16 ++++++++++ .../spark/io/file/FileLayerUpdater.scala | 16 ++++++++++ .../spark/io/file/FileLayerWriter.scala | 16 ++++++++++ .../spark/io/file/FileRDDReader.scala | 16 ++++++++++ .../spark/io/file/FileRDDWriter.scala | 16 ++++++++++ .../spark/io/file/FileValueReader.scala | 16 ++++++++++ .../spark/io/file/KeyPathGenerator.scala | 16 ++++++++++ .../geotrellis/spark/io/file/LayerPath.scala | 16 ++++++++++ .../io/hadoop/HadoopAttributeStore.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopCatalogConfig.scala | 16 ++++++++++ .../hadoop/HadoopCollectionLayerReader.scala | 16 ++++++++++ .../io/hadoop/HadoopCollectionReader.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopGeoTiffRDD.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerCopier.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerDeleter.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerHeader.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerManager.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerMover.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerReader.scala | 16 ++++++++++ .../io/hadoop/HadoopLayerReindexer.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerUpdater.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopLayerWriter.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopRDDReader.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopRDDWriter.scala | 16 ++++++++++ .../io/hadoop/HadoopSparkContextMethods.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopValueReader.scala | 16 ++++++++++ .../spark/io/hadoop/HdfsRangeReader.scala | 16 ++++++++++ .../spark/io/hadoop/HdfsUtils.scala | 4 +-- .../spark/io/hadoop/Implicits.scala | 16 ++++++++++ .../spark/io/hadoop/KeyPartitioner.scala | 4 +-- .../io/hadoop/SaveBytesToHadoopMethods.scala | 16 ++++++++++ .../spark/io/hadoop/SaveToHadoop.scala | 16 ++++++++++ .../spark/io/hadoop/SaveToHadoopMethods.scala | 16 ++++++++++ .../io/hadoop/SerializableConfiguration.scala | 16 ++++++++++ .../formats/BinaryFileInputFormat.scala | 16 ++++++++++ .../hadoop/formats/BytesFileInputFormat.scala | 16 ++++++++++ .../formats/FilterMapFileInputFormat.scala | 16 ++++++++++ .../hadoop/formats/GeotiffInputFormat.scala | 4 +-- .../formats/MultibandGeoTiffInputFormat.scala | 16 ++++++++++ .../formats/TemporalGeoTiffInputFormat.scala | 16 ++++++++++ .../TemporalMultibandGeoTiffInputFormat.scala | 16 ++++++++++ .../hadoop/formats/TiffTagsInputFormat.scala | 16 ++++++++++ .../geotrellis/spark/io/hadoop/package.scala | 16 ++++++++++ .../io/index/HilbertKeyIndexMethod.scala | 16 ++++++++++ .../geotrellis/spark/io/index/Index.scala | 16 ++++++++++ .../spark/io/index/IndexRanges.scala | 16 ++++++++++ .../geotrellis/spark/io/index/KeyIndex.scala | 16 ++++++++++ .../spark/io/index/KeyIndexMethod.scala | 16 ++++++++++ .../spark/io/index/MergeQueue.scala | 16 ++++++++++ .../io/index/RowMajorKeyIndexMethod.scala | 16 ++++++++++ .../spark/io/index/ZCurveKeyIndexMethod.scala | 16 ++++++++++ .../hilbert/HilbertSpaceTimeKeyIndex.scala | 16 ++++++++++ .../hilbert/HilbertSpatialKeyIndex.scala | 16 ++++++++++ .../rowmajor/RowMajorSpatialKeyIndex.scala | 16 ++++++++++ .../geotrellis/spark/io/index/zcurve/Z2.scala | 16 ++++++++++ .../spark/io/index/zcurve/Z2Range.scala | 16 ++++++++++ .../geotrellis/spark/io/index/zcurve/Z3.scala | 16 ++++++++++ .../spark/io/index/zcurve/Z3Range.scala | 16 ++++++++++ .../io/index/zcurve/ZSpaceTimeKeyIndex.scala | 16 ++++++++++ .../io/index/zcurve/ZSpatialKeyIndex.scala | 16 ++++++++++ .../spark/io/index/zcurve/package.scala | 16 ++++++++++ .../geotrellis/spark/io/json/Implicits.scala | 16 ++++++++++ .../geotrellis/spark/io/json/KeyFormats.scala | 16 ++++++++++ .../spark/io/json/KeyIndexFormats.scala | 16 ++++++++++ .../spark/io/kryo/KryoRegistrator.scala | 4 +-- .../scala/geotrellis/spark/io/package.scala | 16 ++++++++++ .../io/slippy/FileSlippyTileReader.scala | 16 ++++++++++ .../io/slippy/HadoopSlippyTileWriter.scala | 16 ++++++++++ .../io/slippy/HttpSlippyTileReader.scala | 16 ++++++++++ .../spark/io/slippy/SlippyTileReader.scala | 16 ++++++++++ .../spark/io/slippy/SlippyTileWriter.scala | 16 ++++++++++ .../geotrellis/spark/join/Implicits.scala | 16 ++++++++++ .../geotrellis/spark/join/SpatialJoin.scala | 16 ++++++++++ .../spark/join/SpatialJoinMethods.scala | 16 ++++++++++ .../geotrellis/spark/join/VectorJoin.scala | 16 ++++++++++ .../spark/join/VectorJoinMethods.scala | 16 ++++++++++ .../geotrellis/spark/knn/Implicits.scala | 16 ++++++++++ .../spark/knn/KNearestMethods.scala | 16 ++++++++++ .../geotrellis/spark/knn/KNearestRDD.scala | 16 ++++++++++ .../spark/mapalgebra/CombineMethods.scala | 16 ++++++++++ .../spark/mapalgebra/Implicits.scala | 16 ++++++++++ .../focal/CollectionFocalOperation.scala | 16 ++++++++++ .../mapalgebra/focal/FocalOperation.scala | 16 ++++++++++ .../FocalTileLayerCollectionMethods.scala | 16 ++++++++++ .../focal/FocalTileLayerRDDMethods.scala | 16 ++++++++++ .../spark/mapalgebra/focal/Implicits.scala | 16 ++++++++++ .../HillshadeTileLayerCollectionMethods.scala | 16 ++++++++++ .../HillshadeTileLayerRDDMethods.scala | 16 ++++++++++ .../focal/hillshade/Implicits.scala | 16 ++++++++++ .../mapalgebra/local/AddTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/AndTileRDDMethods.scala | 16 ++++++++++ .../local/DivideTileRDDMethods.scala | 16 ++++++++++ .../local/EqualTileRDDMethods.scala | 16 ++++++++++ .../local/GreaterOrEqualTileRDDMethods.scala | 16 ++++++++++ .../local/GreaterTileRDDMethods.scala | 16 ++++++++++ .../local/IfCellTileRDDMethods.scala | 16 ++++++++++ .../spark/mapalgebra/local/Implicits.scala | 16 ++++++++++ .../local/LessOrEqualTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/LessTileRDDMethods.scala | 16 ++++++++++ .../local/LocalMapTileRDDMethods.scala | 16 ++++++++++ .../local/LocalTileRDDMethods.scala | 16 ++++++++++ .../local/LocalTileRDDSeqMethods.scala | 16 ++++++++++ .../local/MajorityTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/MaxTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/MinTileRDDMethods.scala | 16 ++++++++++ .../local/MinorityTileRDDMethods.scala | 16 ++++++++++ .../local/MultiplyTileRDDMethods.scala | 4 +-- .../mapalgebra/local/OrTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/PowTileRDDMethods.scala | 16 ++++++++++ .../local/SubtractTileRDDMethods.scala | 4 +-- .../mapalgebra/local/TileRDDMethods.scala | 16 ++++++++++ .../local/UnequalTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/XorTileRDDMethods.scala | 16 ++++++++++ .../mapalgebra/local/temporal/Implicits.scala | 16 ++++++++++ .../temporal/LocalTemporalStatistics.scala | 16 ++++++++++ .../LocalTemporalTileRDDMethods.scala | 16 ++++++++++ .../local/temporal/TemporalWindowState.scala | 16 ++++++++++ .../spark/mapalgebra/zonal/Implicits.scala | 16 ++++++++++ .../spark/mapalgebra/zonal/Zonal.scala | 16 ++++++++++ .../zonal/ZonalTileRDDMethods.scala | 16 ++++++++++ .../geotrellis/spark/mask/Implicits.scala | 16 ++++++++++ .../scala/geotrellis/spark/mask/Mask.scala | 16 ++++++++++ .../spark/mask/TileRDDMaskMethods.scala | 16 ++++++++++ .../geotrellis/spark/matching/Implicits.scala | 4 +-- .../spark/matching/RDDHistogramMatching.scala | 4 +-- .../RDDMultibandMatchingMethods.scala | 4 +-- .../RDDSinglebandMatchingMethods.scala | 4 +-- .../geotrellis/spark/merge/Implicits.scala | 16 ++++++++++ .../geotrellis/spark/merge/Mergable.scala | 16 ++++++++++ .../spark/merge/RDDLayoutMerge.scala | 16 ++++++++++ .../spark/merge/RddLayoutMergeMethods.scala | 16 ++++++++++ .../geotrellis/spark/merge/TileRDDMerge.scala | 16 ++++++++++ .../spark/merge/TileRDDMergeMethods.scala | 16 ++++++++++ .../main/scala/geotrellis/spark/package.scala | 4 +-- .../spark/partition/Implicits.scala | 16 ++++++++++ .../spark/partition/IndexPartitioner.scala | 16 ++++++++++ .../spark/partition/PartitionerIndex.scala | 16 ++++++++++ .../spark/partition/ReorderedRDD.scala | 16 ++++++++++ .../spark/partition/SpacePartitioner.scala | 16 ++++++++++ .../spark/partition/SpatiallyPartition.scala | 16 ++++++++++ .../partition/SpatiallyPartitionMethods.scala | 16 ++++++++++ .../geotrellis/spark/pyramid/Pyramid.scala | 16 ++++++++++ .../geotrellis/spark/render/Render.scala | 16 ++++++++++ .../SpatialTileLayerRDDRenderMethods.scala | 16 ++++++++++ .../render/SpatialTileRDDRenderMethods.scala | 16 ++++++++++ .../geotrellis/spark/render/package.scala | 16 ++++++++++ .../spark/reproject/Implicits.scala | 16 ++++++++++ .../ProjectedExtentComponentReproject.scala | 16 ++++++++++ ...ectedExtentComponentReprojectMethods.scala | 16 ++++++++++ .../spark/reproject/Reproject.scala | 16 ++++++++++ .../spark/reproject/TileRDDReproject.scala | 16 ++++++++++ .../reproject/TileRDDReprojectMethods.scala | 16 ++++++++++ .../geotrellis/spark/resample/Implicits.scala | 16 ++++++++++ .../spark/resample/ZoomResample.scala | 16 ++++++++++ .../spark/resample/ZoomResampleMethods.scala | 16 ++++++++++ .../spark/sigmoidal/Implicits.scala | 4 +-- .../RDDMultibandSigmoidalMethods.scala | 4 +-- .../sigmoidal/RDDSigmoidalContrast.scala | 4 +-- .../RDDSinglebandSigmoidalMethods.scala | 4 +-- .../geotrellis/spark/split/Implicits.scala | 16 ++++++++++ .../ProjectedExtentRDDSplitMethods.scala | 16 ++++++++++ .../scala/geotrellis/spark/split/Split.scala | 16 ++++++++++ .../geotrellis/spark/stitch/Implicits.scala | 16 ++++++++++ .../stitch/StitchCollectionMethods.scala | 16 ++++++++++ .../spark/stitch/StitchRDDMethods.scala | 16 ++++++++++ .../geotrellis/spark/summary/Implicits.scala | 16 ++++++++++ .../StatsMultibandTileRDDMethods.scala | 16 ++++++++++ .../summary/StatsTileCollectionMethods.scala | 16 ++++++++++ .../spark/summary/StatsTileRDDMethods.scala | 16 ++++++++++ .../spark/summary/polygonal/Implicits.scala | 16 ++++++++++ ...gonalSummaryFeatureCollectionMethods.scala | 16 ++++++++++ .../PolygonalSummaryFeatureRDDMethods.scala | 16 ++++++++++ ...SummaryKeyedFeatureCollectionMethods.scala | 16 ++++++++++ ...lygonalSummaryKeyedFeatureRDDMethods.scala | 16 ++++++++++ ...nalSummaryTileLayerCollectionMethods.scala | 16 ++++++++++ .../PolygonalSummaryTileLayerRDDMethods.scala | 16 ++++++++++ .../geotrellis/spark/tiling/CutTiles.scala | 16 ++++++++++ .../spark/tiling/FloatingLayoutScheme.scala | 16 ++++++++++ .../geotrellis/spark/tiling/Implicits.scala | 16 ++++++++++ .../spark/tiling/LayoutDefinition.scala | 16 ++++++++++ .../spark/tiling/LayoutScheme.scala | 16 ++++++++++ .../spark/tiling/MapKeyTransform.scala | 16 ++++++++++ .../scala/geotrellis/spark/tiling/Tiler.scala | 16 ++++++++++ .../spark/tiling/TilerKeyMethods.scala | 16 ++++++++++ .../spark/tiling/TilerMethods.scala | 16 ++++++++++ .../spark/tiling/ZoomedLayoutScheme.scala | 16 ++++++++++ .../geotrellis/spark/tiling/package.scala | 16 ++++++++++ .../geotrellis/spark/util/GroupIterator.scala | 16 ++++++++++ .../geotrellis/spark/util/KryoClosure.scala | 16 ++++++++++ .../spark/util/KryoSerializer.scala | 5 ++- .../geotrellis/spark/util/KryoWrapper.scala | 5 ++- .../geotrellis/spark/util/SparkUtils.scala | 4 +-- .../geotrellis/spark/util/TaskUtils.scala | 16 ++++++++++ .../spark/util/cache/FileCache.scala | 16 ++++++++++ .../geotrellis/spark/util/cache/cache.scala | 4 +-- .../scala/geotrellis/spark/util/package.scala | 16 ++++++++++ spark/src/test/resources/application.conf | 14 ++++++++ .../geotrellis/spark/InterfaceSpec.scala | 16 ++++++++++ .../geotrellis/spark/KeyBoundsSpec.scala | 16 ++++++++++ .../scala/geotrellis/spark/OpAsserter.scala | 16 ++++++++++ .../geotrellis/spark/RasterMatchers.scala | 16 ++++++++++ .../geotrellis/spark/SerializationTests.scala | 16 ++++++++++ .../geotrellis/spark/TestEnvironment.scala | 4 +-- .../spark/buffer/BufferTilesSpec.scala | 4 +-- .../crop/TileLayerRDDCropMethodsSpec.scala | 16 ++++++++++ .../spark/density/RDDKernelDensitySpec.scala | 16 ++++++++++ .../RDDHistogramEqualizationSpec.scala | 4 +-- .../TileLayerRDDFilterMethodsSpec.scala | 4 +-- .../geotrellis/spark/ingest/IngestSpec.scala | 16 ++++++++++ .../spark/io/AllOnesTestTileFeatureSpec.scala | 16 ++++++++++ .../spark/io/AllOnesTestTileSpec.scala | 16 ++++++++++ .../spark/io/AttributeStoreSpec.scala | 16 ++++++++++ .../spark/io/CoordinateSpaceTimeSpec.scala | 16 ++++++++++ .../CoordinateSpaceTimeTileFeatureSpec.scala | 16 ++++++++++ .../geotrellis/spark/io/LayerQuerySpec.scala | 16 ++++++++++ .../LayerUpdateSpaceTimeTileFeatureSpec.scala | 16 ++++++++++ .../io/LayerUpdateSpaceTimeTileSpec.scala | 16 ++++++++++ .../geotrellis/spark/io/PersistenceSpec.scala | 16 ++++++++++ .../spark/io/SpaceTimeKeyIndexMethods.scala | 16 ++++++++++ .../spark/io/SpatialKeyIndexMethods.scala | 16 ++++++++++ .../geotrellis/spark/io/avro/AvroTools.scala | 16 ++++++++++ .../spark/io/avro/TileCodecsSpec.scala | 16 ++++++++++ .../spark/io/avro/TileFeatureCodecSpec.scala | 16 ++++++++++ .../spark/io/avro/TileRecordSpec.scala | 16 ++++++++++ .../spark/io/avro/VectorTileCodecSpec.scala | 4 +-- .../io/file/FileAttributeStoreSpec.scala | 16 ++++++++++ .../spark/io/file/FileSpaceTimeSpec.scala | 16 ++++++++++ .../spark/io/file/FileSpatialSpec.scala | 16 ++++++++++ .../file/FileTileFeatureSpaceTimeSpec.scala | 16 ++++++++++ .../io/file/FileTileFeatureSpatialSpec.scala | 16 ++++++++++ .../io/hadoop/HadoopAttributeStoreSpec.scala | 16 ++++++++++ .../io/hadoop/HadoopGeoTiffRDDSpec.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopIngestSpec.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopSpaceTimeSpec.scala | 16 ++++++++++ .../spark/io/hadoop/HadoopSpatialSpec.scala | 16 ++++++++++ .../HadoopTileFeatureSpaceTimeSpec.scala | 16 ++++++++++ .../hadoop/HadoopTileFeatureSpatialSpec.scala | 16 ++++++++++ .../spark/io/hadoop/HdfsUtilsSpec.scala | 16 ++++++++++ .../HilbertSpaceTimeKeyIndexSpec.scala | 16 ++++++++++ .../hilbert/HilbertSpatialKeyIndexSpec.scala | 16 ++++++++++ .../RowMajorSpatialKeyIndexSpec.scala | 16 ++++++++++ .../io/index/zcurve/Z2IteratorSpec.scala | 16 ++++++++++ .../spark/io/index/zcurve/Z2Spec.scala | 16 ++++++++++ .../spark/io/index/zcurve/Z3RangeSpec.scala | 16 ++++++++++ .../spark/io/index/zcurve/Z3Spec.scala | 16 ++++++++++ .../index/zcurve/ZSpaceTimeKeyIndexSpec.scala | 16 ++++++++++ .../index/zcurve/ZSpatialKeyIndexSpec.scala | 16 ++++++++++ .../json/KeyIndexJsonFormatFactorySpec.scala | 16 ++++++++++ .../spark/io/json/LayerHeaderSpec.scala | 16 ++++++++++ .../io/json/TestKeyIndexRegistrator.scala | 16 ++++++++++ .../slippy/HadoopSlippyTileWriterSpec.scala | 16 ++++++++++ .../io/slippy/HttpSlippyTileReaderSpec.scala | 16 ++++++++++ .../spark/join/SpatialJoinRDDSpec.scala | 16 ++++++++++ .../spark/join/VectorJoinRDDSpec.scala | 16 ++++++++++ .../spark/knn/KNearestRDDSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/AspectSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/MaxSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/MeanSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/MedianSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/MinSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/ModeSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/SlopeSpec.scala | 16 ++++++++++ .../spark/mapalgebra/focal/SumSpec.scala | 16 ++++++++++ .../focal/hillshade/HillshadeSpec.scala | 16 ++++++++++ .../spark/mapalgebra/local/AddSpec.scala | 4 +-- .../spark/mapalgebra/local/AndSpec.scala | 4 +-- .../spark/mapalgebra/local/DivideSpec.scala | 4 +-- .../spark/mapalgebra/local/EqualSpec.scala | 4 +-- .../mapalgebra/local/GreaterOrEqualSpec.scala | 4 +-- .../spark/mapalgebra/local/GreaterSpec.scala | 4 +-- .../spark/mapalgebra/local/IfCellSpec.scala | 4 +-- .../mapalgebra/local/LessOrEqualSpec.scala | 4 +-- .../spark/mapalgebra/local/LessSpec.scala | 4 +-- .../spark/mapalgebra/local/LocalMapSpec.scala | 16 ++++++++++ .../spark/mapalgebra/local/LocalSeqSpec.scala | 4 +-- .../spark/mapalgebra/local/LocalSpec.scala | 4 +-- .../spark/mapalgebra/local/MajoritySpec.scala | 4 +-- .../spark/mapalgebra/local/MaxSpec.scala | 4 +-- .../spark/mapalgebra/local/MinSpec.scala | 4 +-- .../spark/mapalgebra/local/MinoritySpec.scala | 4 +-- .../spark/mapalgebra/local/MultiplySpec.scala | 4 +-- .../spark/mapalgebra/local/OrSpec.scala | 6 ++-- .../spark/mapalgebra/local/PowSpec.scala | 4 +-- .../spark/mapalgebra/local/SubtractSpec.scala | 4 +-- .../spark/mapalgebra/local/UnequalSpec.scala | 4 +-- .../spark/mapalgebra/local/XorSpec.scala | 6 ++-- .../LocalTemporalTileRDDMethodsSpec.scala | 16 ++++++++++ .../mapalgebra/zonal/HistogramSpec.scala | 16 ++++++++++ .../mapalgebra/zonal/PercentageSpec.scala | 16 ++++++++++ .../spark/mask/TileRDDMaskMethodsSpec.scala | 16 ++++++++++ .../matching/RDDHistogramMatchingSpec.scala | 4 +-- .../spark/partition/ReorderedRDDSpec.scala | 16 ++++++++++ .../spark/partition/TestImplicits.scala | 16 ++++++++++ .../spark/pyramid/PyramidSpec.scala | 16 ++++++++++ .../spark/render/SaveImagesSpec.scala | 16 ++++++++++ ...SpatialTileLayerRDDRenderMethodsSpec.scala | 16 ++++++++++ .../reproject/TileRDDReprojectSpec.scala | 16 ++++++++++ .../spark/resample/ZoomResampleSpec.scala | 16 ++++++++++ .../sigmoidal/RDDSigmoidalContrastSpec.scala | 4 +-- .../ProjectedExtentRDDSplitMethodsSpec.scala | 16 ++++++++++ .../stitch/CollectionStitchMethodsSpec.scala | 16 ++++++++++ .../spark/stitch/RDDStitchMethodsSpec.scala | 16 ++++++++++ .../StatsTileCollectionMethodsSpec.scala | 16 ++++++++++ .../summary/StatsTileRDDMethodsSpec.scala | 16 ++++++++++ .../polygonal/FeatureCollectionSpec.scala | 16 ++++++++++ .../summary/polygonal/FeatureRDDSpec.scala | 16 ++++++++++ .../summary/polygonal/HistogramSpec.scala | 16 ++++++++++ .../summary/polygonal/MaxDoubleSpec.scala | 16 ++++++++++ .../spark/summary/polygonal/MaxSpec.scala | 16 ++++++++++ .../spark/summary/polygonal/MeanSpec.scala | 16 ++++++++++ .../summary/polygonal/MinDoubleSpec.scala | 16 ++++++++++ .../spark/summary/polygonal/MinSpec.scala | 16 ++++++++++ .../summary/polygonal/SumDoubleSpec.scala | 16 ++++++++++ .../spark/summary/polygonal/SumSpec.scala | 16 ++++++++++ .../testfiles/SpaceTimeTestFileValues.scala | 16 ++++++++++ .../testfiles/SpatialTestFileValues.scala | 16 ++++++++++ .../spark/testfiles/TestFiles.scala | 16 ++++++++++ .../testfiles/TestTileFeatureFiles.scala | 16 ++++++++++ .../tiling/FloatingLayoutSchemeSpec.scala | 16 ++++++++++ .../spark/tiling/LayoutDefinitionSpec.scala | 16 ++++++++++ .../spark/tiling/MapKeyTransformSpec.scala | 16 ++++++++++ .../spark/tiling/TilerMethodsSpec.scala | 16 ++++++++++ .../spark/tiling/ZoomedLayoutSchemeSpec.scala | 16 ++++++++++ .../spark/util/KryoClosureSpec.scala | 16 ++++++++++ .../spark/util/cache/CacheSpec.scala | 4 +-- .../main/scala/geotrellis/util/BTree.scala | 16 ++++++++++ .../scala/geotrellis/util/ByteReader.scala | 16 ++++++++++ .../scala/geotrellis/util/Component.scala | 16 ++++++++++ .../scala/geotrellis/util/Constants.scala | 16 ++++++++++ .../geotrellis/util/FileRangeReader.scala | 16 ++++++++++ .../scala/geotrellis/util/Filesystem.scala | 4 +-- .../main/scala/geotrellis/util/Functor.scala | 16 ++++++++++ .../scala/geotrellis/util/GetComponent.scala | 16 ++++++++++ .../geotrellis/util/MethodExtensions.scala | 16 ++++++++++ .../scala/geotrellis/util/RangeReader.scala | 16 ++++++++++ .../scala/geotrellis/util/SetComponent.scala | 16 ++++++++++ .../geotrellis/util/StreamingByteReader.scala | 16 ++++++++++ .../main/scala/geotrellis/util/package.scala | 16 ++++++++++ .../scala/geotrellis/util/BTreeSpec.scala | 16 ++++++++++ .../scala/geotrellis/util/ComponentSpec.scala | 16 ++++++++++ .../geotrellis/util/FileRangeReaderSpec.scala | 16 ++++++++++ .../util/StreamingByteReaderSpec.scala | 16 ++++++++++ .../check/geotrellis/vector/Generators.scala | 4 +-- .../geotrellis/vector/jts/Generators.scala | 10 +++--- .../vector/jts/LineStringCheck.scala | 10 +++--- .../vector/jts/MultiLineStringCheck.scala | 10 +++--- .../vector/jts/MultiPointCheck.scala | 10 +++--- .../geotrellis/vector/jts/PointCheck.scala | 4 +-- .../geotrellis/vector/jts/PolygonCheck.scala | 10 +++--- .../spec/geotrellis/vector/ExtentSpec.scala | 4 +-- .../vector/GeometryResultSpec.scala | 16 ++++++++++ .../spec/geotrellis/vector/LineSpec.scala | 10 +++--- .../geotrellis/vector/MultiGeometrySpec.scala | 16 ++++++++++ .../geotrellis/vector/MultiLineSpec.scala | 4 +-- .../geotrellis/vector/MultiPointSpec.scala | 4 +-- .../spec/geotrellis/vector/PointSpec.scala | 10 +++--- .../spec/geotrellis/vector/PolygonSpec.scala | 4 +-- .../geotrellis/vector/SeqMethodsSpec.scala | 16 ++++++++++ .../geotrellis/vector/SpatialIndexSpec.scala | 16 ++++++++++ ...yCollectionTransformationMethodsSpec.scala | 16 ++++++++++ .../LineTransformationMethodsSpec.scala | 16 ++++++++++ .../MultiLineTransformationMethodsSpec.scala | 16 ++++++++++ .../MultiPointTransformationMethodsSpec.scala | 16 ++++++++++ ...ultiPolygonTransformationMethodsSpec.scala | 16 ++++++++++ .../PointTransformationMethodsSpec.scala | 16 ++++++++++ .../PolygonTransformationMethodsSpec.scala | 16 ++++++++++ .../convexhull/ConvexHullMethodsSpec.scala | 4 +-- .../vector/densify/DensifyMethodsSpec.scala | 16 ++++++++++ .../vector/dissolve/DissoveMethodsSpec.scala | 16 ++++++++++ .../interpolation/KrigingVectorSpec.scala | 28 ++++++++-------- .../interpolation/SemivariogramSpec.scala | 4 +-- .../vector/io/json/FeatureFormatsSpec.scala | 16 ++++++++++ .../vector/io/json/GeoJsonSpec.scala | 16 ++++++++++ .../vector/io/json/GeometryFormatsSpec.scala | 16 ++++++++++ .../vector/io/json/JsonCrsSpec.scala | 16 ++++++++++ .../geotrellis/vector/io/json/StyleSpec.scala | 16 ++++++++++ .../vector/reproject/packageSpec.scala | 4 +-- .../vector/voronoi/DelaunaySpec.scala | 16 ++++++++++ .../vector/voronoi/VoronoiSpec.scala | 16 ++++++++++ .../scala/geotrellis/vector/Dimension.scala | 4 +-- .../main/scala/geotrellis/vector/Extent.scala | 16 ++++++++++ .../scala/geotrellis/vector/Feature.scala | 4 +-- .../scala/geotrellis/vector/GeomFactory.scala | 10 +++--- .../scala/geotrellis/vector/Geometry.scala | 4 +-- .../vector/GeometryCollection.scala | 10 +++--- .../vector/GeometryCollectionBuilder.scala | 16 ++++++++++ .../main/scala/geotrellis/vector/Line.scala | 4 +-- .../geotrellis/vector/MultiGeometry.scala | 16 ++++++++++ .../scala/geotrellis/vector/MultiLine.scala | 4 +-- .../scala/geotrellis/vector/MultiPoint.scala | 4 +-- .../geotrellis/vector/MultiPolygon.scala | 4 +-- .../main/scala/geotrellis/vector/Point.scala | 4 +-- .../scala/geotrellis/vector/Polygon.scala | 4 +-- .../scala/geotrellis/vector/Results.scala | 4 +-- .../scala/geotrellis/vector/SeqMethods.scala | 16 ++++++++++ .../geotrellis/vector/SpatialIndex.scala | 4 +-- .../vector/affine/AffineTransformation.scala | 16 ++++++++++ ...metryCollectionTransformationMethods.scala | 16 ++++++++++ .../affine/LineTransformationMethods.scala | 16 ++++++++++ .../MultiLineTransformationMethods.scala | 16 ++++++++++ .../MultiPointTransformationMethods.scala | 16 ++++++++++ .../MultiPolygonTransformationMethods.scala | 16 ++++++++++ .../affine/PointTransformationMethods.scala | 16 ++++++++++ .../affine/PolygonTransformationMethods.scala | 16 ++++++++++ .../vector/convexhull/ConvexHullMethods.scala | 4 +-- .../vector/densify/DensifyMethods.scala | 4 +-- .../vector/dissolve/DissolveMethods.scala | 4 +-- .../interpolation/EmpiricalVariogram.scala | 4 +-- .../vector/interpolation/GeoKriging.scala | 28 ++++++++-------- .../interpolation/InterpolationVector.scala | 28 ++++++++-------- .../vector/interpolation/Kriging.scala | 28 ++++++++-------- .../LeastSquaresFittingNuggetProblem.scala | 4 +-- .../LeastSquaresFittingProblem.scala | 4 +-- .../interpolation/LinearSemivariogram.scala | 4 +-- .../NonLinearSemivariogram.scala | 4 +-- .../interpolation/OrdinaryKriging.scala | 28 ++++++++-------- .../vector/interpolation/Semivariogram.scala | 4 +-- .../vector/interpolation/SimpleKriging.scala | 28 ++++++++-------- .../interpolation/UniversalKriging.scala | 28 ++++++++-------- .../geotrellis/vector/io/WKB/Implicits.scala | 16 ++++++++++ .../scala/geotrellis/vector/io/WKB/WKB.scala | 10 +++--- .../geotrellis/vector/io/WKB/WKBWriter.scala | 4 +-- .../geotrellis/vector/io/WKT/Implicits.scala | 16 ++++++++++ .../scala/geotrellis/vector/io/WKT/WKT.scala | 10 +++--- .../vector/io/json/CrsFormats.scala | 16 ++++++++++ .../vector/io/json/FeatureFormats.scala | 16 ++++++++++ .../geotrellis/vector/io/json/GeoJson.scala | 16 ++++++++++ .../vector/io/json/GeoJsonSupport.scala | 16 ++++++++++ .../vector/io/json/GeometryFormats.scala | 16 ++++++++++ .../geotrellis/vector/io/json/Implicits.scala | 16 ++++++++++ .../geotrellis/vector/io/json/JsonCRS.scala | 16 ++++++++++ .../io/json/JsonFeatureCollection.scala | 16 ++++++++++ .../io/json/JsonFeatureCollectionMap.scala | 16 ++++++++++ .../geotrellis/vector/io/json/Style.scala | 16 ++++++++++ .../scala/geotrellis/vector/io/package.scala | 16 ++++++++++ .../scala/geotrellis/vector/package.scala | 4 +-- .../vector/prepared/PreparedGeometry.scala | 16 ++++++++++ .../prepared/PreparedGeometryMethods.scala | 16 ++++++++++ .../vector/reproject/Implicits.scala | 16 ++++++++++ .../vector/reproject/Reproject.scala | 16 ++++++++++ .../vector/simplify/SimplifyMethods.scala | 4 +-- .../polygonal/PolygonalSummaryHandler.scala | 16 ++++++++++ .../geotrellis/vector/voronoi/Delaunay.scala | 16 ++++++++++ .../vector/voronoi/DelaunayMethods.scala | 16 ++++++++++ .../geotrellis/vector/voronoi/HalfEdge.scala | 16 ++++++++++ .../geotrellis/vector/voronoi/Implicits.scala | 16 ++++++++++ .../geotrellis/vector/voronoi/Voronoi.scala | 16 ++++++++++ .../vector/voronoi/VoronoiMethods.scala | 16 ++++++++++ .../scala/geotrellis/vectortile/Layer.scala | 4 +-- .../geotrellis/vectortile/VectorTile.scala | 4 +-- .../scala/geotrellis/vectortile/package.scala | 16 ++++++++++ .../vectortile/protobuf/ProtobufLayer.scala | 4 +-- .../vectortile/protobuf/ProtobufTile.scala | 4 +-- .../vectortile/protobuf/Value.scala | 4 +-- .../protobuf/internal/Command.scala | 4 +-- .../protobuf/internal/ProtobufGeom.scala | 4 +-- .../protobuf/internal/package.scala | 4 +-- .../protobuf/internal/vector_tile/Tile.scala | 16 ++++++++++ .../vector_tile/VectorTileProto.scala | 16 ++++++++++ .../geotrellis/vectortile/CommandSpec.scala | 4 +-- .../vectortile/ProtobufGeomSpec.scala | 4 +-- .../vectortile/ProtobufTileSpec.scala | 4 +-- 1576 files changed, 20015 insertions(+), 2778 deletions(-) diff --git a/accumulo/src/main/resources/reference.conf b/accumulo/src/main/resources/reference.conf index 43cc14a3db..2ef05a7815 100644 --- a/accumulo/src/main/resources/reference.conf +++ b/accumulo/src/main/resources/reference.conf @@ -1,3 +1,17 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.accumulo { catalog = "metadata" threads { diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStore.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStore.scala index 32daac104c..4a44309c76 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStore.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionLayerReader.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionLayerReader.scala index 652fbf3dd1..98df9dff0f 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionLayerReader.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionReader.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionReader.scala index 071df2eda5..dc1f6320a1 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionReader.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloCollectionReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.io._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloInstance.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloInstance.scala index 7cef7eb95a..05d364dea3 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloInstance.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloInstance.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import org.apache.accumulo.core.client._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloKeyEncoder.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloKeyEncoder.scala index 48cc015767..f708b3ed8a 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloKeyEncoder.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloKeyEncoder.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerCopier.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerCopier.scala index 9acda494cc..b757b7d7ac 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerCopier.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerDeleter.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerDeleter.scala index 82c2f1622a..3a8dc9019d 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerDeleter.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.LayerId diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerHeader.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerHeader.scala index b7b13faa5a..b925e2b7a8 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerHeader.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.io.LayerHeader diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerManager.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerManager.scala index b121c2321b..bde6b0077e 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerManager.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerMover.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerMover.scala index aef31cab2f..8f635a3d2a 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerMover.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReader.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReader.scala index 96ad308f0d..2287ae1c47 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReader.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReindexer.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReindexer.scala index 6ded961c02..8fbcc58f02 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReindexer.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerUpdater.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerUpdater.scala index 2a8fcd3a43..c788808c6a 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerUpdater.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerWriter.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerWriter.scala index ed9182ebc8..e250564bc2 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerWriter.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloLayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDReader.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDReader.scala index bf7cc45112..4ecaf60803 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDReader.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.io.avro.codecs.KeyValueRecordCodec diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDWriter.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDWriter.scala index 8d70177150..1c716c8109 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDWriter.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloRDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.io.avro._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloUtils.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloUtils.scala index 5ef86b52c5..45463abca3 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloUtils.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloUtils.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.{ Bounds, Boundable, KeyBounds, EmptyBounds } diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloValueReader.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloValueReader.scala index 2beadd32be..405d6d6a4f 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloValueReader.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.LayerId diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloWriteStrategy.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloWriteStrategy.scala index f18a98daf5..df8cb52798 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloWriteStrategy.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/AccumuloWriteStrategy.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.util._ diff --git a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/package.scala b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/package.scala index af461ac8c3..e2c94f92c8 100644 --- a/accumulo/src/main/scala/geotrellis/spark/io/accumulo/package.scala +++ b/accumulo/src/main/scala/geotrellis/spark/io/accumulo/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark.LayerId diff --git a/accumulo/src/test/scala/geotrellis/spark/AccumuloTestEnvironment.scala b/accumulo/src/test/scala/geotrellis/spark/AccumuloTestEnvironment.scala index de2d481bac..31b527dbd9 100644 --- a/accumulo/src/test/scala/geotrellis/spark/AccumuloTestEnvironment.scala +++ b/accumulo/src/test/scala/geotrellis/spark/AccumuloTestEnvironment.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStoreSpec.scala b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStoreSpec.scala index 590f399422..2272eb17b7 100644 --- a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStoreSpec.scala +++ b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloAttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.spark.io._ diff --git a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpaceTimeSpec.scala b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpaceTimeSpec.scala index 9701930545..64d019c114 100644 --- a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpaceTimeSpec.scala +++ b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.raster.Tile diff --git a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpatialSpec.scala b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpatialSpec.scala index 1c43988fa3..bffc8cabce 100644 --- a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpatialSpec.scala +++ b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.raster.Tile diff --git a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpaceTimeSpec.scala b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpaceTimeSpec.scala index 527dda54d6..de6978dfa1 100644 --- a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpaceTimeSpec.scala +++ b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.raster.{Tile, TileFeature} diff --git a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpatialSpec.scala b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpatialSpec.scala index 1f2f9df8eb..f8359369dc 100644 --- a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpatialSpec.scala +++ b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/AccumuloTileFeatureSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import geotrellis.raster.{Tile, TileFeature} diff --git a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/MockAccumuloInstance.scala b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/MockAccumuloInstance.scala index 820e79e0b0..ad91f2eeab 100644 --- a/accumulo/src/test/scala/geotrellis/spark/io/accumulo/MockAccumuloInstance.scala +++ b/accumulo/src/test/scala/geotrellis/spark/io/accumulo/MockAccumuloInstance.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.accumulo import org.apache.accumulo.core.client._ diff --git a/cassandra/src/main/resources/reference.conf b/cassandra/src/main/resources/reference.conf index d3dc458e72..90a308827e 100644 --- a/cassandra/src/main/resources/reference.conf +++ b/cassandra/src/main/resources/reference.conf @@ -1,3 +1,17 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.cassandra { catalog = "metadata" keyspace = "geotrellis" diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraAttributeStore.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraAttributeStore.scala index cb7af757da..d213b31e33 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraAttributeStore.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraAttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionLayerReader.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionLayerReader.scala index 62c2c0a114..c98de3b831 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionLayerReader.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionReader.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionReader.scala index b859ca0ed5..00ccb4fd35 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionReader.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraCollectionReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.{Boundable, KeyBounds, LayerId} diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraInstance.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraInstance.scala index 7d0ce4e057..674a4698a4 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraInstance.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraInstance.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import com.datastax.driver.core.policies.{DCAwareRoundRobinPolicy, TokenAwarePolicy} diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerCopier.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerCopier.scala index 5d038b15ce..1dd07b3f8a 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerCopier.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerDeleter.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerDeleter.scala index 850970718a..48a4280728 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerDeleter.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.LayerId diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerHeader.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerHeader.scala index 1442091464..1e1c3ffc78 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerHeader.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.io.LayerHeader diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerManager.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerManager.scala index 5c911cb10e..025dded150 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerManager.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerMover.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerMover.scala index 0b75ee58d1..555037d8e0 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerMover.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReader.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReader.scala index 72b004ad9f..4696cd32b4 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReader.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReindexer.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReindexer.scala index 3c11460820..5c15cac3f7 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReindexer.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerUpdater.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerUpdater.scala index 3a66378bf5..7b9b690b37 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerUpdater.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerWriter.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerWriter.scala index a7cdf279bf..d829c58acb 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerWriter.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraLayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDReader.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDReader.scala index 2ffb82e935..a3824bba69 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDReader.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.{Boundable, KeyBounds, LayerId} diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDWriter.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDWriter.scala index 62d0f7a99e..4d2d7a2404 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDWriter.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraRDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.io._ diff --git a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraValueReader.scala b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraValueReader.scala index 747b9819ea..6fa7aee288 100644 --- a/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraValueReader.scala +++ b/cassandra/src/main/scala/geotrellis/spark/io/cassandra/CassandraValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.LayerId diff --git a/cassandra/src/test/scala/geotrellis/spark/CassandraTestEnvironment.scala b/cassandra/src/test/scala/geotrellis/spark/CassandraTestEnvironment.scala index ad644ea385..c890de73e6 100644 --- a/cassandra/src/test/scala/geotrellis/spark/CassandraTestEnvironment.scala +++ b/cassandra/src/test/scala/geotrellis/spark/CassandraTestEnvironment.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraAttributeStoreSpec.scala b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraAttributeStoreSpec.scala index c87d35893e..7eb1188be0 100644 --- a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraAttributeStoreSpec.scala +++ b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraAttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.spark.CassandraTestEnvironment diff --git a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpaceTimeSpec.scala b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpaceTimeSpec.scala index 266159a6e5..89fe5347f1 100644 --- a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpaceTimeSpec.scala +++ b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.raster.Tile diff --git a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpatialSpec.scala b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpatialSpec.scala index 1f148d8c62..9651e1a6c1 100644 --- a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpatialSpec.scala +++ b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.raster.Tile diff --git a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpaceTimeSpec.scala b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpaceTimeSpec.scala index 13712f92e6..a674cd9dc6 100644 --- a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpaceTimeSpec.scala +++ b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.raster.{Tile, TileFeature} diff --git a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpatialSpec.scala b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpatialSpec.scala index caf689908d..3c2e7231b8 100644 --- a/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpatialSpec.scala +++ b/cassandra/src/test/scala/geotrellis/spark/io/cassandra/CassandraTileFeatureSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.cassandra import geotrellis.raster.{Tile, TileFeature} diff --git a/doc-examples/src/main/scala/geotrellis/doc/examples/raster/MatchingRasters.scala b/doc-examples/src/main/scala/geotrellis/doc/examples/raster/MatchingRasters.scala index 89f66b320e..a6d81f2830 100644 --- a/doc-examples/src/main/scala/geotrellis/doc/examples/raster/MatchingRasters.scala +++ b/doc-examples/src/main/scala/geotrellis/doc/examples/raster/MatchingRasters.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.raster import geotrellis.proj4.CRS diff --git a/doc-examples/src/main/scala/geotrellis/doc/examples/raster/RasterExamples.scala b/doc-examples/src/main/scala/geotrellis/doc/examples/raster/RasterExamples.scala index c1eee57289..d40c1ba810 100644 --- a/doc-examples/src/main/scala/geotrellis/doc/examples/raster/RasterExamples.scala +++ b/doc-examples/src/main/scala/geotrellis/doc/examples/raster/RasterExamples.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.raster object RasterExamples { diff --git a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/ShardingKeyIndex.scala b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/ShardingKeyIndex.scala index 280ed901f3..640f374b5c 100644 --- a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/ShardingKeyIndex.scala +++ b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/ShardingKeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.spark import geotrellis.spark._ diff --git a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/SparkExamples.scala b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/SparkExamples.scala index fbbf9672f2..df75f08f59 100644 --- a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/SparkExamples.scala +++ b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/SparkExamples.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.spark object SparkExamples { diff --git a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VectorExamples.scala b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VectorExamples.scala index 9c24aec001..497bc13600 100644 --- a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VectorExamples.scala +++ b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VectorExamples.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.vector object VectorExamples { diff --git a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VoxelKey.scala b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VoxelKey.scala index 6074bc4a6d..7a8a578603 100644 --- a/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VoxelKey.scala +++ b/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VoxelKey.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.spark import geotrellis.spark._ diff --git a/doc-examples/src/test/resources/application.conf b/doc-examples/src/test/resources/application.conf index cc6b721c08..b64734006f 100644 --- a/doc-examples/src/test/resources/application.conf +++ b/doc-examples/src/test/resources/application.conf @@ -1 +1,15 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.spark.io.index.registrator="geotrellis.doc.examples.spark.ShardingKeyIndexRegistrator" diff --git a/doc-examples/src/test/scala/geotrellis/doc/examples/spark/ShardingKeyIndexSpec.scala b/doc-examples/src/test/scala/geotrellis/doc/examples/spark/ShardingKeyIndexSpec.scala index 306f1ac7b2..be1ad17c56 100644 --- a/doc-examples/src/test/scala/geotrellis/doc/examples/spark/ShardingKeyIndexSpec.scala +++ b/doc-examples/src/test/scala/geotrellis/doc/examples/spark/ShardingKeyIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.spark import geotrellis.spark._ diff --git a/doc-examples/src/test/scala/geotrellis/doc/examples/spark/SparkExamplesTests.scala b/doc-examples/src/test/scala/geotrellis/doc/examples/spark/SparkExamplesTests.scala index b210124414..7ea2dce896 100644 --- a/doc-examples/src/test/scala/geotrellis/doc/examples/spark/SparkExamplesTests.scala +++ b/doc-examples/src/test/scala/geotrellis/doc/examples/spark/SparkExamplesTests.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.doc.examples.spark import geotrellis.raster._ diff --git a/geomesa/src/main/resources/reference.conf b/geomesa/src/main/resources/reference.conf index af0b8a341b..1eb3045c89 100644 --- a/geomesa/src/main/resources/reference.conf +++ b/geomesa/src/main/resources/reference.conf @@ -1 +1,15 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.geomesa.featureTypeCacheSize=16 diff --git a/geomesa/src/main/scala/geotrellis/geomesa/geotools/FeatureToGeoMesaSimpleFeatureMethods.scala b/geomesa/src/main/scala/geotrellis/geomesa/geotools/FeatureToGeoMesaSimpleFeatureMethods.scala index fcc7687e67..6a0db6b3d2 100644 --- a/geomesa/src/main/scala/geotrellis/geomesa/geotools/FeatureToGeoMesaSimpleFeatureMethods.scala +++ b/geomesa/src/main/scala/geotrellis/geomesa/geotools/FeatureToGeoMesaSimpleFeatureMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geomesa.geotools import geotrellis.proj4.CRS diff --git a/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeoMesaImplicits.scala b/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeoMesaImplicits.scala index d576a7dd61..5e248f2cfa 100644 --- a/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeoMesaImplicits.scala +++ b/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeoMesaImplicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geomesa.geotools import geotrellis.util.MethodExtensions diff --git a/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeometryToGeoMesaSimpleFeature.scala b/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeometryToGeoMesaSimpleFeature.scala index 4e1187c8bb..c893f422fe 100644 --- a/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeometryToGeoMesaSimpleFeature.scala +++ b/geomesa/src/main/scala/geotrellis/geomesa/geotools/GeometryToGeoMesaSimpleFeature.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geomesa.geotools import geotrellis.proj4.{CRS => GCRS} diff --git a/geomesa/src/main/scala/geotrellis/geomesa/geotools/package.scala b/geomesa/src/main/scala/geotrellis/geomesa/geotools/package.scala index 858173a9e1..c0fefe9ae2 100644 --- a/geomesa/src/main/scala/geotrellis/geomesa/geotools/package.scala +++ b/geomesa/src/main/scala/geotrellis/geomesa/geotools/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geomesa package object geotools extends GeoMesaImplicits diff --git a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureReader.scala b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureReader.scala index 7e284941f6..ab74c92e2d 100644 --- a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureReader.scala +++ b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geomesa import geotrellis.geotools._ diff --git a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureWriter.scala b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureWriter.scala index 10adcfd58e..9375584490 100644 --- a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureWriter.scala +++ b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaFeatureWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geomesa import geotrellis.geomesa.geotools._ diff --git a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaInstance.scala b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaInstance.scala index beedafe03f..d16eccd757 100644 --- a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaInstance.scala +++ b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/GeoMesaInstance.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geomesa import geotrellis.spark.LayerId diff --git a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/package.scala b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/package.scala index c892c90a69..46282b21f0 100644 --- a/geomesa/src/main/scala/geotrellis/spark/io/geomesa/package.scala +++ b/geomesa/src/main/scala/geotrellis/spark/io/geomesa/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.geomesa.geotools._ diff --git a/geomesa/src/main/scala/org/locationtech/geomesa/jobs/mapreduce/GeoMesaInputFormat.scala b/geomesa/src/main/scala/org/locationtech/geomesa/jobs/mapreduce/GeoMesaInputFormat.scala index c5ca307e75..3e09b5d442 100644 --- a/geomesa/src/main/scala/org/locationtech/geomesa/jobs/mapreduce/GeoMesaInputFormat.scala +++ b/geomesa/src/main/scala/org/locationtech/geomesa/jobs/mapreduce/GeoMesaInputFormat.scala @@ -1,10 +1,18 @@ -/*********************************************************************** - * Copyright (c) 2013-2016 Commonwealth Computer Research, Inc. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Apache License, Version 2.0 - * which accompanies this distribution and is available at - * http://www.opensource.org/licenses/apache2.0.php. - *************************************************************************/ +/* + * Copyright 2016 Azavea + * + * 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. + */ package org.locationtech.geomesa.jobs.mapreduce diff --git a/geomesa/src/test/scala/geotrellis/geomesa/geotools/GeoMesaSimpleFeatureType.scala b/geomesa/src/test/scala/geotrellis/geomesa/geotools/GeoMesaSimpleFeatureType.scala index 446f329b24..08ce7c9bcd 100644 --- a/geomesa/src/test/scala/geotrellis/geomesa/geotools/GeoMesaSimpleFeatureType.scala +++ b/geomesa/src/test/scala/geotrellis/geomesa/geotools/GeoMesaSimpleFeatureType.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geomesa.geotools import geotrellis.vector.Geometry diff --git a/geomesa/src/test/scala/geotrellis/spark/io/geomesa/GeoMesaPersistenceSpec.scala b/geomesa/src/test/scala/geotrellis/spark/io/geomesa/GeoMesaPersistenceSpec.scala index b26ce23c55..3702f90843 100644 --- a/geomesa/src/test/scala/geotrellis/spark/io/geomesa/GeoMesaPersistenceSpec.scala +++ b/geomesa/src/test/scala/geotrellis/spark/io/geomesa/GeoMesaPersistenceSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geomesa import geotrellis.geomesa.geotools.{GeoMesaSimpleFeatureType, GeometryToGeoMesaSimpleFeature} diff --git a/geotools/src/main/scala/geotrellis/geotools/FeatureToSimpleFeatureMethods.scala b/geotools/src/main/scala/geotrellis/geotools/FeatureToSimpleFeatureMethods.scala index 1df7dc4dab..4c78fa26cf 100644 --- a/geotools/src/main/scala/geotrellis/geotools/FeatureToSimpleFeatureMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/FeatureToSimpleFeatureMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeature.scala b/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeature.scala index 24070f7c5c..b1552c520a 100644 --- a/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeature.scala +++ b/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeature.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeatureMethods.scala b/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeatureMethods.scala index c2e4b06aaa..587269b9ed 100644 --- a/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeatureMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/GeometryToSimpleFeatureMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConversionMethods.scala b/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConversionMethods.scala index b8d00df9de..668e445bed 100644 --- a/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConversionMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConversionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geotools import geotrellis.proj4.LatLng diff --git a/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConverters.scala b/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConverters.scala index 8ed6b6325c..e443e47951 100644 --- a/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConverters.scala +++ b/geotools/src/main/scala/geotrellis/geotools/GridCoverage2DConverters.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geotools import geotrellis.proj4.{CRS, LatLng} diff --git a/geotools/src/main/scala/geotrellis/geotools/MultibandRasterToGridCoverage2DMethods.scala b/geotools/src/main/scala/geotrellis/geotools/MultibandRasterToGridCoverage2DMethods.scala index c9a92dc652..0a3d4f014d 100644 --- a/geotools/src/main/scala/geotrellis/geotools/MultibandRasterToGridCoverage2DMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/MultibandRasterToGridCoverage2DMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geotools import geotrellis.raster._ diff --git a/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeature.scala b/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeature.scala index 9f24188ca9..1de8fe3f93 100644 --- a/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeature.scala +++ b/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeature.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeatureMethods.scala b/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeatureMethods.scala index 82d6dd72a2..d6b34f9c27 100644 --- a/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeatureMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToFeatureMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToGeometryMethods.scala b/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToGeometryMethods.scala index ba9fff346f..89b69d518e 100644 --- a/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToGeometryMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/SimpleFeatureToGeometryMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/main/scala/geotrellis/geotools/SinglebandRasterToGridCoverage2DMethods.scala b/geotools/src/main/scala/geotrellis/geotools/SinglebandRasterToGridCoverage2DMethods.scala index ec6829f76f..b53b6ca45c 100644 --- a/geotools/src/main/scala/geotrellis/geotools/SinglebandRasterToGridCoverage2DMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/SinglebandRasterToGridCoverage2DMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geotools import geotrellis.raster._ diff --git a/geotools/src/main/scala/geotrellis/geotools/ToGridCoverage2DMethods.scala b/geotools/src/main/scala/geotrellis/geotools/ToGridCoverage2DMethods.scala index 74cca1fa2f..117aa51239 100644 --- a/geotools/src/main/scala/geotrellis/geotools/ToGridCoverage2DMethods.scala +++ b/geotools/src/main/scala/geotrellis/geotools/ToGridCoverage2DMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geotools import org.geotools.coverage.grid.GridCoverage2D diff --git a/geotools/src/main/scala/geotrellis/geotools/package.scala b/geotools/src/main/scala/geotrellis/geotools/package.scala index c1ef89fc34..e93388ad06 100644 --- a/geotools/src/main/scala/geotrellis/geotools/package.scala +++ b/geotools/src/main/scala/geotrellis/geotools/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis import geotrellis.raster._ diff --git a/geotools/src/test/scala/geotrellis/geotools/FeatureToSimpleFeatureMethodsSpec.scala b/geotools/src/test/scala/geotrellis/geotools/FeatureToSimpleFeatureMethodsSpec.scala index 8a61d213e2..cee67bcf0e 100644 --- a/geotools/src/test/scala/geotrellis/geotools/FeatureToSimpleFeatureMethodsSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/FeatureToSimpleFeatureMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureMethodsSpec.scala b/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureMethodsSpec.scala index 793b7a5c95..977b2438f0 100644 --- a/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureMethodsSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureSpec.scala b/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureSpec.scala index 63efcc846e..de1cfa9c5d 100644 --- a/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/GeometryToSimpleFeatureSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/test/scala/geotrellis/geotools/GridCoverage2DConvertersSpec.scala b/geotools/src/test/scala/geotrellis/geotools/GridCoverage2DConvertersSpec.scala index 8fd0cd1ec8..9ba2ff5566 100644 --- a/geotools/src/test/scala/geotrellis/geotools/GridCoverage2DConvertersSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/GridCoverage2DConvertersSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.geotools import geotrellis.raster._ diff --git a/geotools/src/test/scala/geotrellis/geotools/RasterToGridCoverage2DSpec.scala b/geotools/src/test/scala/geotrellis/geotools/RasterToGridCoverage2DSpec.scala index 7f292866c5..2c850f79ec 100644 --- a/geotools/src/test/scala/geotrellis/geotools/RasterToGridCoverage2DSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/RasterToGridCoverage2DSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureMethodsSpec.scala b/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureMethodsSpec.scala index 4044d3edb6..266cfbcab9 100644 --- a/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureMethodsSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureSpec.scala b/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureSpec.scala index b19b6053a1..f8b9138977 100644 --- a/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToFeatureSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToGeometryMethodsSpec.scala b/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToGeometryMethodsSpec.scala index 168a656e96..ae4848591a 100644 --- a/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToGeometryMethodsSpec.scala +++ b/geotools/src/test/scala/geotrellis/geotools/SimpleFeatureToGeometryMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReader.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReader.scala index 32b6bc06eb..7585e5902f 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReader.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.geotools._ diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDWriter.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDWriter.scala index 60b6776bad..e332608c4d 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDWriter.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.geotools._ diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveAttributeStore.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveAttributeStore.scala index b27f96a24f..d78dd16005 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveAttributeStore.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveAttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.geotools._ diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerReader.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerReader.scala index 6f6545fb2b..8b356625f0 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerReader.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.geotools._ diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerWriter.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerWriter.scala index b57716a0de..30319f8388 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerWriter.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveLayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.geotools._ diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveUtil.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveUtil.scala index 1c6a77b3a1..cae3aa828e 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveUtil.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/GeowaveUtil.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.util.annotations.experimental diff --git a/geowave/src/main/scala/geotrellis/spark/io/geowave/SerializablePersistable.scala b/geowave/src/main/scala/geotrellis/spark/io/geowave/SerializablePersistable.scala index 3da4daf7fa..1a749fc1a1 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/geowave/SerializablePersistable.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/geowave/SerializablePersistable.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.util.annotations.experimental diff --git a/geowave/src/main/scala/geotrellis/spark/io/kryo/GeowaveKryoRegistrator.scala b/geowave/src/main/scala/geotrellis/spark/io/kryo/GeowaveKryoRegistrator.scala index 861599df10..fbfb1ca71e 100644 --- a/geowave/src/main/scala/geotrellis/spark/io/kryo/GeowaveKryoRegistrator.scala +++ b/geowave/src/main/scala/geotrellis/spark/io/kryo/GeowaveKryoRegistrator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.kryo import geotrellis.util.annotations.experimental diff --git a/geowave/src/test/scala/geotrellis/spark/GeowaveTestEnvironment.scala b/geowave/src/test/scala/geotrellis/spark/GeowaveTestEnvironment.scala index 7de993474c..126539b851 100644 --- a/geowave/src/test/scala/geotrellis/spark/GeowaveTestEnvironment.scala +++ b/geowave/src/test/scala/geotrellis/spark/GeowaveTestEnvironment.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/geowave/src/test/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReaderSpec.scala b/geowave/src/test/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReaderSpec.scala index b54b44ff9f..2538df3734 100644 --- a/geowave/src/test/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReaderSpec.scala +++ b/geowave/src/test/scala/geotrellis/spark/io/geowave/GeoWaveFeatureRDDReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.spark._ diff --git a/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveAttributeStoreSpec.scala b/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveAttributeStoreSpec.scala index adb79cde79..64f1289171 100644 --- a/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveAttributeStoreSpec.scala +++ b/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveAttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.spark.io.AttributeStoreSpec diff --git a/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveSpatialSpec.scala b/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveSpatialSpec.scala index 9c01f77ce7..86e655c806 100644 --- a/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveSpatialSpec.scala +++ b/geowave/src/test/scala/geotrellis/spark/io/geowave/GeowaveSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.geowave import geotrellis.raster.Tile diff --git a/hbase/src/main/resources/reference.conf b/hbase/src/main/resources/reference.conf index 3b60c12f09..76ce6906ef 100644 --- a/hbase/src/main/resources/reference.conf +++ b/hbase/src/main/resources/reference.conf @@ -1 +1,15 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.hbase.catalog = "metadata" diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseAttributeStore.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseAttributeStore.scala index e8d81edf0b..53c6971c8b 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseAttributeStore.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseAttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import com.typesafe.config.ConfigFactory diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionLayerReader.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionLayerReader.scala index fdedcadbda..ead6f5e739 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionLayerReader.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionReader.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionReader.scala index fa95c14f4f..a7fd64bb60 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionReader.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseCollectionReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.io.avro.codecs.KeyValueRecordCodec diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseInstance.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseInstance.scala index f676166637..c929074b76 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseInstance.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseInstance.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import org.apache.hadoop.hbase.{HBaseConfiguration, TableName} diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseKeyEncoder.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseKeyEncoder.scala index d2eaf93daa..1c5b95e959 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseKeyEncoder.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseKeyEncoder.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerCopier.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerCopier.scala index 5ae685f6cf..21b80aef3e 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerCopier.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerDeleter.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerDeleter.scala index 2e45a9ae95..f7a93dfa70 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerDeleter.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.LayerId diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerHeader.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerHeader.scala index 81a0f4f7a1..46a7bb7417 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerHeader.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.io.LayerHeader diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerManager.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerManager.scala index a18834c3b0..0ddc6d8eb2 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerManager.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerMover.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerMover.scala index 173a8ef740..17ba8e1374 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerMover.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReader.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReader.scala index 94dcc36b85..f8e47f5df9 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReader.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReindexer.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReindexer.scala index 1ca20dfd71..62e1b16983 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReindexer.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerUpdater.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerUpdater.scala index 25877ffce8..78c351902e 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerUpdater.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerWriter.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerWriter.scala index 313d3d318d..1d93bc03ac 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerWriter.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseLayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark._ diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDReader.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDReader.scala index acebc375ab..cdaa00f39b 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDReader.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.io.avro.codecs.KeyValueRecordCodec diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDWriter.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDWriter.scala index 0e68d85a71..fa3e8a20f4 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDWriter.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseRDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.LayerId diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseValueReader.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseValueReader.scala index ecfc1bb801..fd2ad12df7 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseValueReader.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/HBaseValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.LayerId diff --git a/hbase/src/main/scala/geotrellis/spark/io/hbase/package.scala b/hbase/src/main/scala/geotrellis/spark/io/hbase/package.scala index a00b86a4c7..1d9f4f040f 100644 --- a/hbase/src/main/scala/geotrellis/spark/io/hbase/package.scala +++ b/hbase/src/main/scala/geotrellis/spark/io/hbase/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import org.apache.hadoop.hbase.TableName diff --git a/hbase/src/test/scala/geotrellis/spark/HBaseTestEnvironment.scala b/hbase/src/test/scala/geotrellis/spark/HBaseTestEnvironment.scala index 8c21f509e4..bdb5487860 100644 --- a/hbase/src/test/scala/geotrellis/spark/HBaseTestEnvironment.scala +++ b/hbase/src/test/scala/geotrellis/spark/HBaseTestEnvironment.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseAttributeStoreSpec.scala b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseAttributeStoreSpec.scala index 60bfc1faf1..a8494cf9a1 100644 --- a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseAttributeStoreSpec.scala +++ b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseAttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.spark.HBaseTestEnvironment diff --git a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpaceTimeSpec.scala b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpaceTimeSpec.scala index 8139541567..ceec14073e 100644 --- a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpaceTimeSpec.scala +++ b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.raster.Tile diff --git a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpatialSpec.scala b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpatialSpec.scala index 8aa54d1f3c..1949f9cc75 100644 --- a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpatialSpec.scala +++ b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.raster.Tile diff --git a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpaceTimeSpec.scala b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpaceTimeSpec.scala index 02ab789c85..e3413a5b4e 100644 --- a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpaceTimeSpec.scala +++ b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.raster.{Tile, TileFeature} diff --git a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpatialSpec.scala b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpatialSpec.scala index 34123fd4ea..37b5e8a892 100644 --- a/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpatialSpec.scala +++ b/hbase/src/test/scala/geotrellis/spark/io/hbase/HBaseTileFeatureSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hbase import geotrellis.raster.{Tile, TileFeature} diff --git a/proj4/src/main/java/org/osgeo/proj4j/BasicCoordinateTransform.java b/proj4/src/main/java/org/osgeo/proj4j/BasicCoordinateTransform.java index b2cd5a93f3..58faf79883 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/BasicCoordinateTransform.java +++ b/proj4/src/main/java/org/osgeo/proj4j/BasicCoordinateTransform.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import org.osgeo.proj4j.datum.*; diff --git a/proj4/src/main/java/org/osgeo/proj4j/CRSFactory.java b/proj4/src/main/java/org/osgeo/proj4j/CRSFactory.java index 4f6feeb7c1..33c5801b9f 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/CRSFactory.java +++ b/proj4/src/main/java/org/osgeo/proj4j/CRSFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import org.osgeo.proj4j.io.Proj4FileReader; diff --git a/proj4/src/main/java/org/osgeo/proj4j/ConvergenceFailureException.java b/proj4/src/main/java/org/osgeo/proj4j/ConvergenceFailureException.java index 8f51098b9b..1a54f90020 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/ConvergenceFailureException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/ConvergenceFailureException.java @@ -1,3 +1,18 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j; diff --git a/proj4/src/main/java/org/osgeo/proj4j/CoordinateReferenceSystem.java b/proj4/src/main/java/org/osgeo/proj4j/CoordinateReferenceSystem.java index aece33e793..5be207b467 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/CoordinateReferenceSystem.java +++ b/proj4/src/main/java/org/osgeo/proj4j/CoordinateReferenceSystem.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import org.osgeo.proj4j.datum.Datum; diff --git a/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransform.java b/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransform.java index 76d62bf3b1..ece093dc05 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransform.java +++ b/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransform.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import org.osgeo.proj4j.datum.*; diff --git a/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransformFactory.java b/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransformFactory.java index bd18d48250..3778f00085 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransformFactory.java +++ b/proj4/src/main/java/org/osgeo/proj4j/CoordinateTransformFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import org.osgeo.proj4j.datum.Datum; diff --git a/proj4/src/main/java/org/osgeo/proj4j/InvalidValueException.java b/proj4/src/main/java/org/osgeo/proj4j/InvalidValueException.java index 0d994a911d..306208892c 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/InvalidValueException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/InvalidValueException.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; /** diff --git a/proj4/src/main/java/org/osgeo/proj4j/NotFoundException.java b/proj4/src/main/java/org/osgeo/proj4j/NotFoundException.java index bb508f0c46..9c1a897522 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/NotFoundException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/NotFoundException.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; /** diff --git a/proj4/src/main/java/org/osgeo/proj4j/Proj4jException.java b/proj4/src/main/java/org/osgeo/proj4j/Proj4jException.java index 97a31f6384..f3639f3e44 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/Proj4jException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/Proj4jException.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; /** diff --git a/proj4/src/main/java/org/osgeo/proj4j/ProjCoordinate.java b/proj4/src/main/java/org/osgeo/proj4j/ProjCoordinate.java index cb8c06bcce..64005841c5 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/ProjCoordinate.java +++ b/proj4/src/main/java/org/osgeo/proj4j/ProjCoordinate.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import java.text.DecimalFormat; diff --git a/proj4/src/main/java/org/osgeo/proj4j/ProjectionException.java b/proj4/src/main/java/org/osgeo/proj4j/ProjectionException.java index f45e2d0bc3..0ed6cbe8d7 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/ProjectionException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/ProjectionException.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j; diff --git a/proj4/src/main/java/org/osgeo/proj4j/Registry.java b/proj4/src/main/java/org/osgeo/proj4j/Registry.java index 40793cead9..fe3369e81b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/Registry.java +++ b/proj4/src/main/java/org/osgeo/proj4j/Registry.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j; import java.util.HashMap; diff --git a/proj4/src/main/java/org/osgeo/proj4j/UnknownAuthorityCodeException.java b/proj4/src/main/java/org/osgeo/proj4j/UnknownAuthorityCodeException.java index 51d79b805c..a75a732568 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/UnknownAuthorityCodeException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/UnknownAuthorityCodeException.java @@ -1,3 +1,18 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j; diff --git a/proj4/src/main/java/org/osgeo/proj4j/UnsupportedParameterException.java b/proj4/src/main/java/org/osgeo/proj4j/UnsupportedParameterException.java index cec57c4dc3..8b0b2040f3 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/UnsupportedParameterException.java +++ b/proj4/src/main/java/org/osgeo/proj4j/UnsupportedParameterException.java @@ -1,3 +1,18 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/AxisOrder.java b/proj4/src/main/java/org/osgeo/proj4j/datum/AxisOrder.java index 86f8012df6..858336e5e5 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/AxisOrder.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/AxisOrder.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.datum; import org.osgeo.proj4j.ProjCoordinate; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/CTABLEV2.java b/proj4/src/main/java/org/osgeo/proj4j/datum/CTABLEV2.java index 7b938d5e27..783bad471e 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/CTABLEV2.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/CTABLEV2.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.datum; import java.io.DataInputStream; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/Datum.java b/proj4/src/main/java/org/osgeo/proj4j/datum/Datum.java index 92c61b3a6a..ca60ab841b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/Datum.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/Datum.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.datum; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/Ellipsoid.java b/proj4/src/main/java/org/osgeo/proj4j/datum/Ellipsoid.java index 6c89d4b2a2..2e75d212ba 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/Ellipsoid.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/Ellipsoid.java @@ -1,17 +1,17 @@ /* -Copyright 2006 Jerry Huxtable - -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. + * Copyright 2016 Martin Davis, Azavea + * + * 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. */ package org.osgeo.proj4j.datum; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/GeocentricConverter.java b/proj4/src/main/java/org/osgeo/proj4j/datum/GeocentricConverter.java index 72ca40d666..aa3a2a3ebb 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/GeocentricConverter.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/GeocentricConverter.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.datum; import org.osgeo.proj4j.ProjCoordinate; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/Grid.java b/proj4/src/main/java/org/osgeo/proj4j/datum/Grid.java index 53d5103e53..dc94b16250 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/Grid.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/Grid.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.datum; import java.io.File; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/NTV1.java b/proj4/src/main/java/org/osgeo/proj4j/datum/NTV1.java index e829dfb712..97332b8a77 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/NTV1.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/NTV1.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.datum; import java.io.DataInputStream; diff --git a/proj4/src/main/java/org/osgeo/proj4j/datum/PrimeMeridian.java b/proj4/src/main/java/org/osgeo/proj4j/datum/PrimeMeridian.java index 0675134f88..b2bdb7c72c 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/datum/PrimeMeridian.java +++ b/proj4/src/main/java/org/osgeo/proj4j/datum/PrimeMeridian.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.datum; import java.io.Serializable; diff --git a/proj4/src/main/java/org/osgeo/proj4j/io/Proj4FileReader.java b/proj4/src/main/java/org/osgeo/proj4j/io/Proj4FileReader.java index f26503dc77..2ee9df6ff5 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/io/Proj4FileReader.java +++ b/proj4/src/main/java/org/osgeo/proj4j/io/Proj4FileReader.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.io; import java.io.BufferedReader; diff --git a/proj4/src/main/java/org/osgeo/proj4j/parser/DatumParameters.java b/proj4/src/main/java/org/osgeo/proj4j/parser/DatumParameters.java index 48b949d20a..f678fabdf1 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/parser/DatumParameters.java +++ b/proj4/src/main/java/org/osgeo/proj4j/parser/DatumParameters.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.parser; import org.osgeo.proj4j.CoordinateReferenceSystem; diff --git a/proj4/src/main/java/org/osgeo/proj4j/parser/ParameterUtil.java b/proj4/src/main/java/org/osgeo/proj4j/parser/ParameterUtil.java index c17e25b2fe..3c23b2a1cc 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/parser/ParameterUtil.java +++ b/proj4/src/main/java/org/osgeo/proj4j/parser/ParameterUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.parser; import org.osgeo.proj4j.units.Angle; diff --git a/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Keyword.java b/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Keyword.java index bfa5328fbe..ecc42970d0 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Keyword.java +++ b/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Keyword.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.parser; import java.util.*; diff --git a/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Parser.java b/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Parser.java index b5a5542c14..4a0618f611 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Parser.java +++ b/proj4/src/main/java/org/osgeo/proj4j/parser/Proj4Parser.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.parser; import java.io.IOException; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/AiryProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/AiryProjection.java index 59b3a237a6..32e1d95c7b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/AiryProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/AiryProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/AitoffProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/AitoffProjection.java index ffed304c2d..1f69ac658c 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/AitoffProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/AitoffProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/AlbersProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/AlbersProjection.java index 5fdb151c01..460e33274d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/AlbersProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/AlbersProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/AugustProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/AugustProjection.java index fdd99cff02..c27ba6585a 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/AugustProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/AugustProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/AzimuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/AzimuthalProjection.java index 7f51147232..2811202ec8 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/AzimuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/AzimuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/BipolarProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/BipolarProjection.java index ed7009f168..d0046b577f 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/BipolarProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/BipolarProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/BoggsProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/BoggsProjection.java index 05938356dc..954fb9464c 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/BoggsProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/BoggsProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/BonneProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/BonneProjection.java index 5d46463217..423038935e 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/BonneProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/BonneProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/CassiniProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/CassiniProjection.java index 318058538b..ded5765581 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/CassiniProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/CassiniProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/CentralCylindricalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/CentralCylindricalProjection.java index ddba969e6c..8c78d58a61 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/CentralCylindricalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/CentralCylindricalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/CollignonProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/CollignonProjection.java index 0d2bb353fb..4a5676e753 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/CollignonProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/CollignonProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/ConicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/ConicProjection.java index 514adf0fdc..4b69377e95 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/ConicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/ConicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/CrasterProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/CrasterProjection.java index 3990bc0d25..304d67174e 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/CrasterProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/CrasterProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalEqualAreaProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalEqualAreaProjection.java index 103ba7ca18..5c5220e1a9 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalEqualAreaProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalEqualAreaProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalProjection.java index 0e2ac1f2ac..6b0935b599 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/CylindricalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/DenoyerProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/DenoyerProjection.java index 396e549baa..3ad610bdac 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/DenoyerProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/DenoyerProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert1Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert1Projection.java index 567e0b1ee3..d4bb01ef62 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert1Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert1Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert2Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert2Projection.java index 6b346000db..4ef30f6aee 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert2Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert2Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert4Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert4Projection.java index 5be1350265..0f8e0605dc 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert4Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert4Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert5Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert5Projection.java index f9e95691b1..52f3dc18b9 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert5Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert5Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert6Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert6Projection.java index 462e769330..aa51469c43 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert6Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Eckert6Projection.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + /* Copyright 2011 Martin Davis diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaAzimuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaAzimuthalProjection.java index e608404418..dff3e87621 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaAzimuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaAzimuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaCylindricalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaCylindricalProjection.java index f95c8ba499..77237c757d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaCylindricalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/EqualAreaCylindricalProjection.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.proj; import org.osgeo.proj4j.ProjCoordinate; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantAzimuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantAzimuthalProjection.java index 795a25b179..7766659fe9 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantAzimuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantAzimuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantConicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantConicProjection.java index 8fbd28693a..9ceb4894ef 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantConicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/EquidistantConicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/EulerProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/EulerProjection.java index 2ee18f3f2a..9323171392 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/EulerProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/EulerProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/FaheyProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/FaheyProjection.java index bc05121c4a..14709ff4ce 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/FaheyProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/FaheyProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautProjection.java index ca7895b66f..783fe46601 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautSinusoidalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautSinusoidalProjection.java index d0887589ff..3efce6ca6d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautSinusoidalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/FoucautSinusoidalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/GallProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/GallProjection.java index c8db8832ba..5438c53fda 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/GallProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/GallProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/GaussProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/GaussProjection.java index 145818e97e..73db368942 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/GaussProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/GaussProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Ginsburg8Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Ginsburg8Projection.java index d14d1c1737..63f825127b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Ginsburg8Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Ginsburg8Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/GnomonicAzimuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/GnomonicAzimuthalProjection.java index 525a801b27..2b2205cdd1 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/GnomonicAzimuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/GnomonicAzimuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/GoodeProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/GoodeProjection.java index 467c8d5317..9f92787725 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/GoodeProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/GoodeProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/HammerProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/HammerProjection.java index 381b5b556b..91dab19166 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/HammerProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/HammerProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/HatanoProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/HatanoProjection.java index 8a0df5f335..d9650ed5a1 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/HatanoProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/HatanoProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/KavraiskyVProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/KavraiskyVProjection.java index 841c7d5250..1df9bfbbd5 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/KavraiskyVProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/KavraiskyVProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/KrovakProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/KrovakProjection.java index 412c846e8c..6b1bee1ae2 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/KrovakProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/KrovakProjection.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.proj; import org.osgeo.proj4j.ProjCoordinate; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LagrangeProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LagrangeProjection.java index 92b5ad734b..dc535c5115 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LagrangeProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LagrangeProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LambertAzimuthalEqualAreaProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LambertAzimuthalEqualAreaProjection.java index fdef07768a..27f2e96158 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LambertAzimuthalEqualAreaProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LambertAzimuthalEqualAreaProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LambertConformalConicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LambertConformalConicProjection.java index 3093f7a31b..781aabc9ca 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LambertConformalConicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LambertConformalConicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LambertEqualAreaConicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LambertEqualAreaConicProjection.java index 69b06de26c..83fe086cd5 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LambertEqualAreaConicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LambertEqualAreaConicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LandsatProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LandsatProjection.java index d5fde28409..99660d2a4d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LandsatProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LandsatProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LarriveeProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LarriveeProjection.java index 018a6468ba..aee81fb2ee 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LarriveeProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LarriveeProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LaskowskiProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LaskowskiProjection.java index 1993e660e8..f55703eeec 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LaskowskiProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LaskowskiProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LinearProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LinearProjection.java index 8b49cf5584..3c5f427e09 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LinearProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LinearProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LongLatProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LongLatProjection.java index e20847e63c..210832cc03 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LongLatProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LongLatProjection.java @@ -1,18 +1,18 @@ /* - Copyright 2006 Jerry Huxtable - - 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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/LoximuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/LoximuthalProjection.java index 872b0bbc0e..aa0e629d12 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/LoximuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/LoximuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java index 2e4b4d7d2c..6439cd2a5b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarParabolicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java index 7cc0aed2ec..4442a971ea 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarQuarticProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine1Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine1Projection.java index a01dbb0d35..4ea81d72d8 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine1Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine1Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java index d7c702e33f..c2f7668aa2 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/McBrydeThomasFlatPolarSine2Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/MercatorProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/MercatorProjection.java index 57e4231fbb..67840f1e03 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/MercatorProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/MercatorProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/MillerProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/MillerProjection.java index 8d5dad8ded..416742425f 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/MillerProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/MillerProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/ModStereoProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/ModStereoProjection.java index 6d12cf8cb7..baa4c0ca3e 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/ModStereoProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/ModStereoProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/MolleweideProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/MolleweideProjection.java index da9ed314c6..a4f54bba53 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/MolleweideProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/MolleweideProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch1Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch1Projection.java index 3ea15fd2f2..8e7e89da80 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch1Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch1Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch2Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch2Projection.java index 77ecf2b6e5..0398b34c20 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch2Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch2Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch3Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch3Projection.java index 474ceca5c2..390cbad663 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch3Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Murdoch3Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/NellHProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/NellHProjection.java index 00ddc1a38b..329547baf3 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/NellHProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/NellHProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/NellProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/NellProjection.java index 6ee194ebb9..2dd5b720a3 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/NellProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/NellProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/NewZealandMapGridProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/NewZealandMapGridProjection.java index 65ce712d78..75ebfba017 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/NewZealandMapGridProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/NewZealandMapGridProjection.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.proj; import org.osgeo.proj4j.ProjCoordinate; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/NicolosiProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/NicolosiProjection.java index be8f706ad2..cac70505c2 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/NicolosiProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/NicolosiProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/NullProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/NullProjection.java index b55a0e229c..8863d62665 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/NullProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/NullProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueMercatorProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueMercatorProjection.java index db05757a3d..04031bdbbb 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueMercatorProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueMercatorProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueStereographicAlternativeProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueStereographicAlternativeProjection.java index 10746bcba8..1246f4df96 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueStereographicAlternativeProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/ObliqueStereographicAlternativeProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/OrthographicAzimuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/OrthographicAzimuthalProjection.java index 3d06caec49..8d5298d881 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/OrthographicAzimuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/OrthographicAzimuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveConicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveConicProjection.java index f240d9bb3b..a22f731bfa 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveConicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveConicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveProjection.java index d16524e9ab..0d27f16a61 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PerspectiveProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PlateCarreeProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PlateCarreeProjection.java index 27f885fc0a..ee24378f08 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PlateCarreeProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PlateCarreeProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PolyconicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PolyconicProjection.java index ddeb54b5d5..4febcfa492 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PolyconicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PolyconicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Projection.java index 2537b51384..c6503b639d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Projection.java @@ -1,18 +1,18 @@ /* - Copyright 2006 Jerry Huxtable - - 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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PseudoCylindricalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PseudoCylindricalProjection.java index bc06538194..f85f87830f 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PseudoCylindricalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PseudoCylindricalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.proj; diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP2Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP2Projection.java index 57f084b818..271f7ea529 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP2Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP2Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP4Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP4Projection.java index 2a3a47b030..bed110e611 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP4Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP4Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5PProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5PProjection.java index dedf6932dd..3dddcc0d8b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5PProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5PProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5Projection.java index 60d487f265..be496765cf 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/PutninsP5Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/QuarticAuthalicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/QuarticAuthalicProjection.java index ad2d5e0f0b..04a21d44ab 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/QuarticAuthalicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/QuarticAuthalicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/RectangularPolyconicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/RectangularPolyconicProjection.java index 5cd3f12ee8..ef42cb8bba 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/RectangularPolyconicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/RectangularPolyconicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/RobinsonProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/RobinsonProjection.java index 0a11906868..311abbf397 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/RobinsonProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/RobinsonProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/SimpleConicProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/SimpleConicProjection.java index 41c0c68985..d0031ec022 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/SimpleConicProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/SimpleConicProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/SineTangentSeriesProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/SineTangentSeriesProjection.java index 880c22d9dc..79f3b29999 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/SineTangentSeriesProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/SineTangentSeriesProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/SinusoidalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/SinusoidalProjection.java index 1b84f457c1..8ebeb557d3 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/SinusoidalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/SinusoidalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/StereographicAzimuthalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/StereographicAzimuthalProjection.java index e8e7ff1a12..482559928a 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/StereographicAzimuthalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/StereographicAzimuthalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/SwissObliqueMercatorProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/SwissObliqueMercatorProjection.java index 7905833584..363e8d1992 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/SwissObliqueMercatorProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/SwissObliqueMercatorProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Martin Davis - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was converted from the PROJ.4 source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/TissotProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/TissotProjection.java index 15475d4863..3ccc223775 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/TissotProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/TissotProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseCylindricalEqualArea.java b/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseCylindricalEqualArea.java index effb54df53..f30f9d133d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseCylindricalEqualArea.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseCylindricalEqualArea.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseMercatorProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseMercatorProjection.java index 278cbeb83a..052d6a49a8 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseMercatorProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/TransverseMercatorProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/TranverseCentralCylindricalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/TranverseCentralCylindricalProjection.java index d0291640e8..918fd53a32 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/TranverseCentralCylindricalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/TranverseCentralCylindricalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java index eec1c18514..6b8b0d6a69 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/UrmaevFlatPolarSinusoidalProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/VanDerGrintenProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/VanDerGrintenProjection.java index 1e8fa22292..c1a89af8bd 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/VanDerGrintenProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/VanDerGrintenProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/VitkovskyProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/VitkovskyProjection.java index d0b633953d..b61f264028 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/VitkovskyProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/VitkovskyProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner1Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner1Projection.java index ce00f07a19..9e4ba7bc93 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner1Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner1Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner2Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner2Projection.java index ce71895d91..d1b244d27c 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner2Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner2Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner3Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner3Projection.java index 53bbcbc1bd..333da0b6cf 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner3Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner3Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner4Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner4Projection.java index b7227ef1d7..c2d4cc13b7 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner4Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner4Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner5Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner5Projection.java index 59628f6df3..9d6afdbdc6 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner5Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner5Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner7Projection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner7Projection.java index c988e51792..3c72641bb5 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner7Projection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/Wagner7Projection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/WerenskioldProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/WerenskioldProjection.java index 6a2e5a7718..4cb29e9d81 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/WerenskioldProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/WerenskioldProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/proj/WinkelTripelProjection.java b/proj4/src/main/java/org/osgeo/proj4j/proj/WinkelTripelProjection.java index 110b511195..a56e14038f 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/proj/WinkelTripelProjection.java +++ b/proj4/src/main/java/org/osgeo/proj4j/proj/WinkelTripelProjection.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ /* * This file was semi-automatically converted from the public-domain USGS PROJ source. diff --git a/proj4/src/main/java/org/osgeo/proj4j/units/Angle.java b/proj4/src/main/java/org/osgeo/proj4j/units/Angle.java index 79921b53dd..6a82800255 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/units/Angle.java +++ b/proj4/src/main/java/org/osgeo/proj4j/units/Angle.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.units; import org.osgeo.proj4j.util.ProjectionMath; diff --git a/proj4/src/main/java/org/osgeo/proj4j/units/AngleFormat.java b/proj4/src/main/java/org/osgeo/proj4j/units/AngleFormat.java index adb570f96b..f36909a2d9 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/units/AngleFormat.java +++ b/proj4/src/main/java/org/osgeo/proj4j/units/AngleFormat.java @@ -1,18 +1,18 @@ /* - Copyright 2006 Jerry Huxtable - - 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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.units; diff --git a/proj4/src/main/java/org/osgeo/proj4j/units/DegreeUnit.java b/proj4/src/main/java/org/osgeo/proj4j/units/DegreeUnit.java index db897dd705..1a38400e1d 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/units/DegreeUnit.java +++ b/proj4/src/main/java/org/osgeo/proj4j/units/DegreeUnit.java @@ -1,18 +1,18 @@ /* - Copyright 2006 Jerry Huxtable - - 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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.units; diff --git a/proj4/src/main/java/org/osgeo/proj4j/units/Unit.java b/proj4/src/main/java/org/osgeo/proj4j/units/Unit.java index 5c9c7f77fa..c77984f560 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/units/Unit.java +++ b/proj4/src/main/java/org/osgeo/proj4j/units/Unit.java @@ -1,18 +1,18 @@ /* - Copyright 2006 Jerry Huxtable - - 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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.units; diff --git a/proj4/src/main/java/org/osgeo/proj4j/units/Units.java b/proj4/src/main/java/org/osgeo/proj4j/units/Units.java index a9ab58216a..accbc51029 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/units/Units.java +++ b/proj4/src/main/java/org/osgeo/proj4j/units/Units.java @@ -1,18 +1,18 @@ /* - Copyright 2006 Jerry Huxtable - - 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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.units; diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/CRSCache.java b/proj4/src/main/java/org/osgeo/proj4j/util/CRSCache.java index b21aebbb6d..217ba82188 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/CRSCache.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/CRSCache.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.util; import java.util.HashMap; diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/Complex.java b/proj4/src/main/java/org/osgeo/proj4j/util/Complex.java index d8e44034c7..d02498bae8 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/Complex.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/Complex.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.util; public final class Complex { diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/FloatPolarCoordinate.java b/proj4/src/main/java/org/osgeo/proj4j/util/FloatPolarCoordinate.java index bc76907aad..79ee86771e 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/FloatPolarCoordinate.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/FloatPolarCoordinate.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.util; import java.io.Serializable; diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/IntPolarCoordinate.java b/proj4/src/main/java/org/osgeo/proj4j/util/IntPolarCoordinate.java index 9b143bba59..3de2441154 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/IntPolarCoordinate.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/IntPolarCoordinate.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.util; import java.io.Serializable; diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/PolarCoordinate.java b/proj4/src/main/java/org/osgeo/proj4j/util/PolarCoordinate.java index b0846dbffb..2acaffe63b 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/PolarCoordinate.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/PolarCoordinate.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.util; import java.io.Serializable; diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionMath.java b/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionMath.java index 1ee4b21629..382a4af686 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionMath.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionMath.java @@ -1,18 +1,18 @@ /* -Copyright 2006 Jerry Huxtable - -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. -*/ + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ package org.osgeo.proj4j.util; diff --git a/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionUtil.java b/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionUtil.java index b6e30a46de..710434d7df 100644 --- a/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionUtil.java +++ b/proj4/src/main/java/org/osgeo/proj4j/util/ProjectionUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Martin Davis, Azavea + * + * 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. + */ + package org.osgeo.proj4j.util; import org.osgeo.proj4j.ProjCoordinate; diff --git a/proj4/src/main/scala/geotrellis/proj4/CRS.scala b/proj4/src/main/scala/geotrellis/proj4/CRS.scala index 94e5de534c..a4e5d929d0 100644 --- a/proj4/src/main/scala/geotrellis/proj4/CRS.scala +++ b/proj4/src/main/scala/geotrellis/proj4/CRS.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import geotrellis.proj4.io.wkt.WKT diff --git a/proj4/src/main/scala/geotrellis/proj4/ConusAlbers.scala b/proj4/src/main/scala/geotrellis/proj4/ConusAlbers.scala index 19b6745f3d..cb430eb932 100644 --- a/proj4/src/main/scala/geotrellis/proj4/ConusAlbers.scala +++ b/proj4/src/main/scala/geotrellis/proj4/ConusAlbers.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 object ConusAlbers extends CRS { diff --git a/proj4/src/main/scala/geotrellis/proj4/EPSGCSVReader.scala b/proj4/src/main/scala/geotrellis/proj4/EPSGCSVReader.scala index ed93cf0de7..2ce3140279 100644 --- a/proj4/src/main/scala/geotrellis/proj4/EPSGCSVReader.scala +++ b/proj4/src/main/scala/geotrellis/proj4/EPSGCSVReader.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/proj4/src/main/scala/geotrellis/proj4/LatLng.scala b/proj4/src/main/scala/geotrellis/proj4/LatLng.scala index c25bf94f76..509b80c4ce 100644 --- a/proj4/src/main/scala/geotrellis/proj4/LatLng.scala +++ b/proj4/src/main/scala/geotrellis/proj4/LatLng.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 object LatLng extends CRS { diff --git a/proj4/src/main/scala/geotrellis/proj4/Memoize.scala b/proj4/src/main/scala/geotrellis/proj4/Memoize.scala index cdd22f5fe4..84d70f1959 100644 --- a/proj4/src/main/scala/geotrellis/proj4/Memoize.scala +++ b/proj4/src/main/scala/geotrellis/proj4/Memoize.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import java.util.concurrent.ConcurrentHashMap; diff --git a/proj4/src/main/scala/geotrellis/proj4/Transform.scala b/proj4/src/main/scala/geotrellis/proj4/Transform.scala index 765e8bbf4f..dcf0f371a8 100644 --- a/proj4/src/main/scala/geotrellis/proj4/Transform.scala +++ b/proj4/src/main/scala/geotrellis/proj4/Transform.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/main/scala/geotrellis/proj4/WebMercator.scala b/proj4/src/main/scala/geotrellis/proj4/WebMercator.scala index cf7049d54d..04312962d8 100644 --- a/proj4/src/main/scala/geotrellis/proj4/WebMercator.scala +++ b/proj4/src/main/scala/geotrellis/proj4/WebMercator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 object WebMercator extends CRS { diff --git a/proj4/src/main/scala/geotrellis/proj4/io/wkt/WKT.scala b/proj4/src/main/scala/geotrellis/proj4/io/wkt/WKT.scala index 0889465b3f..dc02c36cf7 100644 --- a/proj4/src/main/scala/geotrellis/proj4/io/wkt/WKT.scala +++ b/proj4/src/main/scala/geotrellis/proj4/io/wkt/WKT.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4.io.wkt import geotrellis.proj4.Memoize diff --git a/proj4/src/main/scala/geotrellis/proj4/package.scala b/proj4/src/main/scala/geotrellis/proj4/package.scala index 676571a40d..307564dcfd 100644 --- a/proj4/src/main/scala/geotrellis/proj4/package.scala +++ b/proj4/src/main/scala/geotrellis/proj4/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis package object proj4 { diff --git a/proj4/src/main/scala/geotrellis/proj4/util/UTM.scala b/proj4/src/main/scala/geotrellis/proj4/util/UTM.scala index a42f587b52..c2bf7ed4e3 100644 --- a/proj4/src/main/scala/geotrellis/proj4/util/UTM.scala +++ b/proj4/src/main/scala/geotrellis/proj4/util/UTM.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4.util import geotrellis.proj4._ diff --git a/proj4/src/test/scala/geotrellis/proj4/BaseCoordinateTransformTest.scala b/proj4/src/test/scala/geotrellis/proj4/BaseCoordinateTransformTest.scala index 5b8e1453d2..b4dc5fe6a0 100644 --- a/proj4/src/test/scala/geotrellis/proj4/BaseCoordinateTransformTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/BaseCoordinateTransformTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/CRSTest.scala b/proj4/src/test/scala/geotrellis/proj4/CRSTest.scala index eb1a1c3367..b3e274aa9e 100644 --- a/proj4/src/test/scala/geotrellis/proj4/CRSTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/CRSTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.scalatest._ diff --git a/proj4/src/test/scala/geotrellis/proj4/CSVRecordParser.scala b/proj4/src/test/scala/geotrellis/proj4/CSVRecordParser.scala index 1a768ccee3..52b0a308e5 100644 --- a/proj4/src/test/scala/geotrellis/proj4/CSVRecordParser.scala +++ b/proj4/src/test/scala/geotrellis/proj4/CSVRecordParser.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 /** diff --git a/proj4/src/test/scala/geotrellis/proj4/CoordainteTransformTester.scala b/proj4/src/test/scala/geotrellis/proj4/CoordainteTransformTester.scala index 9ed384b06e..01dcb17d25 100644 --- a/proj4/src/test/scala/geotrellis/proj4/CoordainteTransformTester.scala +++ b/proj4/src/test/scala/geotrellis/proj4/CoordainteTransformTester.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/CoordinateTransformTest.scala b/proj4/src/test/scala/geotrellis/proj4/CoordinateTransformTest.scala index b44abe786a..7c2953bc01 100644 --- a/proj4/src/test/scala/geotrellis/proj4/CoordinateTransformTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/CoordinateTransformTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/ExampleTest.scala b/proj4/src/test/scala/geotrellis/proj4/ExampleTest.scala index 25f011778c..f2bed1d70b 100644 --- a/proj4/src/test/scala/geotrellis/proj4/ExampleTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/ExampleTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/FeatureTest.scala b/proj4/src/test/scala/geotrellis/proj4/FeatureTest.scala index 06f44d0a1e..71c09ca6c5 100644 --- a/proj4/src/test/scala/geotrellis/proj4/FeatureTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/FeatureTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/GenerateTestCases.scala b/proj4/src/test/scala/geotrellis/proj4/GenerateTestCases.scala index 9bc6cb8e8f..b019080d2a 100644 --- a/proj4/src/test/scala/geotrellis/proj4/GenerateTestCases.scala +++ b/proj4/src/test/scala/geotrellis/proj4/GenerateTestCases.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import scala.sys.process._ diff --git a/proj4/src/test/scala/geotrellis/proj4/MetaCRSTest.scala b/proj4/src/test/scala/geotrellis/proj4/MetaCRSTest.scala index cef4f5afad..4f866dff5f 100644 --- a/proj4/src/test/scala/geotrellis/proj4/MetaCRSTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/MetaCRSTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/MetaCRSTestFileReader.scala b/proj4/src/test/scala/geotrellis/proj4/MetaCRSTestFileReader.scala index a7f0560769..f3dac5a313 100644 --- a/proj4/src/test/scala/geotrellis/proj4/MetaCRSTestFileReader.scala +++ b/proj4/src/test/scala/geotrellis/proj4/MetaCRSTestFileReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import java.io.File diff --git a/proj4/src/test/scala/geotrellis/proj4/Proj4JTest.scala b/proj4/src/test/scala/geotrellis/proj4/Proj4JTest.scala index 9ae56dce51..419c33146a 100644 --- a/proj4/src/test/scala/geotrellis/proj4/Proj4JTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/Proj4JTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/Proj4VariousTest.scala b/proj4/src/test/scala/geotrellis/proj4/Proj4VariousTest.scala index 98eb6d9625..2ae2a69647 100644 --- a/proj4/src/test/scala/geotrellis/proj4/Proj4VariousTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/Proj4VariousTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/RepeatedTransformTest.scala b/proj4/src/test/scala/geotrellis/proj4/RepeatedTransformTest.scala index ff14d5a720..c3400a52c2 100644 --- a/proj4/src/test/scala/geotrellis/proj4/RepeatedTransformTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/RepeatedTransformTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/TransformFailures.scala b/proj4/src/test/scala/geotrellis/proj4/TransformFailures.scala index 4ca26255df..4cbd2fb86c 100644 --- a/proj4/src/test/scala/geotrellis/proj4/TransformFailures.scala +++ b/proj4/src/test/scala/geotrellis/proj4/TransformFailures.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4 import org.osgeo.proj4j._ diff --git a/proj4/src/test/scala/geotrellis/proj4/io/wkt/WKTTest.scala b/proj4/src/test/scala/geotrellis/proj4/io/wkt/WKTTest.scala index daef9a9dcf..3a15adb0b7 100644 --- a/proj4/src/test/scala/geotrellis/proj4/io/wkt/WKTTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/io/wkt/WKTTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4.io.wkt import org.scalatest.FunSpec diff --git a/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridRoundTripper.scala b/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridRoundTripper.scala index db607d2be0..76ca8c1dd2 100644 --- a/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridRoundTripper.scala +++ b/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridRoundTripper.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4.proj import org.osgeo.proj4j.proj._ diff --git a/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridTest.scala b/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridTest.scala index 37bcd6b226..ad705c3320 100644 --- a/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridTest.scala +++ b/proj4/src/test/scala/geotrellis/proj4/proj/ProjectionGridTest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.proj4.proj import org.osgeo.proj4j.proj._ diff --git a/raster-test/src/test/scala/geotrellis/raster/ArrayTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/ArrayTileSpec.scala index 4871005aa6..75f5895359 100644 --- a/raster-test/src/test/scala/geotrellis/raster/ArrayTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/ArrayTileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/BitArrayRasterDataSpec.scala b/raster-test/src/test/scala/geotrellis/raster/BitArrayRasterDataSpec.scala index 13268ab92d..c688634d3c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/BitArrayRasterDataSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/BitArrayRasterDataSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/CellTypeSpec.scala b/raster-test/src/test/scala/geotrellis/raster/CellTypeSpec.scala index 970586239d..ec7c11e241 100644 --- a/raster-test/src/test/scala/geotrellis/raster/CellTypeSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/CellTypeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/CompositeTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/CompositeTileSpec.scala index 1c10e473bd..4f1e116f5a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/CompositeTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/CompositeTileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/CroppedTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/CroppedTileSpec.scala index b816202cf4..a42bea2a91 100644 --- a/raster-test/src/test/scala/geotrellis/raster/CroppedTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/CroppedTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.testkit._ diff --git a/raster-test/src/test/scala/geotrellis/raster/DelayedConversionMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/DelayedConversionMultibandTileSpec.scala index 990135b8a2..b25be4a5a6 100644 --- a/raster-test/src/test/scala/geotrellis/raster/DelayedConversionMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/DelayedConversionMultibandTileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/DelayedConversionTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/DelayedConversionTileSpec.scala index d9c54ef277..cebb7a7692 100644 --- a/raster-test/src/test/scala/geotrellis/raster/DelayedConversionTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/DelayedConversionTileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/DoubleArrayTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/DoubleArrayTileSpec.scala index ba06098c91..77683e0d6b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/DoubleArrayTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/DoubleArrayTileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/DoubleConstantTileTest.scala b/raster-test/src/test/scala/geotrellis/raster/DoubleConstantTileTest.scala index 1ed0abbaae..259b8728e3 100644 --- a/raster-test/src/test/scala/geotrellis/raster/DoubleConstantTileTest.scala +++ b/raster-test/src/test/scala/geotrellis/raster/DoubleConstantTileTest.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/GridBoundsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/GridBoundsSpec.scala index 9b8b48537a..1f7d26b6ca 100644 --- a/raster-test/src/test/scala/geotrellis/raster/GridBoundsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/GridBoundsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/IntConstantTileTest.scala b/raster-test/src/test/scala/geotrellis/raster/IntConstantTileTest.scala index 9d6aa20b0e..208444fd4a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/IntConstantTileTest.scala +++ b/raster-test/src/test/scala/geotrellis/raster/IntConstantTileTest.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/MultibandCombinersSpec.scala b/raster-test/src/test/scala/geotrellis/raster/MultibandCombinersSpec.scala index e5831a86fc..27920eed93 100644 --- a/raster-test/src/test/scala/geotrellis/raster/MultibandCombinersSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/MultibandCombinersSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.testkit._ diff --git a/raster-test/src/test/scala/geotrellis/raster/PackageTest.scala b/raster-test/src/test/scala/geotrellis/raster/PackageTest.scala index 01f292c7f3..307855faff 100644 --- a/raster-test/src/test/scala/geotrellis/raster/PackageTest.scala +++ b/raster-test/src/test/scala/geotrellis/raster/PackageTest.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/RasterExtentSpec.scala b/raster-test/src/test/scala/geotrellis/raster/RasterExtentSpec.scala index 964e47f145..8a6ec4ccaf 100644 --- a/raster-test/src/test/scala/geotrellis/raster/RasterExtentSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/RasterExtentSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/TestFiles.scala b/raster-test/src/test/scala/geotrellis/raster/TestFiles.scala index a164db0afe..6beebba2ef 100644 --- a/raster-test/src/test/scala/geotrellis/raster/TestFiles.scala +++ b/raster-test/src/test/scala/geotrellis/raster/TestFiles.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.io.arg.ArgReader diff --git a/raster-test/src/test/scala/geotrellis/raster/TileExtentsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/TileExtentsSpec.scala index dd2b34d246..deef896b18 100644 --- a/raster-test/src/test/scala/geotrellis/raster/TileExtentsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/TileExtentsSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/TileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/TileSpec.scala index 2bfa3b99e5..d49e6cd2ef 100644 --- a/raster-test/src/test/scala/geotrellis/raster/TileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/TileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceSpec.scala b/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceSpec.scala index 714d5e81ae..6b5db3febc 100644 --- a/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceWithPathsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceWithPathsSpec.scala index b1326287c0..14d28d4413 100644 --- a/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceWithPathsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/costdistance/CostDistanceWithPathsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.costdistance import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/crop/SinglebandTileCropMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/crop/SinglebandTileCropMethodsSpec.scala index eba35160dd..2e339899c9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/crop/SinglebandTileCropMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/crop/SinglebandTileCropMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/density/KernelDensitySpec.scala b/raster-test/src/test/scala/geotrellis/raster/density/KernelDensitySpec.scala index 0f83648720..9aa466cce4 100644 --- a/raster-test/src/test/scala/geotrellis/raster/density/KernelDensitySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/density/KernelDensitySpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/distance/EuclideanDistanceTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/distance/EuclideanDistanceTileSpec.scala index bdbe7bb5ae..f2687b8583 100644 --- a/raster-test/src/test/scala/geotrellis/raster/distance/EuclideanDistanceTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/distance/EuclideanDistanceTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.distance import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/equalization/HistogramEqualizationSpec.scala b/raster-test/src/test/scala/geotrellis/raster/equalization/HistogramEqualizationSpec.scala index 8ce6310176..24054d4776 100644 --- a/raster-test/src/test/scala/geotrellis/raster/equalization/HistogramEqualizationSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/equalization/HistogramEqualizationSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/histogram/FastMapHistogramSpec.scala b/raster-test/src/test/scala/geotrellis/raster/histogram/FastMapHistogramSpec.scala index ad2dff4199..ad16eeb807 100644 --- a/raster-test/src/test/scala/geotrellis/raster/histogram/FastMapHistogramSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/histogram/FastMapHistogramSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/histogram/HistogramSpec.scala b/raster-test/src/test/scala/geotrellis/raster/histogram/HistogramSpec.scala index 583d211b97..54e87216b0 100644 --- a/raster-test/src/test/scala/geotrellis/raster/histogram/HistogramSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/histogram/HistogramSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/histogram/StreamingHistogramSpec.scala b/raster-test/src/test/scala/geotrellis/raster/histogram/StreamingHistogramSpec.scala index 56ba34c698..bfb093acdb 100644 --- a/raster-test/src/test/scala/geotrellis/raster/histogram/StreamingHistogramSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/histogram/StreamingHistogramSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/hydrology/AccumulationSpec.scala b/raster-test/src/test/scala/geotrellis/raster/hydrology/AccumulationSpec.scala index 75dee81302..b1ae4c188e 100644 --- a/raster-test/src/test/scala/geotrellis/raster/hydrology/AccumulationSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/hydrology/AccumulationSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/hydrology/FillSpec.scala b/raster-test/src/test/scala/geotrellis/raster/hydrology/FillSpec.scala index 0924ec00fd..a8481c62a1 100644 --- a/raster-test/src/test/scala/geotrellis/raster/hydrology/FillSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/hydrology/FillSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/hydrology/FlowDirectionSpec.scala b/raster-test/src/test/scala/geotrellis/raster/hydrology/FlowDirectionSpec.scala index fdbe95f4b4..9b2ed79690 100644 --- a/raster-test/src/test/scala/geotrellis/raster/hydrology/FlowDirectionSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/hydrology/FlowDirectionSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedSpec.scala b/raster-test/src/test/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedSpec.scala index e54af54b6a..9a5cb68055 100755 --- a/raster-test/src/test/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.interpolation import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/interpolation/KrigingSpec.scala b/raster-test/src/test/scala/geotrellis/raster/interpolation/KrigingSpec.scala index ec857faf66..dac73b65d7 100644 --- a/raster-test/src/test/scala/geotrellis/raster/interpolation/KrigingSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/interpolation/KrigingSpec.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster-test/src/test/scala/geotrellis/raster/io/ArgTest.scala b/raster-test/src/test/scala/geotrellis/raster/io/ArgTest.scala index bbe75af114..58fbd010b0 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/ArgTest.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/ArgTest.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/io/FilesystemSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/FilesystemSpec.scala index 72a4e6b3fb..0838d8df2b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/FilesystemSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/FilesystemSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgReaderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgReaderSpec.scala index f92caa39a2..b79c12a399 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgReaderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgReaderSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgTest.scala b/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgTest.scala index 3691b45945..1a8e6cce7a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgTest.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/arg/ArgTest.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/io/arg/BoolTest.scala b/raster-test/src/test/scala/geotrellis/raster/io/arg/BoolTest.scala index df976e30a4..ad7ac0b537 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/arg/BoolTest.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/arg/BoolTest.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ArrayMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ArrayMultibandTileSpec.scala index 99ef2c5d23..448d222a39 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ArrayMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ArrayMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + import geotrellis.raster._ import geotrellis.raster.testkit._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BigTiffSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BigTiffSpec.scala index 8626f2138c..616c16f6dd 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BigTiffSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BigTiffSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTileSpec.scala index ac94c2d260..f7aa650d33 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffTileSpec.scala index e4f2c5fdfc..155dacaf98 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/BitGeoTiffTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/CroppedWindowedGeoTiffSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/CroppedWindowedGeoTiffSpec.scala index 2af3bc2a40..7b9033b87f 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/CroppedWindowedGeoTiffSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/CroppedWindowedGeoTiffSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTileSpec.scala index ab579e7a0e..37dddbcebf 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTileSpec.scala index d60edccc59..c4954e57c3 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTileSpec.scala index 00ebcb3e82..5d2222493a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffTestUtils.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffTestUtils.scala index ef1ad8f207..76ff3d3639 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffTestUtils.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/GeoTiffTestUtils.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTileSpec.scala index 8bbc9c68f1..383a29692e 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTileSpec.scala index 6e52f42576..dad613f40a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/MultibandCropIteratorSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/MultibandCropIteratorSpec.scala index 3a40c7ab05..cc81770fec 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/MultibandCropIteratorSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/MultibandCropIteratorSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SegmentBytesSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SegmentBytesSpec.scala index a116e35177..c5378f5e50 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SegmentBytesSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SegmentBytesSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SinglebandCropIteratorSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SinglebandCropIteratorSpec.scala index bb04517942..3743ae2bc3 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SinglebandCropIteratorSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/SinglebandCropIteratorSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTileSpec.scala index ae913f1e3b..97c07a4b40 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTileSpec.scala index 635629e788..c8f3d8cdd2 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTileSpec.scala index 7898520356..a1e84ee2dd 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster.testkit.{RasterMatchers, TileBuilders} diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTileSpec.scala index 3fb2d2b305..3133d46cd6 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ZipArchive.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ZipArchive.scala index 77f800bfa5..a6d6f76fcd 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ZipArchive.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/ZipArchive.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import java.util.zip.ZipFile diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/compression/CompressionSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/compression/CompressionSpec.scala index 99e635805b..3692593dc5 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/compression/CompressionSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/compression/CompressionSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReaderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReaderSpec.scala index e858b57df2..83bffa97f7 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReaderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReaderSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffTileSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffTileSpec.scala index b843d92cff..33bb4052f9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffTileSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/GeoTiffTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.reader import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/MultibandGeoTiffReaderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/MultibandGeoTiffReaderSpec.scala index a786f7955e..aceb8ad6d9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/MultibandGeoTiffReaderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/MultibandGeoTiffReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.reader import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/PredictorGeoTiffReaderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/PredictorGeoTiffReaderSpec.scala index 3e75efdf36..15b43b948a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/PredictorGeoTiffReaderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/PredictorGeoTiffReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.reader import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/SinglebandGeoTiffReaderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/SinglebandGeoTiffReaderSpec.scala index 22d505156f..1a4c1873dc 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/SinglebandGeoTiffReaderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/reader/SinglebandGeoTiffReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.reader import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriterSpec.scala b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriterSpec.scala index 4feed26638..7f5f6654ca 100644 --- a/raster-test/src/test/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriterSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriterSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/AspectSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/AspectSpec.scala index 94a93ebc3b..c6f656145b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/AspectSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/AspectSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConvolveSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConvolveSpec.scala index ad515873e2..44fdbe881c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConvolveSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConvolveSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConwaySpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConwaySpec.scala index feb013f71e..32160b6fb9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConwaySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ConwaySpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorMaskSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorMaskSpec.scala index b80e9b6729..19b5b7191d 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorMaskSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorMaskSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorSpec.scala index 0df236d287..0d2ead343d 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/CursorSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalStrategySpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalStrategySpec.scala index 61dbb1246d..e867d400a7 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalStrategySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalStrategySpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalTestUtils.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalTestUtils.scala index 10bce35c17..f47e05a182 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalTestUtils.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/FocalTestUtils.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MaxSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MaxSpec.scala index 7c98c635b5..b617d7769c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MaxSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MaxSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MeanSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MeanSpec.scala index 89e12fb101..2c9a6fe82c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MeanSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MeanSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MedianSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MedianSpec.scala index ed2da2fa29..0ada7d85a0 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MedianSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MedianSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MinSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MinSpec.scala index 958a7fcb78..96ee212703 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MinSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MinSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ModeSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ModeSpec.scala index 3ac25d972e..cadc214578 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ModeSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/ModeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import org.scalatest._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MoranSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MoranSpec.scala index 093fa20431..fa7d3cf7e4 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MoranSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/MoranSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/NeighborhoodSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/NeighborhoodSpec.scala index a5cff0f8b4..fdb4d2ef7f 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/NeighborhoodSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/NeighborhoodSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/StandardDeviationSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/StandardDeviationSpec.scala index a59a597567..a0d499eec7 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/StandardDeviationSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/StandardDeviationSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/SumSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/SumSpec.scala index 01c4ab7005..5d37d147c0 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/SumSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/SumSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.vector.Extent diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/TestCursor.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/TestCursor.scala index 0a78f2ab45..31dca203e2 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/TestCursor.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/TestCursor.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeSpec.scala index 128493ef9e..757e913c4c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculationSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculationSpec.scala index 7415419484..a139d9461f 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculationSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculationSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AbsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AbsSpec.scala index 042c0b670c..f79b66d7df 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AbsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AbsSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AcosSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AcosSpec.scala index 852b8ec3bc..8b2ef6d550 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AcosSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AcosSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AddSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AddSpec.scala index 2f38e88bed..2e45a149cd 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AddSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AddSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AndSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AndSpec.scala index 30e401f7f9..256c3e622f 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AndSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AndSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AsinSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AsinSpec.scala index 7102f27fab..683bfd514a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AsinSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AsinSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/Atan2Spec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/Atan2Spec.scala index 9cf7b6cc97..07cc706cd4 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/Atan2Spec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/Atan2Spec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AtanSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AtanSpec.scala index 3f5c9c2fcd..3f8ef0d3bb 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AtanSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/AtanSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CeilSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CeilSpec.scala index 87b235c360..5088a4dcd6 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CeilSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CeilSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CosSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CosSpec.scala index c0778e76f3..6736c738c7 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CosSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CosSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CoshSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CoshSpec.scala index ccc2fddf0c..f3cec57023 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CoshSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/CoshSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DefinedSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DefinedSpec.scala index 105b7ca1ee..39b74ef398 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DefinedSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DefinedSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DivideSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DivideSpec.scala index 076f3ca1bf..600e88ace2 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DivideSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/DivideSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/EqualSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/EqualSpec.scala index f522fe192d..d5d83e8d99 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/EqualSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/EqualSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/FloorSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/FloorSpec.scala index 58fa4da951..5e1b250b88 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/FloorSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/FloorSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqualSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqualSpec.scala index badc2d08ad..1602a0e379 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqualSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqualSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterSpec.scala index 31f0fd4832..cb15ba4842 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/GreaterSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/InverseMaskSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/InverseMaskSpec.scala index df0f66b9b3..271c3f8dea 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/InverseMaskSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/InverseMaskSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessOrEqualSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessOrEqualSpec.scala index be328c7b11..a67436c28b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessOrEqualSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessOrEqualSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessSpec.scala index e5802d3f06..e696b556f0 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LessSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LocalMapSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LocalMapSpec.scala index f82d81f595..ca48a251f3 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LocalMapSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LocalMapSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LogSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LogSpec.scala index 2f77ac048c..2058f8746c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LogSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/LogSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MajoritySpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MajoritySpec.scala index f99ffcf7ea..a42e2f7a77 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MajoritySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MajoritySpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxNSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxNSpec.scala index f21c40a6bd..35e6f7e472 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxNSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxNSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxSpec.scala index 80fbcfe403..558e1e6c13 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MaxSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MeanSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MeanSpec.scala index 4795d394da..b19eb10939 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MeanSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MeanSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinNSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinNSpec.scala index ac2f29ce3a..2c4547aaaf 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinNSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinNSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinSpec.scala index 3f023671dd..c456b937a6 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinoritySpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinoritySpec.scala index 803b8609a0..fb0db2d18a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinoritySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MinoritySpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MultiplySpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MultiplySpec.scala index ad1df1332b..14df9d7c45 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MultiplySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/MultiplySpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NegateSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NegateSpec.scala index a5108e9cac..f6d414f393 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NegateSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NegateSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NotSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NotSpec.scala index d64ada72da..75e34415c1 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NotSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/NotSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/OrSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/OrSpec.scala index 3afdbdd4b5..e66308f301 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/OrSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/OrSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/PowSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/PowSpec.scala index 54b622a77e..aabd1050f9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/PowSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/PowSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/RoundSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/RoundSpec.scala index 8337abfee7..bd3161fd23 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/RoundSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/RoundSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinSpec.scala index 7e93a89358..b634b8b734 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinhSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinhSpec.scala index 57c93e0fdf..2a10d3046b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinhSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SinhSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SqrtSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SqrtSpec.scala index 01132cdfca..bce3db4e43 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SqrtSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SqrtSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SubtractSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SubtractSpec.scala index 91f4e28a99..c3fea25089 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SubtractSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/SubtractSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanSpec.scala index 9dcccff31b..3e0b9fe1b0 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanhSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanhSpec.scala index 6401fa35af..96fe43aab8 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanhSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/TanhSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UndefinedSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UndefinedSpec.scala index ec0c87dc0f..0f4ecfed51 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UndefinedSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UndefinedSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UnequalSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UnequalSpec.scala index 8ef6ba3c59..bda8518929 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UnequalSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/UnequalSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarianceSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarianceSpec.scala index a08b358c41..ff4b82ae0a 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarianceSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarianceSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.local import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarietySpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarietySpec.scala index 65913e4446..64d3640d0c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarietySpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/VarietySpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/XorSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/XorSpec.scala index b3a218da16..0cffcb0093 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/XorSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/XorSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/conditionalSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/conditionalSpec.scala index f076495a2a..c9a95bee8e 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/conditionalSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/local/conditionalSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistogramSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistogramSpec.scala index 257b69bbf3..ffcae2811b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistogramSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistogramSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentageSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentageSpec.scala index 5ccb04f56a..032255dbcc 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentageSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentageSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalStatisticsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalStatisticsSpec.scala index 13e4829691..7ae330cb9b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalStatisticsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mapalgebra/zonal/ZonalStatisticsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/mask/MultibandTileMaskMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mask/MultibandTileMaskMethodsSpec.scala index b29010d2df..acf7549f6f 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mask/MultibandTileMaskMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mask/MultibandTileMaskMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mask import geotrellis.raster.testkit._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mask/SinglebandTileMaskMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mask/SinglebandTileMaskMethodsSpec.scala index 9f1f8f12cb..175393486e 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mask/SinglebandTileMaskMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mask/SinglebandTileMaskMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/matching/HistogramMatchingSpec.scala b/raster-test/src/test/scala/geotrellis/raster/matching/HistogramMatchingSpec.scala index a1decc3268..d60cdc20ea 100644 --- a/raster-test/src/test/scala/geotrellis/raster/matching/HistogramMatchingSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/matching/HistogramMatchingSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/merge/TileMergeMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/merge/TileMergeMethodsSpec.scala index cadccc9ba3..fe7cdc72a5 100644 --- a/raster-test/src/test/scala/geotrellis/raster/merge/TileMergeMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/merge/TileMergeMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.merge import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/mosaic/MosaicSpec.scala b/raster-test/src/test/scala/geotrellis/raster/mosaic/MosaicSpec.scala index 0bf51c44dc..a4bd973ac9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/mosaic/MosaicSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/mosaic/MosaicSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mosaic import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/prototype/TilePrototypeMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/prototype/TilePrototypeMethodsSpec.scala index c6aa10ebbd..281cbd761d 100644 --- a/raster-test/src/test/scala/geotrellis/raster/prototype/TilePrototypeMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/prototype/TilePrototypeMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.prototype import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizeMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizeMethodsSpec.scala index 7c45678101..cd0d298452 100644 --- a/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizeMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizeMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizerSpec.scala b/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizerSpec.scala index edd6e8aad4..67cfae77c8 100644 --- a/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizerSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/rasterize/RasterizerSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/rasterize/extent/ExtentRasterizerSpec.scala b/raster-test/src/test/scala/geotrellis/raster/rasterize/extent/ExtentRasterizerSpec.scala index 7cb05ba1f5..0a9ad05549 100644 --- a/raster-test/src/test/scala/geotrellis/raster/rasterize/extent/ExtentRasterizerSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/rasterize/extent/ExtentRasterizerSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizerSpec.scala b/raster-test/src/test/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizerSpec.scala index 6575ccc3e8..0f65097bd9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizerSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizerSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/regiongroup/RegionGroupSpec.scala b/raster-test/src/test/scala/geotrellis/raster/regiongroup/RegionGroupSpec.scala index a555d43fdd..039057d4d5 100644 --- a/raster-test/src/test/scala/geotrellis/raster/regiongroup/RegionGroupSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/regiongroup/RegionGroupSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/ColorMapSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/ColorMapSpec.scala index 7cbc5d8bd5..a87641ca19 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/ColorMapSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/ColorMapSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/ColorRampSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/ColorRampSpec.scala index 8622e9c9e8..06c0a49448 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/ColorRampSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/ColorRampSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/ColorRasterSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/ColorRasterSpec.scala index ba935eeeb4..e4fb375e83 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/ColorRasterSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/ColorRasterSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/ColorSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/ColorSpec.scala index c44e0cd1aa..10dcffa5a7 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/ColorSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/ColorSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/GetColorBreaksSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/GetColorBreaksSpec.scala index 8f1e039976..08d3a89299 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/GetColorBreaksSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/GetColorBreaksSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/RenderMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/RenderMethodsSpec.scala index 471599fb6b..ed5b3d1e92 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/RenderMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/RenderMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/render/jpg/EncoderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/jpg/EncoderSpec.scala index 590f7b4f1d..a39c80b4ee 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/jpg/EncoderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/jpg/EncoderSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/render/jpg/RenderJpgTests.scala b/raster-test/src/test/scala/geotrellis/raster/render/jpg/RenderJpgTests.scala index 61009870b7..bc80358042 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/jpg/RenderJpgTests.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/jpg/RenderJpgTests.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render.jpg import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/render/png/EncoderSpec.scala b/raster-test/src/test/scala/geotrellis/raster/render/png/EncoderSpec.scala index fe9b68aef7..74c0f36092 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/png/EncoderSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/png/EncoderSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/render/png/RenderPngTests.scala b/raster-test/src/test/scala/geotrellis/raster/render/png/RenderPngTests.scala index ff7f80060c..b86983fb5c 100644 --- a/raster-test/src/test/scala/geotrellis/raster/render/png/RenderPngTests.scala +++ b/raster-test/src/test/scala/geotrellis/raster/render/png/RenderPngTests.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render.png import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectRasterExtentSpec.scala b/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectRasterExtentSpec.scala index 0e7955e7f8..b517234032 100644 --- a/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectRasterExtentSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectRasterExtentSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.proj4._ diff --git a/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectSpec.scala b/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectSpec.scala index a745377e0b..6868b8b1b3 100644 --- a/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/reproject/ReprojectSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformCheck.scala b/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformCheck.scala index 16d8ded77b..8cc201f9d5 100644 --- a/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformCheck.scala +++ b/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformCheck.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.proj4._ diff --git a/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformSpec.scala b/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformSpec.scala index 09cc9b34b2..e4bf8adcd4 100644 --- a/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/reproject/RowTransformSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/AggregateResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/AggregateResampleSpec.scala index cff6a28d6c..8eebce8771 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/AggregateResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/AggregateResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/AverageResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/AverageResampleSpec.scala index 231dfa2599..270eff6867 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/AverageResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/AverageResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/BicubicConvolutionResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/BicubicConvolutionResampleSpec.scala index 034bc684e9..0bc63cd660 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/BicubicConvolutionResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/BicubicConvolutionResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/BicubicResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/BicubicResampleSpec.scala index 40aae32a6c..9572c88402 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/BicubicResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/BicubicResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/BicubicSplineResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/BicubicSplineResampleSpec.scala index 6bb637f12c..a9ed611979 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/BicubicSplineResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/BicubicSplineResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/BilinearResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/BilinearResampleSpec.scala index cdb795f35c..005646b0ac 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/BilinearResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/BilinearResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/CubicResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/CubicResampleSpec.scala index 482bfc1f0c..9e033854f5 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/CubicResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/CubicResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/LanczosResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/LanczosResampleSpec.scala index ffe83dcbf0..f79ece7a9b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/LanczosResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/LanczosResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/MaxResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/MaxResampleSpec.scala index a8002d9442..2def2b59d5 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/MaxResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/MaxResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/MedianResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/MedianResampleSpec.scala index 887c8f1a74..105a674d4b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/MedianResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/MedianResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/MinResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/MinResampleSpec.scala index 8d9d9b08a1..e7287c94dd 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/MinResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/MinResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/ModeResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/ModeResampleSpec.scala index 916a1e9ec0..e4989159d2 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/ModeResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/ModeResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/NearestNeighborSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/NearestNeighborSpec.scala index f5932eee63..ab1977078e 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/NearestNeighborSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/NearestNeighborSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/resample/ResampleSpec.scala b/raster-test/src/test/scala/geotrellis/raster/resample/ResampleSpec.scala index 831a4bbb68..633f6981b2 100644 --- a/raster-test/src/test/scala/geotrellis/raster/resample/ResampleSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/resample/ResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/sigmoidal/SigmoidalContrastSpec.scala b/raster-test/src/test/scala/geotrellis/raster/sigmoidal/SigmoidalContrastSpec.scala index e9dd8c5ed5..3ae0ad0360 100644 --- a/raster-test/src/test/scala/geotrellis/raster/sigmoidal/SigmoidalContrastSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/sigmoidal/SigmoidalContrastSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/split/MultibandTileSplitMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/split/MultibandTileSplitMethodsSpec.scala index e96e59955a..9cf732d291 100644 --- a/raster-test/src/test/scala/geotrellis/raster/split/MultibandTileSplitMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/split/MultibandTileSplitMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/split/RasterSplitMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/split/RasterSplitMethodsSpec.scala index d8a8d290c5..a7ace86cd9 100644 --- a/raster-test/src/test/scala/geotrellis/raster/split/RasterSplitMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/split/RasterSplitMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/stitch/StitcherSpec.scala b/raster-test/src/test/scala/geotrellis/raster/stitch/StitcherSpec.scala index 69eb0e528f..1402680fcf 100644 --- a/raster-test/src/test/scala/geotrellis/raster/stitch/StitcherSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/stitch/StitcherSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.stitch import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/summary/StatsMethodsSpec.scala b/raster-test/src/test/scala/geotrellis/raster/summary/StatsMethodsSpec.scala index f4042e9eed..e92c26dc88 100644 --- a/raster-test/src/test/scala/geotrellis/raster/summary/StatsMethodsSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/summary/StatsMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/HistogramSpec.scala b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/HistogramSpec.scala index 475e5df8be..19440acf8e 100644 --- a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/HistogramSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/HistogramSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MaxSpec.scala b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MaxSpec.scala index f93f08ec1e..b98469ca1b 100644 --- a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MaxSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MaxSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MeanSpec.scala b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MeanSpec.scala index e988cd9994..579b99d054 100644 --- a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MeanSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MeanSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MinSpec.scala b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MinSpec.scala index ae0c537f43..62216ecfde 100644 --- a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MinSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/MinSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/SumSpec.scala b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/SumSpec.scala index 382ab1aa4f..86debdafdd 100644 --- a/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/SumSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/summary/polygonal/SumSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster-test/src/test/scala/geotrellis/raster/vectorize/VectorizeSpec.scala b/raster-test/src/test/scala/geotrellis/raster/vectorize/VectorizeSpec.scala index 37d275440c..aa079344ae 100644 --- a/raster-test/src/test/scala/geotrellis/raster/vectorize/VectorizeSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/vectorize/VectorizeSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-test/src/test/scala/geotrellis/raster/viewshed/ApproxViewshedSpec.scala b/raster-test/src/test/scala/geotrellis/raster/viewshed/ApproxViewshedSpec.scala index 6e4d0b88e3..3b38063506 100644 --- a/raster-test/src/test/scala/geotrellis/raster/viewshed/ApproxViewshedSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/viewshed/ApproxViewshedSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.viewshed import geotrellis.raster._ diff --git a/raster-test/src/test/scala/geotrellis/raster/viewshed/ViewshedSpec.scala b/raster-test/src/test/scala/geotrellis/raster/viewshed/ViewshedSpec.scala index a82925da0d..3de7321177 100644 --- a/raster-test/src/test/scala/geotrellis/raster/viewshed/ViewshedSpec.scala +++ b/raster-test/src/test/scala/geotrellis/raster/viewshed/ViewshedSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.viewshed import geotrellis.raster._ diff --git a/raster-testkit/src/main/scala/geotrellis/raster/testkit/RasterMatchers.scala b/raster-testkit/src/main/scala/geotrellis/raster/testkit/RasterMatchers.scala index d26e841cc4..9a50872c4a 100644 --- a/raster-testkit/src/main/scala/geotrellis/raster/testkit/RasterMatchers.scala +++ b/raster-testkit/src/main/scala/geotrellis/raster/testkit/RasterMatchers.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster-testkit/src/main/scala/geotrellis/raster/testkit/TileBuilders.scala b/raster-testkit/src/main/scala/geotrellis/raster/testkit/TileBuilders.scala index 886db17f6f..c32387e34e 100644 --- a/raster-testkit/src/main/scala/geotrellis/raster/testkit/TileBuilders.scala +++ b/raster-testkit/src/main/scala/geotrellis/raster/testkit/TileBuilders.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/ArrayMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/ArrayMultibandTile.scala index de16966c4c..220b6efe98 100644 --- a/raster/src/main/scala/geotrellis/raster/ArrayMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/ArrayMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.summary._ diff --git a/raster/src/main/scala/geotrellis/raster/ArrayTile.scala b/raster/src/main/scala/geotrellis/raster/ArrayTile.scala index a32b468f13..8f9108f430 100644 --- a/raster/src/main/scala/geotrellis/raster/ArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/ArrayTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/BitArrayTile.scala b/raster/src/main/scala/geotrellis/raster/BitArrayTile.scala index 214bdf3704..f084ad3047 100644 --- a/raster/src/main/scala/geotrellis/raster/BitArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/BitArrayTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/ByteArrayTile.scala b/raster/src/main/scala/geotrellis/raster/ByteArrayTile.scala index 9e7407e8df..e073525065 100644 --- a/raster/src/main/scala/geotrellis/raster/ByteArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/ByteArrayTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster diff --git a/raster/src/main/scala/geotrellis/raster/CellGrid.scala b/raster/src/main/scala/geotrellis/raster/CellGrid.scala index ca72974db5..7b5c4f659f 100644 --- a/raster/src/main/scala/geotrellis/raster/CellGrid.scala +++ b/raster/src/main/scala/geotrellis/raster/CellGrid.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster diff --git a/raster/src/main/scala/geotrellis/raster/CellSet.scala b/raster/src/main/scala/geotrellis/raster/CellSet.scala index f63746438d..82f7b2a13b 100644 --- a/raster/src/main/scala/geotrellis/raster/CellSet.scala +++ b/raster/src/main/scala/geotrellis/raster/CellSet.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster diff --git a/raster/src/main/scala/geotrellis/raster/CellSize.scala b/raster/src/main/scala/geotrellis/raster/CellSize.scala index 37a3be613d..bbdc73441c 100644 --- a/raster/src/main/scala/geotrellis/raster/CellSize.scala +++ b/raster/src/main/scala/geotrellis/raster/CellSize.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.vector.Extent diff --git a/raster/src/main/scala/geotrellis/raster/CellType.scala b/raster/src/main/scala/geotrellis/raster/CellType.scala index ba66100850..a409b27463 100644 --- a/raster/src/main/scala/geotrellis/raster/CellType.scala +++ b/raster/src/main/scala/geotrellis/raster/CellType.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/CompositeTile.scala b/raster/src/main/scala/geotrellis/raster/CompositeTile.scala index d946eb9fae..698868f7a7 100644 --- a/raster/src/main/scala/geotrellis/raster/CompositeTile.scala +++ b/raster/src/main/scala/geotrellis/raster/CompositeTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/Connectivity.scala b/raster/src/main/scala/geotrellis/raster/Connectivity.scala index 4ca92f9019..cd37fa173e 100644 --- a/raster/src/main/scala/geotrellis/raster/Connectivity.scala +++ b/raster/src/main/scala/geotrellis/raster/Connectivity.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster diff --git a/raster/src/main/scala/geotrellis/raster/ConstantTile.scala b/raster/src/main/scala/geotrellis/raster/ConstantTile.scala index 2a323325f8..a4ddc5401b 100644 --- a/raster/src/main/scala/geotrellis/raster/ConstantTile.scala +++ b/raster/src/main/scala/geotrellis/raster/ConstantTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/CroppedTile.scala b/raster/src/main/scala/geotrellis/raster/CroppedTile.scala index 88ef9f12cc..d63e4be2f2 100644 --- a/raster/src/main/scala/geotrellis/raster/CroppedTile.scala +++ b/raster/src/main/scala/geotrellis/raster/CroppedTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/DelayedConversionMethods.scala b/raster/src/main/scala/geotrellis/raster/DelayedConversionMethods.scala index a493cdefc8..650c80732b 100644 --- a/raster/src/main/scala/geotrellis/raster/DelayedConversionMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/DelayedConversionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.util.MethodExtensions diff --git a/raster/src/main/scala/geotrellis/raster/DelayedConversionMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/DelayedConversionMultibandTile.scala index 25d2e3202a..d8531b4746 100644 --- a/raster/src/main/scala/geotrellis/raster/DelayedConversionMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/DelayedConversionMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.resample._ diff --git a/raster/src/main/scala/geotrellis/raster/DelayedConversionTile.scala b/raster/src/main/scala/geotrellis/raster/DelayedConversionTile.scala index 9707dd9b96..0ec2c10c3a 100644 --- a/raster/src/main/scala/geotrellis/raster/DelayedConversionTile.scala +++ b/raster/src/main/scala/geotrellis/raster/DelayedConversionTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.resample._ diff --git a/raster/src/main/scala/geotrellis/raster/DoubleArrayTile.scala b/raster/src/main/scala/geotrellis/raster/DoubleArrayTile.scala index 8ae59ba5e5..1437cf47e4 100644 --- a/raster/src/main/scala/geotrellis/raster/DoubleArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/DoubleArrayTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/FloatArrayTile.scala b/raster/src/main/scala/geotrellis/raster/FloatArrayTile.scala index a9514d8833..2ef004f221 100644 --- a/raster/src/main/scala/geotrellis/raster/FloatArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/FloatArrayTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/Grid.scala b/raster/src/main/scala/geotrellis/raster/Grid.scala index 44d3abb877..8bcdb625f5 100644 --- a/raster/src/main/scala/geotrellis/raster/Grid.scala +++ b/raster/src/main/scala/geotrellis/raster/Grid.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster diff --git a/raster/src/main/scala/geotrellis/raster/GridBounds.scala b/raster/src/main/scala/geotrellis/raster/GridBounds.scala index 05ba48f543..97b29dceb0 100644 --- a/raster/src/main/scala/geotrellis/raster/GridBounds.scala +++ b/raster/src/main/scala/geotrellis/raster/GridBounds.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import scala.collection.mutable diff --git a/raster/src/main/scala/geotrellis/raster/GridExtent.scala b/raster/src/main/scala/geotrellis/raster/GridExtent.scala index 740b9a4a1a..99098a8df9 100644 --- a/raster/src/main/scala/geotrellis/raster/GridExtent.scala +++ b/raster/src/main/scala/geotrellis/raster/GridExtent.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.vector.Extent diff --git a/raster/src/main/scala/geotrellis/raster/IntArrayTile.scala b/raster/src/main/scala/geotrellis/raster/IntArrayTile.scala index 7cbef44a51..7d2b013c67 100644 --- a/raster/src/main/scala/geotrellis/raster/IntArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/IntArrayTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/IterableTile.scala b/raster/src/main/scala/geotrellis/raster/IterableTile.scala index 2f58b3047c..3fb4878996 100644 --- a/raster/src/main/scala/geotrellis/raster/IterableTile.scala +++ b/raster/src/main/scala/geotrellis/raster/IterableTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.macros._ diff --git a/raster/src/main/scala/geotrellis/raster/MappableTile.scala b/raster/src/main/scala/geotrellis/raster/MappableTile.scala index 185d7c882f..dd42399e61 100644 --- a/raster/src/main/scala/geotrellis/raster/MappableTile.scala +++ b/raster/src/main/scala/geotrellis/raster/MappableTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.macros._ diff --git a/raster/src/main/scala/geotrellis/raster/MultibandTile.scala b/raster/src/main/scala/geotrellis/raster/MultibandTile.scala index 0331728d8a..c66f285d6c 100644 --- a/raster/src/main/scala/geotrellis/raster/MultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/MultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.macros._ diff --git a/raster/src/main/scala/geotrellis/raster/MutableArrayTile.scala b/raster/src/main/scala/geotrellis/raster/MutableArrayTile.scala index 4c43cb7063..dff6bb66d9 100644 --- a/raster/src/main/scala/geotrellis/raster/MutableArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/MutableArrayTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/PixelInterleaveBandArrayTile.scala b/raster/src/main/scala/geotrellis/raster/PixelInterleaveBandArrayTile.scala index 88195e97b7..9ec25a0df8 100644 --- a/raster/src/main/scala/geotrellis/raster/PixelInterleaveBandArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/PixelInterleaveBandArrayTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import spire.syntax.cfor._ diff --git a/raster/src/main/scala/geotrellis/raster/PixelSampleType.scala b/raster/src/main/scala/geotrellis/raster/PixelSampleType.scala index c1393b5299..901ca1b09b 100644 --- a/raster/src/main/scala/geotrellis/raster/PixelSampleType.scala +++ b/raster/src/main/scala/geotrellis/raster/PixelSampleType.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster diff --git a/raster/src/main/scala/geotrellis/raster/ProjectedRaster.scala b/raster/src/main/scala/geotrellis/raster/ProjectedRaster.scala index 4259f1d057..8d17dc742f 100644 --- a/raster/src/main/scala/geotrellis/raster/ProjectedRaster.scala +++ b/raster/src/main/scala/geotrellis/raster/ProjectedRaster.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.proj4.CRS diff --git a/raster/src/main/scala/geotrellis/raster/Raster.scala b/raster/src/main/scala/geotrellis/raster/Raster.scala index 0cbc0c8032..35c13230d8 100644 --- a/raster/src/main/scala/geotrellis/raster/Raster.scala +++ b/raster/src/main/scala/geotrellis/raster/Raster.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.proj4.CRS diff --git a/raster/src/main/scala/geotrellis/raster/RasterExtent.scala b/raster/src/main/scala/geotrellis/raster/RasterExtent.scala index faf9ad00b2..6ce668d173 100644 --- a/raster/src/main/scala/geotrellis/raster/RasterExtent.scala +++ b/raster/src/main/scala/geotrellis/raster/RasterExtent.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/ShortArrayTile.scala b/raster/src/main/scala/geotrellis/raster/ShortArrayTile.scala index b61c093f99..2fe356146d 100644 --- a/raster/src/main/scala/geotrellis/raster/ShortArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/ShortArrayTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import java.nio.ByteBuffer diff --git a/raster/src/main/scala/geotrellis/raster/Tile.scala b/raster/src/main/scala/geotrellis/raster/Tile.scala index b9e92667a9..e06fdd7aa3 100644 --- a/raster/src/main/scala/geotrellis/raster/Tile.scala +++ b/raster/src/main/scala/geotrellis/raster/Tile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/TileExtents.scala b/raster/src/main/scala/geotrellis/raster/TileExtents.scala index 7573373f85..f5109cb1c4 100644 --- a/raster/src/main/scala/geotrellis/raster/TileExtents.scala +++ b/raster/src/main/scala/geotrellis/raster/TileExtents.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/TileFeature.scala b/raster/src/main/scala/geotrellis/raster/TileFeature.scala index 97e565040f..4cbda226fd 100644 --- a/raster/src/main/scala/geotrellis/raster/TileFeature.scala +++ b/raster/src/main/scala/geotrellis/raster/TileFeature.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/TileLayout.scala b/raster/src/main/scala/geotrellis/raster/TileLayout.scala index 9eafcc2485..4cabfbd12d 100644 --- a/raster/src/main/scala/geotrellis/raster/TileLayout.scala +++ b/raster/src/main/scala/geotrellis/raster/TileLayout.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/UByteArrayTile.scala b/raster/src/main/scala/geotrellis/raster/UByteArrayTile.scala index d2c18d99b2..afd8aaec4c 100644 --- a/raster/src/main/scala/geotrellis/raster/UByteArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/UByteArrayTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.vector.Extent diff --git a/raster/src/main/scala/geotrellis/raster/UShortArrayTile.scala b/raster/src/main/scala/geotrellis/raster/UShortArrayTile.scala index c270035d00..6d9226133b 100644 --- a/raster/src/main/scala/geotrellis/raster/UShortArrayTile.scala +++ b/raster/src/main/scala/geotrellis/raster/UShortArrayTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import java.nio.ByteBuffer diff --git a/raster/src/main/scala/geotrellis/raster/UserDefinedNoDataConversions.scala b/raster/src/main/scala/geotrellis/raster/UserDefinedNoDataConversions.scala index e8b072cbdd..fb05cb0b14 100644 --- a/raster/src/main/scala/geotrellis/raster/UserDefinedNoDataConversions.scala +++ b/raster/src/main/scala/geotrellis/raster/UserDefinedNoDataConversions.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import scala.math.ScalaNumericAnyConversions diff --git a/raster/src/main/scala/geotrellis/raster/costdistance/CostDistance.scala b/raster/src/main/scala/geotrellis/raster/costdistance/CostDistance.scala index 51d87e786a..867ab20313 100644 --- a/raster/src/main/scala/geotrellis/raster/costdistance/CostDistance.scala +++ b/raster/src/main/scala/geotrellis/raster/costdistance/CostDistance.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceMethods.scala b/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceMethods.scala index 7e4a8d0575..c8902b4eee 100644 --- a/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.costdistance import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceWithPaths.scala b/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceWithPaths.scala index 726886eee2..1382f8cfc1 100644 --- a/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceWithPaths.scala +++ b/raster/src/main/scala/geotrellis/raster/costdistance/CostDistanceWithPaths.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.costdistance import java.util.{BitSet, PriorityQueue} diff --git a/raster/src/main/scala/geotrellis/raster/crop/Crop.scala b/raster/src/main/scala/geotrellis/raster/crop/Crop.scala index 49f3514f40..68fa962b01 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/Crop.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/Crop.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop /** diff --git a/raster/src/main/scala/geotrellis/raster/crop/CropMethods.scala b/raster/src/main/scala/geotrellis/raster/crop/CropMethods.scala index 79c0841a28..756862a905 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/CropMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/CropMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.vector._ diff --git a/raster/src/main/scala/geotrellis/raster/crop/Implicits.scala b/raster/src/main/scala/geotrellis/raster/crop/Implicits.scala index 450b73b8af..554a0de12b 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/crop/MultibandTileCropMethods.scala b/raster/src/main/scala/geotrellis/raster/crop/MultibandTileCropMethods.scala index 530b6e0974..ea483874bd 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/MultibandTileCropMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/MultibandTileCropMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.vector._ diff --git a/raster/src/main/scala/geotrellis/raster/crop/RasterCropMethods.scala b/raster/src/main/scala/geotrellis/raster/crop/RasterCropMethods.scala index 78ef9ea730..7e1a5744d8 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/RasterCropMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/RasterCropMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.vector._ diff --git a/raster/src/main/scala/geotrellis/raster/crop/SinglebandTileCropMethods.scala b/raster/src/main/scala/geotrellis/raster/crop/SinglebandTileCropMethods.scala index 664d863d5d..f8950bf68b 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/SinglebandTileCropMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/SinglebandTileCropMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.vector._ diff --git a/raster/src/main/scala/geotrellis/raster/crop/TileCropMethods.scala b/raster/src/main/scala/geotrellis/raster/crop/TileCropMethods.scala index eee98a6f4c..e48226e87a 100644 --- a/raster/src/main/scala/geotrellis/raster/crop/TileCropMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/crop/TileCropMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.crop import geotrellis.vector._ diff --git a/raster/src/main/scala/geotrellis/raster/density/DoubleKernelDensityMethods.scala b/raster/src/main/scala/geotrellis/raster/density/DoubleKernelDensityMethods.scala index 1b8b0312ed..1834195b6c 100644 --- a/raster/src/main/scala/geotrellis/raster/density/DoubleKernelDensityMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/density/DoubleKernelDensityMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.density import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/density/Implicits.scala b/raster/src/main/scala/geotrellis/raster/density/Implicits.scala index ecf47343bf..6bae056795 100644 --- a/raster/src/main/scala/geotrellis/raster/density/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/density/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.density import geotrellis.vector._ diff --git a/raster/src/main/scala/geotrellis/raster/density/IntKernelDensityMethods.scala b/raster/src/main/scala/geotrellis/raster/density/IntKernelDensityMethods.scala index 6ef232b483..81672e6018 100644 --- a/raster/src/main/scala/geotrellis/raster/density/IntKernelDensityMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/density/IntKernelDensityMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.density import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/density/KernelDensity.scala b/raster/src/main/scala/geotrellis/raster/density/KernelDensity.scala index 0f8c534eb0..33abfd3630 100644 --- a/raster/src/main/scala/geotrellis/raster/density/KernelDensity.scala +++ b/raster/src/main/scala/geotrellis/raster/density/KernelDensity.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/density/KernelStamper.scala b/raster/src/main/scala/geotrellis/raster/density/KernelStamper.scala index e76cab292f..f184012040 100644 --- a/raster/src/main/scala/geotrellis/raster/density/KernelStamper.scala +++ b/raster/src/main/scala/geotrellis/raster/density/KernelStamper.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTile.scala b/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTile.scala index 98100eb2ba..c6e6b722af 100644 --- a/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTile.scala +++ b/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.distance import geotrellis.raster.{RasterExtent, DoubleArrayTile, Tile} diff --git a/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTileMethods.scala b/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTileMethods.scala index d6f1a8de30..00b31825de 100644 --- a/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTileMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/distance/EuclideanDistanceTileMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.distance import geotrellis.raster.{RasterExtent, Tile} diff --git a/raster/src/main/scala/geotrellis/raster/distance/Implicits.scala b/raster/src/main/scala/geotrellis/raster/distance/Implicits.scala index 6adba04638..4ccb831c46 100644 --- a/raster/src/main/scala/geotrellis/raster/distance/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/distance/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.distance import geotrellis.vector.Point diff --git a/raster/src/main/scala/geotrellis/raster/equalization/HistogramEqualization.scala b/raster/src/main/scala/geotrellis/raster/equalization/HistogramEqualization.scala index dcbc6b9ba3..a913d3dcc8 100644 --- a/raster/src/main/scala/geotrellis/raster/equalization/HistogramEqualization.scala +++ b/raster/src/main/scala/geotrellis/raster/equalization/HistogramEqualization.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.equalization import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/equalization/MultibandEqualizationMethods.scala b/raster/src/main/scala/geotrellis/raster/equalization/MultibandEqualizationMethods.scala index 1a3cb9a03b..5d4b98fefd 100644 --- a/raster/src/main/scala/geotrellis/raster/equalization/MultibandEqualizationMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/equalization/MultibandEqualizationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.equalization import geotrellis.raster.histogram.StreamingHistogram diff --git a/raster/src/main/scala/geotrellis/raster/equalization/SinglebandEqualizationMethods.scala b/raster/src/main/scala/geotrellis/raster/equalization/SinglebandEqualizationMethods.scala index 6dc526dbd7..cd73de991b 100644 --- a/raster/src/main/scala/geotrellis/raster/equalization/SinglebandEqualizationMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/equalization/SinglebandEqualizationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.equalization import geotrellis.raster.histogram._ diff --git a/raster/src/main/scala/geotrellis/raster/histogram/DoubleHistogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/DoubleHistogram.scala index c75254785f..0c55fd2f04 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/DoubleHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/DoubleHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/histogram/FastMapHistogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/FastMapHistogram.scala index 5eb97fe68e..d8d1fda342 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/FastMapHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/FastMapHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/histogram/Histogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/Histogram.scala index 068028a3e6..b9b0084634 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/Histogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/Histogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/histogram/IntHistogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/IntHistogram.scala index d9464e19e8..84bf89233d 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/IntHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/IntHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/histogram/MutableHistogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/MutableHistogram.scala index 38142cd527..ab307e2ec3 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/MutableHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/MutableHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/histogram/MutableIntHistogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/MutableIntHistogram.scala index 8fd031d18f..b925d8f59e 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/MutableIntHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/MutableIntHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/histogram/StreamingHistogram.scala b/raster/src/main/scala/geotrellis/raster/histogram/StreamingHistogram.scala index e80dbeb95b..7b894a0976 100644 --- a/raster/src/main/scala/geotrellis/raster/histogram/StreamingHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/histogram/StreamingHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/hydrology/Accumulation.scala b/raster/src/main/scala/geotrellis/raster/hydrology/Accumulation.scala index b69b96edcb..20015b89b4 100644 --- a/raster/src/main/scala/geotrellis/raster/hydrology/Accumulation.scala +++ b/raster/src/main/scala/geotrellis/raster/hydrology/Accumulation.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/hydrology/Fill.scala b/raster/src/main/scala/geotrellis/raster/hydrology/Fill.scala index abb365c016..f94a45d689 100644 --- a/raster/src/main/scala/geotrellis/raster/hydrology/Fill.scala +++ b/raster/src/main/scala/geotrellis/raster/hydrology/Fill.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2014 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.hydrology diff --git a/raster/src/main/scala/geotrellis/raster/hydrology/FlowDirection.scala b/raster/src/main/scala/geotrellis/raster/hydrology/FlowDirection.scala index 580e1016e1..4593edc3b8 100644 --- a/raster/src/main/scala/geotrellis/raster/hydrology/FlowDirection.scala +++ b/raster/src/main/scala/geotrellis/raster/hydrology/FlowDirection.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/hydrology/HydrologyMethods.scala b/raster/src/main/scala/geotrellis/raster/hydrology/HydrologyMethods.scala index 97ad21e334..0dd866fb6c 100644 --- a/raster/src/main/scala/geotrellis/raster/hydrology/HydrologyMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/hydrology/HydrologyMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.hydrology import geotrellis.raster.mapalgebra.focal.Square diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/GeoKrigingMethods.scala b/raster/src/main/scala/geotrellis/raster/interpolation/GeoKrigingMethods.scala index 6f82c3543f..d6fdcc7830 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/GeoKrigingMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/GeoKrigingMethods.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/Implicits.scala b/raster/src/main/scala/geotrellis/raster/interpolation/Implicits.scala index a215c6a46e..51b48dd1a0 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/Implicits.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/Interpolation.scala b/raster/src/main/scala/geotrellis/raster/interpolation/Interpolation.scala index bb02c728d4..bed5190a56 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/Interpolation.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/Interpolation.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWeighted.scala b/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWeighted.scala index 1ecdae6204..ea1d62ffc0 100755 --- a/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWeighted.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWeighted.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.interpolation import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedMethods.scala b/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedMethods.scala index b75c1d471a..bdaf62d76f 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/InverseDistanceWieghtedMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.interpolation import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/OrdinaryKrigingMethods.scala b/raster/src/main/scala/geotrellis/raster/interpolation/OrdinaryKrigingMethods.scala index d89a96b3c9..78aecadb6c 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/OrdinaryKrigingMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/OrdinaryKrigingMethods.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/SimpleKrigingMethods.scala b/raster/src/main/scala/geotrellis/raster/interpolation/SimpleKrigingMethods.scala index 42968e6e49..464cafd790 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/SimpleKrigingMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/SimpleKrigingMethods.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster/src/main/scala/geotrellis/raster/interpolation/UniversalKrigingMethods.scala b/raster/src/main/scala/geotrellis/raster/interpolation/UniversalKrigingMethods.scala index ca1b89a326..97e23ab9b9 100644 --- a/raster/src/main/scala/geotrellis/raster/interpolation/UniversalKrigingMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/interpolation/UniversalKrigingMethods.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.raster.interpolation diff --git a/raster/src/main/scala/geotrellis/raster/io/arg/ArgReader.scala b/raster/src/main/scala/geotrellis/raster/io/arg/ArgReader.scala index 417fdef4c8..9ca0858405 100644 --- a/raster/src/main/scala/geotrellis/raster/io/arg/ArgReader.scala +++ b/raster/src/main/scala/geotrellis/raster/io/arg/ArgReader.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/arg/ArgWriter.scala b/raster/src/main/scala/geotrellis/raster/io/arg/ArgWriter.scala index 7736b5d534..549c822751 100644 --- a/raster/src/main/scala/geotrellis/raster/io/arg/ArgWriter.scala +++ b/raster/src/main/scala/geotrellis/raster/io/arg/ArgWriter.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/io/arg/CellWriter.scala b/raster/src/main/scala/geotrellis/raster/io/arg/CellWriter.scala index aba4e6eacd..656670ea7d 100644 --- a/raster/src/main/scala/geotrellis/raster/io/arg/CellWriter.scala +++ b/raster/src/main/scala/geotrellis/raster/io/arg/CellWriter.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReadState.scala b/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReadState.scala index fcfc239d25..9cc3bfa002 100644 --- a/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReadState.scala +++ b/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReadState.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.ascii import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReader.scala b/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReader.scala index d0974b6464..ad5bb9504b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReader.scala +++ b/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.ascii import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiWriter.scala b/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiWriter.scala index ffc0c8cd1c..78e07f5f43 100644 --- a/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiWriter.scala +++ b/raster/src/main/scala/geotrellis/raster/io/ascii/AsciiWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/ascii/FileReader.scala b/raster/src/main/scala/geotrellis/raster/io/ascii/FileReader.scala index a857c86e59..4fd459ea04 100644 --- a/raster/src/main/scala/geotrellis/raster/io/ascii/FileReader.scala +++ b/raster/src/main/scala/geotrellis/raster/io/ascii/FileReader.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/io/ascii/IntReadState.scala b/raster/src/main/scala/geotrellis/raster/io/ascii/IntReadState.scala index 6f7adb1484..fa24588ae1 100644 --- a/raster/src/main/scala/geotrellis/raster/io/ascii/IntReadState.scala +++ b/raster/src/main/scala/geotrellis/raster/io/ascii/IntReadState.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/io/ascii/ReadState.scala b/raster/src/main/scala/geotrellis/raster/io/ascii/ReadState.scala index 64ff0f56da..202339469a 100644 --- a/raster/src/main/scala/geotrellis/raster/io/ascii/ReadState.scala +++ b/raster/src/main/scala/geotrellis/raster/io/ascii/ReadState.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ArraySegmentBytes.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ArraySegmentBytes.scala index d7ee82220e..31130ec503 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ArraySegmentBytes.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ArraySegmentBytes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util.ByteReader diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/BandTypes.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/BandTypes.scala index 60c6c634ae..d38b693860 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/BandTypes.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/BandTypes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTile.scala index 367f138593..b8779d2547 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegment.scala index 92d732c160..d536c2b505 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegmentCollection.scala index b1b257e17a..f5f3c22865 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffTile.scala index adf20b9ca1..3828ecab70 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/BitGeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteConstantNoDataGeoTiffSegment.scala index 95d0ecc24e..9e40b4e7bc 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffMultibandTile.scala index f294674509..1acdf96ab7 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegment.scala index 18bebf42f5..06f8f28fc2 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegmentCollection.scala index d681a6fb36..99b7673f73 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffTile.scala index e9d781cb9d..a7dbd17297 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteGeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteRawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteRawGeoTiffSegment.scala index d615230ea2..0939d00e05 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteRawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteRawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteUserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteUserDefinedNoDataGeoTiffSegment.scala index 5fc92d042e..16a455c7ba 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteUserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/ByteUserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/CropIterator.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/CropIterator.scala index 326d6ac287..10c95e15f0 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/CropIterator.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/CropIterator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32ConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32ConstantNoDataGeoTiffSegment.scala index d9c4d6f98f..3e300bd57b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32ConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32ConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTile.scala index b2417a9afc..0edddd7dcd 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegment.scala index f19552830f..2c4beac1a7 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegmentCollection.scala index 5c62d6e7cd..6d75539f13 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffTile.scala index aa24dd4437..174cb2797a 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32RawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32RawGeoTiffSegment.scala index 5d6039fda9..4bbba84517 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32RawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32RawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32UserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32UserDefinedNoDataGeoTiffSegment.scala index 6c40a53e67..cbf83b3c12 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32UserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float32UserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64ConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64ConstantNoDataGeoTiffSegment.scala index f8f6bfe0dc..446daf3d57 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64ConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64ConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTile.scala index 2c3544845c..92d260601d 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegment.scala index 0d198f280f..89a57fe9b3 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegmentCollection.scala index 34069bfee5..bfcc38ecb7 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffTile.scala index 6fa6f5686f..c81b80e37d 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64RawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64RawGeoTiffSegment.scala index 8bb8d1c3d1..3e0569f363 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64RawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64RawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64UserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64UserDefinedNoDataGeoTiffSegment.scala index 3e0d3b81e5..ce53717523 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64UserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Float64UserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiff.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiff.scala index 770e06622a..0bfb863942 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiff.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiff.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffImageData.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffImageData.scala index 2f8cf88b56..6ceb21aef6 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffImageData.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffImageData.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTile.scala index 34746acef0..266a6b11d1 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffOptions.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffOptions.scala index f8bf5e2c67..105881efeb 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffOptions.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffOptions.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster.io.geotiff.compression._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegment.scala index ae1bc70bab..030a24c198 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster.io.geotiff.util._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentCollection.scala index 8c60f77502..c82ebac88c 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentLayout.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentLayout.scala index 14924e163f..414153e37d 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentLayout.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffSegmentLayout.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster.GridBounds diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffTile.scala index 52b0dd5b53..4a1c9158ac 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16ConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16ConstantNoDataGeoTiffSegment.scala index b997a0a0ee..89c49cb0c3 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16ConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16ConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTile.scala index eb61ca081e..2a7669e97a 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegment.scala index f7de5dfd48..d4787f6ab5 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegmentCollection.scala index 6977f50428..74bb3a3a1a 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffTile.scala index 18f80a15ed..a99ad69565 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16RawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16RawGeoTiffSegment.scala index 2dc71d6ff2..189102dae4 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16RawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16RawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16UserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16UserDefinedNoDataGeoTiffSegment.scala index 3787664442..182d1cb540 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16UserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int16UserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32ConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32ConstantNoDataGeoTiffSegment.scala index 5d3c62981d..e497af402b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32ConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32ConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTile.scala index ed184a4e92..522dd8dffb 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegment.scala index d20cd301a3..abdc077bcc 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegmentCollection.scala index a22b03a857..d6a4258a90 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffTile.scala index c3f5c2ae47..f87a6f6cf3 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32RawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32RawGeoTiffSegment.scala index 1291ed2e1c..3ee8c1479f 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32RawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32RawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32UserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32UserDefinedNoDataGeoTiffSegment.scala index aa34568224..0873ba6196 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32UserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Int32UserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Intersection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Intersection.scala index c4cf9d7dc0..3ba8650627 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Intersection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Intersection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/LazySegmentBytes.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/LazySegmentBytes.scala index 5716aefeb9..374279d276 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/LazySegmentBytes.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/LazySegmentBytes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util.ByteReader diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandCropIterator.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandCropIterator.scala index 33aeae37cc..40d0dcd7aa 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandCropIterator.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandCropIterator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util.ByteReader diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandGeoTiff.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandGeoTiff.scala index a2c29d0b4e..36448ded42 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandGeoTiff.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/MultibandGeoTiff.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util.ByteReader diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/SegmentBytes.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/SegmentBytes.scala index c5b96f6749..7f78b44222 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/SegmentBytes.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/SegmentBytes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import spire.syntax.cfor._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandCropIterator.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandCropIterator.scala index 1c5db50bba..d54c14a951 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandCropIterator.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandCropIterator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util.ByteReader diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandGeoTiff.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandGeoTiff.scala index 10e17582dc..c3ec4f48a7 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandGeoTiff.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/SinglebandGeoTiff.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.util.ByteReader diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/StorageMethod.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/StorageMethod.scala index 505faee94f..5dac7c92ed 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/StorageMethod.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/StorageMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/Tags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/Tags.scala index 2fb40cd0ac..66e1747409 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/Tags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/Tags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff object Tags { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteConstantNoDataGeoTiffSegment.scala index 77439f6b9a..b3c6801a62 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTile.scala index 28f94070c7..bd600326f1 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegment.scala index a9df967e68..f7319e4456 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegmentCollection.scala index 3fcebdebfd..3e4cc2a41b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffTile.scala index 343fe3971a..bed19281c8 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteGeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteRawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteRawGeoTiffSegment.scala index cfb1870f7c..18b570da65 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteRawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteRawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteUserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteUserDefinedNoDataGeoTiffSegment.scala index 7c378064fd..feb2cf9036 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteUserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UByteUserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16ConstantNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16ConstantNoDataGeoTiffSegment.scala index a64d84a7c5..e2c2d74407 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16ConstantNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16ConstantNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTile.scala index 09714ee060..3adef16acc 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegment.scala index a1cb13e3f2..0c87ea0abc 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegmentCollection.scala index d68cfde1df..f457fa0c56 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTile.scala index 7a87d2998f..ad499d00e4 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16RawGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16RawGeoTiffSegment.scala index 29b31362bc..f2b19a517d 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16RawGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16RawGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16UserDefinedNoDataGeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16UserDefinedNoDataGeoTiffSegment.scala index 3baa763b09..7e4126eab0 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16UserDefinedNoDataGeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt16UserDefinedNoDataGeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTile.scala index ce9395e707..580506b420 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffMultibandTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegment.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegment.scala index 79d5609387..927b11aba1 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegment.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegment.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegmentCollection.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegmentCollection.scala index 8890c4dc1f..987233f73e 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegmentCollection.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffSegmentCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffTile.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffTile.scala index 9769b71d82..de8748843b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffTile.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/UInt32GeoTiffTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compression.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compression.scala index 35684f25c4..058f9a68f2 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compression.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compression.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression trait Compression { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compressor.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compressor.scala index 367a3087a7..c6afd89611 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compressor.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Compressor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression trait Compressor extends Serializable { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Decompressor.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Decompressor.scala index 47df34fa18..751811aeab 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Decompressor.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Decompressor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff.tags._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/DeflateCompression.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/DeflateCompression.scala index 0c2879a713..f4fcb0f476 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/DeflateCompression.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/DeflateCompression.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/FloatingPointPredictor.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/FloatingPointPredictor.scala index e23ad97a51..9e80631b4c 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/FloatingPointPredictor.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/FloatingPointPredictor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/HorizontalPredictor.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/HorizontalPredictor.scala index 38e9fcaa98..0f459d0257 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/HorizontalPredictor.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/HorizontalPredictor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/LZWDecompression.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/LZWDecompression.scala index 9dd44b327c..73e3e60ed9 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/LZWDecompression.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/LZWDecompression.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff.reader._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/NoCompression.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/NoCompression.scala index cc04fb55d1..e032944a7b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/NoCompression.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/NoCompression.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff.tags.codes.CompressionType._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/PackBitsDecompression.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/PackBitsDecompression.scala index 12bd731504..53d980f3f5 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/PackBitsDecompression.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/PackBitsDecompression.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff.reader._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Predictor.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Predictor.scala index 649a46cc1c..73180f5981 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Predictor.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/compression/Predictor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.compression import geotrellis.raster.io.geotiff.tags._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/package.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/package.scala index 12d4d71cad..b177b32109 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/package.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffCSParser.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffCSParser.scala index c31c3c37fd..6971242fcb 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffCSParser.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffCSParser.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReader.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReader.scala index 507d2f32d4..07b3d88c03 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReader.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/GeoTiffReader.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/TiffTagsReader.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/TiffTagsReader.scala index 5ba5602bbb..2f5ca0b54e 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/TiffTagsReader.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/reader/TiffTagsReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.reader import geotrellis.raster.io.geotiff.tags._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/BasicTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/BasicTags.scala index 5c5cd94468..e7eccecc83 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/BasicTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/BasicTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/CmykTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/CmykTags.scala index da485299a9..d3470fda8f 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/CmykTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/CmykTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/ColimetryTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/ColimetryTags.scala index d75ab529fd..b0af8a3ef2 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/ColimetryTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/ColimetryTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DataSampleFormatTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DataSampleFormatTags.scala index 460793a106..1c164fe899 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DataSampleFormatTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DataSampleFormatTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DocumentationTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DocumentationTags.scala index 51f76dcb49..c13397ccc5 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DocumentationTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/DocumentationTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyConstants.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyConstants.scala index 9c883b7de9..511c8676b7 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyConstants.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyConstants.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import CommonPublicValues._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyDirectory.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyDirectory.scala index 763548c74a..40622bbb52 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyDirectory.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyDirectory.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import ProjectionTypesMap._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyReader.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyReader.scala index 08b44dc1a4..1e3f81861e 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyReader.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoKeyReader.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoTiffTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoTiffTags.scala index a0d09f5951..69dae7eb4d 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoTiffTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/GeoTiffTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/JpegTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/JpegTags.scala index f45d961568..6dd78ba874 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/JpegTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/JpegTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/MetadataTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/MetadataTags.scala index e5ad96f045..3eb6b913b7 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/MetadataTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/MetadataTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonBasicTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonBasicTags.scala index 99e82ffc95..883770c93e 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonBasicTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonBasicTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonStandardizedTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonStandardizedTags.scala index 23cfa853c5..484c150156 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonStandardizedTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/NonStandardizedTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/Pixel3D.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/Pixel3D.scala index aa2bf2b8b0..ab6b23cc29 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/Pixel3D.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/Pixel3D.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags object Pixel3D { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTagMetadata.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTagMetadata.scala index 11cc143808..b5c9718e27 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTagMetadata.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTagMetadata.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags case class TiffTagMetadata( diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTags.scala index 019d7a882c..c60466b2df 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TiffTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TileTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TileTags.scala index 3c6f1680ae..3faeb13a8e 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TileTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/TileTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/YCbCrTags.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/YCbCrTags.scala index 25f0c23d63..c87d769054 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/YCbCrTags.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/YCbCrTags.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags import monocle.macros.Lenses diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/ColorSpace.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/ColorSpace.scala index 26f47e3dd2..4ece936471 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/ColorSpace.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/ColorSpace.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes /** diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/CompressionType.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/CompressionType.scala index 47617e1e2a..77ddfcc822 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/CompressionType.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/CompressionType.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes object CompressionType { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/Orientations.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/Orientations.scala index 16bf60c420..e736734b5f 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/Orientations.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/Orientations.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes /** diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/PlanarConfigurations.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/PlanarConfigurations.scala index ebf4839004..6c7f5221cf 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/PlanarConfigurations.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/PlanarConfigurations.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes object PlanarConfigurations { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/SampleFormat.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/SampleFormat.scala index ee70d9f52e..04526e935e 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/SampleFormat.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/SampleFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes object SampleFormat { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TagCodes.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TagCodes.scala index 65b68d80bf..92248cee56 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TagCodes.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TagCodes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes object TagCodes { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TiffFieldType.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TiffFieldType.scala index 2ed9fe61df..20dce136e3 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TiffFieldType.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/tags/codes/TiffFieldType.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.tags.codes object TiffFieldType { diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ArrayExtensions.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ArrayExtensions.scala index fff4902ab1..5a25a49f25 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ArrayExtensions.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ArrayExtensions.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteInverter.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteInverter.scala index c8bbd53eb4..a657f4dd70 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteInverter.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteInverter.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteReaderExtensions.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteReaderExtensions.scala index 06aa7fd46a..ca1cd70fc0 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteReaderExtensions.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/ByteReaderExtensions.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/GdalNoDataParser.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/GdalNoDataParser.scala index d16c474c61..03a6a11873 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/GdalNoDataParser.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/GdalNoDataParser.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/package.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/package.scala index 096d5232c3..3dc8a90639 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/util/package.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/util/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/CoordinateSystemParser.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/CoordinateSystemParser.scala index 2dd589b821..b75a6532ec 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/CoordinateSystemParser.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/CoordinateSystemParser.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriter.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriter.scala index e406105c6f..720a370fc6 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriter.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/GeoTiffWriter.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/TiffTagFieldValue.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/TiffTagFieldValue.scala index 77026fc2a0..6ec99f6efd 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/TiffTagFieldValue.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/TiffTagFieldValue.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.writer import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/ToBytes.scala b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/ToBytes.scala index 6f72f298d8..765da43c9c 100644 --- a/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/ToBytes.scala +++ b/raster/src/main/scala/geotrellis/raster/io/geotiff/writer/ToBytes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.geotiff.writer import spire.syntax.cfor._ diff --git a/raster/src/main/scala/geotrellis/raster/io/json/HistogramJsonFormats.scala b/raster/src/main/scala/geotrellis/raster/io/json/HistogramJsonFormats.scala index 1dadd3dfb0..6b4c5d381b 100644 --- a/raster/src/main/scala/geotrellis/raster/io/json/HistogramJsonFormats.scala +++ b/raster/src/main/scala/geotrellis/raster/io/json/HistogramJsonFormats.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/io/json/Implicits.scala b/raster/src/main/scala/geotrellis/raster/io/json/Implicits.scala index c9b38331f6..e3e5d32606 100644 --- a/raster/src/main/scala/geotrellis/raster/io/json/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/io/json/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.io.json import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/io/package.scala b/raster/src/main/scala/geotrellis/raster/io/package.scala index b110d6140c..d21a0c5486 100644 --- a/raster/src/main/scala/geotrellis/raster/io/package.scala +++ b/raster/src/main/scala/geotrellis/raster/io/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster package object io extends json.Implicits diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Aspect.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Aspect.scala index 03ac0f0d35..04850652d8 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Aspect.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Aspect.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Convolve.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Convolve.scala index 4adcc8e15f..19b1cd487e 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Convolve.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Convolve.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Conway.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Conway.scala index 33c4f943c1..b228c18e87 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Conway.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Conway.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Cursor.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Cursor.scala index 6254007505..f1b5c43afc 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Cursor.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Cursor.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/CursorMask.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/CursorMask.scala index d8beb08dd7..6d0c0491fd 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/CursorMask.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/CursorMask.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalCalculation.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalCalculation.scala index c8dca0a51c..09dbb7abb9 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalCalculation.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalCalculation.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalMethods.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalMethods.scala index daf8fcf4eb..3b3e35ebc3 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalStrategy.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalStrategy.scala index 5e3d3685d6..a37b5cafe0 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalStrategy.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/FocalStrategy.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Kernel.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Kernel.scala index 29e7b5aff4..024d738bc6 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Kernel.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Kernel.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/KernelCursor.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/KernelCursor.scala index faa0a61547..36d1ce89ba 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/KernelCursor.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/KernelCursor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Max.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Max.scala index 6a3745f0e9..ee2cfe1866 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Max.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Max.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mean.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mean.scala index 74b15289ee..1abdc7f35c 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mean.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mean.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Median.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Median.scala index 845c7a1651..8c33f3e819 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Median.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Median.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/MedianModeCalculation.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/MedianModeCalculation.scala index b170e5ea4f..bae8fdb0bc 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/MedianModeCalculation.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/MedianModeCalculation.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Min.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Min.scala index a14ee4acb9..f16a3a5da7 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Min.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Min.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mode.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mode.scala index 11ae2fc24f..4dddadf9aa 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mode.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Mode.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Moran.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Moran.scala index 6d41f9d74a..cf08c9cbf9 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Moran.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Moran.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Neighborhood.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Neighborhood.scala index 15f37251d2..5c32b6db60 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Neighborhood.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Neighborhood.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Slope.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Slope.scala index 6be5942555..13606d1810 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Slope.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Slope.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/StandardDeviation.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/StandardDeviation.scala index 5d057b69cc..59f5b9b64b 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/StandardDeviation.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/StandardDeviation.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Sum.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Sum.scala index 1c54c58782..32f0a16c9c 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Sum.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/Sum.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/TileWithNeighbors.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/TileWithNeighbors.scala index b466f1852d..e3414c495b 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/TileWithNeighbors.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/TileWithNeighbors.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Hillshade.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Hillshade.scala index decf2f37c6..85ecebf8a0 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Hillshade.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Hillshade.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal.hillshade import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeMethods.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeMethods.scala index 3ef4249364..0d0dd005af 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/HillshadeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.focal.hillshade import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Implicits.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Implicits.scala index d77f41aa94..5f3c42f469 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/Implicits.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculation.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculation.scala index 9add85dbd0..b71670f03a 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculation.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/focal/hillshade/SurfacePointCalculation.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Abs.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Abs.scala index d1424504b3..f2ab5d4b58 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Abs.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Abs.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Acos.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Acos.scala index 7de9cc3fa1..ab3f47945d 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Acos.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Acos.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Add.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Add.scala index 4af7c99f9e..45b5085eb5 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Add.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Add.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/And.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/And.scala index f819235b45..a81f24de8d 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/And.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/And.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Asin.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Asin.scala index 2a1d878263..05e1ce5be3 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Asin.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Asin.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan.scala index 778739e121..f5d0cd8507 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan2.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan2.scala index b450dae569..f3ea611a7b 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan2.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Atan2.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Ceil.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Ceil.scala index a6d135e8e7..72a413ac7a 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Ceil.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Ceil.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cos.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cos.scala index d457676e0c..e9d524eca7 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cos.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cos.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cosh.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cosh.scala index a6d1e49b3f..b8ca6bc5bc 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cosh.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Cosh.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Defined.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Defined.scala index 79212e2897..3e8610e448 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Defined.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Defined.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Divide.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Divide.scala index 6f272a4b23..6bed8dc64c 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Divide.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Divide.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Equal.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Equal.scala index 552a16b637..f07bfc7ba2 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Equal.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Equal.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Floor.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Floor.scala index 7e49577d2b..3edc8d9ca2 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Floor.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Floor.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Greater.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Greater.scala index 323a14d8cd..0e8dae461a 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Greater.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Greater.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqual.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqual.scala index eea794bf56..ea5ef610e3 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqual.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/GreaterOrEqual.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/InverseMask.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/InverseMask.scala index 279c46c57c..1db45f0029 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/InverseMask.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/InverseMask.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Less.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Less.scala index d088866522..037f086462 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Less.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Less.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LessOrEqual.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LessOrEqual.scala index 48cf95c1c7..6120f0f6cb 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LessOrEqual.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LessOrEqual.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalMethods.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalMethods.scala index 46b6cf9e1e..88de29315d 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalSeqMethods.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalSeqMethods.scala index cfdf5bcc2d..0a5b3750b6 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalSeqMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalSeqMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.local import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileBinaryOp.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileBinaryOp.scala index 890a5a29b6..ada9440411 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileBinaryOp.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileBinaryOp.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileComparatorOp.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileComparatorOp.scala index 793f58456a..5d060cd81d 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileComparatorOp.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/LocalTileComparatorOp.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.local import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Log.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Log.scala index 8a7113acb3..77dd30b0c1 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Log.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Log.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Majority.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Majority.scala index 4e2a892582..08a887451f 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Majority.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Majority.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mask.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mask.scala index ec90a06dcf..c8bb3b16e1 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mask.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mask.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Max.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Max.scala index b6a4d0055c..a1237ce529 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Max.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Max.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MaxN.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MaxN.scala index e1ba4b92a0..a94e2a74d1 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MaxN.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MaxN.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mean.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mean.scala index a8677910c7..b2a77332e5 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mean.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Mean.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Min.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Min.scala index 012e7c0de4..9d50ba5e51 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Min.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Min.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MinN.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MinN.scala index 9709697a89..e74b6c1b48 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MinN.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/MinN.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Minority.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Minority.scala index 34ef9b7f09..0d8caf30be 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Minority.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Minority.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Multiply.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Multiply.scala index 2419f2a2f5..597a8c74c6 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Multiply.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Multiply.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Negate.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Negate.scala index 98101da8b9..4b2060564f 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Negate.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Negate.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Not.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Not.scala index b12734858d..44070cea1d 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Not.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Not.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Or.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Or.scala index eaa1e2e09a..6d4f0491e2 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Or.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Or.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Pow.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Pow.scala index ef8171c866..ba00dc0c14 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Pow.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Pow.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Round.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Round.scala index a6638237c3..21b0c16039 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Round.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Round.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sin.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sin.scala index 5db017467d..153934a7cd 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sin.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sin.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sinh.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sinh.scala index c7490bcd6d..4e5682e2d3 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sinh.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sinh.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sqrt.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sqrt.scala index a052185c18..fb08a06c13 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sqrt.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Sqrt.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Subtract.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Subtract.scala index 389cf549bf..ef090d7b27 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Subtract.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Subtract.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tan.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tan.scala index 88a42e72f2..d461e23bb8 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tan.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tan.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tanh.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tanh.scala index 8591443d4a..8008839e95 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tanh.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Tanh.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/TileReducer.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/TileReducer.scala index 7a7c486c9c..99cf630be2 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/TileReducer.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/TileReducer.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Undefined.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Undefined.scala index 3cff86947f..2c8ac5f337 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Undefined.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Undefined.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Unequal.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Unequal.scala index 1b641e4fdc..242208db99 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Unequal.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Unequal.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variance.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variance.scala index daa5b92d7d..d0e9ba358b 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variance.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variance.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.local import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variety.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variety.scala index 3a4be15b92..fe2e22428a 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variety.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Variety.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Xor.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Xor.scala index 14197b4b9b..fe14c72878 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Xor.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/Xor.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/conditional.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/conditional.scala index adad890c5f..6dfe53751e 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/local/conditional.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/local/conditional.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/DoubleZonalHistogram.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/DoubleZonalHistogram.scala index c2b92063d9..76e7ae95a2 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/DoubleZonalHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/DoubleZonalHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/IntZonalHistogram.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/IntZonalHistogram.scala index d5ade32543..e500eff273 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/IntZonalHistogram.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/IntZonalHistogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistograms.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistograms.scala index ba6aa36129..8167ebb834 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistograms.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalHistograms.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalMethods.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalMethods.scala index d3378a8a2d..e3f6b3cbe9 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mapalgebra.zonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentage.scala b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentage.scala index e109babac0..43d5e02e6c 100644 --- a/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentage.scala +++ b/raster/src/main/scala/geotrellis/raster/mapalgebra/zonal/ZonalPercentage.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/mask/Implicits.scala b/raster/src/main/scala/geotrellis/raster/mask/Implicits.scala index efde7136c9..066b77e6c4 100644 --- a/raster/src/main/scala/geotrellis/raster/mask/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/mask/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mask import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mask/MultibandTileMaskMethods.scala b/raster/src/main/scala/geotrellis/raster/mask/MultibandTileMaskMethods.scala index a0fa522862..a1180572da 100644 --- a/raster/src/main/scala/geotrellis/raster/mask/MultibandTileMaskMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mask/MultibandTileMaskMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mask import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mask/RasterMaskMethods.scala b/raster/src/main/scala/geotrellis/raster/mask/RasterMaskMethods.scala index bc07bf4792..6e1ad57446 100644 --- a/raster/src/main/scala/geotrellis/raster/mask/RasterMaskMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mask/RasterMaskMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mask import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mask/SinglebandTileMaskMethods.scala b/raster/src/main/scala/geotrellis/raster/mask/SinglebandTileMaskMethods.scala index e40a3ca0a3..1a62d4fce7 100644 --- a/raster/src/main/scala/geotrellis/raster/mask/SinglebandTileMaskMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mask/SinglebandTileMaskMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mask import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/mask/TileMaskMethods.scala b/raster/src/main/scala/geotrellis/raster/mask/TileMaskMethods.scala index 1e320d7e72..85f8bc582d 100644 --- a/raster/src/main/scala/geotrellis/raster/mask/TileMaskMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/mask/TileMaskMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.mask import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/matching/HistogramMatching.scala b/raster/src/main/scala/geotrellis/raster/matching/HistogramMatching.scala index eca6cab226..cef13dd933 100644 --- a/raster/src/main/scala/geotrellis/raster/matching/HistogramMatching.scala +++ b/raster/src/main/scala/geotrellis/raster/matching/HistogramMatching.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.matching import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/matching/MultibandMatchingMethods.scala b/raster/src/main/scala/geotrellis/raster/matching/MultibandMatchingMethods.scala index b19f8dd6cf..72887149d8 100644 --- a/raster/src/main/scala/geotrellis/raster/matching/MultibandMatchingMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/matching/MultibandMatchingMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.matching import geotrellis.raster.histogram.StreamingHistogram diff --git a/raster/src/main/scala/geotrellis/raster/matching/SinglebandMatchingMethods.scala b/raster/src/main/scala/geotrellis/raster/matching/SinglebandMatchingMethods.scala index a5c473351d..b4f6857990 100644 --- a/raster/src/main/scala/geotrellis/raster/matching/SinglebandMatchingMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/matching/SinglebandMatchingMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.matching import geotrellis.raster.histogram.StreamingHistogram diff --git a/raster/src/main/scala/geotrellis/raster/merge/Implicits.scala b/raster/src/main/scala/geotrellis/raster/merge/Implicits.scala index 82a2d362e2..a48c7495a6 100644 --- a/raster/src/main/scala/geotrellis/raster/merge/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/merge/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.merge import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/merge/MultibandTileMergeMethods.scala b/raster/src/main/scala/geotrellis/raster/merge/MultibandTileMergeMethods.scala index e543a0c107..1069c57a54 100644 --- a/raster/src/main/scala/geotrellis/raster/merge/MultibandTileMergeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/merge/MultibandTileMergeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.merge import geotrellis.raster.resample.ResampleMethod diff --git a/raster/src/main/scala/geotrellis/raster/merge/RasterMergeMethods.scala b/raster/src/main/scala/geotrellis/raster/merge/RasterMergeMethods.scala index 5045b23cdc..5e9413c886 100644 --- a/raster/src/main/scala/geotrellis/raster/merge/RasterMergeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/merge/RasterMergeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.merge import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/merge/SinglebandTileMergeMethods.scala b/raster/src/main/scala/geotrellis/raster/merge/SinglebandTileMergeMethods.scala index 8346092777..6ef517a0ba 100644 --- a/raster/src/main/scala/geotrellis/raster/merge/SinglebandTileMergeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/merge/SinglebandTileMergeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.merge import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/merge/TileMergeMethods.scala b/raster/src/main/scala/geotrellis/raster/merge/TileMergeMethods.scala index 1f2bc51f12..652e99a3b5 100644 --- a/raster/src/main/scala/geotrellis/raster/merge/TileMergeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/merge/TileMergeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.merge import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/package.scala b/raster/src/main/scala/geotrellis/raster/package.scala index 689b64153b..660b7f3a29 100644 --- a/raster/src/main/scala/geotrellis/raster/package.scala +++ b/raster/src/main/scala/geotrellis/raster/package.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/prototype/MultibandTilePrototypeMethods.scala b/raster/src/main/scala/geotrellis/raster/prototype/MultibandTilePrototypeMethods.scala index 65506bd868..3bcf04df3e 100644 --- a/raster/src/main/scala/geotrellis/raster/prototype/MultibandTilePrototypeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/prototype/MultibandTilePrototypeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.prototype import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/prototype/SinglebandTilePrototypeMethods.scala b/raster/src/main/scala/geotrellis/raster/prototype/SinglebandTilePrototypeMethods.scala index 76b27af492..5450687d99 100644 --- a/raster/src/main/scala/geotrellis/raster/prototype/SinglebandTilePrototypeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/prototype/SinglebandTilePrototypeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.prototype import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/prototype/TilePrototypeMethods.scala b/raster/src/main/scala/geotrellis/raster/prototype/TilePrototypeMethods.scala index b6223f3e32..0b7c5da90a 100644 --- a/raster/src/main/scala/geotrellis/raster/prototype/TilePrototypeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/prototype/TilePrototypeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.prototype import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/FeatureRasterizeMethods.scala b/raster/src/main/scala/geotrellis/raster/rasterize/FeatureRasterizeMethods.scala index 8935558888..6244839b22 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/FeatureRasterizeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/FeatureRasterizeMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/GeometryRasterizeMethods.scala b/raster/src/main/scala/geotrellis/raster/rasterize/GeometryRasterizeMethods.scala index 4b1a29829b..b4ddbcd22c 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/GeometryRasterizeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/GeometryRasterizeMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/RasterExtentRasterizeMethods.scala b/raster/src/main/scala/geotrellis/raster/rasterize/RasterExtentRasterizeMethods.scala index 74de087e9f..3f1ffdd515 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/RasterExtentRasterizeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/RasterExtentRasterizeMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/Rasterizer.scala b/raster/src/main/scala/geotrellis/raster/rasterize/Rasterizer.scala index 5c51bdcc53..61320fe50d 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/Rasterizer.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/Rasterizer.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/extent/ExtentRasterizer.scala b/raster/src/main/scala/geotrellis/raster/rasterize/extent/ExtentRasterizer.scala index e01918f585..7bc2055b44 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/extent/ExtentRasterizer.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/extent/ExtentRasterizer.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/package.scala b/raster/src/main/scala/geotrellis/raster/rasterize/package.scala index 62f39d0347..82e0250cb8 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/package.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster package object rasterize { diff --git a/raster/src/main/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizer.scala b/raster/src/main/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizer.scala index 5112c50285..5ce145efd0 100644 --- a/raster/src/main/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizer.scala +++ b/raster/src/main/scala/geotrellis/raster/rasterize/polygon/PolygonRasterizer.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroup.scala b/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroup.scala index 5297a6bb03..3330cc1a94 100644 --- a/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroup.scala +++ b/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroup.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroupMethods.scala b/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroupMethods.scala index d3e8b35498..cb9c60bfa1 100644 --- a/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroupMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/regiongroup/RegionGroupMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.regiongroup import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/BreakMap.scala b/raster/src/main/scala/geotrellis/raster/render/BreakMap.scala index 292e87f80d..6ccbc04bd7 100644 --- a/raster/src/main/scala/geotrellis/raster/render/BreakMap.scala +++ b/raster/src/main/scala/geotrellis/raster/render/BreakMap.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/ColorMap.scala b/raster/src/main/scala/geotrellis/raster/render/ColorMap.scala index b74689f473..d29e8cf7bd 100644 --- a/raster/src/main/scala/geotrellis/raster/render/ColorMap.scala +++ b/raster/src/main/scala/geotrellis/raster/render/ColorMap.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/render/ColorMethods.scala b/raster/src/main/scala/geotrellis/raster/render/ColorMethods.scala index 376be3b73a..1818de247e 100644 --- a/raster/src/main/scala/geotrellis/raster/render/ColorMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/render/ColorMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/ColorRamp.scala b/raster/src/main/scala/geotrellis/raster/render/ColorRamp.scala index 17aa92396e..01f4d3eb0a 100644 --- a/raster/src/main/scala/geotrellis/raster/render/ColorRamp.scala +++ b/raster/src/main/scala/geotrellis/raster/render/ColorRamp.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster.histogram._ diff --git a/raster/src/main/scala/geotrellis/raster/render/ColorRamps.scala b/raster/src/main/scala/geotrellis/raster/render/ColorRamps.scala index b5853b46a5..3873d788a6 100644 --- a/raster/src/main/scala/geotrellis/raster/render/ColorRamps.scala +++ b/raster/src/main/scala/geotrellis/raster/render/ColorRamps.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/render/ImageFormats.scala b/raster/src/main/scala/geotrellis/raster/render/ImageFormats.scala index 9fd5b08bc2..9e318e62a3 100644 --- a/raster/src/main/scala/geotrellis/raster/render/ImageFormats.scala +++ b/raster/src/main/scala/geotrellis/raster/render/ImageFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import java.io.{FileOutputStream, File} diff --git a/raster/src/main/scala/geotrellis/raster/render/JpgRenderMethods.scala b/raster/src/main/scala/geotrellis/raster/render/JpgRenderMethods.scala index 5a7dfaede8..d5c9c8aa60 100644 --- a/raster/src/main/scala/geotrellis/raster/render/JpgRenderMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/render/JpgRenderMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/MultibandJpgRenderMethods.scala b/raster/src/main/scala/geotrellis/raster/render/MultibandJpgRenderMethods.scala index 2c457e90de..af9211e008 100644 --- a/raster/src/main/scala/geotrellis/raster/render/MultibandJpgRenderMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/render/MultibandJpgRenderMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/MultibandPngRenderMethods.scala b/raster/src/main/scala/geotrellis/raster/render/MultibandPngRenderMethods.scala index ccaeefda03..5f94750172 100644 --- a/raster/src/main/scala/geotrellis/raster/render/MultibandPngRenderMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/render/MultibandPngRenderMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/PngRenderMethods.scala b/raster/src/main/scala/geotrellis/raster/render/PngRenderMethods.scala index ea4174f1af..aa98fe92a8 100644 --- a/raster/src/main/scala/geotrellis/raster/render/PngRenderMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/render/PngRenderMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.render import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/render/jpg/JpgEncoder.scala b/raster/src/main/scala/geotrellis/raster/render/jpg/JpgEncoder.scala index 554cf0b16a..ff1d78e10a 100644 --- a/raster/src/main/scala/geotrellis/raster/render/jpg/JpgEncoder.scala +++ b/raster/src/main/scala/geotrellis/raster/render/jpg/JpgEncoder.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/render/jpg/Settings.scala b/raster/src/main/scala/geotrellis/raster/render/jpg/Settings.scala index 5b726fbfc8..b27febe1ac 100644 --- a/raster/src/main/scala/geotrellis/raster/render/jpg/Settings.scala +++ b/raster/src/main/scala/geotrellis/raster/render/jpg/Settings.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/render/package.scala b/raster/src/main/scala/geotrellis/raster/render/package.scala index b0ff9e2dab..7a70b47cd6 100644 --- a/raster/src/main/scala/geotrellis/raster/render/package.scala +++ b/raster/src/main/scala/geotrellis/raster/render/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.raster.histogram._ diff --git a/raster/src/main/scala/geotrellis/raster/render/png/Chunk.scala b/raster/src/main/scala/geotrellis/raster/render/png/Chunk.scala index cf8e1240b5..3de5708332 100644 --- a/raster/src/main/scala/geotrellis/raster/render/png/Chunk.scala +++ b/raster/src/main/scala/geotrellis/raster/render/png/Chunk.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/render/png/Filter.scala b/raster/src/main/scala/geotrellis/raster/render/png/Filter.scala index 8f9a2883cc..81685dc902 100644 --- a/raster/src/main/scala/geotrellis/raster/render/png/Filter.scala +++ b/raster/src/main/scala/geotrellis/raster/render/png/Filter.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/render/png/PngColorEncoding.scala b/raster/src/main/scala/geotrellis/raster/render/png/PngColorEncoding.scala index 7ede170f8b..046797eda6 100644 --- a/raster/src/main/scala/geotrellis/raster/render/png/PngColorEncoding.scala +++ b/raster/src/main/scala/geotrellis/raster/render/png/PngColorEncoding.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/render/png/PngEncoder.scala b/raster/src/main/scala/geotrellis/raster/render/png/PngEncoder.scala index a9e56c9d62..97f10c6ddd 100644 --- a/raster/src/main/scala/geotrellis/raster/render/png/PngEncoder.scala +++ b/raster/src/main/scala/geotrellis/raster/render/png/PngEncoder.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/render/png/Settings.scala b/raster/src/main/scala/geotrellis/raster/render/png/Settings.scala index b8a156cfd3..2b7eb040d6 100644 --- a/raster/src/main/scala/geotrellis/raster/render/png/Settings.scala +++ b/raster/src/main/scala/geotrellis/raster/render/png/Settings.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/render/png/Util.scala b/raster/src/main/scala/geotrellis/raster/render/png/Util.scala index 1c3bf150c3..4f9039608c 100644 --- a/raster/src/main/scala/geotrellis/raster/render/png/Util.scala +++ b/raster/src/main/scala/geotrellis/raster/render/png/Util.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/reproject/Implicits.scala b/raster/src/main/scala/geotrellis/raster/reproject/Implicits.scala index e9864398a4..82d3ec4437 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/MultibandRasterReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/MultibandRasterReprojectMethods.scala index 7ecba5014d..f8d6023557 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/MultibandRasterReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/MultibandRasterReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/MultibandTileReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/MultibandTileReprojectMethods.scala index c7e2ff6511..62d7730da7 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/MultibandTileReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/MultibandTileReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/ProjectedRasterReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/ProjectedRasterReprojectMethods.scala index c5f92a72e0..239042a4bd 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/ProjectedRasterReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/ProjectedRasterReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/RasterReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/RasterReprojectMethods.scala index d503098f9a..369d3b9730 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/RasterReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/RasterReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.proj4._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/Reproject.scala b/raster/src/main/scala/geotrellis/raster/reproject/Reproject.scala index 3ca556346f..f99c8d3723 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/Reproject.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/Reproject.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/ReprojectRasterExtent.scala b/raster/src/main/scala/geotrellis/raster/reproject/ReprojectRasterExtent.scala index 5968b52912..0b16ba4ed8 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/ReprojectRasterExtent.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/ReprojectRasterExtent.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/RowTransform.scala b/raster/src/main/scala/geotrellis/raster/reproject/RowTransform.scala index e5fe5acb73..abadd8f89f 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/RowTransform.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/RowTransform.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/SinglebandRasterReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/SinglebandRasterReprojectMethods.scala index 30e41f2d09..a2516cd626 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/SinglebandRasterReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/SinglebandRasterReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/SinglebandTileReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/SinglebandTileReprojectMethods.scala index 6bb6165bda..e03d5ac4fe 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/SinglebandTileReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/SinglebandTileReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/TileReprojectMethods.scala b/raster/src/main/scala/geotrellis/raster/reproject/TileReprojectMethods.scala index acb2a08143..75caa8e789 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/TileReprojectMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/TileReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.reproject import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/reproject/package.scala b/raster/src/main/scala/geotrellis/raster/reproject/package.scala index ef7ebb8bc1..cb0636b11a 100644 --- a/raster/src/main/scala/geotrellis/raster/reproject/package.scala +++ b/raster/src/main/scala/geotrellis/raster/reproject/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.vector.Extent diff --git a/raster/src/main/scala/geotrellis/raster/resample/AggregateResample.scala b/raster/src/main/scala/geotrellis/raster/resample/AggregateResample.scala index 2418666941..66bb8cb41d 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/AggregateResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/AggregateResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/AverageResample.scala b/raster/src/main/scala/geotrellis/raster/resample/AverageResample.scala index f287c1b7d7..efe7da6bfe 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/AverageResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/AverageResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/BicubicConvolutionResample.scala b/raster/src/main/scala/geotrellis/raster/resample/BicubicConvolutionResample.scala index ee98cd87c4..3df50e766c 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/BicubicConvolutionResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/BicubicConvolutionResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/BicubicResample.scala b/raster/src/main/scala/geotrellis/raster/resample/BicubicResample.scala index 5e9e7dcc9b..fb747b3e79 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/BicubicResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/BicubicResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/BicubicSplineResample.scala b/raster/src/main/scala/geotrellis/raster/resample/BicubicSplineResample.scala index 6e1eb92f8c..e816924c55 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/BicubicSplineResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/BicubicSplineResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/BilinearResample.scala b/raster/src/main/scala/geotrellis/raster/resample/BilinearResample.scala index cbdff2e39e..bc64100f31 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/BilinearResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/BilinearResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/CubicResample.scala b/raster/src/main/scala/geotrellis/raster/resample/CubicResample.scala index d3b50599af..a2936c8556 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/CubicResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/CubicResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/LanczosResample.scala b/raster/src/main/scala/geotrellis/raster/resample/LanczosResample.scala index 071cc095f2..24cdc71ad3 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/LanczosResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/LanczosResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/MaxResample.scala b/raster/src/main/scala/geotrellis/raster/resample/MaxResample.scala index c4927cfaaa..614654f360 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/MaxResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/MaxResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/MedianResample.scala b/raster/src/main/scala/geotrellis/raster/resample/MedianResample.scala index 48d4738ad5..cdeff2eae1 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/MedianResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/MedianResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/MinResample.scala b/raster/src/main/scala/geotrellis/raster/resample/MinResample.scala index c7bc730f48..8caf345e4c 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/MinResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/MinResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/ModeResample.scala b/raster/src/main/scala/geotrellis/raster/resample/ModeResample.scala index a94c7ac085..fad0cc1d1f 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/ModeResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/ModeResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/MultibandRasterResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/MultibandRasterResampleMethods.scala index 4b99674633..4b7755e030 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/MultibandRasterResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/MultibandRasterResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/MultibandTileResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/MultibandTileResampleMethods.scala index 0f6aa64389..a20633c4a8 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/MultibandTileResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/MultibandTileResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/NearestNeighborResample.scala b/raster/src/main/scala/geotrellis/raster/resample/NearestNeighborResample.scala index 3055616c9a..f7b763aca4 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/NearestNeighborResample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/NearestNeighborResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/RasterResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/RasterResampleMethods.scala index 05efce26fc..263b6185ce 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/RasterResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/RasterResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/Resample.scala b/raster/src/main/scala/geotrellis/raster/resample/Resample.scala index e167cca680..aba6904884 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/Resample.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/Resample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/ResampleAssign.scala b/raster/src/main/scala/geotrellis/raster/resample/ResampleAssign.scala index b8dc9a8720..b057a63a54 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/ResampleAssign.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/ResampleAssign.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/raster/src/main/scala/geotrellis/raster/resample/ResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/ResampleMethods.scala index feb8f1ee4d..96f4132ab7 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/ResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/ResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/SinglebandRasterResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/SinglebandRasterResampleMethods.scala index 92eb839539..b4fbf50716 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/SinglebandRasterResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/SinglebandRasterResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/SinglebandTileResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/SinglebandTileResampleMethods.scala index 89fc679ae4..807bdc76c2 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/SinglebandTileResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/SinglebandTileResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/TileResampleMethods.scala b/raster/src/main/scala/geotrellis/raster/resample/TileResampleMethods.scala index ce1c7124c8..1ee8cb91ac 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/TileResampleMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/TileResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.resample import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/resample/package.scala b/raster/src/main/scala/geotrellis/raster/resample/package.scala index 302a6b7836..c155d43802 100644 --- a/raster/src/main/scala/geotrellis/raster/resample/package.scala +++ b/raster/src/main/scala/geotrellis/raster/resample/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster import geotrellis.vector.Extent diff --git a/raster/src/main/scala/geotrellis/raster/sigmoidal/MultibandSigmoidalMethods.scala b/raster/src/main/scala/geotrellis/raster/sigmoidal/MultibandSigmoidalMethods.scala index 2da9d2ec37..c540f0f431 100644 --- a/raster/src/main/scala/geotrellis/raster/sigmoidal/MultibandSigmoidalMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/sigmoidal/MultibandSigmoidalMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/sigmoidal/SigmoidalContrast.scala b/raster/src/main/scala/geotrellis/raster/sigmoidal/SigmoidalContrast.scala index 517dd0bcce..248eecd4b6 100644 --- a/raster/src/main/scala/geotrellis/raster/sigmoidal/SigmoidalContrast.scala +++ b/raster/src/main/scala/geotrellis/raster/sigmoidal/SigmoidalContrast.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/sigmoidal/SinglebandSigmoidalMethods.scala b/raster/src/main/scala/geotrellis/raster/sigmoidal/SinglebandSigmoidalMethods.scala index 320168d7c9..6684c8155d 100644 --- a/raster/src/main/scala/geotrellis/raster/sigmoidal/SinglebandSigmoidalMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/sigmoidal/SinglebandSigmoidalMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/split/Implicits.scala b/raster/src/main/scala/geotrellis/raster/split/Implicits.scala index 336b0a4991..cad61ca67d 100644 --- a/raster/src/main/scala/geotrellis/raster/split/Implicits.scala +++ b/raster/src/main/scala/geotrellis/raster/split/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster.{RasterExtent, CellGrid, Raster} diff --git a/raster/src/main/scala/geotrellis/raster/split/MultibandTileSplitMethods.scala b/raster/src/main/scala/geotrellis/raster/split/MultibandTileSplitMethods.scala index 965a544345..b898c241fb 100644 --- a/raster/src/main/scala/geotrellis/raster/split/MultibandTileSplitMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/split/MultibandTileSplitMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/split/RasterExtentSplitMethods.scala b/raster/src/main/scala/geotrellis/raster/split/RasterExtentSplitMethods.scala index e001aa86a7..4c1d544b65 100644 --- a/raster/src/main/scala/geotrellis/raster/split/RasterExtentSplitMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/split/RasterExtentSplitMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/split/RasterSplitMethods.scala b/raster/src/main/scala/geotrellis/raster/split/RasterSplitMethods.scala index 1330c0caf1..6c63f5ecdd 100644 --- a/raster/src/main/scala/geotrellis/raster/split/RasterSplitMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/split/RasterSplitMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/split/SinglebandTileSplitMethods.scala b/raster/src/main/scala/geotrellis/raster/split/SinglebandTileSplitMethods.scala index 95931688a5..763f62e8cf 100644 --- a/raster/src/main/scala/geotrellis/raster/split/SinglebandTileSplitMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/split/SinglebandTileSplitMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/split/Split.scala b/raster/src/main/scala/geotrellis/raster/split/Split.scala index c2bed720de..6e4b598dda 100644 --- a/raster/src/main/scala/geotrellis/raster/split/Split.scala +++ b/raster/src/main/scala/geotrellis/raster/split/Split.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/split/SplitMethods.scala b/raster/src/main/scala/geotrellis/raster/split/SplitMethods.scala index e08c5bac8e..b751b33e22 100644 --- a/raster/src/main/scala/geotrellis/raster/split/SplitMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/split/SplitMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.split import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/stitch/Stitcher.scala b/raster/src/main/scala/geotrellis/raster/stitch/Stitcher.scala index b056b9422b..b479262052 100644 --- a/raster/src/main/scala/geotrellis/raster/stitch/Stitcher.scala +++ b/raster/src/main/scala/geotrellis/raster/stitch/Stitcher.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.stitch import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/MultibandTileSummaryMethods.scala b/raster/src/main/scala/geotrellis/raster/summary/MultibandTileSummaryMethods.scala index 83ba827967..1a3447c292 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/MultibandTileSummaryMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/MultibandTileSummaryMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/SinglebandTileSummaryMethods.scala b/raster/src/main/scala/geotrellis/raster/summary/SinglebandTileSummaryMethods.scala index 3fa0a53b2b..f2d2c2e2de 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/SinglebandTileSummaryMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/SinglebandTileSummaryMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/Statistics.scala b/raster/src/main/scala/geotrellis/raster/summary/Statistics.scala index 2cfbc4a89a..a02a3f223e 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/Statistics.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/Statistics.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/DoubleHistogramSummary.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/DoubleHistogramSummary.scala index bcf52aeab0..eb331c462c 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/DoubleHistogramSummary.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/DoubleHistogramSummary.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/IntHistogramSummary.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/IntHistogramSummary.scala index 53d0487023..4190898538 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/IntHistogramSummary.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/IntHistogramSummary.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/MaxSummary.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/MaxSummary.scala index 157b20630d..e3efa2d498 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/MaxSummary.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/MaxSummary.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/MeanSummary.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/MeanSummary.scala index 3290b4a81d..b4a38f55cd 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/MeanSummary.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/MeanSummary.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/MinSummary.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/MinSummary.scala index c55c7d1b81..259f623ef7 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/MinSummary.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/MinSummary.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/PolygonalSummaryMethods.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/PolygonalSummaryMethods.scala index 569a01f3a3..5b137b6bf0 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/PolygonalSummaryMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/PolygonalSummaryMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/SumSummary.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/SumSummary.scala index 1cb8196135..13f8c6f949 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/SumSummary.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/SumSummary.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/summary/polygonal/TilePolygonalSummaryHandler.scala b/raster/src/main/scala/geotrellis/raster/summary/polygonal/TilePolygonalSummaryHandler.scala index 5b5d559ca9..02ac3694d4 100644 --- a/raster/src/main/scala/geotrellis/raster/summary/polygonal/TilePolygonalSummaryHandler.scala +++ b/raster/src/main/scala/geotrellis/raster/summary/polygonal/TilePolygonalSummaryHandler.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.summary.polygonal import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/vectorize/Polygonizer.scala b/raster/src/main/scala/geotrellis/raster/vectorize/Polygonizer.scala index 100f7444de..de6a047ec2 100644 --- a/raster/src/main/scala/geotrellis/raster/vectorize/Polygonizer.scala +++ b/raster/src/main/scala/geotrellis/raster/vectorize/Polygonizer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.vectorize import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/vectorize/RasterToPoints.scala b/raster/src/main/scala/geotrellis/raster/vectorize/RasterToPoints.scala index cb0611e6c3..c48fcee1e1 100755 --- a/raster/src/main/scala/geotrellis/raster/vectorize/RasterToPoints.scala +++ b/raster/src/main/scala/geotrellis/raster/vectorize/RasterToPoints.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.vectorize import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/vectorize/SinglebandRasterVectorizeMethods.scala b/raster/src/main/scala/geotrellis/raster/vectorize/SinglebandRasterVectorizeMethods.scala index 21d233bd98..640c6bc983 100644 --- a/raster/src/main/scala/geotrellis/raster/vectorize/SinglebandRasterVectorizeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/vectorize/SinglebandRasterVectorizeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.vectorize import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/vectorize/TileVectorizeMethods.scala b/raster/src/main/scala/geotrellis/raster/vectorize/TileVectorizeMethods.scala index 628bf3576a..a3bbf4e25a 100644 --- a/raster/src/main/scala/geotrellis/raster/vectorize/TileVectorizeMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/vectorize/TileVectorizeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.vectorize import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/vectorize/Vectorize.scala b/raster/src/main/scala/geotrellis/raster/vectorize/Vectorize.scala index 2cb43549d2..7a110d40cb 100644 --- a/raster/src/main/scala/geotrellis/raster/vectorize/Vectorize.scala +++ b/raster/src/main/scala/geotrellis/raster/vectorize/Vectorize.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/raster/src/main/scala/geotrellis/raster/viewshed/ApproxViewshed.scala b/raster/src/main/scala/geotrellis/raster/viewshed/ApproxViewshed.scala index ea843289b4..38ca1c971f 100644 --- a/raster/src/main/scala/geotrellis/raster/viewshed/ApproxViewshed.scala +++ b/raster/src/main/scala/geotrellis/raster/viewshed/ApproxViewshed.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.viewshed import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/viewshed/Viewshed.scala b/raster/src/main/scala/geotrellis/raster/viewshed/Viewshed.scala index bfb47f7426..189da40746 100644 --- a/raster/src/main/scala/geotrellis/raster/viewshed/Viewshed.scala +++ b/raster/src/main/scala/geotrellis/raster/viewshed/Viewshed.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.viewshed import geotrellis.raster._ diff --git a/raster/src/main/scala/geotrellis/raster/viewshed/ViewshedMethods.scala b/raster/src/main/scala/geotrellis/raster/viewshed/ViewshedMethods.scala index c67a78d457..d4546563f3 100644 --- a/raster/src/main/scala/geotrellis/raster/viewshed/ViewshedMethods.scala +++ b/raster/src/main/scala/geotrellis/raster/viewshed/ViewshedMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.raster.viewshed import geotrellis.raster._ diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormatSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormatSpec.scala index 5cbcc64e64..8dd38d128c 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormatSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormatSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.proj4._ diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3AttributeStoreSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3AttributeStoreSpec.scala index 5d883f26b8..16a1ce2675 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3AttributeStoreSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3AttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffRDDSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffRDDSpec.scala index aefd7a2ebc..2225ba2b49 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffRDDSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster._ diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffReadingSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffReadingSpec.scala index ef3fecba68..12bd01e38c 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffReadingSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3GeoTiffReadingSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.util diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3InputFormatSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3InputFormatSpec.scala index adda1c80fc..796d370542 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3InputFormatSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3InputFormatSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.io.s3.testkit._ diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3RangeReaderSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3RangeReaderSpec.scala index 3b9d1b6619..f1b6d00389 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3RangeReaderSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3RangeReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.util import java.nio.file.{ Paths, Files } diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SaveImagesSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SaveImagesSpec.scala index b2e923922f..113910617f 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SaveImagesSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SaveImagesSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.render import geotrellis.raster.{Tile, TileLayout} diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpaceTimeSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpaceTimeSpec.scala index 368b68fdc7..5aa969d7c5 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpaceTimeSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster.Tile diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpatialSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpatialSpec.scala index 63e16418a4..dbabdc16a2 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpatialSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3SpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster.Tile diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpaceTimeSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpaceTimeSpec.scala index af5aac1b13..ca0f1bbc73 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpaceTimeSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster.{Tile, TileFeature} diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpatialSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpatialSpec.scala index 7bb8b4d86d..a76b0c4fc1 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpatialSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/S3TileFeatureSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster.{Tile, TileFeature} diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormatSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormatSpec.scala index 7694abd34d..9b4e0fb08a 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormatSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormatSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.proj4.LatLng diff --git a/s3-test/src/test/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormatSpec.scala b/s3-test/src/test/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormatSpec.scala index 68299a4080..a22a48ed5d 100644 --- a/s3-test/src/test/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormatSpec.scala +++ b/s3-test/src/test/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormatSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import com.amazonaws.services.s3.model.GetObjectRequest diff --git a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3Client.scala b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3Client.scala index 11cf11ca5a..f63d2d572e 100644 --- a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3Client.scala +++ b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3Client.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.testkit import geotrellis.spark.io.s3._ diff --git a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3CollectionLayerReader.scala b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3CollectionLayerReader.scala index fdaf4c9299..578574044c 100644 --- a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3CollectionLayerReader.scala +++ b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3CollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.testkit import geotrellis.spark.io._ diff --git a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerReader.scala b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerReader.scala index b06c897d5e..e3633f14b2 100644 --- a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerReader.scala +++ b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.testkit import geotrellis.spark._ diff --git a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerWriter.scala b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerWriter.scala index 29b946bae3..0c03e0d6de 100644 --- a/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerWriter.scala +++ b/s3-testkit/src/main/scala/geotrellis/spark/io/s3/testkit/MockS3LayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.testkit import geotrellis.spark.io._ diff --git a/s3-testkit/src/test/scala/geotrellis/spark/io/s3/testkit/MockS3ClientSpec.scala b/s3-testkit/src/test/scala/geotrellis/spark/io/s3/testkit/MockS3ClientSpec.scala index e3c6b72f7e..ee29dd880a 100644 --- a/s3-testkit/src/test/scala/geotrellis/spark/io/s3/testkit/MockS3ClientSpec.scala +++ b/s3-testkit/src/test/scala/geotrellis/spark/io/s3/testkit/MockS3ClientSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.testkit import geotrellis.spark.io.s3._ diff --git a/s3/src/main/resources/reference.conf b/s3/src/main/resources/reference.conf index ca2ae0e41a..263933b650 100644 --- a/s3/src/main/resources/reference.conf +++ b/s3/src/main/resources/reference.conf @@ -1,3 +1,17 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.s3.threads { collection.read = default rdd { diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/AmazonS3Client.scala b/s3/src/main/scala/geotrellis/spark/io/s3/AmazonS3Client.scala index 3b523f069e..2b6b487946 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/AmazonS3Client.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/AmazonS3Client.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import com.amazonaws.ClientConfiguration diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/BytesS3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/BytesS3InputFormat.scala index 3dd4c5367c..e3219f7f97 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/BytesS3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/BytesS3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import org.apache.hadoop.mapreduce.{InputSplit, TaskAttemptContext} diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormat.scala index c33d24e517..a409c01388 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/GeoTiffS3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.proj4.CRS diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/MultibandGeoTiffS3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/MultibandGeoTiffS3InputFormat.scala index 5bdece51ea..c751c3bbd2 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/MultibandGeoTiffS3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/MultibandGeoTiffS3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3AttributeStore.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3AttributeStore.scala index 3827992407..a2ce7df9ef 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3AttributeStore.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3AttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import java.nio.charset.Charset diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3Client.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3Client.scala index f16d2f97e8..afb29357cc 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3Client.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3Client.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import com.amazonaws.ClientConfiguration diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionLayerReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionLayerReader.scala index 2ed949f162..8b1617c772 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionLayerReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionReader.scala index 35515939e9..e0b5cf3440 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3CollectionReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3GeoTiffRDD.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3GeoTiffRDD.scala index bcadc5186c..504d95f0c4 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3GeoTiffRDD.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3GeoTiffRDD.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import java.nio.ByteBuffer diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3InputFormat.scala index bcd6b3464b..419a77d1bf 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.proj4.CRS diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3InputSplit.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3InputSplit.scala index 11e1fdb100..eb5a8fb700 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3InputSplit.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3InputSplit.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import java.io.{DataOutput, DataInput} diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerCopier.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerCopier.scala index 4dee80bf0e..2a999933c7 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerCopier.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerDeleter.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerDeleter.scala index e6b505e439..57a65f9b65 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerDeleter.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.LayerId diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerHeader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerHeader.scala index c02dc7add2..b6bc05d6db 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerHeader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster.Tile diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerManager.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerManager.scala index e41a8478ae..05a3802368 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerManager.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerMover.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerMover.scala index 568a016091..e0a2407c01 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerMover.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.LayerId diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReader.scala index d9925a0623..dfbcdd9e7a 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReindexer.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReindexer.scala index 63cf100b00..a9f82eab9f 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReindexer.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.util.cache.Cache diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerUpdater.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerUpdater.scala index 78f4a3a6cf..831290c6d6 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerUpdater.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerWriter.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerWriter.scala index c37842ac32..c03d8bc650 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerWriter.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3LayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster.{MultibandTile, Tile} diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDReader.scala index 2050b8c6ea..bf16cf82cc 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDWriter.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDWriter.scala index 64f8b1862d..4947b1d7d4 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDWriter.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3RDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.io._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3RecordReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3RecordReader.scala index 62f4345526..364aa6885b 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3RecordReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3RecordReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.io.s3.util.S3RangeReader diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/S3ValueReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/S3ValueReader.scala index 9fb7b05808..c94882e481 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/S3ValueReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/S3ValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3.scala b/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3.scala index 0beb9f33e6..d55bdfc812 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.spark.render._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3Methods.scala b/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3Methods.scala index 6fdd520eb8..a8be9aaff5 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3Methods.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/SaveToS3Methods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.util.MethodExtensions diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormat.scala index 5fc9f57834..1280a2d727 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/TemporalGeoTiffS3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/TemporalMultibandGeoTiffS3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/TemporalMultibandGeoTiffS3InputFormat.scala index c459d0a549..f85aac0783 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/TemporalMultibandGeoTiffS3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/TemporalMultibandGeoTiffS3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.raster._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormat.scala b/s3/src/main/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormat.scala index 2f32b27388..7942106ad9 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormat.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/TiffTagsS3InputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3 import geotrellis.util.ByteReader diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/package.scala b/s3/src/main/scala/geotrellis/spark/io/s3/package.scala index 109e712a0a..2e7d956c0a 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/package.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import org.apache.spark.rdd.RDD diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/slippy/S3SlippyTileReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/slippy/S3SlippyTileReader.scala index 4b238ec127..2bf581cbea 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/slippy/S3SlippyTileReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/slippy/S3SlippyTileReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.vector._ diff --git a/s3/src/main/scala/geotrellis/spark/io/s3/util/S3RangeReader.scala b/s3/src/main/scala/geotrellis/spark/io/s3/util/S3RangeReader.scala index 29d641fdc0..53d64b91af 100644 --- a/s3/src/main/scala/geotrellis/spark/io/s3/util/S3RangeReader.scala +++ b/s3/src/main/scala/geotrellis/spark/io/s3/util/S3RangeReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.s3.util import geotrellis.spark.io.s3._ diff --git a/shapefile/src/main/scala/geotrellis/shapefile/ShapeFileReader.scala b/shapefile/src/main/scala/geotrellis/shapefile/ShapeFileReader.scala index 221e39b993..803d86588f 100644 --- a/shapefile/src/main/scala/geotrellis/shapefile/ShapeFileReader.scala +++ b/shapefile/src/main/scala/geotrellis/shapefile/ShapeFileReader.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/shapefile/src/test/scala/geotrellis/shapefile/ShapeFileReaderSpec.scala b/shapefile/src/test/scala/geotrellis/shapefile/ShapeFileReaderSpec.scala index 1eda766d2a..f9867989db 100644 --- a/shapefile/src/test/scala/geotrellis/shapefile/ShapeFileReaderSpec.scala +++ b/shapefile/src/test/scala/geotrellis/shapefile/ShapeFileReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.shapefile import geotrellis.vector._ diff --git a/slick/src/main/resources/reference.conf b/slick/src/main/resources/reference.conf index c3f150acf8..247857993b 100644 --- a/slick/src/main/resources/reference.conf +++ b/slick/src/main/resources/reference.conf @@ -1,3 +1,17 @@ +# Copyright 2016 Azavea +# +# 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. + db { user = "postgres" password = "postgres" diff --git a/slick/src/main/scala/geotrellis/slick/PostGisProjectionSupport.scala b/slick/src/main/scala/geotrellis/slick/PostGisProjectionSupport.scala index 361558bb99..43e848aadf 100644 --- a/slick/src/main/scala/geotrellis/slick/PostGisProjectionSupport.scala +++ b/slick/src/main/scala/geotrellis/slick/PostGisProjectionSupport.scala @@ -1,29 +1,17 @@ /* - * Copyright (c) 2013, Minglei Tu (tmlneu@gmail.com) - * Copyright (c) 2015, Azavea - * All rights reserved. + * Copyright 2016 Azavea * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: + * 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 * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. + * http://www.apache.org/licenses/LICENSE-2.0 * - * * 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. + * 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. */ package geotrellis.slick diff --git a/slick/src/main/scala/geotrellis/slick/PostGisSupport.scala b/slick/src/main/scala/geotrellis/slick/PostGisSupport.scala index 9ae71ec789..1d02cdfcc3 100644 --- a/slick/src/main/scala/geotrellis/slick/PostGisSupport.scala +++ b/slick/src/main/scala/geotrellis/slick/PostGisSupport.scala @@ -1,29 +1,17 @@ /* - * Copyright (c) 2013, Minglei Tu (tmlneu@gmail.com) - * Copyright (c) 2015, Azavea - * All rights reserved. + * Copyright 2016 Azavea * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: + * 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 * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. + * http://www.apache.org/licenses/LICENSE-2.0 * - * * 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. + * 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. */ package geotrellis.slick diff --git a/slick/src/main/scala/geotrellis/slick/Projected.scala b/slick/src/main/scala/geotrellis/slick/Projected.scala index 75cf097083..2ad4c16134 100644 --- a/slick/src/main/scala/geotrellis/slick/Projected.scala +++ b/slick/src/main/scala/geotrellis/slick/Projected.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/slick/src/main/scala/geotrellis/slick/package.scala b/slick/src/main/scala/geotrellis/slick/package.scala index a4f6fbcf62..3a32326a56 100644 --- a/slick/src/main/scala/geotrellis/slick/package.scala +++ b/slick/src/main/scala/geotrellis/slick/package.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/slick/src/test/scala/geotrellis/slick/Data.scala b/slick/src/test/scala/geotrellis/slick/Data.scala index 7ccac614b4..2f32e341a7 100644 --- a/slick/src/test/scala/geotrellis/slick/Data.scala +++ b/slick/src/test/scala/geotrellis/slick/Data.scala @@ -1,19 +1,17 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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. - * - * Author: Adam Hinz, Azavea */ package geotrellis.slick diff --git a/slick/src/test/scala/geotrellis/slick/PostgisSpec.scala b/slick/src/test/scala/geotrellis/slick/PostgisSpec.scala index de1aea87e1..a2b07610a9 100644 --- a/slick/src/test/scala/geotrellis/slick/PostgisSpec.scala +++ b/slick/src/test/scala/geotrellis/slick/PostgisSpec.scala @@ -1,19 +1,17 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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. - * - * Author: Adam Hinz, Azavea */ package geotrellis.slick diff --git a/slick/src/test/scala/geotrellis/slick/ProjectedSpec.scala b/slick/src/test/scala/geotrellis/slick/ProjectedSpec.scala index 2c109ab5cd..81fe439d1c 100644 --- a/slick/src/test/scala/geotrellis/slick/ProjectedSpec.scala +++ b/slick/src/test/scala/geotrellis/slick/ProjectedSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/slick/src/test/scala/geotrellis/slick/TestDatabase.scala b/slick/src/test/scala/geotrellis/slick/TestDatabase.scala index 8e6590caed..d39cfda351 100644 --- a/slick/src/test/scala/geotrellis/slick/TestDatabase.scala +++ b/slick/src/test/scala/geotrellis/slick/TestDatabase.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.slick import com.typesafe.config.{ConfigFactory,Config} diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/Etl.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/Etl.scala index d359e0626e..cbf5da9a47 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/Etl.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/Etl.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.raster.CellGrid diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/InputPlugin.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/InputPlugin.scala index 5bd83383de..7f8f684c9e 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/InputPlugin.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/InputPlugin.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.EtlConf diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/MultibandIngest.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/MultibandIngest.scala index 9196b8cdfe..9fe256e756 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/MultibandIngest.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/MultibandIngest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/OutputPlugin.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/OutputPlugin.scala index d6f9d62d39..9e005cb7bb 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/OutputPlugin.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/OutputPlugin.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.EtlConf diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/Plugin.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/Plugin.scala index e3c2064a82..8b3a6fca72 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/Plugin.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/Plugin.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl trait Plugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/SinglebandIngest.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/SinglebandIngest.scala index 6cce87260c..70cd201e86 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/SinglebandIngest.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/SinglebandIngest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/TypedModule.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/TypedModule.scala index e2eab42f12..9a4b2c37f8 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/TypedModule.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/TypedModule.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import scala.reflect.runtime.universe._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloModule.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloModule.scala index 893da72df2..210f731e3a 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloModule.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloModule.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.accumulo import geotrellis.spark.etl.TypedModule diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloOutput.scala index 7282e19f6f..76113ba8f7 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/AccumuloOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.accumulo import geotrellis.spark.etl.OutputPlugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpaceTimeAccumuloOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpaceTimeAccumuloOutput.scala index 899b30f6a2..55fe3fc127 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpaceTimeAccumuloOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpaceTimeAccumuloOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.accumulo import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpatialAccumuloOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpatialAccumuloOutput.scala index c9f35aa2e5..76fa850ed0 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpatialAccumuloOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/MultibandSpatialAccumuloOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.accumulo import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpaceTimeAccumuloOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpaceTimeAccumuloOutput.scala index a75f840603..288cd13b87 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpaceTimeAccumuloOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpaceTimeAccumuloOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.accumulo import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpatialAccumuloOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpatialAccumuloOutput.scala index 39adb1f38a..44771bbc1c 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpatialAccumuloOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/SpatialAccumuloOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.accumulo import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/package.scala index f3ff985a9b..628f15f0c9 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/accumulo/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.{AccumuloPath, AccumuloProfile, Backend, BackendProfile} diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraModule.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraModule.scala index 66d89dc6fb..e1dc12b097 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraModule.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraModule.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.cassandra import geotrellis.spark.etl.TypedModule diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraOutput.scala index 5f9fb11c0f..ba0aa1b89a 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/CassandraOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.cassandra import geotrellis.spark.etl.OutputPlugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpaceTimeCassandraOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpaceTimeCassandraOutput.scala index a0b51fcb13..cd680d8ea5 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpaceTimeCassandraOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpaceTimeCassandraOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.cassandra import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpatialCassandraOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpatialCassandraOutput.scala index b1faf10fdb..4ff4c7e524 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpatialCassandraOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/MultibandSpatialCassandraOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.cassandra import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpaceTimeCassandraOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpaceTimeCassandraOutput.scala index 927a6ddae9..0851690fcf 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpaceTimeCassandraOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpaceTimeCassandraOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.cassandra import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpatialCassandraOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpatialCassandraOutput.scala index 9bf0ac0771..36ed856e58 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpatialCassandraOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/SpatialCassandraOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.cassandra import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/package.scala index c3de437fec..095fd2c55f 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/cassandra/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.{Backend, BackendProfile, CassandraPath, CassandraProfile} diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/Backend.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/Backend.scala index c2b7a7b634..499d66a839 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/Backend.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/Backend.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config case class Backend(`type`: BackendType, path: BackendPath, profile: Option[BackendProfile] = None) diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendPath.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendPath.scala index 36f130dbb4..3c0304d0c2 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendPath.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendPath.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config sealed trait BackendPath diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendProfiles.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendProfiles.scala index c7e3904b47..a6b95b9845 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendProfiles.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendProfiles.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config import geotrellis.spark.io.accumulo.AccumuloInstance diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendType.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendType.scala index eda969b1d4..98d451bc4e 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendType.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BackendType.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config sealed trait BackendType { diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BaseEtlConf.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BaseEtlConf.scala index 752de92aa5..df65a2daf1 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/BaseEtlConf.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/BaseEtlConf.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config import geotrellis.spark.etl.config.json._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/ConfigParse.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/ConfigParse.scala index c2e7c9a67f..67b741525d 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/ConfigParse.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/ConfigParse.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config import com.github.fge.jsonschema.main.JsonSchemaFactory diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/EtlConf.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/EtlConf.scala index ac2004c254..ed43659b74 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/EtlConf.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/EtlConf.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config class EtlConf(val input: Input, val output: Output) extends Serializable { diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestKeyIndexMethod.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestKeyIndexMethod.scala index 23950b2c44..1b8ff3fa98 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestKeyIndexMethod.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestKeyIndexMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config case class IngestKeyIndexMethod( diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestLayoutScheme.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestLayoutScheme.scala index d1edf00b9f..80e2958481 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestLayoutScheme.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/IngestLayoutScheme.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config import geotrellis.proj4.CRS diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/Input.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/Input.scala index eb46301698..afce2ff931 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/Input.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/Input.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config import geotrellis.proj4.CRS diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/Output.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/Output.scala index 851a235d28..9c0d82709f 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/Output.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/Output.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config import geotrellis.proj4.CRS diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/ReprojectMethod.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/ReprojectMethod.scala index ec2476fc39..69d8bc5e89 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/ReprojectMethod.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/ReprojectMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config sealed trait ReprojectMethod { diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/ConfigFormats.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/ConfigFormats.scala index 1d08effd96..b0ebad6020 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/ConfigFormats.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/ConfigFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config.json import geotrellis.vector.io._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/package.scala index 0c9019080f..d82e6688cb 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/config/json/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.config package object json extends ConfigFormats diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileModule.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileModule.scala index e03c27cac1..f329c4b6a5 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileModule.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileModule.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.file import geotrellis.spark.etl.TypedModule diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileOutput.scala index 635a403b1f..7a8e7abf75 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/FileOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.file import geotrellis.spark.etl.OutputPlugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpaceTimeFileOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpaceTimeFileOutput.scala index ae40aa1fef..07463f952f 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpaceTimeFileOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpaceTimeFileOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.file import geotrellis.raster._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpatialFileOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpatialFileOutput.scala index ad5846b536..6b7cf9a3d5 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpatialFileOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/MultibandSpatialFileOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.file import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpaceTimeFileOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpaceTimeFileOutput.scala index 2a74458482..b1e796f5d5 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpaceTimeFileOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpaceTimeFileOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.file import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpatialFileOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpatialFileOutput.scala index 907ae39daf..1fc1594ce7 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpatialFileOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/SpatialFileOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.file import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/file/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/file/package.scala index 12c5a47fbb..072ff1b57a 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/file/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/file/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.{Backend, HadoopPath} diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffHadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffHadoopInput.scala index cf7ea60758..816af45a4c 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffHadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffHadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.proj4.CRS diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffSequenceHadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffSequenceHadoopInput.scala index 01c883ea9b..3a58afd059 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffSequenceHadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/GeoTiffSequenceHadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopInput.scala index 5cf59186e9..646809fdfb 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.spark.etl._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopModule.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopModule.scala index ddbd18576c..e8a0042743 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopModule.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopModule.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.spark.etl.TypedModule diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopOutput.scala index 64c0222029..91664b9c1e 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/HadoopOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.spark.etl.OutputPlugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffHadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffHadoopInput.scala index 8ce12ae476..add666d45d 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffHadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffHadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffSequenceHadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffSequenceHadoopInput.scala index fd0b279746..2ea1a36f8c 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffSequenceHadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandGeoTiffSequenceHadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpaceTimeHadoopOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpaceTimeHadoopOutput.scala index 78be364e2f..a4dee1a03d 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpaceTimeHadoopOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpaceTimeHadoopOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpatialHadoopOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpatialHadoopOutput.scala index d10221a315..88e7beaae4 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpatialHadoopOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/MultibandSpatialHadoopOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpaceTimeHadoopOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpaceTimeHadoopOutput.scala index 84b04cfeca..5dc7000c83 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpaceTimeHadoopOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpaceTimeHadoopOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialHadoopOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialHadoopOutput.scala index 16e721d6d3..daa4041436 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialHadoopOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialHadoopOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialRenderOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialRenderOutput.scala index 62546aff97..1852509e40 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialRenderOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/SpatialRenderOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import java.math.BigInteger diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalGeoTiffHadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalGeoTiffHadoopInput.scala index 1edf3bfe7a..9dd12be5a0 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalGeoTiffHadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalGeoTiffHadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalMultibandGeoTiffHadoopInput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalMultibandGeoTiffHadoopInput.scala index c627812f82..cc945f0e84 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalMultibandGeoTiffHadoopInput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/TemporalMultibandGeoTiffHadoopInput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hadoop import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/package.scala index ab09816ca1..ad228cc7bc 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hadoop/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.{Backend, HadoopPath} diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseModule.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseModule.scala index ab5e960bcd..ae93c4f183 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseModule.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseModule.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hbase import geotrellis.spark.etl.TypedModule diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseOutput.scala index 32ab90528b..7762ecd99e 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/HBaseOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hbase import geotrellis.spark.etl.OutputPlugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpaceTimeHBaseOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpaceTimeHBaseOutput.scala index 065f75c6a5..0ee85704d0 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpaceTimeHBaseOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpaceTimeHBaseOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hbase import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpatialHBaseOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpatialHBaseOutput.scala index 7e3abd0610..4db984b822 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpatialHBaseOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/MultibandSpatialHBaseOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hbase import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpaceTimeHBaseOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpaceTimeHBaseOutput.scala index 8116b07094..7d6974a1ab 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpaceTimeHBaseOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpaceTimeHBaseOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hbase import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpatialHBaseOutput.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpatialHBaseOutput.scala index 2297299a44..43d63d4207 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpatialHBaseOutput.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/SpatialHBaseOutput.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.hbase import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/package.scala index a8b05816ce..c68bf18872 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/hbase/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.{Backend, BackendProfile, HBasePath, HBaseProfile} diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/GeoTiffS3Input.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/GeoTiffS3Input.scala index b20e243905..d3b2b2fe4e 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/GeoTiffS3Input.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/GeoTiffS3Input.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/MultibandGeoTiffS3Input.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/MultibandGeoTiffS3Input.scala index 02dd6ac64f..0559d42523 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/MultibandGeoTiffS3Input.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/MultibandGeoTiffS3Input.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Input.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Input.scala index 6899873bd4..0147346e92 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Input.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Input.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.spark.etl._ diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Module.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Module.scala index a8b21a5700..fcf83cc555 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Module.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Module.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.spark.etl.TypedModule diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Output.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Output.scala index e7a194a7f2..3fb0467c45 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Output.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/S3Output.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.spark.etl.OutputPlugin diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeMultibandS3Output.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeMultibandS3Output.scala index 8a6bbaeb3a..04775d317a 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeMultibandS3Output.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeMultibandS3Output.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeS3Output.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeS3Output.scala index 8312c5e778..18c9b1ef52 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeS3Output.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpaceTimeS3Output.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialMultibandS3Output.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialMultibandS3Output.scala index c74d1feb33..a4cd134985 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialMultibandS3Output.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialMultibandS3Output.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialS3Output.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialS3Output.scala index 14d28e750a..c284750946 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialS3Output.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/SpatialS3Output.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalGeoTiffS3Input.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalGeoTiffS3Input.scala index 4f5510dbfd..752056b7f2 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalGeoTiffS3Input.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalGeoTiffS3Input.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.Tile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalMultibandGeoTiffS3Input.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalMultibandGeoTiffS3Input.scala index 2686958a27..ecabae4310 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalMultibandGeoTiffS3Input.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/TemporalMultibandGeoTiffS3Input.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl.s3 import geotrellis.raster.MultibandTile diff --git a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/package.scala b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/package.scala index 7127d5382d..171c54f021 100644 --- a/spark-etl/src/main/scala/geotrellis/spark/etl/s3/package.scala +++ b/spark-etl/src/main/scala/geotrellis/spark/etl/s3/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.spark.etl.config.{Backend, S3Path} diff --git a/spark-etl/src/test/scala/geotrellis/spark/etl/EtlSpec.scala b/spark-etl/src/test/scala/geotrellis/spark/etl/EtlSpec.scala index 3df068367a..debfb43d6c 100644 --- a/spark-etl/src/test/scala/geotrellis/spark/etl/EtlSpec.scala +++ b/spark-etl/src/test/scala/geotrellis/spark/etl/EtlSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.etl import geotrellis.raster.{CellSize, CellType} diff --git a/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDBuilders.scala b/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDBuilders.scala index 617399d16f..767adea53c 100644 --- a/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDBuilders.scala +++ b/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDBuilders.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.testkit import geotrellis.proj4._ diff --git a/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDMatchers.scala b/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDMatchers.scala index 5208751a1c..c0f2411d0f 100644 --- a/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDMatchers.scala +++ b/spark-testkit/src/main/scala/geotrellis/spark/testkit/TileLayerRDDMatchers.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark-testkit/src/main/scala/geotrellis/spark/testkit/package.scala b/spark-testkit/src/main/scala/geotrellis/spark/testkit/package.scala index b551865464..2a89d60d5e 100644 --- a/spark-testkit/src/main/scala/geotrellis/spark/testkit/package.scala +++ b/spark-testkit/src/main/scala/geotrellis/spark/testkit/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark package object testkit { diff --git a/spark/src/main/resources/reference.conf b/spark/src/main/resources/reference.conf index 2cd37c9845..494b153163 100644 --- a/spark/src/main/resources/reference.conf +++ b/spark/src/main/resources/reference.conf @@ -1,3 +1,17 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.file.threads { collection.read = default rdd.read = default diff --git a/spark/src/main/scala/geotrellis/spark/Boundable.scala b/spark/src/main/scala/geotrellis/spark/Boundable.scala index f4fcace9f1..7e63322b1e 100644 --- a/spark/src/main/scala/geotrellis/spark/Boundable.scala +++ b/spark/src/main/scala/geotrellis/spark/Boundable.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark /** This type class marks K as point that can be bounded in space. diff --git a/spark/src/main/scala/geotrellis/spark/CellGridLayoutCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/CellGridLayoutCollectionMethods.scala index 6f250d24c4..0916969a74 100644 --- a/spark/src/main/scala/geotrellis/spark/CellGridLayoutCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/CellGridLayoutCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/CellGridLayoutRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/CellGridLayoutRDDMethods.scala index b4adfee574..6ad0163f9d 100644 --- a/spark/src/main/scala/geotrellis/spark/CellGridLayoutRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/CellGridLayoutRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/ContextCollection.scala b/spark/src/main/scala/geotrellis/spark/ContextCollection.scala index e70f3e1abc..90ab028fe0 100644 --- a/spark/src/main/scala/geotrellis/spark/ContextCollection.scala +++ b/spark/src/main/scala/geotrellis/spark/ContextCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark object ContextCollection { diff --git a/spark/src/main/scala/geotrellis/spark/ContextRDD.scala b/spark/src/main/scala/geotrellis/spark/ContextRDD.scala index f456ddfa60..3e7f739130 100644 --- a/spark/src/main/scala/geotrellis/spark/ContextRDD.scala +++ b/spark/src/main/scala/geotrellis/spark/ContextRDD.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/ContextRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/ContextRDDMethods.scala index c21b5ba4c5..9e09499768 100644 --- a/spark/src/main/scala/geotrellis/spark/ContextRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/ContextRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import org.apache.spark.rdd._ diff --git a/spark/src/main/scala/geotrellis/spark/KeyBounds.scala b/spark/src/main/scala/geotrellis/spark/KeyBounds.scala index 4e9d1e6585..6b0a0950b8 100644 --- a/spark/src/main/scala/geotrellis/spark/KeyBounds.scala +++ b/spark/src/main/scala/geotrellis/spark/KeyBounds.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster.GridBounds diff --git a/spark/src/main/scala/geotrellis/spark/LayerId.scala b/spark/src/main/scala/geotrellis/spark/LayerId.scala index bb8ae77362..497c1d57d0 100644 --- a/spark/src/main/scala/geotrellis/spark/LayerId.scala +++ b/spark/src/main/scala/geotrellis/spark/LayerId.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark /** Identifies a Layer by it's name and zoom level */ diff --git a/spark/src/main/scala/geotrellis/spark/Metadata.scala b/spark/src/main/scala/geotrellis/spark/Metadata.scala index c170d3010f..fdb302051d 100644 --- a/spark/src/main/scala/geotrellis/spark/Metadata.scala +++ b/spark/src/main/scala/geotrellis/spark/Metadata.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark trait Metadata[M] { diff --git a/spark/src/main/scala/geotrellis/spark/MultibandTileLayerRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/MultibandTileLayerRDDMethods.scala index 059d3755ab..0f1fec0e4f 100644 --- a/spark/src/main/scala/geotrellis/spark/MultibandTileLayerRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/MultibandTileLayerRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/SpaceTimeKey.scala b/spark/src/main/scala/geotrellis/spark/SpaceTimeKey.scala index e308d2e304..aa5fd23ee1 100644 --- a/spark/src/main/scala/geotrellis/spark/SpaceTimeKey.scala +++ b/spark/src/main/scala/geotrellis/spark/SpaceTimeKey.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.util._ diff --git a/spark/src/main/scala/geotrellis/spark/SpatialKey.scala b/spark/src/main/scala/geotrellis/spark/SpatialKey.scala index af2142b18d..68e6d87e5e 100644 --- a/spark/src/main/scala/geotrellis/spark/SpatialKey.scala +++ b/spark/src/main/scala/geotrellis/spark/SpatialKey.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import org.apache.spark.rdd.RDD diff --git a/spark/src/main/scala/geotrellis/spark/TemporalKey.scala b/spark/src/main/scala/geotrellis/spark/TemporalKey.scala index 6635fd9175..625f622327 100644 --- a/spark/src/main/scala/geotrellis/spark/TemporalKey.scala +++ b/spark/src/main/scala/geotrellis/spark/TemporalKey.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import java.time.{ZoneOffset, ZonedDateTime} diff --git a/spark/src/main/scala/geotrellis/spark/TemporalProjectedExtent.scala b/spark/src/main/scala/geotrellis/spark/TemporalProjectedExtent.scala index 36cfba1f94..0a4dc83f12 100644 --- a/spark/src/main/scala/geotrellis/spark/TemporalProjectedExtent.scala +++ b/spark/src/main/scala/geotrellis/spark/TemporalProjectedExtent.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.proj4._ diff --git a/spark/src/main/scala/geotrellis/spark/TileLayerMetadata.scala b/spark/src/main/scala/geotrellis/spark/TileLayerMetadata.scala index 9d94156beb..86eeccb8d2 100644 --- a/spark/src/main/scala/geotrellis/spark/TileLayerMetadata.scala +++ b/spark/src/main/scala/geotrellis/spark/TileLayerMetadata.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/TileLayerRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/TileLayerRDDMethods.scala index e7b320efc0..6299fbb00f 100644 --- a/spark/src/main/scala/geotrellis/spark/TileLayerRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/TileLayerRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/buffer/BufferSizes.scala b/spark/src/main/scala/geotrellis/spark/buffer/BufferSizes.scala index 57161961f1..f087033eaf 100644 --- a/spark/src/main/scala/geotrellis/spark/buffer/BufferSizes.scala +++ b/spark/src/main/scala/geotrellis/spark/buffer/BufferSizes.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.buffer case class BufferSizes(left: Int, right: Int, bottom: Int, top: Int) diff --git a/spark/src/main/scala/geotrellis/spark/buffer/BufferTiles.scala b/spark/src/main/scala/geotrellis/spark/buffer/BufferTiles.scala index 5f1974abe6..bb28d4113a 100644 --- a/spark/src/main/scala/geotrellis/spark/buffer/BufferTiles.scala +++ b/spark/src/main/scala/geotrellis/spark/buffer/BufferTiles.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.buffer import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/buffer/BufferTilesMethods.scala b/spark/src/main/scala/geotrellis/spark/buffer/BufferTilesMethods.scala index 7c1a8e3d0d..5f0026878a 100644 --- a/spark/src/main/scala/geotrellis/spark/buffer/BufferTilesMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/buffer/BufferTilesMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.buffer import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/buffer/BufferedTile.scala b/spark/src/main/scala/geotrellis/spark/buffer/BufferedTile.scala index e678951dae..df03ce28a7 100644 --- a/spark/src/main/scala/geotrellis/spark/buffer/BufferedTile.scala +++ b/spark/src/main/scala/geotrellis/spark/buffer/BufferedTile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.buffer import geotrellis.raster.GridBounds diff --git a/spark/src/main/scala/geotrellis/spark/buffer/CollectionBufferTilesMethods.scala b/spark/src/main/scala/geotrellis/spark/buffer/CollectionBufferTilesMethods.scala index 03bf780514..4e78a018bf 100644 --- a/spark/src/main/scala/geotrellis/spark/buffer/CollectionBufferTilesMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/buffer/CollectionBufferTilesMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.buffer import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/buffer/Implicits.scala b/spark/src/main/scala/geotrellis/spark/buffer/Implicits.scala index c20a1d2256..e584ec1cc6 100644 --- a/spark/src/main/scala/geotrellis/spark/buffer/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/buffer/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.buffer import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/crop/Crop.scala b/spark/src/main/scala/geotrellis/spark/crop/Crop.scala index 5ae07a7795..557721d7f3 100644 --- a/spark/src/main/scala/geotrellis/spark/crop/Crop.scala +++ b/spark/src/main/scala/geotrellis/spark/crop/Crop.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.crop import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/crop/Implicits.scala b/spark/src/main/scala/geotrellis/spark/crop/Implicits.scala index 8355e055fd..a029c0a2af 100644 --- a/spark/src/main/scala/geotrellis/spark/crop/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/crop/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.crop import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/crop/LayerRDDCropMethods.scala b/spark/src/main/scala/geotrellis/spark/crop/LayerRDDCropMethods.scala index f4cde01056..cc1a1734c4 100644 --- a/spark/src/main/scala/geotrellis/spark/crop/LayerRDDCropMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/crop/LayerRDDCropMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/density/Implicits.scala b/spark/src/main/scala/geotrellis/spark/density/Implicits.scala index df5ada22b8..f1db140e7f 100644 --- a/spark/src/main/scala/geotrellis/spark/density/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/density/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.density import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/density/RDDDoubleKernelDensityMethods.scala b/spark/src/main/scala/geotrellis/spark/density/RDDDoubleKernelDensityMethods.scala index eb4ba65c86..44eb132fab 100644 --- a/spark/src/main/scala/geotrellis/spark/density/RDDDoubleKernelDensityMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/density/RDDDoubleKernelDensityMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.density import geotrellis.proj4.CRS diff --git a/spark/src/main/scala/geotrellis/spark/density/RDDIntKernelDensityMethods.scala b/spark/src/main/scala/geotrellis/spark/density/RDDIntKernelDensityMethods.scala index d660df5448..1585eb4c31 100644 --- a/spark/src/main/scala/geotrellis/spark/density/RDDIntKernelDensityMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/density/RDDIntKernelDensityMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.density import geotrellis.proj4.CRS diff --git a/spark/src/main/scala/geotrellis/spark/density/RDDKernelDensity.scala b/spark/src/main/scala/geotrellis/spark/density/RDDKernelDensity.scala index 145ea8af5a..cf60bb94ee 100644 --- a/spark/src/main/scala/geotrellis/spark/density/RDDKernelDensity.scala +++ b/spark/src/main/scala/geotrellis/spark/density/RDDKernelDensity.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/equalization/Implicits.scala b/spark/src/main/scala/geotrellis/spark/equalization/Implicits.scala index 788e5179e5..7b4033c1cd 100644 --- a/spark/src/main/scala/geotrellis/spark/equalization/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/equalization/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.equalization import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/equalization/RDDHistogramEqualization.scala b/spark/src/main/scala/geotrellis/spark/equalization/RDDHistogramEqualization.scala index 3332c1ea9e..df2c11c6a0 100644 --- a/spark/src/main/scala/geotrellis/spark/equalization/RDDHistogramEqualization.scala +++ b/spark/src/main/scala/geotrellis/spark/equalization/RDDHistogramEqualization.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.equalization import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/equalization/RDDMultibandEqualizationMethods.scala b/spark/src/main/scala/geotrellis/spark/equalization/RDDMultibandEqualizationMethods.scala index 92792e0b9e..a11b51e6cf 100644 --- a/spark/src/main/scala/geotrellis/spark/equalization/RDDMultibandEqualizationMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/equalization/RDDMultibandEqualizationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.equalization import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/equalization/RDDSinglebandEqualizationMethods.scala b/spark/src/main/scala/geotrellis/spark/equalization/RDDSinglebandEqualizationMethods.scala index 09a1104988..07b517747f 100644 --- a/spark/src/main/scala/geotrellis/spark/equalization/RDDSinglebandEqualizationMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/equalization/RDDSinglebandEqualizationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.equalization import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/exceptions.scala b/spark/src/main/scala/geotrellis/spark/exceptions.scala index 6fa318b911..9a4d806fa9 100644 --- a/spark/src/main/scala/geotrellis/spark/exceptions.scala +++ b/spark/src/main/scala/geotrellis/spark/exceptions.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark class EmptyBoundsError(message: String = "") diff --git a/spark/src/main/scala/geotrellis/spark/filter/Filter.scala b/spark/src/main/scala/geotrellis/spark/filter/Filter.scala index a6e231251d..e53fae165a 100644 --- a/spark/src/main/scala/geotrellis/spark/filter/Filter.scala +++ b/spark/src/main/scala/geotrellis/spark/filter/Filter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.filter import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/filter/Implicits.scala b/spark/src/main/scala/geotrellis/spark/filter/Implicits.scala index c3d19a89cf..e1b1784a5f 100644 --- a/spark/src/main/scala/geotrellis/spark/filter/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/filter/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.filter import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/filter/SpaceTimeToSpatialMethods.scala b/spark/src/main/scala/geotrellis/spark/filter/SpaceTimeToSpatialMethods.scala index 64e4c218db..2f4cb0e807 100644 --- a/spark/src/main/scala/geotrellis/spark/filter/SpaceTimeToSpatialMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/filter/SpaceTimeToSpatialMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/filter/TileLayerRDDFilterMethods.scala b/spark/src/main/scala/geotrellis/spark/filter/TileLayerRDDFilterMethods.scala index eed561a5d7..c4c399c7dd 100644 --- a/spark/src/main/scala/geotrellis/spark/filter/TileLayerRDDFilterMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/filter/TileLayerRDDFilterMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/filter/ToSpatial.scala b/spark/src/main/scala/geotrellis/spark/filter/ToSpatial.scala index 030ec5a78d..e8730568c1 100644 --- a/spark/src/main/scala/geotrellis/spark/filter/ToSpatial.scala +++ b/spark/src/main/scala/geotrellis/spark/filter/ToSpatial.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.filter import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/ingest/Ingest.scala b/spark/src/main/scala/geotrellis/spark/ingest/Ingest.scala index 7729683cc0..e2599bdba8 100644 --- a/spark/src/main/scala/geotrellis/spark/ingest/Ingest.scala +++ b/spark/src/main/scala/geotrellis/spark/ingest/Ingest.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/ingest/MultibandIngest.scala b/spark/src/main/scala/geotrellis/spark/ingest/MultibandIngest.scala index 55c3e27dd6..1ea0969e48 100644 --- a/spark/src/main/scala/geotrellis/spark/ingest/MultibandIngest.scala +++ b/spark/src/main/scala/geotrellis/spark/ingest/MultibandIngest.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.ingest import geotrellis.proj4._ diff --git a/spark/src/main/scala/geotrellis/spark/io/AttributeCaching.scala b/spark/src/main/scala/geotrellis/spark/io/AttributeCaching.scala index 058a3d13c6..4e080a847c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/AttributeCaching.scala +++ b/spark/src/main/scala/geotrellis/spark/io/AttributeCaching.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark.LayerId diff --git a/spark/src/main/scala/geotrellis/spark/io/AttributeStore.scala b/spark/src/main/scala/geotrellis/spark/io/AttributeStore.scala index a2f5f80f4a..9911855431 100644 --- a/spark/src/main/scala/geotrellis/spark/io/AttributeStore.scala +++ b/spark/src/main/scala/geotrellis/spark/io/AttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/CollectionLayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/CollectionLayerReader.scala index 61ba074cde..51ecc6c036 100644 --- a/spark/src/main/scala/geotrellis/spark/io/CollectionLayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/CollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/FilteringLayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/FilteringLayerReader.scala index 040ed9bd61..f8a1366b12 100644 --- a/spark/src/main/scala/geotrellis/spark/io/FilteringLayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/FilteringLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/GenericLayerCopier.scala b/spark/src/main/scala/geotrellis/spark/io/GenericLayerCopier.scala index 4e93ee61cd..6355b996de 100644 --- a/spark/src/main/scala/geotrellis/spark/io/GenericLayerCopier.scala +++ b/spark/src/main/scala/geotrellis/spark/io/GenericLayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/GenericLayerMover.scala b/spark/src/main/scala/geotrellis/spark/io/GenericLayerMover.scala index aaaad0d375..cc646f38d6 100644 --- a/spark/src/main/scala/geotrellis/spark/io/GenericLayerMover.scala +++ b/spark/src/main/scala/geotrellis/spark/io/GenericLayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/GenericLayerReindexer.scala b/spark/src/main/scala/geotrellis/spark/io/GenericLayerReindexer.scala index 84484a5447..d36fd34442 100644 --- a/spark/src/main/scala/geotrellis/spark/io/GenericLayerReindexer.scala +++ b/spark/src/main/scala/geotrellis/spark/io/GenericLayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerCopier.scala b/spark/src/main/scala/geotrellis/spark/io/LayerCopier.scala index c51a25ff2e..acbf6961c2 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerCopier.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerDeleter.scala b/spark/src/main/scala/geotrellis/spark/io/LayerDeleter.scala index fe7d00bf90..58714b927d 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerDeleter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io trait LayerDeleter[ID] { diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerFilter.scala b/spark/src/main/scala/geotrellis/spark/io/LayerFilter.scala index 357e3ba62d..1d2137357c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerFilter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerFilter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerHeader.scala b/spark/src/main/scala/geotrellis/spark/io/LayerHeader.scala index 44ad592da5..18cf4213ed 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerHeader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import spray.json._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerManager.scala b/spark/src/main/scala/geotrellis/spark/io/LayerManager.scala index 5e20d67c3e..39009724ab 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerManager.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerMover.scala b/spark/src/main/scala/geotrellis/spark/io/LayerMover.scala index cbe7494fd1..6512dae54f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerMover.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerQuery.scala b/spark/src/main/scala/geotrellis/spark/io/LayerQuery.scala index 255b26408c..9c0d330301 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerQuery.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerQuery.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/LayerReader.scala index 6f0873d5db..4b7696bf89 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerReindexer.scala b/spark/src/main/scala/geotrellis/spark/io/LayerReindexer.scala index f629096a84..bc037ace04 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerReindexer.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerUpdater.scala b/spark/src/main/scala/geotrellis/spark/io/LayerUpdater.scala index 60a5e9b1d5..5ecf2ea447 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerUpdater.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/LayerWriter.scala b/spark/src/main/scala/geotrellis/spark/io/LayerWriter.scala index cb71ada378..07ca91fbd0 100644 --- a/spark/src/main/scala/geotrellis/spark/io/LayerWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/LayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/RasterReader.scala b/spark/src/main/scala/geotrellis/spark/io/RasterReader.scala index 628872b756..f5f024361f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/RasterReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/RasterReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import java.time.format.DateTimeFormatter diff --git a/spark/src/main/scala/geotrellis/spark/io/Reader.scala b/spark/src/main/scala/geotrellis/spark/io/Reader.scala index c1126faa58..17d029285a 100644 --- a/spark/src/main/scala/geotrellis/spark/io/Reader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/Reader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io trait Reader[K, V] extends (K => V) { diff --git a/spark/src/main/scala/geotrellis/spark/io/ValueReader.scala b/spark/src/main/scala/geotrellis/spark/io/ValueReader.scala index 77092f4caa..2b0e1d7fe3 100644 --- a/spark/src/main/scala/geotrellis/spark/io/ValueReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/ValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/Writer.scala b/spark/src/main/scala/geotrellis/spark/io/Writer.scala index 7501b95a65..d5f356a37c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/Writer.scala +++ b/spark/src/main/scala/geotrellis/spark/io/Writer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io trait Writer[K, V] extends ((K,V) => Unit) { diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/AvroCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/AvroCodec.scala index 8a7b22ea48..df859d49d4 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/AvroCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/AvroCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import org.apache.avro.Schema diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/AvroEncoder.scala b/spark/src/main/scala/geotrellis/spark/io/avro/AvroEncoder.scala index ad73fad9f6..c7651610d1 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/AvroEncoder.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/AvroEncoder.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import java.io.ByteArrayInputStream diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/AvroRecordCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/AvroRecordCodec.scala index e2f1e8a9aa..73b8b5d2e9 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/AvroRecordCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/AvroRecordCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import org.apache.avro.generic._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/AvroUnionCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/AvroUnionCodec.scala index c6d4ed3c01..e688e31b6f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/AvroUnionCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/AvroUnionCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import org.apache.avro._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/ExtentCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/ExtentCodec.scala index 3783abb535..d6594e9faf 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/ExtentCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/ExtentCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.spark.io.avro._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/Implicits.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/Implicits.scala index d173b2392f..afde38c402 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.raster.Tile diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyCodecs.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyCodecs.scala index c0c9432460..356d22bf34 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyCodecs.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyCodecs.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyValueRecordCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyValueRecordCodec.scala index 4aed5b503c..f467169f3f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyValueRecordCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/KeyValueRecordCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.spark.io.avro.AvroRecordCodec diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileCodecs.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileCodecs.scala index 4c2da8dd5a..b959930f98 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileCodecs.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileCodecs.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import java.nio.ByteBuffer diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileFeatureCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileFeatureCodec.scala index 3d962badff..709cb47a99 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileFeatureCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TileFeatureCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TupleCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TupleCodec.scala index cf7053cc52..ee48e7075e 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TupleCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/TupleCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.spark.io.avro._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/VectorTileCodec.scala b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/VectorTileCodec.scala index 72990cbf22..cf5543f9d2 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/codecs/VectorTileCodec.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/codecs/VectorTileCodec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro.codecs import geotrellis.spark.io.avro._ diff --git a/spark/src/main/scala/geotrellis/spark/io/avro/package.scala b/spark/src/main/scala/geotrellis/spark/io/avro/package.scala index cf7daea1e2..c81992e21c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/avro/package.scala +++ b/spark/src/main/scala/geotrellis/spark/io/avro/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.util._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileAttributeStore.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileAttributeStore.scala index 856f9c786c..e6b07665f8 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileAttributeStore.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileAttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionLayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionLayerReader.scala index 5a9c56b08e..3fb6087d79 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionLayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionReader.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionReader.scala index a83dadc42a..9390362ca3 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileCollectionReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerCopier.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerCopier.scala index fe3d52f895..73693c6303 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerCopier.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerDeleter.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerDeleter.scala index 55054ad85c..5799507290 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerDeleter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerHeader.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerHeader.scala index 29315aed87..f932e33abe 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerHeader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark.io.LayerHeader diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerManager.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerManager.scala index 4454338629..0341bbfbf5 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerManager.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerMover.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerMover.scala index d4ef1aa248..9777214961 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerMover.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReader.scala index 3312fbc0a2..2dca1f82f7 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReindexer.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReindexer.scala index 841eaa85db..d68d88f0fa 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReindexer.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerUpdater.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerUpdater.scala index c03027a196..8522263cc4 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerUpdater.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerWriter.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerWriter.scala index bfabdb71f1..82dbb3444e 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileLayerWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileLayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileRDDReader.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileRDDReader.scala index 781e0909fe..fca75c720a 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileRDDReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileRDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileRDDWriter.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileRDDWriter.scala index 0830643753..5538ff418b 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileRDDWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileRDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark.io.avro.{AvroRecordCodec, AvroEncoder} diff --git a/spark/src/main/scala/geotrellis/spark/io/file/FileValueReader.scala b/spark/src/main/scala/geotrellis/spark/io/file/FileValueReader.scala index a9674c8cab..b4f948c233 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/FileValueReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/FileValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/KeyPathGenerator.scala b/spark/src/main/scala/geotrellis/spark/io/file/KeyPathGenerator.scala index 6eda879129..5c90223e12 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/KeyPathGenerator.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/KeyPathGenerator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark.io.index._ diff --git a/spark/src/main/scala/geotrellis/spark/io/file/LayerPath.scala b/spark/src/main/scala/geotrellis/spark/io/file/LayerPath.scala index ebfc5e273b..ea85fa9932 100644 --- a/spark/src/main/scala/geotrellis/spark/io/file/LayerPath.scala +++ b/spark/src/main/scala/geotrellis/spark/io/file/LayerPath.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopAttributeStore.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopAttributeStore.scala index 19a9b4d798..84b3c9700b 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopAttributeStore.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopAttributeStore.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCatalogConfig.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCatalogConfig.scala index 575ee1031d..d4d598539f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCatalogConfig.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCatalogConfig.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionLayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionLayerReader.scala index 5bdcd3e3f8..724695232b 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionLayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionReader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionReader.scala index 596b2c32cd..f785ff20aa 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopCollectionReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDD.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDD.scala index c244a4a8ec..70425a5375 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDD.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDD.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import java.nio.ByteBuffer diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerCopier.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerCopier.scala index c9f3dc94d8..6292f0a34b 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerCopier.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerCopier.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerDeleter.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerDeleter.scala index 3618114af3..673fbb1f40 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerDeleter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerDeleter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerHeader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerHeader.scala index 0c1d72d1db..4cd26e279d 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerHeader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerHeader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark.io.LayerHeader diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerManager.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerManager.scala index 66fc675646..4854bddc8a 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerManager.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerManager.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerMover.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerMover.scala index 2d2622b7f5..9682951d3c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerMover.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerMover.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReader.scala index 8fbc2357b5..0412dde85b 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster.{MultibandTile, Tile} diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReindexer.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReindexer.scala index 44b903cbc9..ff18dc0afe 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReindexer.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerReindexer.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerUpdater.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerUpdater.scala index ce5a2999ac..4cb010e8ad 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerUpdater.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerUpdater.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerWriter.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerWriter.scala index ac1e5605e1..6024c801eb 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopLayerWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster.{MultibandTile, Tile} diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDReader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDReader.scala index cee9bd9013..9addf85619 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDWriter.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDWriter.scala index 04cca47789..492426b4e9 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopRDDWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopSparkContextMethods.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopSparkContextMethods.scala index bb3257e3e0..9a1f856a74 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopSparkContextMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopSparkContextMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.proj4.CRS diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopValueReader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopValueReader.scala index 8e444d0351..d85c404b01 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopValueReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HadoopValueReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsRangeReader.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsRangeReader.scala index 7f1eb72ded..ea536c5869 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsRangeReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsRangeReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.util.RangeReader diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsUtils.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsUtils.scala index db4de28a77..639c8db166 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsUtils.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/HdfsUtils.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/Implicits.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/Implicits.scala index 0fd7412df4..f94fa4c1b7 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import org.apache.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/KeyPartitioner.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/KeyPartitioner.scala index 453351af3a..4dc01cc4a3 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/KeyPartitioner.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/KeyPartitioner.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveBytesToHadoopMethods.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveBytesToHadoopMethods.scala index 635a08e1a2..7dfc87aa67 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveBytesToHadoopMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveBytesToHadoopMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark.render._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoop.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoop.scala index 34b1e4a0fb..43c1e277db 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoop.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoop.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark.render._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoopMethods.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoopMethods.scala index a9fa9434ff..caf85b1db6 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoopMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/SaveToHadoopMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark.render._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/SerializableConfiguration.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/SerializableConfiguration.scala index ff054bd900..d257815b0c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/SerializableConfiguration.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/SerializableConfiguration.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import org.apache.hadoop.conf.Configuration diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BinaryFileInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BinaryFileInputFormat.scala index 68b5ac12cd..dec05d6fd9 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BinaryFileInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BinaryFileInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import geotrellis.spark.io.hadoop._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BytesFileInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BytesFileInputFormat.scala index 8c7ffe3d33..51da91a291 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BytesFileInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/BytesFileInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import org.apache.hadoop.fs._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/FilterMapFileInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/FilterMapFileInputFormat.scala index 3332f5b3d5..f64573b37f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/FilterMapFileInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/FilterMapFileInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/GeotiffInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/GeotiffInputFormat.scala index c686bb3633..9e750f453f 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/GeotiffInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/GeotiffInputFormat.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/MultibandGeoTiffInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/MultibandGeoTiffInputFormat.scala index c44bd35f1e..6f1481939a 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/MultibandGeoTiffInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/MultibandGeoTiffInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalGeoTiffInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalGeoTiffInputFormat.scala index 793ce6f1f4..e78671190c 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalGeoTiffInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalGeoTiffInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import geotrellis.spark.TemporalProjectedExtent diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalMultibandGeoTiffInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalMultibandGeoTiffInputFormat.scala index 8e145f7e01..1bebb27b96 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalMultibandGeoTiffInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TemporalMultibandGeoTiffInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import geotrellis.spark.TemporalProjectedExtent diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TiffTagsInputFormat.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TiffTagsInputFormat.scala index 155085dbdb..be90a0444d 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TiffTagsInputFormat.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/formats/TiffTagsInputFormat.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop.formats import geotrellis.raster.io.geotiff.tags.TiffTags diff --git a/spark/src/main/scala/geotrellis/spark/io/hadoop/package.scala b/spark/src/main/scala/geotrellis/spark/io/hadoop/package.scala index ed6af3aff9..9ddefe3c6d 100644 --- a/spark/src/main/scala/geotrellis/spark/io/hadoop/package.scala +++ b/spark/src/main/scala/geotrellis/spark/io/hadoop/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark.util.KryoSerializer diff --git a/spark/src/main/scala/geotrellis/spark/io/index/HilbertKeyIndexMethod.scala b/spark/src/main/scala/geotrellis/spark/io/index/HilbertKeyIndexMethod.scala index 589765f2ce..cb0af10148 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/HilbertKeyIndexMethod.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/HilbertKeyIndexMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/Index.scala b/spark/src/main/scala/geotrellis/spark/io/index/Index.scala index a3971b5d1c..962b1ebbdd 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/Index.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/Index.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index object Index { diff --git a/spark/src/main/scala/geotrellis/spark/io/index/IndexRanges.scala b/spark/src/main/scala/geotrellis/spark/io/index/IndexRanges.scala index 4ccac2eeaf..bfefb96f66 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/IndexRanges.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/IndexRanges.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index object IndexRanges { diff --git a/spark/src/main/scala/geotrellis/spark/io/index/KeyIndex.scala b/spark/src/main/scala/geotrellis/spark/io/index/KeyIndex.scala index 1e4a866ee9..f11827b067 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/KeyIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/KeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index import geotrellis.spark.KeyBounds diff --git a/spark/src/main/scala/geotrellis/spark/io/index/KeyIndexMethod.scala b/spark/src/main/scala/geotrellis/spark/io/index/KeyIndexMethod.scala index 0152b2fece..cf17986437 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/KeyIndexMethod.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/KeyIndexMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/MergeQueue.scala b/spark/src/main/scala/geotrellis/spark/io/index/MergeQueue.scala index 21a39dd86c..8634846b90 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/MergeQueue.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/MergeQueue.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index import scala.collection.TraversableOnce diff --git a/spark/src/main/scala/geotrellis/spark/io/index/RowMajorKeyIndexMethod.scala b/spark/src/main/scala/geotrellis/spark/io/index/RowMajorKeyIndexMethod.scala index 8c9388c82c..6d3d23b822 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/RowMajorKeyIndexMethod.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/RowMajorKeyIndexMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/ZCurveKeyIndexMethod.scala b/spark/src/main/scala/geotrellis/spark/io/index/ZCurveKeyIndexMethod.scala index f4c5650da9..4c08aeee4e 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/ZCurveKeyIndexMethod.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/ZCurveKeyIndexMethod.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndex.scala b/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndex.scala index f02075c6a1..4289fad776 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.hilbert import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndex.scala b/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndex.scala index 26376ce7ba..98ce36d6da 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.hilbert import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndex.scala b/spark/src/main/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndex.scala index 4a79fd6a95..cd97b13592 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.rowmajor import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2.scala index d7afe90e3a..7f6b3d1a18 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import geotrellis.spark.io.index.MergeQueue diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2Range.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2Range.scala index 89ed4c7f5a..3a1a802347 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2Range.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z2Range.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import scala.annotation._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3.scala index 53e211edd3..f3730d5c04 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import geotrellis.spark.io.index.MergeQueue diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3Range.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3Range.scala index 40b80329a4..f2ce2c2615 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3Range.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/Z3Range.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve /** diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndex.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndex.scala index 310cbec20b..bca4f20b10 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndex.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndex.scala index f11c61f277..6877957527 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/package.scala b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/package.scala index 2b899692f7..1f3040b09a 100644 --- a/spark/src/main/scala/geotrellis/spark/io/index/zcurve/package.scala +++ b/spark/src/main/scala/geotrellis/spark/io/index/zcurve/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index package object zcurve { diff --git a/spark/src/main/scala/geotrellis/spark/io/json/Implicits.scala b/spark/src/main/scala/geotrellis/spark/io/json/Implicits.scala index 20e4f5aa72..7d96a76062 100644 --- a/spark/src/main/scala/geotrellis/spark/io/json/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/io/json/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.json import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/json/KeyFormats.scala b/spark/src/main/scala/geotrellis/spark/io/json/KeyFormats.scala index 83151c8487..5e1ac083a2 100644 --- a/spark/src/main/scala/geotrellis/spark/io/json/KeyFormats.scala +++ b/spark/src/main/scala/geotrellis/spark/io/json/KeyFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.json import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/json/KeyIndexFormats.scala b/spark/src/main/scala/geotrellis/spark/io/json/KeyIndexFormats.scala index 89d01b887a..e32eafd798 100644 --- a/spark/src/main/scala/geotrellis/spark/io/json/KeyIndexFormats.scala +++ b/spark/src/main/scala/geotrellis/spark/io/json/KeyIndexFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.json import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/io/kryo/KryoRegistrator.scala b/spark/src/main/scala/geotrellis/spark/io/kryo/KryoRegistrator.scala index 76e57b8b91..09e5bed0d4 100644 --- a/spark/src/main/scala/geotrellis/spark/io/kryo/KryoRegistrator.scala +++ b/spark/src/main/scala/geotrellis/spark/io/kryo/KryoRegistrator.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/io/package.scala b/spark/src/main/scala/geotrellis/spark/io/package.scala index aa23c6cc19..f0126f29df 100644 --- a/spark/src/main/scala/geotrellis/spark/io/package.scala +++ b/spark/src/main/scala/geotrellis/spark/io/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import com.typesafe.config.Config diff --git a/spark/src/main/scala/geotrellis/spark/io/slippy/FileSlippyTileReader.scala b/spark/src/main/scala/geotrellis/spark/io/slippy/FileSlippyTileReader.scala index 5f391e1443..bbee8e04a5 100644 --- a/spark/src/main/scala/geotrellis/spark/io/slippy/FileSlippyTileReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/slippy/FileSlippyTileReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriter.scala b/spark/src/main/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriter.scala index cc3ae2821d..ee4e6b74f1 100644 --- a/spark/src/main/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/io/slippy/HttpSlippyTileReader.scala b/spark/src/main/scala/geotrellis/spark/io/slippy/HttpSlippyTileReader.scala index 347e7aa112..71abce1da1 100644 --- a/spark/src/main/scala/geotrellis/spark/io/slippy/HttpSlippyTileReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/slippy/HttpSlippyTileReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileReader.scala b/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileReader.scala index 0d1e0b94f5..9c0b070854 100644 --- a/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileReader.scala +++ b/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileWriter.scala b/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileWriter.scala index 5df1fa3675..bbfe9e086d 100644 --- a/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileWriter.scala +++ b/spark/src/main/scala/geotrellis/spark/io/slippy/SlippyTileWriter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/join/Implicits.scala b/spark/src/main/scala/geotrellis/spark/join/Implicits.scala index 3d3a2a5644..ad025a61b1 100644 --- a/spark/src/main/scala/geotrellis/spark/join/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/join/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/join/SpatialJoin.scala b/spark/src/main/scala/geotrellis/spark/join/SpatialJoin.scala index e8a2c9256b..bbeb4cb545 100644 --- a/spark/src/main/scala/geotrellis/spark/join/SpatialJoin.scala +++ b/spark/src/main/scala/geotrellis/spark/join/SpatialJoin.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/join/SpatialJoinMethods.scala b/spark/src/main/scala/geotrellis/spark/join/SpatialJoinMethods.scala index 9c2042d75c..75733ced06 100644 --- a/spark/src/main/scala/geotrellis/spark/join/SpatialJoinMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/join/SpatialJoinMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/join/VectorJoin.scala b/spark/src/main/scala/geotrellis/spark/join/VectorJoin.scala index 8b8eb73931..4c5b7b393e 100644 --- a/spark/src/main/scala/geotrellis/spark/join/VectorJoin.scala +++ b/spark/src/main/scala/geotrellis/spark/join/VectorJoin.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/join/VectorJoinMethods.scala b/spark/src/main/scala/geotrellis/spark/join/VectorJoinMethods.scala index 03c4fd9860..303d921fce 100644 --- a/spark/src/main/scala/geotrellis/spark/join/VectorJoinMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/join/VectorJoinMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.util._ diff --git a/spark/src/main/scala/geotrellis/spark/knn/Implicits.scala b/spark/src/main/scala/geotrellis/spark/knn/Implicits.scala index da72b3a1ff..ccc8f72b8a 100644 --- a/spark/src/main/scala/geotrellis/spark/knn/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/knn/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.knn import geotrellis.vector.{Point, Geometry, Feature} diff --git a/spark/src/main/scala/geotrellis/spark/knn/KNearestMethods.scala b/spark/src/main/scala/geotrellis/spark/knn/KNearestMethods.scala index 0fb569d7a3..6a31a26f47 100644 --- a/spark/src/main/scala/geotrellis/spark/knn/KNearestMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/knn/KNearestMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.knn import scala.collection.immutable.Map diff --git a/spark/src/main/scala/geotrellis/spark/knn/KNearestRDD.scala b/spark/src/main/scala/geotrellis/spark/knn/KNearestRDD.scala index 4380de9cbd..a496f642de 100644 --- a/spark/src/main/scala/geotrellis/spark/knn/KNearestRDD.scala +++ b/spark/src/main/scala/geotrellis/spark/knn/KNearestRDD.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.knn import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/CombineMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/CombineMethods.scala index 86b6d3980e..2a43671239 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/CombineMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/CombineMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/Implicits.scala index 9f10d312af..5cd3800c3c 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/CollectionFocalOperation.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/CollectionFocalOperation.scala index 74dd2a4e3e..e7f8e2c431 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/CollectionFocalOperation.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/CollectionFocalOperation.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalOperation.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalOperation.scala index afc43e4609..00a7b2c5b2 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalOperation.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalOperation.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerCollectionMethods.scala index 8ee4f7bb0b..bbc1952ff3 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerRDDMethods.scala index 0333fff31c..40fe322cd6 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/FocalTileLayerRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/Implicits.scala index 8efe4d6929..c1cfb5fa0d 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerCollectionMethods.scala index e139c06562..9056a383e4 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal.hillshade import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerRDDMethods.scala index ec5aea42f1..c7964e9e54 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeTileLayerRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal.hillshade import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/Implicits.scala index c213bbac94..b4fdac8054 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/focal/hillshade/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal.hillshade import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AddTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AddTileRDDMethods.scala index 61c6c460e3..9603c7e525 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AddTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AddTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AndTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AndTileRDDMethods.scala index d35305f8af..ef1e58fa51 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AndTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/AndTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/DivideTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/DivideTileRDDMethods.scala index 559e5a57c6..f8447396ee 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/DivideTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/DivideTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/EqualTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/EqualTileRDDMethods.scala index 9ec4c6bcc8..45080b9622 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/EqualTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/EqualTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualTileRDDMethods.scala index a6b60d74a1..33d46d33fa 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterTileRDDMethods.scala index d8941c2ad9..e4e45e7999 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/GreaterTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/IfCellTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/IfCellTileRDDMethods.scala index e8a2ed750a..f71ce738fe 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/IfCellTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/IfCellTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/Implicits.scala index fdbbbb0ec0..3b24a4c11d 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessOrEqualTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessOrEqualTileRDDMethods.scala index 6dffcb4bb3..d797d88991 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessOrEqualTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessOrEqualTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessTileRDDMethods.scala index e5c6b625ac..0dc9486b64 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LessTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalMapTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalMapTileRDDMethods.scala index 91d6b2aec7..d1bf141a3c 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalMapTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalMapTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDMethods.scala index 6a5c3693b3..441eeb20f9 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster.mapalgebra.local._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDSeqMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDSeqMethods.scala index 4058e2aec3..7b7015e7b8 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDSeqMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/LocalTileRDDSeqMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MajorityTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MajorityTileRDDMethods.scala index 1883781058..ab6b6567d3 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MajorityTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MajorityTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import org.apache.spark.Partitioner diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MaxTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MaxTileRDDMethods.scala index 37676e4185..41bf37e183 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MaxTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MaxTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinTileRDDMethods.scala index 35f5659338..2d50acb49e 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinorityTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinorityTileRDDMethods.scala index 0161aac638..8cffeb0143 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinorityTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MinorityTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MultiplyTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MultiplyTileRDDMethods.scala index 49541ebcc0..d74e1b5813 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MultiplyTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/MultiplyTileRDDMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/OrTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/OrTileRDDMethods.scala index 3ec988c042..3e5cd5a581 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/OrTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/OrTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/PowTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/PowTileRDDMethods.scala index 4e499d24fd..b0e05c9a6f 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/PowTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/PowTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/SubtractTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/SubtractTileRDDMethods.scala index f6df0e4a82..29ea5c98be 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/SubtractTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/SubtractTileRDDMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/TileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/TileRDDMethods.scala index ef02909d96..def0d93849 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/TileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/TileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import scala.reflect.ClassTag diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/UnequalTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/UnequalTileRDDMethods.scala index ce4e62c49d..a6eedb6a3b 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/UnequalTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/UnequalTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/XorTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/XorTileRDDMethods.scala index 97a3818045..1078424ee6 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/XorTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/XorTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/Implicits.scala index c0d2318af6..4111aca1be 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local.temporal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalStatistics.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalStatistics.scala index 2d50882526..7cf5b55f62 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalStatistics.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalStatistics.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local.temporal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethods.scala index 581ee456da..d425729b4b 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local.temporal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/TemporalWindowState.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/TemporalWindowState.scala index efb1fe1bcf..891c6383dd 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/TemporalWindowState.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/local/temporal/TemporalWindowState.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local.temporal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Implicits.scala index 8e239c4b57..715018ddd3 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.zonal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Zonal.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Zonal.scala index b4386697bb..c1f517d89f 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Zonal.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/Zonal.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.zonal import geotrellis.raster.mapalgebra.zonal._ diff --git a/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/ZonalTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/ZonalTileRDDMethods.scala index 4b0dd94204..5e561a8926 100644 --- a/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/ZonalTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mapalgebra/zonal/ZonalTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.zonal import geotrellis.raster.mapalgebra.zonal._ diff --git a/spark/src/main/scala/geotrellis/spark/mask/Implicits.scala b/spark/src/main/scala/geotrellis/spark/mask/Implicits.scala index f2ef458656..64510450d2 100644 --- a/spark/src/main/scala/geotrellis/spark/mask/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/mask/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mask import geotrellis.raster.mask.TileMaskMethods diff --git a/spark/src/main/scala/geotrellis/spark/mask/Mask.scala b/spark/src/main/scala/geotrellis/spark/mask/Mask.scala index 8bea3a3ac4..a229517211 100644 --- a/spark/src/main/scala/geotrellis/spark/mask/Mask.scala +++ b/spark/src/main/scala/geotrellis/spark/mask/Mask.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mask import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/mask/TileRDDMaskMethods.scala b/spark/src/main/scala/geotrellis/spark/mask/TileRDDMaskMethods.scala index 26407149d0..420b8449c0 100644 --- a/spark/src/main/scala/geotrellis/spark/mask/TileRDDMaskMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/mask/TileRDDMaskMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mask import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/matching/Implicits.scala b/spark/src/main/scala/geotrellis/spark/matching/Implicits.scala index 8a3785de36..d5c8d492f2 100644 --- a/spark/src/main/scala/geotrellis/spark/matching/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/matching/Implicits.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/matching/RDDHistogramMatching.scala b/spark/src/main/scala/geotrellis/spark/matching/RDDHistogramMatching.scala index 3e99b0c937..3ae6abd552 100644 --- a/spark/src/main/scala/geotrellis/spark/matching/RDDHistogramMatching.scala +++ b/spark/src/main/scala/geotrellis/spark/matching/RDDHistogramMatching.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/matching/RDDMultibandMatchingMethods.scala b/spark/src/main/scala/geotrellis/spark/matching/RDDMultibandMatchingMethods.scala index 922ea419f5..56e19c57d7 100644 --- a/spark/src/main/scala/geotrellis/spark/matching/RDDMultibandMatchingMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/matching/RDDMultibandMatchingMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/matching/RDDSinglebandMatchingMethods.scala b/spark/src/main/scala/geotrellis/spark/matching/RDDSinglebandMatchingMethods.scala index f1d8254e6d..0c633b6e1b 100644 --- a/spark/src/main/scala/geotrellis/spark/matching/RDDSinglebandMatchingMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/matching/RDDSinglebandMatchingMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/merge/Implicits.scala b/spark/src/main/scala/geotrellis/spark/merge/Implicits.scala index 9c673a025e..577ec6b32e 100644 --- a/spark/src/main/scala/geotrellis/spark/merge/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/merge/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.merge import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/merge/Mergable.scala b/spark/src/main/scala/geotrellis/spark/merge/Mergable.scala index 7751c43c6d..db4980a721 100644 --- a/spark/src/main/scala/geotrellis/spark/merge/Mergable.scala +++ b/spark/src/main/scala/geotrellis/spark/merge/Mergable.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.merge trait Mergable[T] { diff --git a/spark/src/main/scala/geotrellis/spark/merge/RDDLayoutMerge.scala b/spark/src/main/scala/geotrellis/spark/merge/RDDLayoutMerge.scala index f61da6adea..2766594091 100644 --- a/spark/src/main/scala/geotrellis/spark/merge/RDDLayoutMerge.scala +++ b/spark/src/main/scala/geotrellis/spark/merge/RDDLayoutMerge.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.merge import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/merge/RddLayoutMergeMethods.scala b/spark/src/main/scala/geotrellis/spark/merge/RddLayoutMergeMethods.scala index ae316b8c8c..69ce4cdb62 100644 --- a/spark/src/main/scala/geotrellis/spark/merge/RddLayoutMergeMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/merge/RddLayoutMergeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.merge import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/merge/TileRDDMerge.scala b/spark/src/main/scala/geotrellis/spark/merge/TileRDDMerge.scala index 09769d0ccf..42e19fcd9d 100644 --- a/spark/src/main/scala/geotrellis/spark/merge/TileRDDMerge.scala +++ b/spark/src/main/scala/geotrellis/spark/merge/TileRDDMerge.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.merge import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/merge/TileRDDMergeMethods.scala b/spark/src/main/scala/geotrellis/spark/merge/TileRDDMergeMethods.scala index b837e9b97c..20230370c8 100644 --- a/spark/src/main/scala/geotrellis/spark/merge/TileRDDMergeMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/merge/TileRDDMergeMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.merge import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/package.scala b/spark/src/main/scala/geotrellis/spark/package.scala index b12afd58db..f2c39f7b41 100644 --- a/spark/src/main/scala/geotrellis/spark/package.scala +++ b/spark/src/main/scala/geotrellis/spark/package.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/partition/Implicits.scala b/spark/src/main/scala/geotrellis/spark/partition/Implicits.scala index a0ae1fecdf..3dbb98d482 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/partition/IndexPartitioner.scala b/spark/src/main/scala/geotrellis/spark/partition/IndexPartitioner.scala index 6cdedae6dd..788187f071 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/IndexPartitioner.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/IndexPartitioner.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/partition/PartitionerIndex.scala b/spark/src/main/scala/geotrellis/spark/partition/PartitionerIndex.scala index 0502ee1736..af2e2958cd 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/PartitionerIndex.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/PartitionerIndex.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/partition/ReorderedRDD.scala b/spark/src/main/scala/geotrellis/spark/partition/ReorderedRDD.scala index f09f8d1e0a..3dfe8d4137 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/ReorderedRDD.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/ReorderedRDD.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import org.apache.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/partition/SpacePartitioner.scala b/spark/src/main/scala/geotrellis/spark/partition/SpacePartitioner.scala index a26b76ac8d..fd229f7a67 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/SpacePartitioner.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/SpacePartitioner.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartition.scala b/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartition.scala index d86a490fb1..96f1e878c9 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartition.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartition.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartitionMethods.scala b/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartitionMethods.scala index c4e2716768..5ffa39935d 100644 --- a/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartitionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/partition/SpatiallyPartitionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/pyramid/Pyramid.scala b/spark/src/main/scala/geotrellis/spark/pyramid/Pyramid.scala index 1f952e084b..d1e0da5a66 100644 --- a/spark/src/main/scala/geotrellis/spark/pyramid/Pyramid.scala +++ b/spark/src/main/scala/geotrellis/spark/pyramid/Pyramid.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.pyramid import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/render/Render.scala b/spark/src/main/scala/geotrellis/spark/render/Render.scala index c0dad9a949..ad36aa0e85 100644 --- a/spark/src/main/scala/geotrellis/spark/render/Render.scala +++ b/spark/src/main/scala/geotrellis/spark/render/Render.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.render import geotrellis.proj4.CRS diff --git a/spark/src/main/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethods.scala b/spark/src/main/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethods.scala index e8fb01eeec..cdf5976dce 100644 --- a/spark/src/main/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.render import geotrellis.proj4.CRS diff --git a/spark/src/main/scala/geotrellis/spark/render/SpatialTileRDDRenderMethods.scala b/spark/src/main/scala/geotrellis/spark/render/SpatialTileRDDRenderMethods.scala index 418a957b61..eaf46cbfe8 100644 --- a/spark/src/main/scala/geotrellis/spark/render/SpatialTileRDDRenderMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/render/SpatialTileRDDRenderMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.render import geotrellis.raster.Tile diff --git a/spark/src/main/scala/geotrellis/spark/render/package.scala b/spark/src/main/scala/geotrellis/spark/render/package.scala index ea9f34d212..3c56e2658c 100644 --- a/spark/src/main/scala/geotrellis/spark/render/package.scala +++ b/spark/src/main/scala/geotrellis/spark/render/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.proj4.CRS diff --git a/spark/src/main/scala/geotrellis/spark/reproject/Implicits.scala b/spark/src/main/scala/geotrellis/spark/reproject/Implicits.scala index 89a5a0b010..66f9037658 100644 --- a/spark/src/main/scala/geotrellis/spark/reproject/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/reproject/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReproject.scala b/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReproject.scala index 504dcdaf47..4c952f290b 100644 --- a/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReproject.scala +++ b/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReproject.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.proj4._ diff --git a/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReprojectMethods.scala b/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReprojectMethods.scala index cf0d305c3e..f9a3b5665c 100644 --- a/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReprojectMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/reproject/ProjectedExtentComponentReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/reproject/Reproject.scala b/spark/src/main/scala/geotrellis/spark/reproject/Reproject.scala index 14fafbfb00..673a11f487 100644 --- a/spark/src/main/scala/geotrellis/spark/reproject/Reproject.scala +++ b/spark/src/main/scala/geotrellis/spark/reproject/Reproject.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.raster.reproject.Reproject.{Options => RasterReprojectOptions} diff --git a/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReproject.scala b/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReproject.scala index 8b590c4940..b6dba2bc05 100644 --- a/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReproject.scala +++ b/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReproject.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.proj4._ diff --git a/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReprojectMethods.scala b/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReprojectMethods.scala index a0daebf63c..e4ed5d0b73 100644 --- a/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReprojectMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/reproject/TileRDDReprojectMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/resample/Implicits.scala b/spark/src/main/scala/geotrellis/spark/resample/Implicits.scala index 62ea5726b2..4c62e4db42 100644 --- a/spark/src/main/scala/geotrellis/spark/resample/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/resample/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.resample import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/resample/ZoomResample.scala b/spark/src/main/scala/geotrellis/spark/resample/ZoomResample.scala index 09303b4cf3..502e26335c 100644 --- a/spark/src/main/scala/geotrellis/spark/resample/ZoomResample.scala +++ b/spark/src/main/scala/geotrellis/spark/resample/ZoomResample.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.resample import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/resample/ZoomResampleMethods.scala b/spark/src/main/scala/geotrellis/spark/resample/ZoomResampleMethods.scala index 03dc1af644..c8d26b2d74 100644 --- a/spark/src/main/scala/geotrellis/spark/resample/ZoomResampleMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/resample/ZoomResampleMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.resample import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/sigmoidal/Implicits.scala b/spark/src/main/scala/geotrellis/spark/sigmoidal/Implicits.scala index 3e18e8aa03..c0fdbe9e53 100644 --- a/spark/src/main/scala/geotrellis/spark/sigmoidal/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/sigmoidal/Implicits.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDMultibandSigmoidalMethods.scala b/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDMultibandSigmoidalMethods.scala index 580315e7b3..f5daac8223 100644 --- a/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDMultibandSigmoidalMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDMultibandSigmoidalMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrast.scala b/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrast.scala index ff176a7255..32097cc628 100644 --- a/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrast.scala +++ b/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrast.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSinglebandSigmoidalMethods.scala b/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSinglebandSigmoidalMethods.scala index 963416b249..b414e7325c 100644 --- a/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSinglebandSigmoidalMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/sigmoidal/RDDSinglebandSigmoidalMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/split/Implicits.scala b/spark/src/main/scala/geotrellis/spark/split/Implicits.scala index d1cd163ebb..71ebf5b35c 100644 --- a/spark/src/main/scala/geotrellis/spark/split/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/split/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.split import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethods.scala b/spark/src/main/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethods.scala index 011862d4c0..00f3b930a5 100644 --- a/spark/src/main/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.split import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/split/Split.scala b/spark/src/main/scala/geotrellis/spark/split/Split.scala index 27b0304d17..6e09e2c34f 100644 --- a/spark/src/main/scala/geotrellis/spark/split/Split.scala +++ b/spark/src/main/scala/geotrellis/spark/split/Split.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.split import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/stitch/Implicits.scala b/spark/src/main/scala/geotrellis/spark/stitch/Implicits.scala index fe1aae4bee..d83ae395ae 100644 --- a/spark/src/main/scala/geotrellis/spark/stitch/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/stitch/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.stitch import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/stitch/StitchCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/stitch/StitchCollectionMethods.scala index af518216d7..87fea6f0ea 100644 --- a/spark/src/main/scala/geotrellis/spark/stitch/StitchCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/stitch/StitchCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.stitch import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/stitch/StitchRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/stitch/StitchRDDMethods.scala index 4fa8c43eec..d3d5fd6308 100644 --- a/spark/src/main/scala/geotrellis/spark/stitch/StitchRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/stitch/StitchRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.stitch import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/Implicits.scala b/spark/src/main/scala/geotrellis/spark/summary/Implicits.scala index 60e1a71b8f..a8f8a2143d 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/StatsMultibandTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/StatsMultibandTileRDDMethods.scala index 29373980ca..65a72719cd 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/StatsMultibandTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/StatsMultibandTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/StatsTileCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/StatsTileCollectionMethods.scala index c66905324a..809d5ad1f6 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/StatsTileCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/StatsTileCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/StatsTileRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/StatsTileRDDMethods.scala index f7f9034d3b..42d2028bff 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/StatsTileRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/StatsTileRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/Implicits.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/Implicits.scala index ff7ff967b9..c41b9aa2a5 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureCollectionMethods.scala index 8899bfbbd0..7e4475d9ae 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureRDDMethods.scala index c7b3c0e2a5..bcc5256175 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryFeatureRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureCollectionMethods.scala index e284d591aa..e7495d4858 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureRDDMethods.scala index 1e271d6495..26ce3379b8 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryKeyedFeatureRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerCollectionMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerCollectionMethods.scala index 84966186d7..d7987c2cb6 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerCollectionMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerCollectionMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerRDDMethods.scala b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerRDDMethods.scala index e8930be6cf..181a115b6d 100644 --- a/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerRDDMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/summary/polygonal/PolygonalSummaryTileLayerRDDMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.raster.summary.polygonal._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/CutTiles.scala b/spark/src/main/scala/geotrellis/spark/tiling/CutTiles.scala index 71dc667ab6..6a42aaa1f7 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/CutTiles.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/CutTiles.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.vector.Extent diff --git a/spark/src/main/scala/geotrellis/spark/tiling/FloatingLayoutScheme.scala b/spark/src/main/scala/geotrellis/spark/tiling/FloatingLayoutScheme.scala index 56ed58ce5e..bf18534b7f 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/FloatingLayoutScheme.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/FloatingLayoutScheme.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling diff --git a/spark/src/main/scala/geotrellis/spark/tiling/Implicits.scala b/spark/src/main/scala/geotrellis/spark/tiling/Implicits.scala index 18fe22b49e..0ed5b0c8ec 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/Implicits.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/LayoutDefinition.scala b/spark/src/main/scala/geotrellis/spark/tiling/LayoutDefinition.scala index b9fc95296b..ddaf3a55da 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/LayoutDefinition.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/LayoutDefinition.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/LayoutScheme.scala b/spark/src/main/scala/geotrellis/spark/tiling/LayoutScheme.scala index 8ae2379446..96091362da 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/LayoutScheme.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/LayoutScheme.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.raster._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/MapKeyTransform.scala b/spark/src/main/scala/geotrellis/spark/tiling/MapKeyTransform.scala index 5446b0bd76..e598d6884d 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/MapKeyTransform.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/MapKeyTransform.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/Tiler.scala b/spark/src/main/scala/geotrellis/spark/tiling/Tiler.scala index cbf1b0fedf..b721461e5d 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/Tiler.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/Tiler.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.raster.resample._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/TilerKeyMethods.scala b/spark/src/main/scala/geotrellis/spark/tiling/TilerKeyMethods.scala index 8905456ebf..4545b95d74 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/TilerKeyMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/TilerKeyMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.spark._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/TilerMethods.scala b/spark/src/main/scala/geotrellis/spark/tiling/TilerMethods.scala index df5baeb849..a8586041fc 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/TilerMethods.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/TilerMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.vector.Extent diff --git a/spark/src/main/scala/geotrellis/spark/tiling/ZoomedLayoutScheme.scala b/spark/src/main/scala/geotrellis/spark/tiling/ZoomedLayoutScheme.scala index 68ed1ff186..a5917c2095 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/ZoomedLayoutScheme.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/ZoomedLayoutScheme.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.proj4._ diff --git a/spark/src/main/scala/geotrellis/spark/tiling/package.scala b/spark/src/main/scala/geotrellis/spark/tiling/package.scala index 40924b18ae..a1e946bfac 100644 --- a/spark/src/main/scala/geotrellis/spark/tiling/package.scala +++ b/spark/src/main/scala/geotrellis/spark/tiling/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.vector._ diff --git a/spark/src/main/scala/geotrellis/spark/util/GroupIterator.scala b/spark/src/main/scala/geotrellis/spark/util/GroupIterator.scala index af317cdcc2..4fe6d2979d 100644 --- a/spark/src/main/scala/geotrellis/spark/util/GroupIterator.scala +++ b/spark/src/main/scala/geotrellis/spark/util/GroupIterator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.util /** diff --git a/spark/src/main/scala/geotrellis/spark/util/KryoClosure.scala b/spark/src/main/scala/geotrellis/spark/util/KryoClosure.scala index 7a6444adef..e7d101c6bf 100644 --- a/spark/src/main/scala/geotrellis/spark/util/KryoClosure.scala +++ b/spark/src/main/scala/geotrellis/spark/util/KryoClosure.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.util class KryoClosure1[T1, R](f: T1=>R) extends KryoWrapper[T1=>R] with (T1=>R) { diff --git a/spark/src/main/scala/geotrellis/spark/util/KryoSerializer.scala b/spark/src/main/scala/geotrellis/spark/util/KryoSerializer.scala index f4efcc07ce..ddf19a2fec 100644 --- a/spark/src/main/scala/geotrellis/spark/util/KryoSerializer.scala +++ b/spark/src/main/scala/geotrellis/spark/util/KryoSerializer.scala @@ -1,12 +1,11 @@ /* - * Copyright (C) 2012 The Regents of The University California. - * All rights reserved. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/util/KryoWrapper.scala b/spark/src/main/scala/geotrellis/spark/util/KryoWrapper.scala index 3b5d519559..5600cbcb36 100644 --- a/spark/src/main/scala/geotrellis/spark/util/KryoWrapper.scala +++ b/spark/src/main/scala/geotrellis/spark/util/KryoWrapper.scala @@ -1,12 +1,11 @@ /* - * Copyright (C) 2012 The Regents of The University California. - * All rights reserved. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/util/SparkUtils.scala b/spark/src/main/scala/geotrellis/spark/util/SparkUtils.scala index 3642cd9ea6..b25cb7cd54 100644 --- a/spark/src/main/scala/geotrellis/spark/util/SparkUtils.scala +++ b/spark/src/main/scala/geotrellis/spark/util/SparkUtils.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/util/TaskUtils.scala b/spark/src/main/scala/geotrellis/spark/util/TaskUtils.scala index 9290d8bf6d..2b30afbb18 100644 --- a/spark/src/main/scala/geotrellis/spark/util/TaskUtils.scala +++ b/spark/src/main/scala/geotrellis/spark/util/TaskUtils.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.util diff --git a/spark/src/main/scala/geotrellis/spark/util/cache/FileCache.scala b/spark/src/main/scala/geotrellis/spark/util/cache/FileCache.scala index 36f9276cdd..d66dafbbe4 100644 --- a/spark/src/main/scala/geotrellis/spark/util/cache/FileCache.scala +++ b/spark/src/main/scala/geotrellis/spark/util/cache/FileCache.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.util.cache import java.io.{File, FileInputStream, FileOutputStream} diff --git a/spark/src/main/scala/geotrellis/spark/util/cache/cache.scala b/spark/src/main/scala/geotrellis/spark/util/cache/cache.scala index d65aef9116..8dcb12c4b0 100644 --- a/spark/src/main/scala/geotrellis/spark/util/cache/cache.scala +++ b/spark/src/main/scala/geotrellis/spark/util/cache/cache.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/main/scala/geotrellis/spark/util/package.scala b/spark/src/main/scala/geotrellis/spark/util/package.scala index 5775345e54..378cb744a7 100644 --- a/spark/src/main/scala/geotrellis/spark/util/package.scala +++ b/spark/src/main/scala/geotrellis/spark/util/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.util._ diff --git a/spark/src/test/resources/application.conf b/spark/src/test/resources/application.conf index bbcf6acbef..c29432e74f 100644 --- a/spark/src/test/resources/application.conf +++ b/spark/src/test/resources/application.conf @@ -1 +1,15 @@ +# Copyright 2016 Azavea +# +# 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. + geotrellis.spark.io.index.registrator="geotrellis.spark.io.json.TestKeyIndexRegistrator" \ No newline at end of file diff --git a/spark/src/test/scala/geotrellis/spark/InterfaceSpec.scala b/spark/src/test/scala/geotrellis/spark/InterfaceSpec.scala index 5d049bae83..9ff530a47e 100644 --- a/spark/src/test/scala/geotrellis/spark/InterfaceSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/InterfaceSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.spark.io._ diff --git a/spark/src/test/scala/geotrellis/spark/KeyBoundsSpec.scala b/spark/src/test/scala/geotrellis/spark/KeyBoundsSpec.scala index 791bcdc1e2..23fa2aa066 100644 --- a/spark/src/test/scala/geotrellis/spark/KeyBoundsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/KeyBoundsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/OpAsserter.scala b/spark/src/test/scala/geotrellis/spark/OpAsserter.scala index 48b80bfeef..492842dcad 100644 --- a/spark/src/test/scala/geotrellis/spark/OpAsserter.scala +++ b/spark/src/test/scala/geotrellis/spark/OpAsserter.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/RasterMatchers.scala b/spark/src/test/scala/geotrellis/spark/RasterMatchers.scala index b4f2fe05c9..ed62edb248 100644 --- a/spark/src/test/scala/geotrellis/spark/RasterMatchers.scala +++ b/spark/src/test/scala/geotrellis/spark/RasterMatchers.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + // /* // * Copyright (c) 2014 DigitalGlobe. // * diff --git a/spark/src/test/scala/geotrellis/spark/SerializationTests.scala b/spark/src/test/scala/geotrellis/spark/SerializationTests.scala index ffc7d5053a..6252edb67f 100644 --- a/spark/src/test/scala/geotrellis/spark/SerializationTests.scala +++ b/spark/src/test/scala/geotrellis/spark/SerializationTests.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark import geotrellis.proj4._ diff --git a/spark/src/test/scala/geotrellis/spark/TestEnvironment.scala b/spark/src/test/scala/geotrellis/spark/TestEnvironment.scala index f742db22ec..e12ad8637c 100644 --- a/spark/src/test/scala/geotrellis/spark/TestEnvironment.scala +++ b/spark/src/test/scala/geotrellis/spark/TestEnvironment.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/buffer/BufferTilesSpec.scala b/spark/src/test/scala/geotrellis/spark/buffer/BufferTilesSpec.scala index f9cb4e1951..9955825dfd 100644 --- a/spark/src/test/scala/geotrellis/spark/buffer/BufferTilesSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/buffer/BufferTilesSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/crop/TileLayerRDDCropMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/crop/TileLayerRDDCropMethodsSpec.scala index 1c3368bd04..cf767168ac 100644 --- a/spark/src/test/scala/geotrellis/spark/crop/TileLayerRDDCropMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/crop/TileLayerRDDCropMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.crop import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/density/RDDKernelDensitySpec.scala b/spark/src/test/scala/geotrellis/spark/density/RDDKernelDensitySpec.scala index 5a61f94613..f712747911 100644 --- a/spark/src/test/scala/geotrellis/spark/density/RDDKernelDensitySpec.scala +++ b/spark/src/test/scala/geotrellis/spark/density/RDDKernelDensitySpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.density import scala.util.Random diff --git a/spark/src/test/scala/geotrellis/spark/equalization/RDDHistogramEqualizationSpec.scala b/spark/src/test/scala/geotrellis/spark/equalization/RDDHistogramEqualizationSpec.scala index 9e8349de0c..a4daf07c59 100644 --- a/spark/src/test/scala/geotrellis/spark/equalization/RDDHistogramEqualizationSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/equalization/RDDHistogramEqualizationSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/filter/TileLayerRDDFilterMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/filter/TileLayerRDDFilterMethodsSpec.scala index 7225b5de65..97bb09a78d 100644 --- a/spark/src/test/scala/geotrellis/spark/filter/TileLayerRDDFilterMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/filter/TileLayerRDDFilterMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/ingest/IngestSpec.scala b/spark/src/test/scala/geotrellis/spark/ingest/IngestSpec.scala index 9afa94a011..927f3df275 100644 --- a/spark/src/test/scala/geotrellis/spark/ingest/IngestSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/ingest/IngestSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.ingest import geotrellis.vector._ diff --git a/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileFeatureSpec.scala b/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileFeatureSpec.scala index 9da71c8440..39a2c42002 100644 --- a/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileFeatureSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileFeatureSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.raster.{GridBounds, Tile, TileFeature} diff --git a/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileSpec.scala b/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileSpec.scala index d268df98e2..31b2ba9d2d 100644 --- a/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/AllOnesTestTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.raster.{GridBounds, Tile} diff --git a/spark/src/test/scala/geotrellis/spark/io/AttributeStoreSpec.scala b/spark/src/test/scala/geotrellis/spark/io/AttributeStoreSpec.scala index a70a75156e..9877490277 100644 --- a/spark/src/test/scala/geotrellis/spark/io/AttributeStoreSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/AttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeSpec.scala b/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeSpec.scala index 4a92151307..37f94de90e 100644 --- a/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.raster.{GridBounds, Tile} diff --git a/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeTileFeatureSpec.scala b/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeTileFeatureSpec.scala index 13e1f0d2ea..b11a62280f 100644 --- a/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeTileFeatureSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/CoordinateSpaceTimeTileFeatureSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.raster.{GridBounds, Tile, TileFeature} diff --git a/spark/src/test/scala/geotrellis/spark/io/LayerQuerySpec.scala b/spark/src/test/scala/geotrellis/spark/io/LayerQuerySpec.scala index ffa777f84b..6ec0d12c14 100644 --- a/spark/src/test/scala/geotrellis/spark/io/LayerQuerySpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/LayerQuerySpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileFeatureSpec.scala b/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileFeatureSpec.scala index 026e23202e..88281a91ec 100644 --- a/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileFeatureSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileFeatureSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.proj4.LatLng diff --git a/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileSpec.scala b/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileSpec.scala index 46fd945ff2..371be30128 100644 --- a/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/LayerUpdateSpaceTimeTileSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.proj4.LatLng diff --git a/spark/src/test/scala/geotrellis/spark/io/PersistenceSpec.scala b/spark/src/test/scala/geotrellis/spark/io/PersistenceSpec.scala index 86e291ad98..41d82bac8b 100644 --- a/spark/src/test/scala/geotrellis/spark/io/PersistenceSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/PersistenceSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/SpaceTimeKeyIndexMethods.scala b/spark/src/test/scala/geotrellis/spark/io/SpaceTimeKeyIndexMethods.scala index 5fb9db7425..315ce259e7 100644 --- a/spark/src/test/scala/geotrellis/spark/io/SpaceTimeKeyIndexMethods.scala +++ b/spark/src/test/scala/geotrellis/spark/io/SpaceTimeKeyIndexMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/SpatialKeyIndexMethods.scala b/spark/src/test/scala/geotrellis/spark/io/SpatialKeyIndexMethods.scala index 666c132079..c0fee3f2d6 100644 --- a/spark/src/test/scala/geotrellis/spark/io/SpatialKeyIndexMethods.scala +++ b/spark/src/test/scala/geotrellis/spark/io/SpatialKeyIndexMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/avro/AvroTools.scala b/spark/src/test/scala/geotrellis/spark/io/avro/AvroTools.scala index df8bd97c03..27ebfe73c8 100644 --- a/spark/src/test/scala/geotrellis/spark/io/avro/AvroTools.scala +++ b/spark/src/test/scala/geotrellis/spark/io/avro/AvroTools.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/avro/TileCodecsSpec.scala b/spark/src/test/scala/geotrellis/spark/io/avro/TileCodecsSpec.scala index 07797ed0df..febbbf80bc 100644 --- a/spark/src/test/scala/geotrellis/spark/io/avro/TileCodecsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/avro/TileCodecsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import geotrellis.spark.io.avro.codecs.TileCodecs diff --git a/spark/src/test/scala/geotrellis/spark/io/avro/TileFeatureCodecSpec.scala b/spark/src/test/scala/geotrellis/spark/io/avro/TileFeatureCodecSpec.scala index 777d5da03a..ef0243f2eb 100644 --- a/spark/src/test/scala/geotrellis/spark/io/avro/TileFeatureCodecSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/avro/TileFeatureCodecSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/io/avro/TileRecordSpec.scala b/spark/src/test/scala/geotrellis/spark/io/avro/TileRecordSpec.scala index 91529f322b..de1bbf9061 100644 --- a/spark/src/test/scala/geotrellis/spark/io/avro/TileRecordSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/avro/TileRecordSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.avro import geotrellis.spark.SpatialKey diff --git a/spark/src/test/scala/geotrellis/spark/io/avro/VectorTileCodecSpec.scala b/spark/src/test/scala/geotrellis/spark/io/avro/VectorTileCodecSpec.scala index d524e08490..87a0e607af 100644 --- a/spark/src/test/scala/geotrellis/spark/io/avro/VectorTileCodecSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/avro/VectorTileCodecSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/io/file/FileAttributeStoreSpec.scala b/spark/src/test/scala/geotrellis/spark/io/file/FileAttributeStoreSpec.scala index 3e5e87a89d..6d8a4db454 100644 --- a/spark/src/test/scala/geotrellis/spark/io/file/FileAttributeStoreSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/file/FileAttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/file/FileSpaceTimeSpec.scala b/spark/src/test/scala/geotrellis/spark/io/file/FileSpaceTimeSpec.scala index 35f4a40194..3b16139e7c 100644 --- a/spark/src/test/scala/geotrellis/spark/io/file/FileSpaceTimeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/file/FileSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.raster.Tile diff --git a/spark/src/test/scala/geotrellis/spark/io/file/FileSpatialSpec.scala b/spark/src/test/scala/geotrellis/spark/io/file/FileSpatialSpec.scala index 17a1bb5f3e..df4be1fb82 100644 --- a/spark/src/test/scala/geotrellis/spark/io/file/FileSpatialSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/file/FileSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.raster.Tile diff --git a/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpaceTimeSpec.scala b/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpaceTimeSpec.scala index 5f32277cdb..a7ee3dff6d 100644 --- a/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpaceTimeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.raster.{Tile, TileFeature} diff --git a/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpatialSpec.scala b/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpatialSpec.scala index 4dc698c976..2f82cbd0d9 100644 --- a/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpatialSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/file/FileTileFeatureSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.file import geotrellis.raster.{Tile, TileFeature} diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopAttributeStoreSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopAttributeStoreSpec.scala index e9404ecb12..191185c07f 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopAttributeStoreSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopAttributeStoreSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDDSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDDSpec.scala index fea0d57ae6..b60b6e9ff3 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDDSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopGeoTiffRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopIngestSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopIngestSpec.scala index 87874b4c97..e2204897be 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopIngestSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopIngestSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.proj4.LatLng diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpaceTimeSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpaceTimeSpec.scala index e0df2b4111..d2d7bddccb 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpaceTimeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster.Tile diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpatialSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpatialSpec.scala index 825d33a13d..5d93ea7bf1 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpatialSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster.Tile diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpaceTimeSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpaceTimeSpec.scala index 7604d3eb59..22cd178095 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpaceTimeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpaceTimeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster.{Tile, TileFeature} diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpatialSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpatialSpec.scala index 5df590e4c0..f41fe24692 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpatialSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HadoopTileFeatureSpatialSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import geotrellis.raster.{Tile, TileFeature} diff --git a/spark/src/test/scala/geotrellis/spark/io/hadoop/HdfsUtilsSpec.scala b/spark/src/test/scala/geotrellis/spark/io/hadoop/HdfsUtilsSpec.scala index 537f94d83a..7d07787ea9 100644 --- a/spark/src/test/scala/geotrellis/spark/io/hadoop/HdfsUtilsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/hadoop/HdfsUtilsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.hadoop import java.io.IOException diff --git a/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndexSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndexSpec.scala index 40a8fffb4f..271adf786c 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndexSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpaceTimeKeyIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.hilbert import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndexSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndexSpec.scala index 34d2b3df67..b2518be6cf 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndexSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/hilbert/HilbertSpatialKeyIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.hilbert import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndexSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndexSpec.scala index 19e2eb1a0b..bd91cbeaac 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndexSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/rowmajor/RowMajorSpatialKeyIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.rowmajor import scala.collection.immutable.TreeSet diff --git a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2IteratorSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2IteratorSpec.scala index e33974da80..4e0cf0d802 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2IteratorSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2IteratorSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2Spec.scala b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2Spec.scala index 37954ebe7d..c51b80f39f 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2Spec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z2Spec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3RangeSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3RangeSpec.scala index c7c13ffc52..0074c063f7 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3RangeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3RangeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3Spec.scala b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3Spec.scala index 3d1239736b..fdaa126770 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3Spec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/Z3Spec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import org.scalatest._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndexSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndexSpec.scala index 525e62a124..6590bb6a27 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndexSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpaceTimeKeyIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndexSpec.scala b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndexSpec.scala index 294c074d2c..a38669e193 100644 --- a/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndexSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/index/zcurve/ZSpatialKeyIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.index.zcurve import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/json/KeyIndexJsonFormatFactorySpec.scala b/spark/src/test/scala/geotrellis/spark/io/json/KeyIndexJsonFormatFactorySpec.scala index 5969066aaa..77f760ad7c 100644 --- a/spark/src/test/scala/geotrellis/spark/io/json/KeyIndexJsonFormatFactorySpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/json/KeyIndexJsonFormatFactorySpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.json import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/json/LayerHeaderSpec.scala b/spark/src/test/scala/geotrellis/spark/io/json/LayerHeaderSpec.scala index 81ef1dd23d..1a4e58e1ac 100644 --- a/spark/src/test/scala/geotrellis/spark/io/json/LayerHeaderSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/json/LayerHeaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.json import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/json/TestKeyIndexRegistrator.scala b/spark/src/test/scala/geotrellis/spark/io/json/TestKeyIndexRegistrator.scala index 5205171163..dc4cc66c48 100644 --- a/spark/src/test/scala/geotrellis/spark/io/json/TestKeyIndexRegistrator.scala +++ b/spark/src/test/scala/geotrellis/spark/io/json/TestKeyIndexRegistrator.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.json import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriterSpec.scala b/spark/src/test/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriterSpec.scala index 5f0eaa9949..57d1f7f5f2 100644 --- a/spark/src/test/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriterSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/slippy/HadoopSlippyTileWriterSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/io/slippy/HttpSlippyTileReaderSpec.scala b/spark/src/test/scala/geotrellis/spark/io/slippy/HttpSlippyTileReaderSpec.scala index 53c131c6be..0d9a7ab6c7 100644 --- a/spark/src/test/scala/geotrellis/spark/io/slippy/HttpSlippyTileReaderSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/io/slippy/HttpSlippyTileReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.io.slippy import geotrellis.spark.SpatialKey diff --git a/spark/src/test/scala/geotrellis/spark/join/SpatialJoinRDDSpec.scala b/spark/src/test/scala/geotrellis/spark/join/SpatialJoinRDDSpec.scala index 72a8ff04d2..33ee1acda7 100644 --- a/spark/src/test/scala/geotrellis/spark/join/SpatialJoinRDDSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/join/SpatialJoinRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/join/VectorJoinRDDSpec.scala b/spark/src/test/scala/geotrellis/spark/join/VectorJoinRDDSpec.scala index 491f406c43..c4668c8e16 100644 --- a/spark/src/test/scala/geotrellis/spark/join/VectorJoinRDDSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/join/VectorJoinRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.join import geotrellis.proj4._ diff --git a/spark/src/test/scala/geotrellis/spark/knn/KNearestRDDSpec.scala b/spark/src/test/scala/geotrellis/spark/knn/KNearestRDDSpec.scala index efc7592e5e..1e719eeaa9 100644 --- a/spark/src/test/scala/geotrellis/spark/knn/KNearestRDDSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/knn/KNearestRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.knn import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/AspectSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/AspectSpec.scala index 6d9f28fbd7..0e4b1afb97 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/AspectSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/AspectSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MaxSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MaxSpec.scala index 884cbc01b6..123c0a12d8 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MaxSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MaxSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MeanSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MeanSpec.scala index 9ad1475483..4f9a53b42b 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MeanSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MeanSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MedianSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MedianSpec.scala index 8aa70eb6b9..ad4188e848 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MedianSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MedianSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MinSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MinSpec.scala index 304331914d..dc8ac0afa4 100755 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MinSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/MinSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/ModeSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/ModeSpec.scala index b773ae33a1..3e331c83d0 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/ModeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/ModeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SlopeSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SlopeSpec.scala index 6b2761ec64..b6c12d812f 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SlopeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SlopeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SumSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SumSpec.scala index e21f053c83..c0f625b164 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SumSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/SumSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal import geotrellis.vector.Extent diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeSpec.scala index 3440c3e1b0..d947564008 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/focal/hillshade/HillshadeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.focal.hillshade import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AddSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AddSpec.scala index deadbffc99..fedcbc76f6 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AddSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AddSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AndSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AndSpec.scala index 10757148cd..093302b02f 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AndSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/AndSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/DivideSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/DivideSpec.scala index e1faed1d5f..06ca0ddd23 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/DivideSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/DivideSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/EqualSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/EqualSpec.scala index 09cf6e43e4..99fab2ca77 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/EqualSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/EqualSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualSpec.scala index ab8e2dad7a..5bd50e1079 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterOrEqualSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterSpec.scala index cca70b368a..0057a29668 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/GreaterSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/IfCellSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/IfCellSpec.scala index b8645537ea..f238a5aa01 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/IfCellSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/IfCellSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessOrEqualSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessOrEqualSpec.scala index e7b3fa7ec0..94fae12846 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessOrEqualSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessOrEqualSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessSpec.scala index fdae78bc80..3941a55009 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LessSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalMapSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalMapSpec.scala index d0b2281738..883f16c84f 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalMapSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalMapSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSeqSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSeqSpec.scala index b56fecbcf0..05b5d9e25d 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSeqSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSeqSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSpec.scala index 6772083935..44ea9fe979 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/LocalSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MajoritySpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MajoritySpec.scala index f8259286c7..303f177e12 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MajoritySpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MajoritySpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MaxSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MaxSpec.scala index 8f92b67f16..b5ce229824 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MaxSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MaxSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinSpec.scala index 2fc1c552f1..7cb9c411f4 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinoritySpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinoritySpec.scala index 625ee57533..50d3cb0809 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinoritySpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MinoritySpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MultiplySpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MultiplySpec.scala index df3deb5f5f..caf8623bef 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MultiplySpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/MultiplySpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/OrSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/OrSpec.scala index ce2b056629..d54a892502 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/OrSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/OrSpec.scala @@ -1,16 +1,16 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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 or + * See the License for the specific language governing permissions and * limitations under the License. */ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/PowSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/PowSpec.scala index fbdd3551c4..824b65f1ca 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/PowSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/PowSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/SubtractSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/SubtractSpec.scala index f0f2f5cfce..409f83771c 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/SubtractSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/SubtractSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/UnequalSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/UnequalSpec.scala index 834e06e17d..7be587762a 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/UnequalSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/UnequalSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/XorSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/XorSpec.scala index 1a993519a6..f23e1b05ff 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/XorSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/XorSpec.scala @@ -1,16 +1,16 @@ /* - * Copyright (c) 2014 DigitalGlobe. + * Copyright 2016 Azavea * * 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 + * 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 xor + * See the License for the specific language governing permissions and * limitations under the License. */ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethodsSpec.scala index 856e364e90..707a7435aa 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/local/temporal/LocalTemporalTileRDDMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.local.temporal import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/HistogramSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/HistogramSpec.scala index 18ce90e5ef..afb58f3ced 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/HistogramSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/HistogramSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.zonal import Implicits._ diff --git a/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/PercentageSpec.scala b/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/PercentageSpec.scala index 4940948d57..08fcccf3f2 100644 --- a/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/PercentageSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mapalgebra/zonal/PercentageSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mapalgebra.zonal import Implicits._ diff --git a/spark/src/test/scala/geotrellis/spark/mask/TileRDDMaskMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/mask/TileRDDMaskMethodsSpec.scala index 15f4aedb42..02578de9a4 100644 --- a/spark/src/test/scala/geotrellis/spark/mask/TileRDDMaskMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/mask/TileRDDMaskMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.mask import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/matching/RDDHistogramMatchingSpec.scala b/spark/src/test/scala/geotrellis/spark/matching/RDDHistogramMatchingSpec.scala index 3a5e3b0dcc..b406f98306 100644 --- a/spark/src/test/scala/geotrellis/spark/matching/RDDHistogramMatchingSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/matching/RDDHistogramMatchingSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/partition/ReorderedRDDSpec.scala b/spark/src/test/scala/geotrellis/spark/partition/ReorderedRDDSpec.scala index 32906d50eb..8999648946 100644 --- a/spark/src/test/scala/geotrellis/spark/partition/ReorderedRDDSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/partition/ReorderedRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/partition/TestImplicits.scala b/spark/src/test/scala/geotrellis/spark/partition/TestImplicits.scala index a3cb4656c7..5e97c5c710 100644 --- a/spark/src/test/scala/geotrellis/spark/partition/TestImplicits.scala +++ b/spark/src/test/scala/geotrellis/spark/partition/TestImplicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.partition import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/pyramid/PyramidSpec.scala b/spark/src/test/scala/geotrellis/spark/pyramid/PyramidSpec.scala index c11a6b2429..43f34a5eda 100644 --- a/spark/src/test/scala/geotrellis/spark/pyramid/PyramidSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/pyramid/PyramidSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.pyramid import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/render/SaveImagesSpec.scala b/spark/src/test/scala/geotrellis/spark/render/SaveImagesSpec.scala index 9fd07aae25..1fcbce67cd 100644 --- a/spark/src/test/scala/geotrellis/spark/render/SaveImagesSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/render/SaveImagesSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.render import geotrellis.proj4.CRS diff --git a/spark/src/test/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethodsSpec.scala index cb11f02ddf..17cfc156bf 100644 --- a/spark/src/test/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/render/SpatialTileLayerRDDRenderMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.render import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/reproject/TileRDDReprojectSpec.scala b/spark/src/test/scala/geotrellis/spark/reproject/TileRDDReprojectSpec.scala index 6b127a75eb..f94d30ed36 100644 --- a/spark/src/test/scala/geotrellis/spark/reproject/TileRDDReprojectSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/reproject/TileRDDReprojectSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.reproject import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/resample/ZoomResampleSpec.scala b/spark/src/test/scala/geotrellis/spark/resample/ZoomResampleSpec.scala index 69ca4b8583..6a1b407032 100644 --- a/spark/src/test/scala/geotrellis/spark/resample/ZoomResampleSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/resample/ZoomResampleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.resample import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrastSpec.scala b/spark/src/test/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrastSpec.scala index 939f0c39bb..a42548c05d 100644 --- a/spark/src/test/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrastSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/sigmoidal/RDDSigmoidalContrastSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/spark/src/test/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethodsSpec.scala index f5a7735732..e977ed8404 100644 --- a/spark/src/test/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/split/ProjectedExtentRDDSplitMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.split import geotrellis.proj4._ diff --git a/spark/src/test/scala/geotrellis/spark/stitch/CollectionStitchMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/stitch/CollectionStitchMethodsSpec.scala index 6c488f12db..14b93fd5e4 100644 --- a/spark/src/test/scala/geotrellis/spark/stitch/CollectionStitchMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/stitch/CollectionStitchMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.stitch import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/stitch/RDDStitchMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/stitch/RDDStitchMethodsSpec.scala index be47478d68..40e0fb1808 100644 --- a/spark/src/test/scala/geotrellis/spark/stitch/RDDStitchMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/stitch/RDDStitchMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.stitch import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/StatsTileCollectionMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/StatsTileCollectionMethodsSpec.scala index 94feb2fff3..791d38c77c 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/StatsTileCollectionMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/StatsTileCollectionMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/StatsTileRDDMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/StatsTileRDDMethodsSpec.scala index af00824d14..8268caa551 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/StatsTileRDDMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/StatsTileRDDMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureCollectionSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureCollectionSpec.scala index 8ff2e31062..7e274b84ef 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureCollectionSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureCollectionSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureRDDSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureRDDSpec.scala index 603593a60e..6c8803d6dc 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureRDDSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/FeatureRDDSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/HistogramSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/HistogramSpec.scala index d6fc444fda..bdcb49124f 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/HistogramSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/HistogramSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxDoubleSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxDoubleSpec.scala index 0d31fa3925..05b175db9d 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxDoubleSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxDoubleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxSpec.scala index a22aa97d30..1f85aee61a 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MaxSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MeanSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MeanSpec.scala index 2dc985e3ad..eaa23d3f1e 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MeanSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MeanSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinDoubleSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinDoubleSpec.scala index 61aea733bf..78202b66be 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinDoubleSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinDoubleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinSpec.scala index a9a554ce2e..4cee5ea140 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/MinSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumDoubleSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumDoubleSpec.scala index 6ea68e1542..e6381ad7b8 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumDoubleSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumDoubleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumSpec.scala b/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumSpec.scala index 06b31bf68f..9ae415f803 100644 --- a/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/summary/polygonal/SumSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.summary.polygonal import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/testfiles/SpaceTimeTestFileValues.scala b/spark/src/test/scala/geotrellis/spark/testfiles/SpaceTimeTestFileValues.scala index 9760d55184..424191f647 100644 --- a/spark/src/test/scala/geotrellis/spark/testfiles/SpaceTimeTestFileValues.scala +++ b/spark/src/test/scala/geotrellis/spark/testfiles/SpaceTimeTestFileValues.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.testfiles import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/testfiles/SpatialTestFileValues.scala b/spark/src/test/scala/geotrellis/spark/testfiles/SpatialTestFileValues.scala index b8e153cc28..f9f90472af 100644 --- a/spark/src/test/scala/geotrellis/spark/testfiles/SpatialTestFileValues.scala +++ b/spark/src/test/scala/geotrellis/spark/testfiles/SpatialTestFileValues.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.testfiles import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/testfiles/TestFiles.scala b/spark/src/test/scala/geotrellis/spark/testfiles/TestFiles.scala index 57346be28b..bb876c4258 100644 --- a/spark/src/test/scala/geotrellis/spark/testfiles/TestFiles.scala +++ b/spark/src/test/scala/geotrellis/spark/testfiles/TestFiles.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.testfiles import geotrellis.proj4._ diff --git a/spark/src/test/scala/geotrellis/spark/testfiles/TestTileFeatureFiles.scala b/spark/src/test/scala/geotrellis/spark/testfiles/TestTileFeatureFiles.scala index aa578f028f..113a4e553b 100644 --- a/spark/src/test/scala/geotrellis/spark/testfiles/TestTileFeatureFiles.scala +++ b/spark/src/test/scala/geotrellis/spark/testfiles/TestTileFeatureFiles.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.testfiles import geotrellis.proj4._ diff --git a/spark/src/test/scala/geotrellis/spark/tiling/FloatingLayoutSchemeSpec.scala b/spark/src/test/scala/geotrellis/spark/tiling/FloatingLayoutSchemeSpec.scala index 0b27b299de..63b49261e0 100644 --- a/spark/src/test/scala/geotrellis/spark/tiling/FloatingLayoutSchemeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/tiling/FloatingLayoutSchemeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.proj4.LatLng diff --git a/spark/src/test/scala/geotrellis/spark/tiling/LayoutDefinitionSpec.scala b/spark/src/test/scala/geotrellis/spark/tiling/LayoutDefinitionSpec.scala index 0560471a55..da65fc5c0f 100644 --- a/spark/src/test/scala/geotrellis/spark/tiling/LayoutDefinitionSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/tiling/LayoutDefinitionSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/tiling/MapKeyTransformSpec.scala b/spark/src/test/scala/geotrellis/spark/tiling/MapKeyTransformSpec.scala index e8ab45c2c6..7ece802607 100644 --- a/spark/src/test/scala/geotrellis/spark/tiling/MapKeyTransformSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/tiling/MapKeyTransformSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/tiling/TilerMethodsSpec.scala b/spark/src/test/scala/geotrellis/spark/tiling/TilerMethodsSpec.scala index 595e8d13ee..67fa60857d 100644 --- a/spark/src/test/scala/geotrellis/spark/tiling/TilerMethodsSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/tiling/TilerMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.raster._ diff --git a/spark/src/test/scala/geotrellis/spark/tiling/ZoomedLayoutSchemeSpec.scala b/spark/src/test/scala/geotrellis/spark/tiling/ZoomedLayoutSchemeSpec.scala index fe12a0bcf1..fc3e25ab58 100644 --- a/spark/src/test/scala/geotrellis/spark/tiling/ZoomedLayoutSchemeSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/tiling/ZoomedLayoutSchemeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.tiling import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/util/KryoClosureSpec.scala b/spark/src/test/scala/geotrellis/spark/util/KryoClosureSpec.scala index 8ffdd90088..8d2b287c5e 100644 --- a/spark/src/test/scala/geotrellis/spark/util/KryoClosureSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/util/KryoClosureSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.spark.util import geotrellis.spark._ diff --git a/spark/src/test/scala/geotrellis/spark/util/cache/CacheSpec.scala b/spark/src/test/scala/geotrellis/spark/util/cache/CacheSpec.scala index cb91e7ba88..8de7c6d861 100644 --- a/spark/src/test/scala/geotrellis/spark/util/cache/CacheSpec.scala +++ b/spark/src/test/scala/geotrellis/spark/util/cache/CacheSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/util/src/main/scala/geotrellis/util/BTree.scala b/util/src/main/scala/geotrellis/util/BTree.scala index 77fa9cabce..7b7abb80cb 100644 --- a/util/src/main/scala/geotrellis/util/BTree.scala +++ b/util/src/main/scala/geotrellis/util/BTree.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util // --- // diff --git a/util/src/main/scala/geotrellis/util/ByteReader.scala b/util/src/main/scala/geotrellis/util/ByteReader.scala index d17f8fd9cd..ae975c0c0d 100644 --- a/util/src/main/scala/geotrellis/util/ByteReader.scala +++ b/util/src/main/scala/geotrellis/util/ByteReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import java.nio.{Buffer, ByteBuffer, ByteOrder} diff --git a/util/src/main/scala/geotrellis/util/Component.scala b/util/src/main/scala/geotrellis/util/Component.scala index 3325d32487..2780dba80a 100644 --- a/util/src/main/scala/geotrellis/util/Component.scala +++ b/util/src/main/scala/geotrellis/util/Component.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util /** Defines an object that can be used as a lens diff --git a/util/src/main/scala/geotrellis/util/Constants.scala b/util/src/main/scala/geotrellis/util/Constants.scala index a1239ffb67..092e55421a 100644 --- a/util/src/main/scala/geotrellis/util/Constants.scala +++ b/util/src/main/scala/geotrellis/util/Constants.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util object Constants { diff --git a/util/src/main/scala/geotrellis/util/FileRangeReader.scala b/util/src/main/scala/geotrellis/util/FileRangeReader.scala index 5e1da87f73..ac5126bc84 100644 --- a/util/src/main/scala/geotrellis/util/FileRangeReader.scala +++ b/util/src/main/scala/geotrellis/util/FileRangeReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import java.io._ diff --git a/util/src/main/scala/geotrellis/util/Filesystem.scala b/util/src/main/scala/geotrellis/util/Filesystem.scala index c781a18996..5e24c6406e 100644 --- a/util/src/main/scala/geotrellis/util/Filesystem.scala +++ b/util/src/main/scala/geotrellis/util/Filesystem.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/util/src/main/scala/geotrellis/util/Functor.scala b/util/src/main/scala/geotrellis/util/Functor.scala index 2a77c46ffa..b86c02f3ae 100644 --- a/util/src/main/scala/geotrellis/util/Functor.scala +++ b/util/src/main/scala/geotrellis/util/Functor.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util // --- // diff --git a/util/src/main/scala/geotrellis/util/GetComponent.scala b/util/src/main/scala/geotrellis/util/GetComponent.scala index 02bdac3338..39146f26d6 100644 --- a/util/src/main/scala/geotrellis/util/GetComponent.scala +++ b/util/src/main/scala/geotrellis/util/GetComponent.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util trait GetComponent[T, C] extends Serializable { diff --git a/util/src/main/scala/geotrellis/util/MethodExtensions.scala b/util/src/main/scala/geotrellis/util/MethodExtensions.scala index c221f96d30..8d9bae068a 100644 --- a/util/src/main/scala/geotrellis/util/MethodExtensions.scala +++ b/util/src/main/scala/geotrellis/util/MethodExtensions.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util diff --git a/util/src/main/scala/geotrellis/util/RangeReader.scala b/util/src/main/scala/geotrellis/util/RangeReader.scala index 9c5a113fba..2a743b3ccb 100644 --- a/util/src/main/scala/geotrellis/util/RangeReader.scala +++ b/util/src/main/scala/geotrellis/util/RangeReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util /** diff --git a/util/src/main/scala/geotrellis/util/SetComponent.scala b/util/src/main/scala/geotrellis/util/SetComponent.scala index a56cb61842..6c526a999b 100644 --- a/util/src/main/scala/geotrellis/util/SetComponent.scala +++ b/util/src/main/scala/geotrellis/util/SetComponent.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util trait SetComponent[T, C] extends Serializable { diff --git a/util/src/main/scala/geotrellis/util/StreamingByteReader.scala b/util/src/main/scala/geotrellis/util/StreamingByteReader.scala index 6084dfba3d..89c5b7b08b 100644 --- a/util/src/main/scala/geotrellis/util/StreamingByteReader.scala +++ b/util/src/main/scala/geotrellis/util/StreamingByteReader.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import java.nio.{ByteOrder, ByteBuffer} diff --git a/util/src/main/scala/geotrellis/util/package.scala b/util/src/main/scala/geotrellis/util/package.scala index 279ad53bf8..9997c1812c 100644 --- a/util/src/main/scala/geotrellis/util/package.scala +++ b/util/src/main/scala/geotrellis/util/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis package object util { diff --git a/util/src/test/scala/geotrellis/util/BTreeSpec.scala b/util/src/test/scala/geotrellis/util/BTreeSpec.scala index 46260ae702..810b9135ad 100644 --- a/util/src/test/scala/geotrellis/util/BTreeSpec.scala +++ b/util/src/test/scala/geotrellis/util/BTreeSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import org.scalatest._ diff --git a/util/src/test/scala/geotrellis/util/ComponentSpec.scala b/util/src/test/scala/geotrellis/util/ComponentSpec.scala index 366d620800..b668f11df3 100644 --- a/util/src/test/scala/geotrellis/util/ComponentSpec.scala +++ b/util/src/test/scala/geotrellis/util/ComponentSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import org.scalatest._ diff --git a/util/src/test/scala/geotrellis/util/FileRangeReaderSpec.scala b/util/src/test/scala/geotrellis/util/FileRangeReaderSpec.scala index 62fee09d83..17f85586aa 100644 --- a/util/src/test/scala/geotrellis/util/FileRangeReaderSpec.scala +++ b/util/src/test/scala/geotrellis/util/FileRangeReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import java.nio.ByteBuffer diff --git a/util/src/test/scala/geotrellis/util/StreamingByteReaderSpec.scala b/util/src/test/scala/geotrellis/util/StreamingByteReaderSpec.scala index 4511a4c700..5ca4e670a2 100644 --- a/util/src/test/scala/geotrellis/util/StreamingByteReaderSpec.scala +++ b/util/src/test/scala/geotrellis/util/StreamingByteReaderSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.util import org.scalatest._ diff --git a/vector-test/src/test/scala/check/geotrellis/vector/Generators.scala b/vector-test/src/test/scala/check/geotrellis/vector/Generators.scala index 1492f1dc50..58fd25b34a 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/Generators.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/Generators.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/check/geotrellis/vector/jts/Generators.scala b/vector-test/src/test/scala/check/geotrellis/vector/jts/Generators.scala index cf084874bd..e43d663c00 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/jts/Generators.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/jts/Generators.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/check/geotrellis/vector/jts/LineStringCheck.scala b/vector-test/src/test/scala/check/geotrellis/vector/jts/LineStringCheck.scala index c656a1036d..721378b9d3 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/jts/LineStringCheck.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/jts/LineStringCheck.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiLineStringCheck.scala b/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiLineStringCheck.scala index f14d45efdd..a1827b5806 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiLineStringCheck.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiLineStringCheck.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiPointCheck.scala b/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiPointCheck.scala index ca1c681cf2..3655a9a957 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiPointCheck.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/jts/MultiPointCheck.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/check/geotrellis/vector/jts/PointCheck.scala b/vector-test/src/test/scala/check/geotrellis/vector/jts/PointCheck.scala index dd88fc8d57..f1ee9c7d00 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/jts/PointCheck.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/jts/PointCheck.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/check/geotrellis/vector/jts/PolygonCheck.scala b/vector-test/src/test/scala/check/geotrellis/vector/jts/PolygonCheck.scala index aaa0df624e..9a232e8340 100644 --- a/vector-test/src/test/scala/check/geotrellis/vector/jts/PolygonCheck.scala +++ b/vector-test/src/test/scala/check/geotrellis/vector/jts/PolygonCheck.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/ExtentSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/ExtentSpec.scala index 445b1d7770..59c7482253 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/ExtentSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/ExtentSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/GeometryResultSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/GeometryResultSpec.scala index 619ee1f8a5..3a56359f7f 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/GeometryResultSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/GeometryResultSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import org.scalatest.FunSpec diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/LineSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/LineSpec.scala index 1cf9f1f9f7..b583c78aa3 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/LineSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/LineSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/MultiGeometrySpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/MultiGeometrySpec.scala index 46e64de87b..d061f75cc7 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/MultiGeometrySpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/MultiGeometrySpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import com.vividsolutions.jts.{geom=>jts} diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/MultiLineSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/MultiLineSpec.scala index 3c46efb51f..c6f77187ab 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/MultiLineSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/MultiLineSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/MultiPointSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/MultiPointSpec.scala index a481d8e043..482f12b62d 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/MultiPointSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/MultiPointSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/PointSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/PointSpec.scala index 37a129491b..b8f6fcdd99 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/PointSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/PointSpec.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/PolygonSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/PolygonSpec.scala index 015d67f471..1f4e246fe1 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/PolygonSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/PolygonSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/SeqMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/SeqMethodsSpec.scala index a5add0db74..a5a32bbd2a 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/SeqMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/SeqMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import org.scalatest._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/SpatialIndexSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/SpatialIndexSpec.scala index 4333a66cb4..4875a3143e 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/SpatialIndexSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/SpatialIndexSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import org.scalatest.FunSpec diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/GeometryCollectionTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/GeometryCollectionTransformationMethodsSpec.scala index 79b648a106..f60f5a0c5a 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/GeometryCollectionTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/GeometryCollectionTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/LineTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/LineTransformationMethodsSpec.scala index e14c438ddb..72737eb6fd 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/LineTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/LineTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiLineTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiLineTransformationMethodsSpec.scala index 4938524cb8..120a53494e 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiLineTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiLineTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPointTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPointTransformationMethodsSpec.scala index 26d6c0875c..2c4dde3718 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPointTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPointTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPolygonTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPolygonTransformationMethodsSpec.scala index 4df66d02d9..a0c0306ca1 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPolygonTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/MultiPolygonTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/PointTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/PointTransformationMethodsSpec.scala index 437b2daaac..c7a4131b47 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/PointTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/PointTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/affine/PolygonTransformationMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/affine/PolygonTransformationMethodsSpec.scala index a64db16009..0c0605bfb4 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/affine/PolygonTransformationMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/affine/PolygonTransformationMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/convexhull/ConvexHullMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/convexhull/ConvexHullMethodsSpec.scala index 4848264dde..e2c6f69c26 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/convexhull/ConvexHullMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/convexhull/ConvexHullMethodsSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/densify/DensifyMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/densify/DensifyMethodsSpec.scala index 1cdcc03191..7604c0ec16 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/densify/DensifyMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/densify/DensifyMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.densify import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/dissolve/DissoveMethodsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/dissolve/DissoveMethodsSpec.scala index 98990fc05f..720cde7159 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/dissolve/DissoveMethodsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/dissolve/DissoveMethodsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.dissolve import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/KrigingVectorSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/KrigingVectorSpec.scala index 303ffab408..bcdbed0554 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/KrigingVectorSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/KrigingVectorSpec.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/SemivariogramSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/SemivariogramSpec.scala index ab5e6952f8..c559318060 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/SemivariogramSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/interpolation/SemivariogramSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/FeatureFormatsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/FeatureFormatsSpec.scala index 1499a827be..e943bee0b0 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/FeatureFormatsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/FeatureFormatsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import org.scalatest._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeoJsonSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeoJsonSpec.scala index f13a779404..6fdeaa809d 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeoJsonSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeoJsonSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeometryFormatsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeometryFormatsSpec.scala index 0e7e0d97f6..1ccc75fdd1 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeometryFormatsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/GeometryFormatsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/JsonCrsSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/JsonCrsSpec.scala index 1d6ae1d77e..98c58e74ef 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/JsonCrsSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/JsonCrsSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/StyleSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/StyleSpec.scala index a0692e29c1..042556b3a3 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/io/json/StyleSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/io/json/StyleSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/reproject/packageSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/reproject/packageSpec.scala index 391daa6d8a..3acf7eece3 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/reproject/packageSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/reproject/packageSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/DelaunaySpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/DelaunaySpec.scala index a77687b5be..99c0fe6596 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/DelaunaySpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/DelaunaySpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.raster._ diff --git a/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/VoronoiSpec.scala b/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/VoronoiSpec.scala index e77865ee1e..8d7d68ece4 100644 --- a/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/VoronoiSpec.scala +++ b/vector-test/src/test/scala/spec/geotrellis/vector/voronoi/VoronoiSpec.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.vector._ diff --git a/vector/src/main/scala/geotrellis/vector/Dimension.scala b/vector/src/main/scala/geotrellis/vector/Dimension.scala index 618d020520..d87c4313a4 100644 --- a/vector/src/main/scala/geotrellis/vector/Dimension.scala +++ b/vector/src/main/scala/geotrellis/vector/Dimension.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/Extent.scala b/vector/src/main/scala/geotrellis/vector/Extent.scala index 95861e61b3..44dfb35039 100644 --- a/vector/src/main/scala/geotrellis/vector/Extent.scala +++ b/vector/src/main/scala/geotrellis/vector/Extent.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import GeomFactory._ diff --git a/vector/src/main/scala/geotrellis/vector/Feature.scala b/vector/src/main/scala/geotrellis/vector/Feature.scala index 26f0b2aea9..789c72307e 100644 --- a/vector/src/main/scala/geotrellis/vector/Feature.scala +++ b/vector/src/main/scala/geotrellis/vector/Feature.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/GeomFactory.scala b/vector/src/main/scala/geotrellis/vector/GeomFactory.scala index c7f5e83296..ab1f865a47 100644 --- a/vector/src/main/scala/geotrellis/vector/GeomFactory.scala +++ b/vector/src/main/scala/geotrellis/vector/GeomFactory.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector/src/main/scala/geotrellis/vector/Geometry.scala b/vector/src/main/scala/geotrellis/vector/Geometry.scala index 2db45c8154..dcb9ce885c 100644 --- a/vector/src/main/scala/geotrellis/vector/Geometry.scala +++ b/vector/src/main/scala/geotrellis/vector/Geometry.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/GeometryCollection.scala b/vector/src/main/scala/geotrellis/vector/GeometryCollection.scala index 87241d4620..e3473c733a 100644 --- a/vector/src/main/scala/geotrellis/vector/GeometryCollection.scala +++ b/vector/src/main/scala/geotrellis/vector/GeometryCollection.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector/src/main/scala/geotrellis/vector/GeometryCollectionBuilder.scala b/vector/src/main/scala/geotrellis/vector/GeometryCollectionBuilder.scala index cb6018c568..f05714b7ea 100644 --- a/vector/src/main/scala/geotrellis/vector/GeometryCollectionBuilder.scala +++ b/vector/src/main/scala/geotrellis/vector/GeometryCollectionBuilder.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import GeomFactory._ diff --git a/vector/src/main/scala/geotrellis/vector/Line.scala b/vector/src/main/scala/geotrellis/vector/Line.scala index f4416d7799..db4b7886c0 100644 --- a/vector/src/main/scala/geotrellis/vector/Line.scala +++ b/vector/src/main/scala/geotrellis/vector/Line.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/MultiGeometry.scala b/vector/src/main/scala/geotrellis/vector/MultiGeometry.scala index 87f4450528..e72a90dd2f 100644 --- a/vector/src/main/scala/geotrellis/vector/MultiGeometry.scala +++ b/vector/src/main/scala/geotrellis/vector/MultiGeometry.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import com.vividsolutions.jts.{geom => jts} diff --git a/vector/src/main/scala/geotrellis/vector/MultiLine.scala b/vector/src/main/scala/geotrellis/vector/MultiLine.scala index 1da16aa1e4..c54f3be244 100644 --- a/vector/src/main/scala/geotrellis/vector/MultiLine.scala +++ b/vector/src/main/scala/geotrellis/vector/MultiLine.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/MultiPoint.scala b/vector/src/main/scala/geotrellis/vector/MultiPoint.scala index 9ea7a74a6e..439fbccb33 100644 --- a/vector/src/main/scala/geotrellis/vector/MultiPoint.scala +++ b/vector/src/main/scala/geotrellis/vector/MultiPoint.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/MultiPolygon.scala b/vector/src/main/scala/geotrellis/vector/MultiPolygon.scala index 2ccad6c184..8bda04a401 100644 --- a/vector/src/main/scala/geotrellis/vector/MultiPolygon.scala +++ b/vector/src/main/scala/geotrellis/vector/MultiPolygon.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/Point.scala b/vector/src/main/scala/geotrellis/vector/Point.scala index 6e91589cae..ff28ea0407 100644 --- a/vector/src/main/scala/geotrellis/vector/Point.scala +++ b/vector/src/main/scala/geotrellis/vector/Point.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/Polygon.scala b/vector/src/main/scala/geotrellis/vector/Polygon.scala index 8b5f032453..a08ddbb888 100644 --- a/vector/src/main/scala/geotrellis/vector/Polygon.scala +++ b/vector/src/main/scala/geotrellis/vector/Polygon.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/Results.scala b/vector/src/main/scala/geotrellis/vector/Results.scala index 01fd1673e8..fbd24b27ee 100644 --- a/vector/src/main/scala/geotrellis/vector/Results.scala +++ b/vector/src/main/scala/geotrellis/vector/Results.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/SeqMethods.scala b/vector/src/main/scala/geotrellis/vector/SeqMethods.scala index b4df33b367..4468311357 100644 --- a/vector/src/main/scala/geotrellis/vector/SeqMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/SeqMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector import scala.collection.JavaConversions._ diff --git a/vector/src/main/scala/geotrellis/vector/SpatialIndex.scala b/vector/src/main/scala/geotrellis/vector/SpatialIndex.scala index 7cbb02ba24..e860ffd9c4 100644 --- a/vector/src/main/scala/geotrellis/vector/SpatialIndex.scala +++ b/vector/src/main/scala/geotrellis/vector/SpatialIndex.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/affine/AffineTransformation.scala b/vector/src/main/scala/geotrellis/vector/affine/AffineTransformation.scala index b181b4c707..058323469b 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/AffineTransformation.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/AffineTransformation.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.vector._ diff --git a/vector/src/main/scala/geotrellis/vector/affine/GeometryCollectionTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/GeometryCollectionTransformationMethods.scala index 4563eb9422..5326b88ace 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/GeometryCollectionTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/GeometryCollectionTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/affine/LineTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/LineTransformationMethods.scala index 327cafe81f..2b39078ef0 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/LineTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/LineTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/affine/MultiLineTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/MultiLineTransformationMethods.scala index f6429c3d59..3d6d758de8 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/MultiLineTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/MultiLineTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/affine/MultiPointTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/MultiPointTransformationMethods.scala index addb881080..06d3f684ed 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/MultiPointTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/MultiPointTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/affine/MultiPolygonTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/MultiPolygonTransformationMethods.scala index aa09bf9990..39ef6d623f 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/MultiPolygonTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/MultiPolygonTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/affine/PointTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/PointTransformationMethods.scala index 0fab9e960a..82a109b0fb 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/PointTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/PointTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/affine/PolygonTransformationMethods.scala b/vector/src/main/scala/geotrellis/vector/affine/PolygonTransformationMethods.scala index cbc6980277..fd6e434e9c 100644 --- a/vector/src/main/scala/geotrellis/vector/affine/PolygonTransformationMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/affine/PolygonTransformationMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.affine import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/convexhull/ConvexHullMethods.scala b/vector/src/main/scala/geotrellis/vector/convexhull/ConvexHullMethods.scala index cf197a4000..0bf7491e90 100644 --- a/vector/src/main/scala/geotrellis/vector/convexhull/ConvexHullMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/convexhull/ConvexHullMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/densify/DensifyMethods.scala b/vector/src/main/scala/geotrellis/vector/densify/DensifyMethods.scala index 633c0632de..75a72b2d6e 100644 --- a/vector/src/main/scala/geotrellis/vector/densify/DensifyMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/densify/DensifyMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/dissolve/DissolveMethods.scala b/vector/src/main/scala/geotrellis/vector/dissolve/DissolveMethods.scala index b1b80fae1d..f96759d966 100644 --- a/vector/src/main/scala/geotrellis/vector/dissolve/DissolveMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/dissolve/DissolveMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/EmpiricalVariogram.scala b/vector/src/main/scala/geotrellis/vector/interpolation/EmpiricalVariogram.scala index 95784cfec0..e5e2f7ab81 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/EmpiricalVariogram.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/EmpiricalVariogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/GeoKriging.scala b/vector/src/main/scala/geotrellis/vector/interpolation/GeoKriging.scala index c3404a72fd..53f261aa30 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/GeoKriging.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/GeoKriging.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/InterpolationVector.scala b/vector/src/main/scala/geotrellis/vector/interpolation/InterpolationVector.scala index 985e562687..99736347f3 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/InterpolationVector.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/InterpolationVector.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/Kriging.scala b/vector/src/main/scala/geotrellis/vector/interpolation/Kriging.scala index fb95f16199..13ba6c28f8 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/Kriging.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/Kriging.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingNuggetProblem.scala b/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingNuggetProblem.scala index b1e705e8b9..8ff29907d9 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingNuggetProblem.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingNuggetProblem.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingProblem.scala b/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingProblem.scala index 95fc087f2b..fc55caf53d 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingProblem.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/LeastSquaresFittingProblem.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/LinearSemivariogram.scala b/vector/src/main/scala/geotrellis/vector/interpolation/LinearSemivariogram.scala index 6ffb31cc76..e0f2199a26 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/LinearSemivariogram.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/LinearSemivariogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/NonLinearSemivariogram.scala b/vector/src/main/scala/geotrellis/vector/interpolation/NonLinearSemivariogram.scala index 1455385959..15b6af986e 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/NonLinearSemivariogram.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/NonLinearSemivariogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/OrdinaryKriging.scala b/vector/src/main/scala/geotrellis/vector/interpolation/OrdinaryKriging.scala index ea51aed773..5a35386bdf 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/OrdinaryKriging.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/OrdinaryKriging.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/Semivariogram.scala b/vector/src/main/scala/geotrellis/vector/interpolation/Semivariogram.scala index c6d502af2c..71f9e950ca 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/Semivariogram.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/Semivariogram.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2015 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/SimpleKriging.scala b/vector/src/main/scala/geotrellis/vector/interpolation/SimpleKriging.scala index 30b5c7c1b4..05dc8afca7 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/SimpleKriging.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/SimpleKriging.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector/src/main/scala/geotrellis/vector/interpolation/UniversalKriging.scala b/vector/src/main/scala/geotrellis/vector/interpolation/UniversalKriging.scala index 6e03406c5f..575e815e73 100644 --- a/vector/src/main/scala/geotrellis/vector/interpolation/UniversalKriging.scala +++ b/vector/src/main/scala/geotrellis/vector/interpolation/UniversalKriging.scala @@ -1,18 +1,18 @@ /* -* Copyright (c) 2015 Azavea. -* -* 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. -*/ + * Copyright 2016 Azavea + * + * 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. + */ package geotrellis.vector.interpolation diff --git a/vector/src/main/scala/geotrellis/vector/io/WKB/Implicits.scala b/vector/src/main/scala/geotrellis/vector/io/WKB/Implicits.scala index 5e0238666c..50cb78421b 100644 --- a/vector/src/main/scala/geotrellis/vector/io/WKB/Implicits.scala +++ b/vector/src/main/scala/geotrellis/vector/io/WKB/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.wkb import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/io/WKB/WKB.scala b/vector/src/main/scala/geotrellis/vector/io/WKB/WKB.scala index 5f398d488f..b6e64eb705 100644 --- a/vector/src/main/scala/geotrellis/vector/io/WKB/WKB.scala +++ b/vector/src/main/scala/geotrellis/vector/io/WKB/WKB.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector/src/main/scala/geotrellis/vector/io/WKB/WKBWriter.scala b/vector/src/main/scala/geotrellis/vector/io/WKB/WKBWriter.scala index f225479793..8358d31f3f 100644 --- a/vector/src/main/scala/geotrellis/vector/io/WKB/WKBWriter.scala +++ b/vector/src/main/scala/geotrellis/vector/io/WKB/WKBWriter.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/io/WKT/Implicits.scala b/vector/src/main/scala/geotrellis/vector/io/WKT/Implicits.scala index 7413af0226..33f3746558 100644 --- a/vector/src/main/scala/geotrellis/vector/io/WKT/Implicits.scala +++ b/vector/src/main/scala/geotrellis/vector/io/WKT/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.wkt import geotrellis.util.MethodExtensions diff --git a/vector/src/main/scala/geotrellis/vector/io/WKT/WKT.scala b/vector/src/main/scala/geotrellis/vector/io/WKT/WKT.scala index 8ea4aac67d..572d07debc 100644 --- a/vector/src/main/scala/geotrellis/vector/io/WKT/WKT.scala +++ b/vector/src/main/scala/geotrellis/vector/io/WKT/WKT.scala @@ -1,12 +1,12 @@ /* - * Copyright (c) 2014 Azavea. - * + * Copyright 2016 Azavea + * * 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 - * + * + * 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. diff --git a/vector/src/main/scala/geotrellis/vector/io/json/CrsFormats.scala b/vector/src/main/scala/geotrellis/vector/io/json/CrsFormats.scala index 081f471ace..5921c09977 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/CrsFormats.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/CrsFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import java.net.URI diff --git a/vector/src/main/scala/geotrellis/vector/io/json/FeatureFormats.scala b/vector/src/main/scala/geotrellis/vector/io/json/FeatureFormats.scala index eeb82eea5c..8481b8e6c8 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/FeatureFormats.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/FeatureFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/GeoJson.scala b/vector/src/main/scala/geotrellis/vector/io/json/GeoJson.scala index 2a10d1ccb5..c6bc459399 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/GeoJson.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/GeoJson.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import spray.json._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/GeoJsonSupport.scala b/vector/src/main/scala/geotrellis/vector/io/json/GeoJsonSupport.scala index 385b223e72..50ccbce25c 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/GeoJsonSupport.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/GeoJsonSupport.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import spray.json._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/GeometryFormats.scala b/vector/src/main/scala/geotrellis/vector/io/json/GeometryFormats.scala index 68f8ef3882..6552226120 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/GeometryFormats.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/GeometryFormats.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/Implicits.scala b/vector/src/main/scala/geotrellis/vector/io/json/Implicits.scala index f9adfb789c..6915f638ea 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/Implicits.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.vector._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/JsonCRS.scala b/vector/src/main/scala/geotrellis/vector/io/json/JsonCRS.scala index c27e70b516..e438cb08c1 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/JsonCRS.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/JsonCRS.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import geotrellis.proj4.CRS diff --git a/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollection.scala b/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollection.scala index 00781f78a6..aba199051b 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollection.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollection.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import spray.json._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollectionMap.scala b/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollectionMap.scala index 0dbb49d8fb..cf20c1911b 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollectionMap.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/JsonFeatureCollectionMap.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import spray.json._ diff --git a/vector/src/main/scala/geotrellis/vector/io/json/Style.scala b/vector/src/main/scala/geotrellis/vector/io/json/Style.scala index d823ccb7d3..63236c30f6 100644 --- a/vector/src/main/scala/geotrellis/vector/io/json/Style.scala +++ b/vector/src/main/scala/geotrellis/vector/io/json/Style.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.io.json import spray.json._ diff --git a/vector/src/main/scala/geotrellis/vector/io/package.scala b/vector/src/main/scala/geotrellis/vector/io/package.scala index 6a08cdb890..948c8fe38c 100644 --- a/vector/src/main/scala/geotrellis/vector/io/package.scala +++ b/vector/src/main/scala/geotrellis/vector/io/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector package object io extends io.json.Implicits diff --git a/vector/src/main/scala/geotrellis/vector/package.scala b/vector/src/main/scala/geotrellis/vector/package.scala index 959467a237..d8bc94a77b 100644 --- a/vector/src/main/scala/geotrellis/vector/package.scala +++ b/vector/src/main/scala/geotrellis/vector/package.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometry.scala b/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometry.scala index faaca403e1..6c62e394d3 100644 --- a/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometry.scala +++ b/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometry.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector package prepared diff --git a/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometryMethods.scala b/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometryMethods.scala index 61a16602ca..b8e7a712ad 100644 --- a/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometryMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/prepared/PreparedGeometryMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector package prepared diff --git a/vector/src/main/scala/geotrellis/vector/reproject/Implicits.scala b/vector/src/main/scala/geotrellis/vector/reproject/Implicits.scala index a0ec6474fc..526d0f2171 100644 --- a/vector/src/main/scala/geotrellis/vector/reproject/Implicits.scala +++ b/vector/src/main/scala/geotrellis/vector/reproject/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.reproject import geotrellis.proj4._ diff --git a/vector/src/main/scala/geotrellis/vector/reproject/Reproject.scala b/vector/src/main/scala/geotrellis/vector/reproject/Reproject.scala index dc774cb3b9..e82601a647 100644 --- a/vector/src/main/scala/geotrellis/vector/reproject/Reproject.scala +++ b/vector/src/main/scala/geotrellis/vector/reproject/Reproject.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.reproject import geotrellis.proj4._ diff --git a/vector/src/main/scala/geotrellis/vector/simplify/SimplifyMethods.scala b/vector/src/main/scala/geotrellis/vector/simplify/SimplifyMethods.scala index c5a66ba315..7ed92b7a41 100644 --- a/vector/src/main/scala/geotrellis/vector/simplify/SimplifyMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/simplify/SimplifyMethods.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2014 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vector/src/main/scala/geotrellis/vector/summary/polygonal/PolygonalSummaryHandler.scala b/vector/src/main/scala/geotrellis/vector/summary/polygonal/PolygonalSummaryHandler.scala index 6833b4f7c9..0768478b9e 100644 --- a/vector/src/main/scala/geotrellis/vector/summary/polygonal/PolygonalSummaryHandler.scala +++ b/vector/src/main/scala/geotrellis/vector/summary/polygonal/PolygonalSummaryHandler.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector package summary.polygonal diff --git a/vector/src/main/scala/geotrellis/vector/voronoi/Delaunay.scala b/vector/src/main/scala/geotrellis/vector/voronoi/Delaunay.scala index 95c14edeee..414f9d78eb 100644 --- a/vector/src/main/scala/geotrellis/vector/voronoi/Delaunay.scala +++ b/vector/src/main/scala/geotrellis/vector/voronoi/Delaunay.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.util.Constants.{FLOAT_EPSILON => EPSILON} diff --git a/vector/src/main/scala/geotrellis/vector/voronoi/DelaunayMethods.scala b/vector/src/main/scala/geotrellis/vector/voronoi/DelaunayMethods.scala index eaf5f24b5e..605e20778a 100644 --- a/vector/src/main/scala/geotrellis/vector/voronoi/DelaunayMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/voronoi/DelaunayMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.vector.Point diff --git a/vector/src/main/scala/geotrellis/vector/voronoi/HalfEdge.scala b/vector/src/main/scala/geotrellis/vector/voronoi/HalfEdge.scala index 94fd1e4f7c..35e867712b 100644 --- a/vector/src/main/scala/geotrellis/vector/voronoi/HalfEdge.scala +++ b/vector/src/main/scala/geotrellis/vector/voronoi/HalfEdge.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.vector.{Line, Point, Polygon} diff --git a/vector/src/main/scala/geotrellis/vector/voronoi/Implicits.scala b/vector/src/main/scala/geotrellis/vector/voronoi/Implicits.scala index 5d3cb9c9d7..00ef5dcba0 100644 --- a/vector/src/main/scala/geotrellis/vector/voronoi/Implicits.scala +++ b/vector/src/main/scala/geotrellis/vector/voronoi/Implicits.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.vector.Point diff --git a/vector/src/main/scala/geotrellis/vector/voronoi/Voronoi.scala b/vector/src/main/scala/geotrellis/vector/voronoi/Voronoi.scala index 4016b67451..ff046439af 100644 --- a/vector/src/main/scala/geotrellis/vector/voronoi/Voronoi.scala +++ b/vector/src/main/scala/geotrellis/vector/voronoi/Voronoi.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.vector._ diff --git a/vector/src/main/scala/geotrellis/vector/voronoi/VoronoiMethods.scala b/vector/src/main/scala/geotrellis/vector/voronoi/VoronoiMethods.scala index 1751d97699..bbf42a95db 100644 --- a/vector/src/main/scala/geotrellis/vector/voronoi/VoronoiMethods.scala +++ b/vector/src/main/scala/geotrellis/vector/voronoi/VoronoiMethods.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis.vector.voronoi import geotrellis.vector.{Extent, Point} diff --git a/vectortile/src/main/scala/geotrellis/vectortile/Layer.scala b/vectortile/src/main/scala/geotrellis/vectortile/Layer.scala index 3a4ccca740..dc1cd42e08 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/Layer.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/Layer.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/VectorTile.scala b/vectortile/src/main/scala/geotrellis/vectortile/VectorTile.scala index 9b52159e12..b96a1987db 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/VectorTile.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/VectorTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/package.scala b/vectortile/src/main/scala/geotrellis/vectortile/package.scala index 80aa230b17..f477110156 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/package.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/package.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + package geotrellis /** Invented by [[https://www.mapbox.com/ Mapbox]], VectorTiles are a combination of the diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufLayer.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufLayer.scala index 823d514488..8717150882 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufLayer.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufLayer.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufTile.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufTile.scala index 47dac2c809..921fecd15b 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufTile.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/ProtobufTile.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/Value.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/Value.scala index 0c77de4866..22e677f769 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/Value.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/Value.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/Command.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/Command.scala index b9f9c1d8a4..ab8a0ca2ba 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/Command.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/Command.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/ProtobufGeom.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/ProtobufGeom.scala index 8e026713c2..c171529aa5 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/ProtobufGeom.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/ProtobufGeom.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/package.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/package.scala index 5aa63b2a5b..b7366f680f 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/package.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/package.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/Tile.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/Tile.scala index 17c63adc47..d7918c200a 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/Tile.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/Tile.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + // Generated by the Scala Plugin for the Protocol Buffer Compiler. // Do not edit! // diff --git a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/VectorTileProto.scala b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/VectorTileProto.scala index 8d55dbfad4..105e45e279 100644 --- a/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/VectorTileProto.scala +++ b/vectortile/src/main/scala/geotrellis/vectortile/protobuf/internal/vector_tile/VectorTileProto.scala @@ -1,3 +1,19 @@ +/* + * Copyright 2016 Azavea + * + * 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. + */ + // Generated by the Scala Plugin for the Protocol Buffer Compiler. // Do not edit! // diff --git a/vectortile/src/test/scala/geotrellis/vectortile/CommandSpec.scala b/vectortile/src/test/scala/geotrellis/vectortile/CommandSpec.scala index e8c7f615bb..1cd76fdc53 100644 --- a/vectortile/src/test/scala/geotrellis/vectortile/CommandSpec.scala +++ b/vectortile/src/test/scala/geotrellis/vectortile/CommandSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/test/scala/geotrellis/vectortile/ProtobufGeomSpec.scala b/vectortile/src/test/scala/geotrellis/vectortile/ProtobufGeomSpec.scala index 7d7c840d3d..eaa1b65fc7 100644 --- a/vectortile/src/test/scala/geotrellis/vectortile/ProtobufGeomSpec.scala +++ b/vectortile/src/test/scala/geotrellis/vectortile/ProtobufGeomSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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, diff --git a/vectortile/src/test/scala/geotrellis/vectortile/ProtobufTileSpec.scala b/vectortile/src/test/scala/geotrellis/vectortile/ProtobufTileSpec.scala index c97f500d0e..067da5680f 100644 --- a/vectortile/src/test/scala/geotrellis/vectortile/ProtobufTileSpec.scala +++ b/vectortile/src/test/scala/geotrellis/vectortile/ProtobufTileSpec.scala @@ -1,11 +1,11 @@ /* - * Copyright (c) 2016 Azavea. + * Copyright 2016 Azavea * * 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 + * 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,