Gianpaolo Coro 2014-02-24 11:55:20 +00:00
parent cd98ffd59c
commit 30cb3083b0
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package org.gcube.dataanalysis.geo.interfaces;
import java.util.List;
import org.gcube.dataanalysis.ecoengine.utils.Tuple;
public interface GISDataConnector {
List<Double> getFeaturesInTimeInstantAndArea(String layerURL, String layerName, int time, List<Tuple<Double>> coordinates3d, double BBxL,double BBxR, double BByL, double BByR) throws Exception;
}