cfdm.CFDMImplementation.get_class¶
- CFDMImplementation.get_class(name)[source]¶
Return a class of the implementation.
- Parameters:
- name:
str The name of the class.
- Parameter example:
name='Field'
- name:
- Returns:
The class object.
Examples
>>> i = cfdm.implementation() # child CF data model implementation >>> Field = i.get_class('Field') >>> f = Field()