Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrivenaes committed Oct 3, 2023
1 parent 5dab5f4 commit 0a13ace
Show file tree
Hide file tree
Showing 9 changed files with 828 additions and 745 deletions.
4 changes: 4 additions & 0 deletions src/xtgeo/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@

MAXKEYWORDS = cx.MAXKEYWORDS # maximum keywords for ECL and ROFF scanning
MAXDATES = cx.MAXDATES # maximum keywords for ECL scanning

# for XYZ data, restricted to float32 and int32
UNDEF_CONT = UNDEF
UNDEF_DISC = UNDEF_INT
2 changes: 1 addition & 1 deletion src/xtgeo/well/_well_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def import_rms_ascii(
xdict = {int(rxv[i]): rxv[i + 1] for i in range(0, len(rxv), 2)}
wlogrecords[lname] = xdict
else:
wlogrecords[lname] = rxv
wlogrecords[lname] = tuple(row[1:])

nlogread += 1

Expand Down
Loading

0 comments on commit 0a13ace

Please sign in to comment.