コード例 #1
0
ファイル: EpsgArea.cs プロジェクト: GISwilson/pigeoid
 public bool Within(IGeographicMbr other)
 {
     return(LongitudeRange.Within(other.LongitudeRange) &&
            LatitudeRange.Within(other.LatitudeRange));
 }
コード例 #2
0
ファイル: EpsgArea.cs プロジェクト: GISwilson/pigeoid
 public bool Within(EpsgArea other)
 {
     return(LongitudeRange.Within(other.LongitudeRange) &&
            LatitudeRange.Within(other.LatitudeRange));
 }