/**
  * Retrieve the size of this object in bytes. This implementation returns an exact value of the
  * object's size.
  *
  * @return the size of this object in bytes
  */
 public long getSizeInBytes() {
   return 4 * minLatitude.getSizeInBytes(); // 4 angles
 }