3.6. i2G markerset data

3.6.1. Get markerset by name

import wilibs.wilib
client = wilib.login('username', 'password')
mst = client.getMarkerSetByName('Example Markerset', 'Example Well', 'Example Project')

3.6.2. Get markerset by id

import wilibs.wilib
client = wilib.login('username', 'password')
mst = client.getMarkerSetById('idMarkerSet')

3.6.3. Working with markerset object

3.6.3.1. Get markerset info

import wilibs.wilib
client = wilib.login('username', 'password')
mst = client.getMarkerSetByName('Example Markerset', 'Example Well', 'Example Project')
mst.getInfo()

3.6.3.2. Delete markerset

3.6.3.3. Get all markers of markerset

Last updated

Was this helpful?