Giter VIP home page Giter VIP logo

Comments (4)

zmd142536 avatar zmd142536 commented on July 30, 2024

Sorry, it seems that I can't upload files in .dat format, so I've converted it to a .txt file。
230318-1-ouji_rd.txt
230318-1-sj_rd.txt

from gimli.

halbmy avatar halbmy commented on July 30, 2024

The pybert.Resistivity class is outdated and has been replaced by the ERTManager class contained in the ERT module (pygimli.physics.ert). Also the importer for res2dinv files is part of that module and you should be able to process your data without using pybert at all.

from gimli.

halbmy avatar halbmy commented on July 30, 2024

It seems the data files are just two ERT data sets with different arrays (Wenner-beta and pole-dipole) that should be easily inverted together but just adding the data

from pygimli.physics import ert
data1 = ert.load("wenner.dat")
data2 = ert.load("pole-dipole.dat")
data1.estimateError()
data2.estimateError()
mgr1 = ert.Manager(data1)
mgr1.invert(...)  # single inversion
mgr2 = ert.Manager(data1)
mgr2.invert(...)  # single inversion
data1.add(data2)
mgr1 = ert.Manager(data1)
mgr1.invert(...)  # inversion of both

I would not even call this joint inversion as it is common to combine different data sets.

from gimli.

florian-wagner avatar florian-wagner commented on July 30, 2024

Question seems answered. @zmd142536 , please comment if this is not the case.

from gimli.

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.