Skip to content

Commit

Permalink
New stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
JpDeathBlade committed Jul 3, 2012
1 parent 3a5cece commit f556b7f
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 109 deletions.
1 change: 1 addition & 0 deletions .classpath
Expand Up @@ -4,5 +4,6 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="lib" path="src/jts-1.11.jar"/>
<classpathentry kind="lib" path="src/wps-core-2.1-SNAPSHOT.jar"/>
<classpathentry kind="lib" path="src/gt-coverage-2.7-SNAPSHOT.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Binary file modified HelicopterReachabilityWPS.jar
Binary file not shown.
Binary file added bin/gt-coverage-2.7-SNAPSHOT.jar
Binary file not shown.
Binary file not shown.
Binary file removed bin/org/geotools/geometry/jts/PolygonTools.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/gt-coverage-2.7-SNAPSHOT.jar
Binary file not shown.
@@ -1,5 +1,6 @@
package org.geotools.process.geometry.gs;
package org.LMNSolutions.WPS;

import org.geotools.coverage.grid.GridCoverage2D;
import org.geoserver.wps.gs.GeoServerProcess;
import org.geoserver.wps.jts.DescribeParameter;
import org.geoserver.wps.jts.DescribeProcess;
Expand All @@ -13,13 +14,13 @@ public class HelicopterReachability implements GeoServerProcess {

@DescribeResult(name = "result", description = "The collection of result polygons")
public Geometry execute(
@DescribeParameter(name = "raster", description = "The raster to check against.") Geometry poly)
@DescribeParameter(name = "raster", description = "The raster to check against.") GridCoverage2D _raster)
throws Exception {
return calculateArea(poly);
return calculateArea(_raster);
}

public static Geometry calculateArea(Geometry poly)
public static Geometry calculateArea(GridCoverage2D _raster)
{
return poly;
return null;
}
}
}
41 changes: 0 additions & 41 deletions src/org/geotools/geometry/jts/PolygonTools.java

This file was deleted.

34 changes: 0 additions & 34 deletions src/org/geotools/process/geometry/gs/PolygonizeProcess.java

This file was deleted.

28 changes: 0 additions & 28 deletions src/org/geotools/process/geometry/gs/SplitPolygonProcess.java

This file was deleted.

0 comments on commit f556b7f

Please sign in to comment.