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 25, 2024
1 parent 7510d07 commit dd6dbe9
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 @@ -930,8 +930,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 dd6dbe9

Please sign in to comment.