-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rasters write support to HDFS / S3 #2102
Rasters write support to HDFS / S3 #2102
Conversation
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
cde2e71
to
a77e695
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
b007766
to
da40aa3
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
da40aa3
to
68b7eb0
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
0d7ead8
to
da84e38
Compare
@@ -59,7 +59,8 @@ package object spark | |||
with stitch.Implicits | |||
with summary.Implicits | |||
with summary.polygonal.Implicits | |||
with tiling.Implicits { | |||
with tiling.Implicits | |||
with spark.raster.io.Implicits { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This breaks the pattern. This should be on the import geotrellis.spark.io._
package.
import org.apache.hadoop.fs.Path | ||
import org.apache.spark.SparkContext | ||
|
||
object GeoTiffHadoopReader { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be in hadoop subproject
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
e0eef5d
to
db86ac5
Compare
Signed-off-by: Grigory Pomadchin <gr.pomadchin@gmail.com>
c7547ff
to
cf14df3
Compare
This looks good and comment from @lossyrob are addressed. |
Hadoop based PNG / JPG / GeoTiff images write. Fixes #2080