/*
 * 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;
    public WindgenSelectArea(String fid, Type type){
        super(type);
        this.fid = fid;
    }

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

}
