You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What could be nice is to allow subtypes of the RDD to be accepted by RasterSummary methods:
// with no explicit upcastvalsourceRDD= sc.parallelize(files).map(GeoTiffRasterSource(uri).reproject(targetCRS))
valsummary=RasterSummary.fromRDD(sourceRDD)
At this point the
RasterSummary.fromRDD
(and similar methods) have the folowing signature:Due to the fact that RDD is invariant, it is pretty hard and inconvenient to use:
What could be nice is to allow subtypes of the
RDD
to be accepted byRasterSummary
methods:We can work around RDD invariance by defining the following functions singnature (just an example):
The text was updated successfully, but these errors were encountered: