File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
core/src/main/scala/org/locationtech/rasterframes/ref Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2222package org .locationtech .rasterframes .ref
2323
2424import geotrellis .proj4 .CRS
25- import geotrellis .raster .CellGrid
25+ import geotrellis .raster .{ CellGrid , CellType }
2626import geotrellis .vector .Extent
2727
2828/**
2929 * Trait declaring shape of a raster projected over a coordinate system.
3030 *
3131 * @since 11/3/18
3232 */
33- trait ProjectedRasterLike { _ : CellGrid [ Int ] =>
33+ trait ProjectedRasterLike {
3434 def crs : CRS
3535 def extent : Extent
36+ def cellType : CellType
37+ def cols : Int
38+ def rows : Int
3639}
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ object RFDependenciesPlugin extends AutoPlugin {
5151
5252 override def projectSettings = Seq (
5353 resolvers ++= Seq (
54+ Resolver .mavenLocal,
5455 " Azavea Public Builds" at " https://dl.bintray.com/azavea/geotrellis" ,
5556 " locationtech-releases" at " https://repo.locationtech.org/content/groups/releases" ,
5657 " boundless-releases" at " https://repo.boundlessgeo.com/main/" ,
5758 " Open Source Geospatial Foundation Repository" at " http://download.osgeo.org/webdav/geotools/"
5859 ),
59-
6060 /** https://github.com/lucidworks/spark-solr/issues/179
6161 * Thanks @pomadchin for the tip! */
6262 dependencyOverrides ++= {
@@ -73,7 +73,7 @@ object RFDependenciesPlugin extends AutoPlugin {
7373 },
7474 // NB: Make sure to update the Spark version in pyrasterframes/python/setup.py
7575 rfSparkVersion := " 2.4.4" ,
76- rfGeoTrellisVersion := " 3.0.0" ,
77- rfGeoMesaVersion := " 2.2.1" ,
76+ rfGeoTrellisVersion := " 3.0.0-SNAPSHOT " ,
77+ rfGeoMesaVersion := " 2.2.1"
7878 )
7979}
You can’t perform that action at this time.
0 commit comments