* @param offset
* offset to start reading cell
* @return map cell
*/
private MapCell getMapCell(byte[] data, int offset) {
MapCell cell = new MapCell();
short index = getShortValue(data, offset);
byte altitude = data[offset + 2];
cell.setIndex(index);
cell.setAltitude(altitude);
return cell;
}