Skip to content

Commit

Permalink
[dev.loadion] load_data: always read geom file
Browse files Browse the repository at this point in the history
  • Loading branch information
yuankailiu committed Sep 26, 2023
1 parent 9ee7386 commit 427ef95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mintpy/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,8 +924,8 @@ def load_data(inps):
iDict = read_subset_box(iDict)

# read specific datasets
iDict['load_geom']=True
iDict['load_ifg']=True if 'ifg' in iDict['listDset'] else False
iDict['load_geom']=True if 'geom' in iDict['listDset'] else False
iDict['load_ion']=True if 'ion' in iDict['listDset'] else False

# 3. geometry in geo / radar coordinates
Expand Down

0 comments on commit 427ef95

Please sign in to comment.