Running the attached translator : Test_Pole_geodatabase_file2geojson.fmw, returns the attached Test_Pole.json, but I need the attributes: MEASURE, ACCURACY, VISIBILITY to be nested under a new "QUALITY" attribute. The translator returns this:Â
{
"type"Â :Â "FeatureCollection",
"name"Â :Â "Test_Pole",
"features"Â :Â Â
{
"type"Â :Â "Feature",
"geometry"Â :Â {
"type"Â :Â "Point",
"coordinates" : p 5.0735809934, 60.6100338064, 36.882 ]
},
"properties"Â :Â {
"OBJECTID"Â :Â 1,
"HREF"Â :Â "foot",
"STATE"Â :Â "existing",
"MEASURE"Â :Â 99,
"ACCURACY"Â :Â 500,
"VISIBILITY"Â :Â 40,
"MATERIAL"Â :Â "metall",
"TYPE" : "high voltage",
"INFORMATION" : "Example of high voltage"
}
My goal is to achieve this:
{
"type"Â :Â "FeatureCollection",
"name"Â :Â "Test_Pole",
"features"Â :Â "
{
"type"Â :Â "Feature",
"geometry"Â :Â {
"type"Â :Â "Point",
"coordinates" : F 5.0735809934, 60.6100338064, 36.882 ]
},
"properties"Â :Â {
"OBJECTID"Â :Â 1,
"HREF"Â :Â "foot",
"STATE"Â :Â "existing",
"QUALITY":{
  "MEASURE" : 99,
  "ACCURACY" : 500,
  "VISIBILITY" : 40,
},
"MATERIAL"Â :Â "metall",
"TYPE" : "high voltage",
"INFORMATION" : "Example of high voltage"
}
 Any suggestions (or maybe solutions :)  would be much appreciated.