3.7. Working with i2G marker

3.7.1. Get marker by name

import wilibs.wilib
client = wilib.login('username', 'password')
marker = client.getMarkerByName('Example Marker', 'Example Markerset', 'Example Well', 'Example Project')

3.7.2. Get marker by id

import wilibs.wilib
client = wilib.login('username', 'password')
marker= client.getMarkerById('idMarker')

3.7.3. Working with markerset object

3.7.3.1. Get marker info

import wilibs.wilib
client = wilib.login('username', 'password')
marker = client.getMarkerByName('Example Marker', 'Example Markerset', 'Example Well', 'Example Project')
marker.getInfo()

3.7.3.2. Delete marker

Last updated

Was this helpful?