3.1. i2G well data

3.1.1. Get well object by name

import wilibs.wilib
client = wilib.login('username', 'password')
well = client.getWellByName('Example Well', 'Example Project')
well.rename('Well Name')

3.1.2. Working with well object

3.1.2.1. Rename well

import wilibs.wilib
client = wilib.login('username', 'password')
well = client.getWellByName('Example Well', 'Example Project')
well.rename('Well Name')

3.1.2.2. Delete well

import wilibs.wilib
client = wilib.login('username', 'password')
well = client.getWellByName('Example Well', 'Example Project')
well.delete()

3.1.2.3. Create new dataset

3.1.2.4. Get all zonesets in well

Last updated

Was this helpful?