bilaldursun1 / nettopologysuite

Automatically exported from code.google.com/p/nettopologysuite
0 stars 0 forks source link

IntersectionMatrix lacks the IsCoveredBy operator #118

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Version 1.12 from nuget

The corresponding Java code for it is

448   public boolean isCoveredBy() {
449     boolean hasPointInCommon =
450         matches(matrix[Location.INTERIOR][Location.INTERIOR], 'T')
451         || matches(matrix[Location.INTERIOR][Location.BOUNDARY], 'T')
452         || matches(matrix[Location.BOUNDARY][Location.INTERIOR], 'T')
453         || matches(matrix[Location.BOUNDARY][Location.BOUNDARY], 'T');
454 
455     return hasPointInCommon &&
456         matrix[Location.INTERIOR][Location.EXTERIOR] == Dimension.FALSE &&
457         matrix[Location.BOUNDARY][Location.EXTERIOR] == Dimension.FALSE;
458   }

Original issue reported on code.google.com by itamar.s...@gmail.com on 2 Aug 2012 at 8:52

GoogleCodeExporter commented 9 years ago
fixed with changeset 68452. thanks.

Original comment by diegogu...@gmail.com on 6 Aug 2012 at 9:27

GoogleCodeExporter commented 9 years ago
Thanks, any chance to update the nuget package with this fix?

Original comment by YouT...@ayende.com on 7 Aug 2012 at 11:19

GoogleCodeExporter commented 9 years ago
Please try GeoAPI 1.6.1

Original comment by felix.ob...@netcologne.de on 1 Oct 2012 at 12:47

GoogleCodeExporter commented 9 years ago
Thanks - just bringing it to your attention that there is no .NET 4.0 compiled 
version of them in none of the releases, and the nuget package doesn't contain 
PDBs and XMLs

Original comment by itamar.s...@gmail.com on 1 Oct 2012 at 7:37

GoogleCodeExporter commented 9 years ago
Also, I'm getting the following error when installing from nuget:

Error   1   Assembly 'NetTopologySuite, Version=1.12.1.16263, Culture=neutral, 
PublicKeyToken=f580a05016ebada1' uses 'GeoAPI, Version=1.6.1.16256, 
Culture=neutral, PublicKeyToken=a1a0da7def465678' which has a higher version 
than referenced assembly 'GeoAPI, Version=1.6.1.14940, Culture=neutral, 
PublicKeyToken=a1a0da7def465678'    packages\NetTopologySuite.1.12.1\lib\net35\NetT
opologySuite.dll    Geospatial

Original comment by itamar.s...@gmail.com on 1 Oct 2012 at 7:49

GoogleCodeExporter commented 9 years ago
Opening this as another issue

Original comment by itamar.s...@gmail.com on 1 Oct 2012 at 7:54