Skip to content

Commit f49e039

Browse files
committed
Release prep.
Signed-off-by: Simeon H.K. Fitch <[email protected]>
1 parent e035a4b commit f49e039

File tree

6 files changed

+14
-35
lines changed

6 files changed

+14
-35
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ lazy val datasource = project
2424
.disablePlugins(SparkPackagePlugin)
2525

2626
lazy val experimental = project
27-
.dependsOn(core % "test->test;compile->compile")
28-
.dependsOn(datasource % "test->test;compile->compile")
27+
.configs(IntegrationTest)
28+
.settings(Defaults.itSettings)
29+
.dependsOn(core % "test->test;it->test;compile->compile")
30+
.dependsOn(datasource % "test->test;it->test;compile->compile")
2931
.disablePlugins(SparkPackagePlugin)
3032

3133
lazy val docs = project

docs/src/main/tut/release-notes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Fixed ColorRamp pipeline in MultibandRender
88
* Fixed Python wrapper for `explodeTiles`
99

10-
1110
### 0.7.0
1211

1312
* Now an incubating project under Eclipse Foundation LocationTech! GitHub repo moved to [locationtech/rasterframes](https://github.com/locationtech/rasterframes).

experimental/build.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@ libraryDependencies ++= Seq(
55
spark("core").value % Provided,
66
spark("mllib").value % Provided,
77
spark("sql").value % Provided
8-
)
8+
)
9+
10+
fork in IntegrationTest := true
11+
javaOptions in IntegrationTest := Seq("-Xmx2G")
12+
parallelExecution in IntegrationTest := false

experimental/src/main/scala/astraea/spark/rasterframes/experimental/datasource/awspds/MODISCatalogDataSource.scala

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -68,35 +68,9 @@ object MODISCatalogDataSource extends LazyLogging with ResourceCacheSupport {
6868
val MCD43A4_BASE = "https://modis-pds.s3.amazonaws.com/MCD43A4.006/"
6969
override def maxCacheFileAgeHours: Int = Int.MaxValue
7070

71-
// As of 5/6/2018, these days are missing from AWS.
72-
private val blacklist = Seq(
73-
"2018-03-07",
74-
"2018-03-08",
75-
"2018-03-09",
76-
"2018-03-10",
77-
"2018-03-11",
78-
"2018-03-12",
79-
"2018-03-13",
80-
"2018-03-14",
81-
"2018-03-15",
82-
"2018-02-27",
83-
"2018-02-28",
84-
"2018-03-01",
85-
"2018-03-02",
86-
"2018-03-03",
87-
"2018-03-04",
88-
"2018-04-27",
89-
"2018-03-05",
90-
"2018-04-28",
91-
"2018-03-06",
92-
"2018-04-29",
93-
"2018-04-30",
94-
"2018-05-01",
95-
"2018-05-02",
96-
"2018-05-03",
97-
"2018-05-04",
98-
"2018-05-05",
99-
"2018-05-06"
71+
// List of missing days
72+
private val blacklist = Seq[String](
73+
//"2018-05-06"
10074
)
10175

10276
private def sceneFiles(start: LocalDate, end: LocalDate, useBlacklist: Boolean) = {

experimental/src/main/scala/astraea/spark/rasterframes/experimental/datasource/awspds/MODISCatalogRelation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ case class MODISCatalogRelation(sqlContext: SQLContext, sceneList: HadoopPath)
5353
def buildScan(): RDD[Row] = {
5454
import sqlContext.implicits._
5555

56-
logger.info("Scene file is: " + sceneList)
56+
logger.debug("Scene file is: " + sceneList)
5757
val catalog = sqlContext.read
5858
.option("header", "true")
5959
.option("mode", "DROPMALFORMED") // <--- mainly for the fact that we have internal headers from the concat

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.7.1-SNAPSHOT"
1+
version in ThisBuild := "0.7.1"

0 commit comments

Comments
 (0)