|
| 1 | +Class rsingh.spatialiris.Testing |
| 2 | +{ |
| 3 | + |
| 4 | +ClassMethod createSimpleTestPolygon() As rsingh.spatialiris.geo.Polygon |
| 5 | +{ |
| 6 | + set l = ##class(rsingh.spatialiris.geo.LineString).%New() |
| 7 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(0.01,0.01)) |
| 8 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(2.01,0.01)) |
| 9 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(2.01,2.01)) |
| 10 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(0.01,2.01)) |
| 11 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(0.01,0.01)) |
| 12 | + set polygon = ##class(rsingh.spatialiris.geo.Polygon).%New() |
| 13 | + set polygon.line = l |
| 14 | + Return polygon |
| 15 | +} |
| 16 | + |
| 17 | +ClassMethod createCambridgePolygon() As rsingh.spatialiris.geo.Polygon |
| 18 | +{ |
| 19 | + set l = ##class(rsingh.spatialiris.geo.LineString).%New() |
| 20 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.07296971120546, 42.36751524646158)) |
| 21 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.08872828096423, 42.36897060744346)) |
| 22 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.08982906341102, 42.36605985176101)) |
| 23 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.09226237197649, 42.36717280368296)) |
| 24 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.09434806503295, 42.36511810781076)) |
| 25 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.08814892178214, 42.358268636220345)) |
| 26 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.0776045846639, 42.36019512557601)) |
| 27 | + do l.addPoint(##class(rsingh.spatialiris.geo.Point).%New(-71.07296971120546, 42.36751524646158)) |
| 28 | + set polygon = ##class(rsingh.spatialiris.geo.Polygon).%New() |
| 29 | + set polygon.line = l |
| 30 | + Return polygon |
| 31 | +} |
| 32 | + |
| 33 | +ClassMethod createLineIntersectingKendall() As rsingh.spatialiris.geo.LineString |
| 34 | +{ |
| 35 | + set l = ##class(rsingh.spatialiris.geo.LineString).%New() |
| 36 | + do l.addPointFromCoords(-71.09009501700031,42.36703809) |
| 37 | + do l.addPointFromCoords(-71.08100073568535,42.3670380723421) |
| 38 | + do l.addPointFromCoords(-71.085000,42.3670380723) |
| 39 | + Return l |
| 40 | +} |
| 41 | + |
| 42 | +ClassMethod createLineInsideKendall() As rsingh.spatialiris.geo.LineString |
| 43 | +{ |
| 44 | + set l = ##class(rsingh.spatialiris.geo.LineString).%New() |
| 45 | + do l.addPointFromCoords(-71.08100073568535,42.3670380723421) |
| 46 | + do l.addPointFromCoords(-71.085000,42.3670380723) |
| 47 | + Return l |
| 48 | +} |
| 49 | + |
| 50 | +ClassMethod createLineOutsideKendall() As rsingh.spatialiris.geo.LineString |
| 51 | +{ |
| 52 | + set l = ##class(rsingh.spatialiris.geo.LineString).%New() |
| 53 | + do l.addPointFromCoords(-71.09009501700031,42.3670380723421) |
| 54 | + do l.addPointFromCoords(-71.09009501700031,42.60000) |
| 55 | + Return l |
| 56 | +} |
| 57 | + |
| 58 | +ClassMethod createPointOutsideKendall() As rsingh.spatialiris.geo.Point |
| 59 | +{ |
| 60 | + Return ##class(rsingh.spatialiris.geo.Point).%New(-71.09009501700031,42.3670380723421) |
| 61 | +} |
| 62 | + |
| 63 | +ClassMethod createPointInsideKendall() As rsingh.spatialiris.geo.Point |
| 64 | +{ |
| 65 | + Return ##class(rsingh.spatialiris.geo.Point).%New(-71.08100073568535,42.3670380723421) |
| 66 | +} |
| 67 | + |
| 68 | +ClassMethod test() |
| 69 | +{ |
| 70 | + set polygon = ..createSimpleTestPolygon() |
| 71 | + set isin = ##class(rsingh.spatialiris.Tools).PointInPolygon(polygon, ##class(rsingh.spatialiris.geo.Point).%New(1.01,1.01)) |
| 72 | + w isin,! |
| 73 | + set isout = ##class(rsingh.spatialiris.Tools).PointInPolygon(polygon, ##class(rsingh.spatialiris.geo.Point).%New(3.01,3.01)) |
| 74 | + w isout,! |
| 75 | +} |
| 76 | + |
| 77 | +} |
0 commit comments