Hi,
I would like to change the results of a GeoJSON writer when there's no attributes that pass my transformers. For example, when I got what its like in the left picture, I got a reply from my GeoJSON writer like so : {
"type" : "FeatureCollection",
"name" : "aspvhn_Strct_sur",
"features" : [
{
"type" : "Feature",
"geometry" : {
"type" : "Point",
"coordinates" : [ -73.8119918787, 45.6095554592 ]
},
"properties" : {
"idstruct" : null,
"producteur" : "MTQ"
}
}.
But, when its like the right picture, I got nothing from the GeoJSON writer. What I want is that when I got no attribute that pass my transformers, i'll still have an answer that looks like what you see as above but with space instead of nothing at all. Thanks.

