Max
Max

Reputation: 43

Remap JSON object to other JSON structure

I'm trying to remap the following JSON structure that is formatted by categories and then per category can contain multiple locations. A location contains a lon/lat and an area code:

{
  "cat1":[
    {"location":{
      "latitude":51.38,
      "longitude":4.34,
      "code":"0873"}
    },
    {"location":{
      "latitude":52.65,
      "longitude":6.74,
      "code":"0109"}
    },
    {"location":{
      "latitude":51.48,
      "longitude":4.33,
      "code":"0748"}
    },
    {"location":{
      "latitude":51.48,
      "longitude":4.33,
      "code":"0109"}
    }
  ],
  "cat2":[
    {"location":{
      "latitude":52.33,
      "longitude":4.32,
      "code":"0873"}
    },
    {"location":{
      "latitude":52.65,
      "longitude":6.74,
      "code":"0109"}
    },
    {"location":{
      "latitude":51.48,
      "longitude":4.33,
      "code":"0728"}
    }
  ],
  "cat3":[
    {"location":{
      "latitude":52.33,
      "longitude":4.32,
      "code":"0873"}
    },
    {"location":{
      "latitude":52.65,
      "longitude":6.74,
      "code":"0109"}
    },
    {"location":{
      "latitude":51.48,
      "longitude":4.33,
      "code":"0758"}
    }
  ]
}

Into the following structure, that is primarily focussed on the areacode, then has the categories with the actual locations in them.

{
  "code":[
    {"0873":[
      {"cat1":[
        {"location":{"latitude":51.38,"longitude":4.34}}
      ]},
      {"cat2":[
        {"location":{"latitude":52.33,"longitude":4.32}}
      ]},
      {"cat3":[
        {"location":{"latitude":52.33,"longitude":4.32}}
      ]}
    ]},

    {"0109":[
      {"cat1":[
        {"location":{"latitude":52.65,"longitude":6.74}},
        {"location":{"latitude":51.48,"longitude":4.33}}
      ]},
      {"cat2":[
        {"location":{"latitude":52.65,"longitude":6.74}}
      ]},
      {"cat3":[
        {"location":{"latitude":52.65,"longitude":6.74}}
      ]}

    ]},
    {"0748":[
      {"cat1":[
        {"location":{"latitude":51.48,"longitude":4.33}}
      ]}
    ]},

    {"0728":[
      {"cat2":[
        {"location":{"latitude":51.48,"longitude":4.33}}
      ]}
    ]},
    {"0758":[
      {"cat3":[
        {"location":{"latitude":51.48,"longitude":4.33}}
      ]}
    ]}

  ]
}

I try to do this in Javascript/Node and was looking at a way to do this more elegant than traversing all objects by hand and restructure them. Was looking into reorient and obstruction but can't find a way to get it done....

Any help is appreciated!

I know the pieces above are JSON strings that are read from file and then parsed to an object.

The code I have to do this is currently(its not finished, because I didn't know what would be the best way to do the remapJson():

var fs = require('fs'),
jsonfile = require('jsonfile');

function remapJson(oldData) {
  var newData = {};

  // Do the convertion (loop all keys and values?)


  return newData
}

obj = jsonfile.readFileSync('oldstructure.json');

jsonfile.writeFileSync('newstructure.json', remapJson(obj));

Upvotes: 4

Views: 4117

Answers (2)

Akshay
Akshay

Reputation: 805

try this

var a = //your json
var newArray = [];
for(var i in a){
    var obj = {};
    var newobj = {};
    var innerobj = {};
    var locationobj = {};
    if(a[i].length != 0){
        var keyname = i;
        for(var j = 0;j<a[i].length ; j++){
            if(a[i][j].location.code == "0873"){
                locationobj["latitude"] = a[i][j].location.latitude;
                locationobj["longitude"] = a[i][j].location.longitude;
                innerobj[i] = {"loaction":locationobj};
                obj[a[i][j].location.code] = innerobj;
                newArray.push({"code":obj})
            }else if(a[i][j].location.code == "0758"){
                locationobj["latitude"] = a[i][j].location.latitude;
                locationobj["longitude"] = a[i][j].location.longitude;
                innerobj[i] = {"loaction":locationobj};
                obj[a[i][j].location.code] = innerobj;
                newArray.push({"code":obj})
            }else if(a[i][j].location.code == "0109"){
                locationobj["latitude"] = a[i][j].location.latitude;
                locationobj["longitude"] = a[i][j].location.longitude;
                innerobj[i] = {"loaction":locationobj};
                obj[a[i][j].location.code] = innerobj;
                newArray.push({"code":obj})
            }

        }
    }
}

console.log(newArray)

Upvotes: 0

Nina Scholz
Nina Scholz

Reputation: 386560

You could use an iterative and recursive approach for addressing the result arrays in a hash table.

var data = { cat1: [{ location: { latitude: 51.38, longitude: 4.34, code: "0873" } }, { location: { latitude: 52.65, longitude: 6.74, code: "0109" } }, { location: { latitude: 51.48, longitude: 4.33, code: "0748" } }, { location: { latitude: 51.48, longitude: 4.33, code: "0109" } }], cat2: [{ location: { latitude: 52.33, longitude: 4.32, code: "0873" } }, { location: { latitude: 52.65, longitude: 6.74, code: "0109" } }, { location: { latitude: 51.48, longitude: 4.33, code: "0728" } }], cat3: [{ location: { latitude: 52.33, longitude: 4.32, code: "0873" } }, { location: { latitude: 52.65, longitude: 6.74, code: "0109" } }, { location: { latitude: 51.48, longitude: 4.33, code: "0758" } }] },
    result = { code: [] };

Object.keys(data).forEach(function (key) {
    data[key].forEach(function (a) {
        [a.location.code, key].reduce(function (r, k) {
            var o = {};
            if (!r[k]) {
                r[k] = { _: [] };
                o[k] = r[k]._;
                r._.push(o);
            }
            return r[k];
        }, this)._.push({ location: { latitude: a.location.latitude, longitude: a.location.longitude } });
    }, this);
}, { _: result.code });

console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }

Upvotes: 3

Related Questions