File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
core/src/test/scala/org/locationtech/rasterframes
pyrasterframes/src/main/python/pyrasterframes Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1145,7 +1145,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {
11451145
11461146 def checker (colName : String , valFilter : Int , assertValue : Int ): Unit = {
11471147 // print this so we can see what's happening if something wrong
1148- println (s " ${colName} should be ${assertValue} for qa val ${valFilter}" )
1148+ logger.debug (s " ${colName} should be ${assertValue} for qa val ${valFilter}" )
11491149 result.filter($" val" === lit(valFilter))
11501150 .select(col(colName))
11511151 .as[ProjectedRasterTile ]
@@ -1236,7 +1236,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {
12361236 val printOutcome = if (resultIsNoData) " all NoData cells"
12371237 else " all data cells"
12381238
1239- println (s " ${columnName} should contain ${printOutcome} for qa val ${maskValueFilter}" )
1239+ logger.debug (s " ${columnName} should contain ${printOutcome} for qa val ${maskValueFilter}" )
12401240 val resultDf = result
12411241 .filter($" val" === lit(maskValueFilter))
12421242
@@ -1245,7 +1245,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {
12451245 .first()
12461246
12471247 val dataTile = resultDf.select(col(columnName)).as[ProjectedRasterTile ].first()
1248- println (s " \t Data tile values for col ${columnName}: ${dataTile.toArray().mkString(" ," )}" )
1248+ logger.debug (s " \t Data tile values for col ${columnName}: ${dataTile.toArray().mkString(" ," )}" )
12491249// val celltype = resultDf.select(rf_cell_type(col(columnName))).as[CellType].first()
12501250// println(s"Cell type for col ${columnName}: ${celltype}")
12511251
Original file line number Diff line number Diff line change 2020#
2121
2222# Translating Java version from version.sbt to PEP440 norms
23- __version__ = '0.9.0.dev0 '
23+ __version__ = '0.9.0.rc1 '
Original file line number Diff line number Diff line change 1- version in ThisBuild := " 0.9.0-SNAPSHOT "
1+ version in ThisBuild := " 0.9.0-RC1 "
You can’t perform that action at this time.
0 commit comments