argopy.ArgoIndex.query.institution_name#
- ArgoIndex.query.institution_name(institution_name: str, nrows=None, composed=False)#
Search index for institutions with a given string in their long name
Will search for string occurrences in the preferred label of Argo reference table 4.
- Parameters:
institution_name (str, list(str)) – The string (not exact) to be found in institution preferred labels.
- Return type:
Examples
from argopy import ArgoIndex idx = ArgoIndex() idx.query.institution_name('Canada') idx.query.institution_name(['Canada', 'germany'])
from argopy import ArgoNVSReferenceTables valid_names = ArgoNVSReferenceTables().tbl(4)['prefLabel']