Slashgeo Log In
Triangle Irregular Network (TIN) Formats?
posted by Satri
on Thursday January 25, @07:24PM
Permalink
Trackback URI
Slashdotthis
Diggthis
Del.icio.us
from the if-everything-was-standard... dept.
from the if-everything-was-standard... dept.
Does anyone knows if there's a standard format for georeferenced triangle irregular networks? What I found with a quick search is a table of TIN data structures from this short page on TINs. Here's code and algorithm for TINs. Additional information was found on this page and on the Delaunay triangulation and Voronoi diagram wikipedia pages. But any clue on a standard format? Thanks!
This discussion has been archived.
No new comments can be posted.
Triangle Irregular Network (TIN) Formats?
|
Log in/Create an Account
| Top
| 6 comments
| Search Discussion
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.





3D TIN formats
(Score:3, Informative)( http://3dnature.com/ )
3D Terrain: http://3d-terrain.com/
Re:3D TIN formats
(Score:3, Informative)( http://www.redgeographics.com/ )
Most of the TIN's I produced were stored in dxf, but that's only because they were then imported in 3D Studio Max and dxf was the only georeferenced way to do that.
Hans van der Maarel
Standard Geographic Data?
(Score:1, Interesting)Until ArcInfo 7 it was there.
Good luck.
GDAL/OGR and TINs: not there yet.
(Score:2)( http://alexandreleroux.blogspot.com/ | Last Journal: Friday March 17, @05:07PM )
I guess a standard was to format georeferenced TINs would be welcomed!
PLY - Polygon File Format for TINs
(Score:2)( http://alexandreleroux.blogspot.com/ | Last Journal: Friday March 17, @05:07PM )
This document presents the PLY polygon file format, a format for storing graphical objects that are described as a collection of polygons. Our goal is to provide a format that is simple and easy to implement but that is general enough to be useful for a wide range of models. The file format has two sub-formats: an ASCII representation for easily getting started, and a binary version for compact storage and for rapid saving and loading. We hope that this format will promote the exchange of graphical object between programs and also between groups of people.
The interesting part as a TIN format is:
The typical information in a PLY file contains just two elements, the (x,y,z) triples for vertices and the vertex indices for each face.
GRASS GIS can generate TINs
(Score:2)( http://alexandreleroux.blogspot.com/ | Last Journal: Friday March 17, @05:07PM )
Read more on GRASS GIS support for Delaunay TINs [grass.itc.it], which can afterwards be used with GDAL with this driver [gdal.org].