Coder Social home page Coder Social logo

Comments (2)

trhallam avatar trhallam commented on July 21, 2024

Can you check this works for you @stevejpurves ?

with open('data/f3_seismic.sgy', mode='rb') as f:
    f.seek(0,0)                 #Locate our position to first byte of file
    data = f.read(3200)         #Read the first 3200 byte from our position
    print(data)
    data = data.decode('ascii') #EBCDIC encoding
    n = 80                      #A textual header is made of 40x80 characters, we split the string every 80 char.
    txt_header=[]               #Empty string list to put the splitted textual header
    for i in range(0, len(data), n):  
        txt_header.append(data[i:i+n])  #splitting the data and put it to txt_header
    for i in range(0,len(txt_header)):
        print(txt_header[i])              #print to see the content

Looks like there might be some funny business happening with segyio.

from segysak.

trhallam avatar trhallam commented on July 21, 2024

patched by 72b0a66, testing required.

from segysak.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.