Skip to content

Commit

Permalink
STY: pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Mar 7, 2020
1 parent 0679e8b commit c7a30e0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pysatMissions/methods/empirical.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def add_iri_thermal_plasma(inst, glat_label='glat', glong_label='glong',
try:
for time, lat, lon, alt in zip(inst.data.index, inst[glat_label],
inst[glong_label], inst[alt_label]):
# Point class is instantiated. Its parameters are a function of time
# and spatial location
# Point class is instantiated. Its parameters are a function of
# time and spatial location
pt = Point(time, lat, lon, alt)
pt.run_iri()
iri = {}
Expand Down Expand Up @@ -393,12 +393,12 @@ def get_ecef_wind_meta(coord='x', geo='mer'):
else:
name = 'Zonal'
dict = {'units': '',
'long_name': ' '.join(['{name:s} Wind Unit ECEF',
'{coord:s}-vector']).format(name=name,
coord=coord),
'desc': ' '.join(['{coord:s}-value of {name:s} wind unit vector',
'in ECEF coordinates']).format(name=name.lower(),
coord=coord)}
'long_name': ''.join(['{name:s} Wind Unit ECEF {coord:s}',
'-vector']).format(name=name,
coord=coord),
'desc': ' '.join(['{coord:s}-value of {name:s} wind unit',
'vector in ECEF coordinates']
).format(name=name.lower(),coord=coord)}
return dict

inst.meta['zonal_wind'] = {'units': 'm/s',
Expand Down

0 comments on commit c7a30e0

Please sign in to comment.