Every parameter now has a `dir_type` method
It parses the standard name searching for `direction_to` or `direction_from` in the string, and returns a string `'to'` or `'from'` respectively
If no such information is found in the standard name, then it returns `None`
Example:
>> import geo_parameters as gp
>> gp.wave.Dirp.dir_type()
'from'
>> param = gp.ocean.CurrentDir()
>> param.dir_type()
'to'
>> gp.wave.Hs.dir_type()
None