Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:adddata:las [2020/01/14 14:37] – [LAS 2.0 format description from this link:] gs3d | tutorials:adddata:las [2020/03/25 11:08] (current) – removed gs3d | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== LAS file support in GS3D ====== | ||
- | |||
- | ==== Requirements ==== | ||
- | |||
- | === Module === | ||
- | |||
- | FIXME | ||
- | |||
- | === Data === | ||
- | |||
- | ==== Minimum LAS file example ==== | ||
- | |||
- | • Well section requires NULL, X, Y values between a “.” and a “:”’ e.g | ||
- | |||
- | NULL. -999.999 : | ||
- | |||
- | • Well section identifiers are upper case e.g. NULL | ||
- | |||
- | • Well section option: WELL, the name of the log | ||
- | |||
- | WELL. My well log : | ||
- | |||
- | • Curve section with names of the data columns. There must be as many names as data columns. In this example there are two names: Depht and Induction, and exactly two data columns. | ||
- | |||
- | Depth.m : | ||
- | |||
- | Induction.mS/ | ||
- | |||
- | • The first data column must be depth/ | ||
- | • Data section values are separated with space character. There can be one or more spaces between values. The space character is the only valid separator!\\ | ||
- | • Data section decimal separator is dot: “.” | ||
- | |||
- | Copy paste example: | ||
- | |||
- | ~Well\\ | ||
- | NULL. -999.999 :\\ | ||
- | X. 566526.9514 :\\ | ||
- | Y. 6360814.298 :\\ | ||
- | ~Curve\\ | ||
- | Depth.m :\\ | ||
- | Induction.mS/ | ||
- | ~ASCII\\ | ||
- | 0.9 102.392\\ | ||
- | 0.95 78.087\\ | ||
- | 1 70.554 | ||
- | |||