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

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

/**
 * Coagmet extraction
 *
 * @author od
 */
@Name("CoAgMet")
@Description("CoAgMet weather extraction")
@Path("m/coagmet/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 {
}