argopy.ArgoReferenceTable.search#
- ArgoReferenceTable.search(**kwargs) list[ArgoReferenceValue] | DataFrame[source]#
Search in table list of
ArgoReferenceValueattributes- Parameters:
tuple(str –
Attributes to search among
ArgoReferenceValue.keys.Use the specific argument output=’df’ to return a
pd.DataFrame.str) –
Attributes to search among
ArgoReferenceValue.keys.Use the specific argument output=’df’ to return a
pd.DataFrame.
- Return type:
list[ArgoReferenceValue] |
pd.DataFrame- Raises:
NoDataLeft –
Examples
from argopy import ArgoReferenceTable art = ArgoReferenceTable('SENSOR') # Search in specific attributes: art.search(name='RAMSES') art.search(definition='imaging') art.search(long_name='TriOS') # Search in more than one attribute: art.search(name='RAMSES', deprecated=False) # Control output format: art.search(name='CTD', output='df')