Skip to content

Commit

Permalink
Update tops2vrt.py
Browse files Browse the repository at this point in the history
I've changed geom_master to geom_reference to reflect the changes with respect to ISCE v2.4.
  • Loading branch information
bjmarfito committed Oct 2, 2020
1 parent 7d6e1d0 commit 3b0dc74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/tops2vrt.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ def getLinePixelBbox(geobbox, latFile, lonFile):
print('creating stack directory: {0}'.format(inps.stackdir))
os.makedirs(inps.stackdir)

latFile = os.path.join(inps.indir, "geom_master", "lat.rdr.full.vrt")
lonFile = os.path.join(inps.indir, "geom_master", "lon.rdr.full.vrt")
latFile = os.path.join(inps.indir, "geom_reference", "lat.rdr.full.vrt")
lonFile = os.path.join(inps.indir, "geom_reference", "lon.rdr.full.vrt")

# setting up a subset of the stack
if inps.geobbox:
Expand Down Expand Up @@ -253,7 +253,7 @@ def getLinePixelBbox(geobbox, latFile, lonFile):
xmin = xmin, ymin = ymin,
width = width,
height = height,
PATH = os.path.abspath( os.path.join(inps.indir, 'geom_master', val+'.rdr.full.vrt')),
PATH = os.path.abspath( os.path.join(inps.indir, 'geom_reference', val+'.rdr.full.vrt')),
linewidth = width * 8))


Expand Down

0 comments on commit 3b0dc74

Please sign in to comment.