After ingesting multiple data sets in GeoMesa - Accumulo, I want to combine these datasets in a single 'view', suited for visualisation through GeoServer.
I have ingested the following data sets using converters and sfts. (1) File 1: a table containing a number of attributes of roads (2) File 2: a tabel containing the geometries of roads
Now, I want to link these tables based on an ID. Multiple records from file 1 should be linked to a record from file 2.
In PostGIS, I would generate a view. In turn, I can use this view to visualise the data via GeoServer. However, I am struggling to find the equivalent of a view in GeoMesa-Accumulo.
I have found some information on Apache Spark, which can be used to modify (data within) GeoMesa, but is this the way to go?
In sum
- What are 'views' within GeoMesa-Accumulo? Where can I find documentation?
- Which commands are used?
Thank you in advance.