V1_0.java [src/java/m/gis/minboundingrectangle] Revision: b536f654c1929ca9370a00a3762132da36215852  Date: Wed Jul 29 09:31:29 MDT 2015
/*
 * 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.gis.minboundingrectangle;

import static csip.ModelDataService.EXEC_OK;
import java.util.ListIterator;
import javax.ws.rs.Path;
import m.gis.GISModelDataService;
import m.utils.Layer;
import oms3.annotations.*;

/**
 *
 * @author ktraff
 */
@Name("minboundingrectangle")
@Description("CSIP Minimum Bounding Rectangle Service")
@Path("m/minboundingrectangle/1.0")
public class V1_0 extends GISModelDataService {

    @Override
    protected void preProcess() throws Exception {
		super.preProcess();
    }

    @Override
    protected String process() throws Exception {
        if (layers.size() > 0) {
            ListIterator<Layer> iterator = layers.listIterator();
            while (iterator.hasNext()) {
                Layer lyr = db.minimumBoundingRectangle(iterator.next());
                Layer lyrArea = db.area(lyr);
                result.put(db.toJSON(lyrArea, outputSRID));
            }
        }
        return EXEC_OK;
    }

    @Override
    protected void postProcess() throws Exception {
		super.postProcess();
    }

}