Geomesa accumulo CURD数据操作使用WFS geoserver

Geomesa accumulo CURD data operations using WFS geoserver

我已经创建了 geomesa accumulo 数据存储,可以使用命令行查询特征。现在我想使用 Open Geospatial Consortium 的 (OGC) Web Feature Service (WFS) 执行数据操作,以创建、修改和交换矢量格式地理信息.我不想创建代理客户端或处理 thrifts 以编程方式操作 accumulo 存储。相反,还有哪些其他技术可以使用过滤器插入和读取 geomesa accumulo 存储数据。

GeoMesa 与 GeoServer 集成以支持此类用例。

使用 WFS 读取数据是一个非常常见的用例。要将数据写入 GeoServer 中的图层,您需要查看 WFS 事务(也称为 WFS-T)。我已经成功地使用了 GeoMesa 和 GeoServer。

查看 http://www.geomesa.org/documentation/user/architecture.html#geomesa-and-geoserver for background about GeoMesa and GeoServer. This link provides information about setting up GeoMesa's Accumulo DataStore with GeoServer (http://www.geomesa.org/documentation/user/accumulo/install.html#installing-geomesa-accumulo-in-geoserver). General GeoMesa-GeoServer usage is documented here: http://www.geomesa.org/documentation/user/geoserver.html

有关 GeoServer 的 WFS 详细信息的一些快速链接,我建议通读 (http://docs.geoserver.org/latest/en/user/services/wfs/reference.html) and checking out the demos which come with GeoServer (http://docs.geoserver.org/latest/en/user/configuration/demos/index.html#demos)。