You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to extract details from InformationRecord. But I am not able to extract the attribute values of 'mnemonic', 'units' etc.
It says
'numpy.void' object has no attribute 'mnemonic'
Below is the code snippet.
for information_record in logical_file.wellsite_data():
for record in information_record.table(simple=True):
print(record.mnemonic)
I know I am doing something terribly wrong. But not able to figure out what.
For DLIS I was able to extract metadata information by doing 'logical_file.parameters'
Thank you
Achyuth
The text was updated successfully, but these errors were encountered:
I am able to extract the values. I was doing it wrong. Thanks All.. :-)
for information_record in logical_file.wellsite_data():
for component in information_record.components():
print(component.mnemonic)
print(component.units)
print(component.component)
Hi,
I am trying to extract details from InformationRecord. But I am not able to extract the attribute values of 'mnemonic', 'units' etc.
It says
Below is the code snippet.
I know I am doing something terribly wrong. But not able to figure out what.
For DLIS I was able to extract metadata information by doing 'logical_file.parameters'
Thank you
Achyuth
The text was updated successfully, but these errors were encountered: