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

package usda.weru.gis.data;

import usda.weru.weps.location.WindgenStation;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public class WindgenSelectArea extends SelectArea{

	/**
	 *
	 */
	protected  final String fid;

	/**
	 *
	 * @param fid
	 * @param type
	 */
	public WindgenSelectArea(String fid, Type type){
        super(type);
        this.fid = fid;
    }

	/**
	 *
	 * @param fid
	 * @param station
	 */
	public WindgenSelectArea(String fid, WindgenStation station){
        super(station);
        this.fid = fid;
    }

}
