Skip to content

Commit

Permalink
Fix missing function import in pixel_tides (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt authored Aug 8, 2022
1 parent 6cddf52 commit 3c15cb7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Tools/dea_tools/coastal.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@
import matplotlib.pyplot as plt
import matplotlib.colors as colors
from scipy import stats
import odc.algo
from datacube.utils.geometry import CRS
from shapely.geometry import box, shape
from owslib.wfs import WebFeatureService

import odc.algo
from datacube.utils.geometry import CRS
from dea_tools.datahandling import parallel_apply

try:
from otps import TimePoint
from otps import predict_tide
Expand Down Expand Up @@ -975,4 +977,4 @@ def pixel_tides(

else:
print("Returning low resolution tide array")
return tides_lowres
return tides_lowres

0 comments on commit 3c15cb7

Please sign in to comment.