Skip to content

Commit

Permalink
case improvements (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunwbell authored Sep 21, 2023
1 parent 52b7915 commit 8de4951
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/EcoFOCIpy/io/adcp_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ def mag_dec_corr(self,lat,lonW,dep_date,apply_correction=True):
float: [description]
"""

import ecofocipy.math.geomag.geomag.geomag as geomag
import ecofocipy.math.geotools as geotools
import EcoFOCIpy.math.geomag.geomag.geomag as geomag
import EcoFOCIpy.math.geotools as geotools

t = geomag.GeoMag()
dec = t.GeoMag(lat,-1 * lonW,time=dep_date).dec
Expand Down
8 changes: 4 additions & 4 deletions src/EcoFOCIpy/io/rcm_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def mag_dec_corr(self,lat,lonW,dep_date,apply_correction=True):
float: [description]
"""

import ecofocipy.math.geomag.geomag.geomag as geomag
import ecofocipy.math.geotools as geotools
import EcoFOCIpy.math.geomag.geomag.geomag as geomag
import EcoFOCIpy.math.geotools as geotools

t = geomag.GeoMag()
dec = t.GeoMag(lat,-1 * lonW,time=dep_date).dec
Expand Down Expand Up @@ -232,8 +232,8 @@ def mag_dec_corr(self,lat,lonW,dep_date,apply_correction=True):
float: [description]
"""

import ecofocipy.math.geomag.geomag.geomag as geomag
import ecofocipy.math.geotools as geotools
import EcoFOCIpy.math.geomag.geomag.geomag as geomag
import EcoFOCIpy.math.geotools as geotools

t = geomag.GeoMag()
dec = t.GeoMag(lat,-1 * lonW,time=dep_date).dec
Expand Down

0 comments on commit 8de4951

Please sign in to comment.