/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package app.navigps.coordinates;
/**
*
* @author vara
*/
public interface EllipsedMethods {
/**
*
* @return
*/
double getSemiMinorAxis();
/**
*
* @return
*/
double getSemiMajorAxis();
/**
*
* @return
*/
double getPinFlatteningElipsoidy();
/**
*
* @return
*/
double getFirstEccentricity();
/**
*
* @return
*/
double getSquareFirstEccentricity();
/**
*
* @return
*/
double getSecondEccentricity();
/**
*
* @return
*/
double getSquareSecondEccentricity();
}