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
Hello
I have a CIM file that has an asset like this : <cim:Asset rdf:ID="eo_cable_10606184"> <cim:Asset.type>CableAsset</cim:Asset.type> <cim:IdentifiedObject.name>ONS-DA010000CARRU100157756</cim:IdentifiedObject.name> <cim:Asset.PowerSystemResources rdf:resource="#eo_cable_segment_inst_10606181-NL.44859546-NH.45130804_25012915_A"/> <cim:Asset.PowerSystemResources rdf:resource="#eo_cable_segment_inst_10606181-NL.44859546-NH.48840836"/> <cim:Asset.AssetInfo rdf:resource="#eo_cable_spec_341116"/> </cim:Asset>
After reading the CIM file, through CIMread , assuming the variable is d,
I did this following x = d['eo_cable_10606184']
And then; print(x.AssetInfo)
This always shows blank, even for other objects too. Why is the AssetInfo defined in the CIM definition is not being initialized while creating this Asset object?
The text was updated successfully, but these errors were encountered:
Hello
I have a CIM file that has an asset like this :
<cim:Asset rdf:ID="eo_cable_10606184"> <cim:Asset.type>CableAsset</cim:Asset.type> <cim:IdentifiedObject.name>ONS-DA010000CARRU100157756</cim:IdentifiedObject.name> <cim:Asset.PowerSystemResources rdf:resource="#eo_cable_segment_inst_10606181-NL.44859546-NH.45130804_25012915_A"/> <cim:Asset.PowerSystemResources rdf:resource="#eo_cable_segment_inst_10606181-NL.44859546-NH.48840836"/> <cim:Asset.AssetInfo rdf:resource="#eo_cable_spec_341116"/> </cim:Asset>
After reading the CIM file, through CIMread , assuming the variable is
d
,I did this following
x = d['eo_cable_10606184']
And then;
print(x.AssetInfo)
This always shows blank, even for other objects too. Why is the AssetInfo defined in the CIM definition is not being initialized while creating this Asset object?
The text was updated successfully, but these errors were encountered: