checks to maps comparison and MaxEnt algorithm

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/EcologicalEngineGeoSpatialExtension@100878 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Gianpaolo Coro 2014-10-22 15:55:50 +00:00
parent a73b92073d
commit a849801a2e
1 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,10 @@ public class MapsComparator extends DataAnalysis {
long t0 = System.currentTimeMillis();
String layerT1 = IOHelper.getInputParameter(config,layer1);
String layerT2 = IOHelper.getInputParameter(config,layer2);
if (layerT1==null || layerT1.trim().length()==0 || layerT2==null || layerT2.trim().length()==0)
throw new Exception("Error please provide information for the input layers");
String z$ = IOHelper.getInputParameter(config,zString);
String valuesthr$ = IOHelper.getInputParameter(config,valuesThr);
String time1$ = IOHelper.getInputParameter(config,t1);