V1_0.java [src/java/m/weather/NARR] Revision: default Date:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package m.weather.NARR;
import m.weather.WeatherModelDataService;
import javax.ws.rs.Path;
import oms3.annotations.*;
import csip.annotations.Resource;
import csip.annotations.Resources;
import static csip.annotations.ResourceType.*;
/**
* NARR extraction
*
* @author od
*/
@Name("NARR")
@Description("North American Regional Reanalysis")
@Path("m/narr/1.0")
@Resources({
@Resource(file="/python/driver.py", type=FILE, id="driver"),
@Resource(file="/python/weatherExtraction.py", type=FILE, id="weatherExtraction"),
@Resource(file="/python/narr.py", type=FILE, id="narr")
})
public class V1_0 extends WeatherModelDataService {
}