Geomesa BBOX 查询只提供全世界 BBOX 的结果

Geomesa BBOX query provide result only for whole world BBOX

我是运行命令行查询获取边界框数据。仅当边界框为 "BBOX(geom, -180, -90, 180, 90.0)" 时,geomesa 查询才会返回结果。对于任何其他参数,它返回 0 个特征。

我试过 geomesa hbase 指南。 GDELT 示例给出类似的结果,它仅返回 "BBOX(geom, -180, -90, 180, 90.0)".

的数据

https://www.geomesa.org/documentation/tutorials/geomesa-hbase-s3-on-aws.html#ingest-public-gdelt-data

key                    | String 
namespace              | String (Attribute indexed)
identifier             | String (Attribute indexed)
version                | String 
payload                | String 
payload_schema_version | String 
geom                   | Point  (Spatially indexed)

User data:
  geomesa.indices | z2:5:3:geom,id:4:3:,attr:8:3:namespace:geom,attr:8:3:identifier:geom

尽管此边界框存在 100GB 数据,但以下查询仍返回 0 结果。

geomesa-hbase export -c geospatial_data_version_1 -f geospatial_data-point-entity -m 10 -q "BBOX(geom, -179, -90, 180, 90)"

我在 S3 上使用 Geomesa v 2.3.0 和 Hbase 1.4.3。

回复:

id,key:String,namespace:String,identifier:String,version:String,payload:String,payload_schema_version:String,*geom:Point:srid=4326 INFO 0 个特征的特征导出在 6163 毫秒内完成标准输出

检查 GeoMesa 日志和 HBase 日志是否有错误。如果没有更多信息,我猜测 GeoMesa 协处理器没有正确安装。此外,您可能需要使用 AWS-specific HBase 客户端 JAR,它有额外的代码来处理 S3 上的 运行。