Skip to content

Commit 2341ad6

Browse files
committed
Backup commit.
1 parent 89e2b70 commit 2341ad6

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

core/src/main/scala/org/locationtech/rasterframes/ref/ProjectedRasterLike.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@
2222
package org.locationtech.rasterframes.ref
2323

2424
import geotrellis.proj4.CRS
25-
import geotrellis.raster.CellGrid
25+
import geotrellis.raster.{CellGrid, CellType}
2626
import 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
}

project/RFDependenciesPlugin.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)