I'we got a Json response from a ArcGIS server that look like this:
{ "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 ]
}
I like to make a datagrid with the distinct values of ELEMENTNR and the summurized values of SHAPE.area.
Does any have an idea how to do this?
Sebastian