DataStream.prototype.readDouble = function() {
  var output = this.data.readDoubleBE(this.position);
  this.position += 8;
  return output;
};