File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ package org.geoscript //.feature
3
3
import org .geoscript .projection ._
4
4
import scala .collection .JavaConverters ._
5
5
6
+ /**
7
+ * Facilities for manipulating vector data.
8
+ */
6
9
package object feature {
7
10
/**
8
11
* A Feature is a single entry in a geospatial dataset. For example, a
Original file line number Diff line number Diff line change 1
1
package org .geoscript .filter
2
2
3
3
import scala .collection .JavaConverters ._
4
-
5
- import com .vividsolutions .jts .{geom => jts }
6
- import org .{geotools => gt }
7
- import org .opengis .{filter => ogc }
8
-
9
4
import org .geoscript .geometry .Geometry
10
5
11
6
object Filter {
Original file line number Diff line number Diff line change @@ -2,10 +2,14 @@ package org.geoscript
2
2
3
3
import scala .collection .JavaConverters ._
4
4
5
+ /**
6
+ * Manipulate filters and expressions
7
+ */
5
8
package object filter {
6
9
type Filter = org.opengis.filter.Filter
7
10
type Expression = org.opengis.filter.expression.Expression
8
11
val Include = org.opengis.filter.Filter .INCLUDE
12
+ val Exclude = org.opengis.filter.Filter .INCLUDE
9
13
val factory = org.geotools.factory.CommonFactoryFinder .getFilterFactory2()
10
14
11
15
def literal (x : Double ): Expression = factory.literal(x)
Original file line number Diff line number Diff line change 1
1
package org .geoscript
2
+ /**
3
+ * Manipulate geometries
4
+ */
2
5
package object geometry {
3
6
import com .vividsolutions .jts .{geom => jts }
4
7
Original file line number Diff line number Diff line change
1
+ package org .geoscript
2
+
3
+ /**
4
+ * Common types for serialization and deserialization
5
+ */
6
+ package object io
You can’t perform that action at this time.
0 commit comments