geowave icon indicating copy to clipboard operation
geowave copied to clipboard

GeoWave provides geospatial and temporal indexing on top of Accumulo, HBase, BigTable, Cassandra, Kudu, Redis, RocksDB, and DynamoDB.

Results 89 geowave issues
Sort by recently updated
recently updated
newest added

GeoWave needs to compile and run on Java 11, specifically OpenJDK 11. The travis build should ensure that both the Java 8 and Java 11 versions pass all tests.

enhancement

Create a user interface that exposes the functionality of the GeoWave CLI, similar to the Geoserver UI.

enhancement

There is the command line option `ingest` (`localToGW`) that allows for ingesting data from AWS S3 http://locationtech.github.io/geowave/commands.html#ingest-commands Same for `geowave ingest sparkToGW`. There is also a configuration option for AWS....

At this point some GeoWave queries that do not contain all the index dimensions: i.e. the table is indexed with a 3-dim index: geometry + time, but the query contains...

When an index produces duplicates for a single result, Redis only allows one entry in a collection with the same value (so there may be a different key, but the...

bug

I ingest two shape file into geowave, and how do I perform overlay analysis based on SimpleFeature(and i can get Geometry) from geowave?

For example, when a temporal predicate is provided profiling indicates that an overwhelming majority of time is spent in java.text.DateFormat.parse() for every call to CQLQueryFilter.accept(). It seems the call tree...

performance

Originally it was pointed out that in `DataStoreUtils.mergeVisibilities` we should make it more robust: > Are we worried about something like vis1 being (a)&(b) as a result of a previous...

All uses of KuduReader use the Async client for range reads whereas for deletion and record reader it may make more sense to use the synchronous client

Execution results are correct, but filtering is slow. Is there a solution faster? The execution code is as follows: ``` int minSplits = -1; int maxSplits = -1; Geometry tGeo;...