V1_0.java [src/java/m/weather/ncwcd] Revision:   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.ncwcd;

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.*;

/**
 * NCWCD extraction
 *
 * @author od
 */
@Name("NCWCD")
@Description("NCWCD weather extraction")
@Path("m/ncwcd/1.0")
@Resources({
    @Resource(file="/python/driver.py", type=FILE, id="driver"),
    @Resource(file="/python/weatherExtraction.py", type=FILE, id="weatherExtraction"),
})
public class V1_0 extends WeatherModelDataService {
}