public OccupancyGrid(Header header, MapMetaData info, sbyte[] data)
 {
     this.header = header;
     this.info   = info;
     this.data   = data;
 }
 public OccupancyGrid()
 {
     this.header = new Header();
     this.info   = new MapMetaData();
     this.data   = new sbyte[0];
 }