rasterframes
rasterframes copied to clipboard
Geospatial Raster support for Spark DataFrames
Things still to do since [upgrade to GeoTrellis 3.x](https://github.com/locationtech/rasterframes/pull/398). * [ ] Local `RasterSource` updated to use `CellGrid[Long]` * [ ] Replace `SimpleRasterInfo` with `GeoTiffInfo` (where possible). Revisit `RasterExtent` vs...
Only 70% sure this is a bug, but need to be wary of it. Same issue as this: https://stackoverflow.com/questions/37709770/resolving-kryo-serialization-failed-buffer-overflow-spark-exception Appears that adding the spatial index may get evaluated in a...
_Originally posted by @vpipkt in https://github.com/locationtech/rasterframes/pull/478#issuecomment-592126987_ The tests run fine everywhere else, but on CircleCI they hang and timeout after a ` java.lang.NoClassDefFoundError: fs2/Stream` This error is triggered by taking...
This needs a unit test. assigning to me until write unit test. I think I have found a bug: - read small raster, - noting its dimensions - is in...
Context: https://gitter.im/locationtech/rasterframes?at=5eab3de75cd4fe50a3e0910c Workaround: https://gist.github.com/metasim/8b692afc8ee5da515f14f0c9e16ffd73
This code: ``` val df = spark.read.raster //.... .select(rf_tile($"red"), rf_extent($"red") as "red_extent", rf_crs($"red") as "red_crs") .toLayer(tlm) ``` Fails with error about column `crs as crs` not found. Pinpointed this to...
Context: https://gitter.im/locationtech/rasterframes?at=5eb1751a347bd6163057bd62 Workaround: https://gist.github.com/metasim/5236f81a119fcc73833f6f93ee55608f
Hello, I've succeded trying to read the data from the examples on the RFs doc site (ie: https://rasterframes.io/raster-read.html). However, i'm uncapable of reading the same data when located in my...
MODIS is published in HDF4 format and so it is important for some of our users to be able to read local files in the `raster` DataSource. A very cursory...