Skip to content

Commit

Permalink
Fix bug in create-example in readme
Browse files Browse the repository at this point in the history
The spec object should take a list of sample intervals, not just a size,
and the documentation should obviously reflect that.
  • Loading branch information
jokva committed Mar 16, 2018
1 parent 91c4619 commit 01fa178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ file_out = 'test1.sgy'

spec.sorting = 2
spec.format = 1
spec.samples = 30
spec.samples = np.arange(30)
spec.ilines = np.arange(10)
spec.xlines = np.arange(20)

Expand Down

0 comments on commit 01fa178

Please sign in to comment.