1

我是一个新手,尝试使用 Rgeo 和 GeoJSON。我想从我的数据中提取 GeoJSON 以在传单中使用。

安装GeoJSON和/或地点)的正确方法是什么。

宝石文件:

gem 'activerecord-postgis-adapter'
gem 'rgeo-geojson'
gem 'rgeo'
gem 'rgeo-activerecord'

是否需要任何其他配置以及安装它的正确方法是什么(GeoJSON

require 'rgeo/geo_json'
RGeo::ActiveRecord::SpatialFactoryStore.instance.tap do |config|
# By default, use the GEOS implementation for spatial columns.
config.default = RGeo::Geos.factory_generator

# But use a geographic implementation for point columns.
config.register(RGeo::Geographic.spherical_factory(srid: 4326), 
geo_type: "point")
end
4

1 回答 1

1

要读取 geojson 数据,您只需要在变量中捕获纯文本并解析它。

str = File.open("sample.geojson").read
shp = RGeo::GeoJSON.decode(str)

我相信 4326 是默认的 SRID,因此在技术上没有任何东西可以为这个实例配置,因为你还没有重新投影它。

您正在使用工厂,而我正在使用运行时默认值,但是要使用工厂,您只需要在它们上调用相同的方法。

于 2018-05-15T22:52:41.747 回答