You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2021/09/29 04:54:58 UTC

[incubator-sedona] branch master updated: [SEDONA-62] Remove NASA MODIS data in examples (#550)

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f7f0dc  [SEDONA-62] Remove NASA MODIS data in examples (#550)
9f7f0dc is described below

commit 9f7f0dc67064d8dee9a43d8d2b0569bf20726595
Author: Jia Yu <ji...@apache.org>
AuthorDate: Tue Sep 28 21:54:53 2021 -0700

    [SEDONA-62] Remove NASA MODIS data in examples (#550)
---
 examples/rdd-colocation-mining/build.sbt           |   8 +---
 .../rdd-colocation-mining/project/build.properties |   2 +-
 examples/rdd-colocation-mining/project/plugins.sbt |   2 +-
 examples/sql/build.sbt                             |   8 +---
 examples/sql/project/build.properties              |   2 +-
 examples/sql/project/plugins.sbt                   |   2 +-
 examples/viz/build.sbt                             |   8 +---
 examples/viz/project/build.properties              |   2 +-
 examples/viz/project/plugins.sbt                   |   2 +-
 examples/viz/src/main/scala/ScalaExample.scala     |  43 ++++++++++-----------
 .../MYD11_L2.A2017090.2355.006.2017094154313.hdf   | Bin 3816894 -> 0 bytes
 .../MYD11_L2.A2017091.0000.006.2017094143724.hdf   | Bin 6131081 -> 0 bytes
 .../MYD11_L2.A2017091.0005.006.2017094143741.hdf   | Bin 3943998 -> 0 bytes
 .../MYD11_L2.A2017091.0010.006.2017094151044.hdf   | Bin 5022563 -> 0 bytes
 .../MYD11_L2.A2017091.0015.006.2017094143601.hdf   | Bin 2327433 -> 0 bytes
 .../MYD11_L2.A2017091.0025.006.2017094150813.hdf   | Bin 1945119 -> 0 bytes
 .../MYD11_L2.A2017091.0030.006.2017094150841.hdf   | Bin 3405960 -> 0 bytes
 .../MYD11_L2.A2017091.0035.006.2017094150854.hdf   | Bin 1891395 -> 0 bytes
 .../MYD11_L2.A2017091.0050.006.2017094151100.hdf   | Bin 1262786 -> 0 bytes
 .../MYD11_L2.A2017091.0110.006.2017094151039.hdf   | Bin 1498406 -> 0 bytes
 .../MYD11_L2.A2017091.0115.006.2017094143615.hdf   | Bin 3687269 -> 0 bytes
 .../MYD11_L2.A2017091.0120.006.2017094143638.hdf   | Bin 1196215 -> 0 bytes
 .../MYD11_L2.A2017091.0125.006.2017094143653.hdf   | Bin 2272406 -> 0 bytes
 .../MYD11_L2.A2017091.0130.006.2017094151056.hdf   | Bin 3142655 -> 0 bytes
 .../MYD11_L2.A2017091.0135.006.2017094151117.hdf   | Bin 4975470 -> 0 bytes
 .../MYD11_L2.A2017091.0140.006.2017094143804.hdf   | Bin 5575227 -> 0 bytes
 .../MYD11_L2.A2017091.0145.006.2017094151110.hdf   | Bin 1683008 -> 0 bytes
 .../MYD11_L2.A2017091.0150.006.2017094151114.hdf   | Bin 1399991 -> 0 bytes
 .../MYD11_L2.A2017091.0155.006.2017094143610.hdf   | Bin 1054705 -> 0 bytes
 examples/viz/src/test/resources/modis/modis.csv    |   9 -----
 30 files changed, 33 insertions(+), 55 deletions(-)

diff --git a/examples/rdd-colocation-mining/build.sbt b/examples/rdd-colocation-mining/build.sbt
index e968c7a..742ef2b 100644
--- a/examples/rdd-colocation-mining/build.sbt
+++ b/examples/rdd-colocation-mining/build.sbt
@@ -27,7 +27,7 @@ val ScalaCompatibleVersion = "2.12"
 // Change the dependency scope to "provided" when you run "sbt assembly"
 val dependencyScope = "compile"
 
-val geotoolsVersion = "24.0"
+val geotoolsVersion = "1.1.0-24.1"
 
 val jacksonVersion = "2.10.0"
 
@@ -49,11 +49,7 @@ libraryDependencies ++= Seq(
   "org.locationtech.jts"% "jts-core"% "1.18.0" % "compile",
   "org.wololo" % "jts2geojson" % "0.14.3" % "compile", // Only needed if you read GeoJSON files. Under MIT License
   //  The following GeoTools packages are only required if you need CRS transformation. Under GNU Lesser General Public License (LGPL) license
-  "org.geotools" % "gt-main" % geotoolsVersion % "compile",
-  "org.geotools" % "gt-referencing" % geotoolsVersion % "compile",
-  "org.geotools" % "gt-epsg-hsql" % geotoolsVersion % "compile",
-  "javax.media" % "jai_core" % "1.1.3" % "compile" from "https://repo.osgeo.org/repository/release/javax/media/jai_core/1.1.3/jai_core-1.1.3.jar",
-  "org.datasyslab" % "sernetcdf" % "0.1.0" % "compile" // Only needed if you read HDF files. Under Apache License 2.0
+  "org.datasyslab" % "geotools-wrapper" % geotoolsVersion % "compile"
 )
 
 assemblyMergeStrategy in assembly := {
diff --git a/examples/rdd-colocation-mining/project/build.properties b/examples/rdd-colocation-mining/project/build.properties
index 6be4958..215ddd2 100644
--- a/examples/rdd-colocation-mining/project/build.properties
+++ b/examples/rdd-colocation-mining/project/build.properties
@@ -1 +1 @@
-sbt.version = 0.13.15
\ No newline at end of file
+sbt.version = 1.5.5
\ No newline at end of file
diff --git a/examples/rdd-colocation-mining/project/plugins.sbt b/examples/rdd-colocation-mining/project/plugins.sbt
index 5b20505..4159911 100644
--- a/examples/rdd-colocation-mining/project/plugins.sbt
+++ b/examples/rdd-colocation-mining/project/plugins.sbt
@@ -1 +1 @@
-addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
\ No newline at end of file
+addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
\ No newline at end of file
diff --git a/examples/sql/build.sbt b/examples/sql/build.sbt
index f3a4ad4..75c0ca1 100644
--- a/examples/sql/build.sbt
+++ b/examples/sql/build.sbt
@@ -27,7 +27,7 @@ val ScalaCompatibleVersion = "2.12"
 // Change the dependency scope to "provided" when you run "sbt assembly"
 val dependencyScope = "compile"
 
-val geotoolsVersion = "24.0"
+val geotoolsVersion = "1.1.0-24.1"
 
 val jacksonVersion = "2.10.0"
 
@@ -49,11 +49,7 @@ libraryDependencies ++= Seq(
   "org.locationtech.jts"% "jts-core"% "1.18.0" % "compile",
   "org.wololo" % "jts2geojson" % "0.14.3" % "compile", // Only needed if you read GeoJSON files. Under MIT License
   //  The following GeoTools packages are only required if you need CRS transformation. Under GNU Lesser General Public License (LGPL) license
-  "org.geotools" % "gt-main" % geotoolsVersion % "compile",
-  "org.geotools" % "gt-referencing" % geotoolsVersion % "compile",
-  "org.geotools" % "gt-epsg-hsql" % geotoolsVersion % "compile",
-  "javax.media" % "jai_core" % "1.1.3" % "compile" from "https://repo.osgeo.org/repository/release/javax/media/jai_core/1.1.3/jai_core-1.1.3.jar",
-  "org.datasyslab" % "sernetcdf" % "0.1.0" % "compile" // Only needed if you read HDF files. Under Apache License 2.0
+  "org.datasyslab" % "geotools-wrapper" % geotoolsVersion % "compile"
 )
 
 assemblyMergeStrategy in assembly := {
diff --git a/examples/sql/project/build.properties b/examples/sql/project/build.properties
index 6be4958..215ddd2 100644
--- a/examples/sql/project/build.properties
+++ b/examples/sql/project/build.properties
@@ -1 +1 @@
-sbt.version = 0.13.15
\ No newline at end of file
+sbt.version = 1.5.5
\ No newline at end of file
diff --git a/examples/sql/project/plugins.sbt b/examples/sql/project/plugins.sbt
index 5b20505..4159911 100644
--- a/examples/sql/project/plugins.sbt
+++ b/examples/sql/project/plugins.sbt
@@ -1 +1 @@
-addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
\ No newline at end of file
+addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
\ No newline at end of file
diff --git a/examples/viz/build.sbt b/examples/viz/build.sbt
index f09a506..ff3857e 100644
--- a/examples/viz/build.sbt
+++ b/examples/viz/build.sbt
@@ -28,7 +28,7 @@ val ScalaCompatibleVersion = "2.12"
 // Change the dependency scope to "provided" when you run "sbt assembly"
 val dependencyScope = "compile"
 
-val geotoolsVersion = "24.0"
+val geotoolsVersion = "1.1.0-24.1"
 
 val jacksonVersion = "2.10.0"
 
@@ -50,11 +50,7 @@ libraryDependencies ++= Seq(
   "org.locationtech.jts"% "jts-core"% "1.18.0" % "compile",
   "org.wololo" % "jts2geojson" % "0.14.3" % "compile", // Only needed if you read GeoJSON files. Under MIT License
   //  The following GeoTools packages are only required if you need CRS transformation. Under GNU Lesser General Public License (LGPL) license
-  "org.geotools" % "gt-main" % geotoolsVersion % "compile",
-  "org.geotools" % "gt-referencing" % geotoolsVersion % "compile",
-  "org.geotools" % "gt-epsg-hsql" % geotoolsVersion % "compile",
-  "javax.media" % "jai_core" % "1.1.3" % "compile" from "https://repo.osgeo.org/repository/release/javax/media/jai_core/1.1.3/jai_core-1.1.3.jar",
-  "org.datasyslab" % "sernetcdf" % "0.1.0" % "compile" // Only needed if you read HDF files. Under Apache License 2.0
+  "org.datasyslab" % "geotools-wrapper" % geotoolsVersion % "compile"
 )
 
 assemblyMergeStrategy in assembly := {
diff --git a/examples/viz/project/build.properties b/examples/viz/project/build.properties
index 6be4958..215ddd2 100644
--- a/examples/viz/project/build.properties
+++ b/examples/viz/project/build.properties
@@ -1 +1 @@
-sbt.version = 0.13.15
\ No newline at end of file
+sbt.version = 1.5.5
\ No newline at end of file
diff --git a/examples/viz/project/plugins.sbt b/examples/viz/project/plugins.sbt
index 5b20505..4159911 100644
--- a/examples/viz/project/plugins.sbt
+++ b/examples/viz/project/plugins.sbt
@@ -1 +1 @@
-addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
\ No newline at end of file
+addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
\ No newline at end of file
diff --git a/examples/viz/src/main/scala/ScalaExample.scala b/examples/viz/src/main/scala/ScalaExample.scala
index 502f221..c3f9035 100644
--- a/examples/viz/src/main/scala/ScalaExample.scala
+++ b/examples/viz/src/main/scala/ScalaExample.scala
@@ -19,7 +19,6 @@
 
 import org.apache.log4j.{Level, Logger}
 import org.apache.sedona.core.enums.{FileDataSplitter, GridType, IndexType}
-import org.apache.sedona.core.formatMapper.EarthdataHDFPointMapper
 import org.apache.sedona.core.spatialOperator.JoinQuery
 import org.apache.sedona.core.spatialRDD.{PointRDD, PolygonRDD, RectangleRDD}
 import org.apache.sedona.sql.utils.SedonaSQLRegistrator
@@ -77,21 +76,21 @@ object ScalaExample extends App{
 	val PolygonSplitter = FileDataSplitter.getFileDataSplitter(prop.getProperty("splitter"))
 	val PolygonNumPartitions = prop.getProperty("numPartitions").toInt
 	val USMainLandBoundary = new Envelope(-126.790180, -64.630926, 24.863836, 50.000)
-	val earthdataInputLocation = System.getProperty("user.dir") + "/src/test/resources/modis/modis.csv"
-	val earthdataNumPartitions = 5
-	val HDFIncrement = 5
-	val HDFOffset = 2
-	val HDFRootGroupName = "MOD_Swath_LST"
-	val HDFDataVariableName = "LST"
-	val HDFDataVariableList = Array("LST", "QC", "Error_LST", "Emis_31", "Emis_32")
-	val HDFswitchXY = true
-	val urlPrefix = System.getProperty("user.dir") + "/src/test/resources/modis/"
+//	val earthdataInputLocation = System.getProperty("user.dir") + "/src/test/resources/modis/modis.csv"
+//	val earthdataNumPartitions = 5
+//	val HDFIncrement = 5
+//	val HDFOffset = 2
+//	val HDFRootGroupName = "MOD_Swath_LST"
+//	val HDFDataVariableName = "LST"
+//	val HDFDataVariableList = Array("LST", "QC", "Error_LST", "Emis_31", "Emis_32")
+//	val HDFswitchXY = true
+//	val urlPrefix = System.getProperty("user.dir") + "/src/test/resources/modis/"
 
 	if (buildScatterPlot(scatterPlotOutputPath)
 		&& buildHeatMap(heatMapOutputPath)
 		&& buildChoroplethMap(choroplethMapOutputPath)
 		&& parallelFilterRenderNoStitch(parallelFilterRenderOutputPath)
-		&& earthdataVisualization(earthdataScatterPlotOutputPath)
+//		&& earthdataVisualization(earthdataScatterPlotOutputPath)
 		&& sqlApiVisualization(sqlApiOutputPath))
 		System.out.println("All SedonaViz Demos have passed.")
 	else System.out.println("SedonaViz Demos failed.")
@@ -168,17 +167,17 @@ object ScalaExample extends App{
 		true
 	}
 
-	def earthdataVisualization(outputPath: String): Boolean = {
-		val earthdataHDFPoint = new EarthdataHDFPointMapper(HDFIncrement, HDFOffset, HDFRootGroupName,
-			HDFDataVariableList, HDFDataVariableName, HDFswitchXY, urlPrefix)
-		val spatialRDD = new PointRDD(sparkContext, earthdataInputLocation, earthdataNumPartitions, earthdataHDFPoint, StorageLevel.MEMORY_ONLY)
-		val visualizationOperator = new ScatterPlot(1000, 600, spatialRDD.boundaryEnvelope, ColorizeOption.EARTHOBSERVATION, false, false)
-		visualizationOperator.CustomizeColor(255, 255, 255, 255, Color.BLUE, true)
-		visualizationOperator.Visualize(sparkContext, spatialRDD)
-		val imageGenerator = new ImageGenerator
-		imageGenerator.SaveRasterImageAsLocalFile(visualizationOperator.rasterImage, outputPath, ImageType.PNG)
-		true
-	}
+//	def earthdataVisualization(outputPath: String): Boolean = {
+//		val earthdataHDFPoint = new EarthdataHDFPointMapper(HDFIncrement, HDFOffset, HDFRootGroupName,
+//			HDFDataVariableList, HDFDataVariableName, HDFswitchXY, urlPrefix)
+//		val spatialRDD = new PointRDD(sparkContext, earthdataInputLocation, earthdataNumPartitions, earthdataHDFPoint, StorageLevel.MEMORY_ONLY)
+//		val visualizationOperator = new ScatterPlot(1000, 600, spatialRDD.boundaryEnvelope, ColorizeOption.EARTHOBSERVATION, false, false)
+//		visualizationOperator.CustomizeColor(255, 255, 255, 255, Color.BLUE, true)
+//		visualizationOperator.Visualize(sparkContext, spatialRDD)
+//		val imageGenerator = new ImageGenerator
+//		imageGenerator.SaveRasterImageAsLocalFile(visualizationOperator.rasterImage, outputPath, ImageType.PNG)
+//		true
+//	}
 
 	def sqlApiVisualization(outputPath: String): Boolean = {
 		val sqlContext = new SQLContext(sparkContext)
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017090.2355.006.2017094154313.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017090.2355.006.2017094154313.hdf
deleted file mode 100644
index 4252b25..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017090.2355.006.2017094154313.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0000.006.2017094143724.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0000.006.2017094143724.hdf
deleted file mode 100644
index d237ff0..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0000.006.2017094143724.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0005.006.2017094143741.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0005.006.2017094143741.hdf
deleted file mode 100644
index a5cc2d7..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0005.006.2017094143741.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0010.006.2017094151044.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0010.006.2017094151044.hdf
deleted file mode 100644
index 475f247..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0010.006.2017094151044.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0015.006.2017094143601.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0015.006.2017094143601.hdf
deleted file mode 100644
index 001678f..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0015.006.2017094143601.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0025.006.2017094150813.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0025.006.2017094150813.hdf
deleted file mode 100644
index 48c705b..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0025.006.2017094150813.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0030.006.2017094150841.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0030.006.2017094150841.hdf
deleted file mode 100644
index aa46621..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0030.006.2017094150841.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0035.006.2017094150854.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0035.006.2017094150854.hdf
deleted file mode 100644
index 22c1b61..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0035.006.2017094150854.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0050.006.2017094151100.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0050.006.2017094151100.hdf
deleted file mode 100644
index bec09e3..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0050.006.2017094151100.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0110.006.2017094151039.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0110.006.2017094151039.hdf
deleted file mode 100644
index 84e1e94..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0110.006.2017094151039.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0115.006.2017094143615.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0115.006.2017094143615.hdf
deleted file mode 100644
index 0325323..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0115.006.2017094143615.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0120.006.2017094143638.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0120.006.2017094143638.hdf
deleted file mode 100644
index 94d5259..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0120.006.2017094143638.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0125.006.2017094143653.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0125.006.2017094143653.hdf
deleted file mode 100644
index 618e3a2..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0125.006.2017094143653.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0130.006.2017094151056.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0130.006.2017094151056.hdf
deleted file mode 100644
index 42fee4e..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0130.006.2017094151056.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0135.006.2017094151117.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0135.006.2017094151117.hdf
deleted file mode 100644
index 674c795..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0135.006.2017094151117.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0140.006.2017094143804.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0140.006.2017094143804.hdf
deleted file mode 100644
index ea1bf1b..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0140.006.2017094143804.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0145.006.2017094151110.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0145.006.2017094151110.hdf
deleted file mode 100644
index 374258f..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0145.006.2017094151110.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0150.006.2017094151114.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0150.006.2017094151114.hdf
deleted file mode 100644
index 83ce41f..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0150.006.2017094151114.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0155.006.2017094143610.hdf b/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0155.006.2017094143610.hdf
deleted file mode 100644
index 3858fef..0000000
Binary files a/examples/viz/src/test/resources/modis/MYD11_L2.A2017091.0155.006.2017094143610.hdf and /dev/null differ
diff --git a/examples/viz/src/test/resources/modis/modis.csv b/examples/viz/src/test/resources/modis/modis.csv
deleted file mode 100644
index dfe00ba..0000000
--- a/examples/viz/src/test/resources/modis/modis.csv
+++ /dev/null
@@ -1,9 +0,0 @@
-MYD11_L2.A2017091.0155.006.2017094143610.hdf
-MYD11_L2.A2017091.0150.006.2017094151114.hdf
-MYD11_L2.A2017091.0145.006.2017094151110.hdf
-MYD11_L2.A2017091.0140.006.2017094143804.hdf
-MYD11_L2.A2017091.0135.006.2017094151117.hdf
-MYD11_L2.A2017091.0130.006.2017094151056.hdf
-MYD11_L2.A2017091.0125.006.2017094143653.hdf
-MYD11_L2.A2017091.0120.006.2017094143638.hdf
-MYD11_L2.A2017091.0115.006.2017094143615.hdf
\ No newline at end of file