我是rails上的新手并尝试使用Rgeo和GeoJSON。 我想从我的数据中提取GeoJSON以用于传单。
安装 GeoJSON (和/或地点)的正确方法是什么。
Gemfile:
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
答案 0 :(得分:0)
要读取geojson数据,您只需要捕获变量中的纯文本并解析它。
bash -c "du -m | sed 's/\([0-9]\+\)\s\+\(.*\)/\1MB,\2/'"
我认为4326是默认的SRID,所以在技术上没有任何东西可以为这个实例配置,因为你还没有重新投影它。
您正在使用工厂,并且我使用的是运行时默认设置,但要使用工厂,您只需要在它们上调用相同的方法。