3

我正在尝试从 SQL 查询到 postgis postgresql 数据库中的一些 GIS 点数据构建 GeoJSON 对象。下面是我的 node.js app.js 的一个片段。

就目前而言,我了解构建类型和功能,但不知道如何将属性数组附加到每个 GeoJSON 记录(在下面,它都在最后呈现,与功能分开(未整理)。

问题:我需要做什么才能为构建 GeoJSON 的循环中的每个记录附加(整理)属性,使其看起来更像这样http://www.geojson.org/geojson-spec.html#例子

`function GrabData(bounds, res){

  pg.connect(conn, function(err, client){

  var moisql = 'SELECT ttl, (ST_AsGeoJSON(the_geom)) as locale from cpag;'


  client.query(moisql, function(err, result){
    var featureCollection = new FeatureCollection();

    for(i=0; i<result.rows.length; i++){
      featureCollection.features[i] = JSON.parse(result.rows[i].locale);
      featureCollection.properties[i] = JSON.parse(result.rows[i].ttl); //this is wrong
   }

   res.send(featureCollection);
   });

});
}

 function FeatureCollection(){
   this.type = 'FeatureCollection';
   this.features = new Array();
   this.properties = new Object;  //this is wrong
 }

`

4

2 回答 2

3

这应该做的工作:

...
for(i=0; i<result.rows.length; i++){
    var feature = new Feature();
    feature.geometry = JSON.parse(result.rows[i].locale);
    feature.properties = {"TTL", result.rows[i].ttl};
    featureCollection.features.push(feature);
}
...

使用:

function FeatureCollection(){
    this.type = 'FeatureCollection';
    this.features = new Array();
}

function Feature(){
    this.type = 'Feature';
    this.geometry = new Object;
    this.properties = new Object;
} 
于 2013-01-09T23:04:40.080 回答
2

我最近为此编写了一个小助手模块。使用起来非常简单——

var postgeo = require("postgeo");

postgeo.connect("postgres://user@host:port/database");

postgeo.query("SELECT id, name ST_AsGeoJSON(geom) AS geometry FROM table", "geojson", function(data) {
    console.log(data);
});

You can find the repo here - https://github.com/jczaplew/postgeo

于 2014-04-01T19:01:01.523 回答