Changes between Version 1 and Version 2 of CodeSamples/DotNet/TfNetMgReaderWriter


Ignore:
Timestamp:
Dec 6, 2007, 4:43:21 AM (16 years ago)
Author:
MaksimS
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeSamples/DotNet/TfNetMgReaderWriter

    v1 v2  
    77TF.NET (Topology Framework .NET) represents a topology manipulation API capable of handling managed objects representation of topological entities based on other popular APIs, exposing it's JTS-based common topology manipulation core to them.
    88
    9 JTS is, in fact, an API providing spatial object model and fundamental geometric functions, providing a complete, consistent, robust implementation of fundamental 2D spatial algorithms. It implements geometry model defined in the OpenGIS Consortium Simple Features Specification for SQL. JTS port for .NET was named NTS, and is fully conformant to Microsoft .NET 2.0 specification. NTS extends JTS with numerous coordinate transformation and other functions, while TF.NET extends NTS further, including additional IO functions and generic classes related to geometry graphs.
     9JTS Topology Suite is, in fact, an API providing spatial object model and fundamental geometric functions, providing a complete, consistent, robust implementation of fundamental 2D spatial algorithms. It implements geometry model defined in the OpenGIS Consortium Simple Features Specification for SQL. JTS port for .NET was named NetTopologySuite (NTS), and is fully conformant to Microsoft .NET 2.0 specification. NTS extends JTS with numerous coordinate transformation and other functions, while TF.NET extends NTS further, including additional IO functions and generic classes related to geometry graphs. Recent TF.NET additions were also related to porting JCS Conflation Suite to .NET.
    1010
    1111TF.NET project is hosted on Google Code: [http://code.google.com/p/tf-net/]
     
    1414=== TF.NET Reader/Writer for MapGuide ===
    1515
    16 A reader/writer for geometric primitives exposed by OSGeo MapGuide? Server. Before further reading, please see FDO Reader/Writer and Binary Predicates introductory notes (Wiki pages). Althugh MapGuide? relays on it's own (FDO-based) spatial filters, there are situations when they are simply not enough - most often FDO providers don't expose necessary spatial filtering by design. On the other hand, you can use rich JTS API to perform targeted geospatial analysis and bounce results back to MapGuide? in some form (i.e. redlining, feature or spatial filter, etc).
     16A reader/writer for geometric primitives exposed by OSGeo MapGuide Server. Althugh MapGuide relays on it's own (FDO-based) spatial filters, there are situations when they are simply not enough - most often FDO providers don't expose necessary spatial filtering by design. On the other hand, you can use rich JTS API to perform targeted geospatial analysis and bounce results back to MapGuide in some form (i.e. redlining, feature or spatial filter, etc).
    1717
    1818For more info see TF.NET Reader/Writer for MapGuide wiki page: [http://code.google.com/p/tf-net/wiki/MapGuideReaderWriter]