/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package usda.weru.weps.location;

import javax.measure.Measurable;
import javax.measure.quantity.Length;
import org.jscience.geography.coordinates.LatLong;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public interface Station {

    /**
     * 
     * @return
     */
    public String getDisplayName();

    /**
     *
     * @return
     */
    public LatLong getLatLong();

	/**
	 *
	 * @return
	 */
	public Measurable<Length> getElevation();
    

}
