Eugene Cheipesh

Results 30 issues of Eugene Cheipesh

In order to train a user user must provide a `DatasetConfig` ex: https://github.com/azavea/raster-vision/blob/c63b2ce21d20b8055fed4cd6595ab6a807523fdf/rastervision_pytorch_backend/rastervision/pytorch_backend/examples/tiny_spacenet.py#L52-L59 This specifies: - Source of training scenes - Source of validation scenes - Per scene label file...

feature-request

When running Raster Vision pipelines the python logging is configured only for the Raster Vision module. This is particularly a problem for Raster Vision pipelines that run on AWS batch...

feature-request

Something in caching mechanism is going wrong and resulting in the file TiffTags being read for every tile. Attached is a CPU sample of a RasterFrames job that highlights the...

bug

Pushing for Spark 3.2, very draft

During 2.0 release we added a number of `@experimental` classes that implement `ValueReader` interface. With 3.0 release this functionality has a large overlap with `RasterSource` interface. This issue is to...

enhancement
experimental

Connects: https://github.com/locationtech/geotrellis/issues/2698 The base assumption in Virtual Layer Mosaic is that we're working in RDD context where the work of querying, filtering and reading can be distributed. However, in this...

enhancement

`TileRDDReproject` needs to creates a `RDD[(K, BufferTile)]` from `RDD[(K, V)]`. Current implementation does so by transforming the tile RDD into `RDD[(K, RasterExtent)]`, calculating the likely required buffer per key, shuffling...

enhancement

Often the size of a tile (256x256) produces record size that is smaller than is efficient for storage. A good example of this is S3 where significant time of request...

enhancement

[VectorJoin](https://github.com/locationtech/geotrellis/blob/master/spark/src/main/scala/geotrellis/spark/join/VectorJoin.scala) promises ability to do a spatial predicate join over two large RDDs of geometries. But it has pre-condition that the geometries in either RDDs are spatially correlated per partition....

enhancement

``` [warn] /usr/local/src/vector/src/main/scala/geotrellis/vector/SeqMethods.scala:88:63: type Traversable in package scala is deprecated (since 2.13.0): Use Iterable instead of Traversable [warn] implicit class SeqMultiLineStringExtensions(val multilines: Traversable[MultiLineString]) { ``` `Traversable` is used all over...

api change