Skip to content

Commit

Permalink
update diff_timeseries to support different sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
eedyyidi committed Nov 25, 2024
1 parent dbcf401 commit 704e5cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mintpy/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import time

import numpy as np
from skimage.transform import resize

from mintpy.objects import (
IFGRAM_DSET_NAMES,
Expand All @@ -19,7 +20,6 @@
timeseries,
)
from mintpy.utils import ptime, readfile, time_func, writefile
from skimage.transform import resize


#####################################################################################
Expand Down Expand Up @@ -57,8 +57,8 @@ def check_reference(atr1, atr2):


def diff_timeseries(file1, file2, out_file, force_diff=False, max_num_pixel=2e8):
"""Calculate the difference between two time-series files.
file1.shape and file1.shape are different.
"""Calculate the difference between two time-series files.
file1.shape and file2.shape are different.
Parameters: file1 - str, path of file1
file2 - str, path of file2
Expand Down

0 comments on commit 704e5cc

Please sign in to comment.