1

我从 ArcGIS 服务器收到了一个 Json 响应,如下所示:

{  "displayFieldName" : "ELTTYPE", 
"features" : [
{
  "attributes" : {
    "ELTTYPE" : "Faldunderlag", 
    "DATANR" : 721301, 
    "ELEMENTNR" : 40, 
    "AREALTYPE" : "BELÆGNING", 
    "SHAPE.area" : 26.4595572
  }
}, 
{
  "attributes" : {
    "ELTTYPE" : "Prydplæne", 
    "DATANR" : 721301, 
    "ELEMENTNR" : 2, 
    "AREALTYPE" : "GRÆS", 
    "SHAPE.area" : 1993.23450096
  }
}, 
{
  "attributes" : {
    "ELTTYPE" : "Busket", 
    "DATANR" : 721301, 
    "ELEMENTNR" : 18, 
    "AREALTYPE" : "BUSKE", 
    "SHAPE.area" : 2105.69020834
  }
}...... and so on ]
}

我喜欢用 ELEMENTNR 的不同值和 SHAPE.area 的汇总值制作一个数据网格。

有谁知道如何做到这一点?

塞巴斯蒂安

4

2 回答 2

0

Array.prototype.filter

您需要包含过滤器脚本片段才能将其用于不受支持的浏览器。

function reduceMyData(input) {
  var check = {};
  return input.filter(function(item, index, ary){
    var id = item.attributes["ELEMENTNR"];
    if (check[id]) return false;
    return check[id] = true;
  });
}

var myFeatures = reduceMyData(data.features);
于 2010-02-16T09:21:56.747 回答
0

据我了解,您不仅需要获取具有不同 ELENTNR 的元素,还需要为具有相同 ELENTNR 的元素累积 SHAPE.area。如果是这样:

var codes = {};
// features - is an array of features from your json
var distinctFeatures = dojo.filter(features, function(m){
    if(typeof(codes[m.attributes.ELEMENTNR]) == "undefined"){
        codes[m.attributes.ELEMENTNR] = m.attributes["SHAPE.area"];
        return true;
    }
    else{ // if duplicate
        codes[m.attributes.ELEMENTNR] += m.attributes["SHAPE.area"];
        return false;
    }
});
for(var index in distinctFeatures){
    var elementNr = distinctFeatures[index].attributes.ELEMENTNR;
    distinctFeatures[index].attributes["SHAPE.area"] = codes[elementNr];
}
于 2010-02-18T10:45:56.403 回答