-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from ASFHyP3/develop
Release v0.11.0 -- S1 Correction workflow
- Loading branch information
Showing
9 changed files
with
291 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import argparse | ||
import copy | ||
import logging | ||
from datetime import timedelta | ||
from pathlib import Path | ||
|
||
from hyp3lib.aws import upload_file_to_s3 | ||
from hyp3lib.fetch import download_file | ||
from hyp3lib.get_orb import downloadSentinelOrbitFile | ||
from hyp3lib.scene import get_download_url | ||
|
||
from hyp3_autorift import geometry, io | ||
from hyp3_autorift.process import DEFAULT_PARAMETER_FILE, get_s1_primary_polarization | ||
from hyp3_autorift.vend.testGeogrid_ISCE import loadParsedata, runGeogrid | ||
log = logging.getLogger(__name__) | ||
|
||
|
||
def generate_correction_data(scene: str, buffer: int = 0, parameter_file: str = DEFAULT_PARAMETER_FILE): | ||
scene_path = Path(f'{scene}.zip') | ||
if not scene_path.exists(): | ||
scene_url = get_download_url(scene) | ||
scene_path = download_file(scene_url, chunk_size=5242880) | ||
|
||
orbits = Path('Orbits').resolve() | ||
orbits.mkdir(parents=True, exist_ok=True) | ||
state_vec, oribit_provider = downloadSentinelOrbitFile(scene, directory=str(orbits)) | ||
log.info(f'Downloaded orbit file {state_vec} from {oribit_provider}') | ||
|
||
polarization = get_s1_primary_polarization(scene) | ||
lat_limits, lon_limits = geometry.bounding_box(f'{scene}.zip', polarization=polarization, orbits=orbits) | ||
|
||
scene_poly = geometry.polygon_from_bbox(x_limits=lat_limits, y_limits=lon_limits) | ||
parameter_info = io.find_jpl_parameter_info(scene_poly, parameter_file) | ||
|
||
isce_dem = geometry.prep_isce_dem(parameter_info['geogrid']['dem'], lat_limits, lon_limits) | ||
io.format_tops_xml(scene, scene, polarization, isce_dem, orbits) | ||
|
||
reference_meta = loadParsedata(str(scene_path), orbit_dir=orbits, aux_dir=orbits, buffer=buffer) | ||
|
||
secondary_meta = copy.deepcopy(reference_meta) | ||
spoof_dt = timedelta(days=1) | ||
secondary_meta.sensingStart += spoof_dt | ||
secondary_meta.sensingStop += spoof_dt | ||
|
||
geogrid_info = runGeogrid(reference_meta, secondary_meta, epsg=parameter_info['epsg'], **parameter_info['geogrid']) | ||
|
||
return geogrid_info | ||
|
||
|
||
def main(): | ||
parser = argparse.ArgumentParser( | ||
formatter_class=argparse.ArgumentDefaultsHelpFormatter | ||
) | ||
parser.add_argument('--bucket', help='AWS bucket to upload product files to') | ||
parser.add_argument('--bucket-prefix', default='', help='AWS prefix (location in bucket) to add to product files') | ||
parser.add_argument('--buffer', type=int, default=0, help='Number of pixels to buffer each edge of the input scene') | ||
parser.add_argument('--parameter-file', default=DEFAULT_PARAMETER_FILE, | ||
help='Shapefile for determining the correct search parameters by geographic location. ' | ||
'Path to shapefile must be understood by GDAL') | ||
parser.add_argument('granule', help='Reference granule to process') | ||
args = parser.parse_args() | ||
|
||
_ = generate_correction_data(args.granule, buffer=args.buffer) | ||
|
||
if args.bucket: | ||
for geotiff in Path.cwd().glob('*.tif'): | ||
upload_file_to_s3(geotiff, args.bucket, args.bucket_prefix) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
diff --git testGeogrid_ISCE.py testGeogrid_ISCE.py | ||
--- testGeogrid_ISCE.py | ||
+++ testGeogrid_ISCE.py | ||
@@ -67,6 +67,10 @@ def cmdLineParse(): | ||
help='Input stable surface mask') | ||
parser.add_argument('-fo', '--flag_optical', dest='optical_flag', type=bool, required=False, default=0, | ||
help='flag for reading optical data (e.g. Landsat): use 1 for on and 0 (default) for off') | ||
+ parser.add_argument('-b', '--buffer', dest='buffer', type=bool, required=False, default=0, | ||
+ help='buffer to add to the starting/end range accounting for all passes from the same relative orbit') | ||
+ parser.add_argument('-p', '--parse', dest='parse', action='store_true', | ||
+ default=False, help='Parse the SAFE zip file to get radar image and orbit metadata; no need to run ISCE') | ||
|
||
return parser.parse_args() | ||
|
||
@@ -113,7 +117,7 @@ def getMergedOrbit(product): | ||
return orb | ||
|
||
|
||
-def loadMetadata(indir): | ||
+def loadMetadata(indir,buffer=0): | ||
''' | ||
Input file. | ||
''' | ||
@@ -135,12 +139,57 @@ def loadMetadata(indir): | ||
info.prf = 1.0 / frames[0].bursts[0].azimuthTimeInterval | ||
info.rangePixelSize = frames[0].bursts[0].rangePixelSize | ||
info.lookSide = -1 | ||
+ | ||
+ info.startingRange -= buffer * info.rangePixelSize | ||
+ info.farRange += buffer * info.rangePixelSize | ||
+ | ||
info.numberOfLines = int( np.round( (info.sensingStop - info.sensingStart).total_seconds() * info.prf)) + 1 | ||
- info.numberOfSamples = int( np.round( (info.farRange - info.startingRange)/info.rangePixelSize)) + 1 | ||
+ info.numberOfSamples = int( np.round( (info.farRange - info.startingRange)/info.rangePixelSize)) + 1 + 2 * buffer | ||
info.orbit = getMergedOrbit(frames) | ||
|
||
return info | ||
|
||
+def loadParsedata(indir,buffer=0): | ||
+ ''' | ||
+ Input file. | ||
+ ''' | ||
+ import os | ||
+ import numpy as np | ||
+ import isce | ||
+ from isceobj.Sensor.TOPS.Sentinel1 import Sentinel1 | ||
+ | ||
+ | ||
+ frames = [] | ||
+ for swath in range(1,4): | ||
+ rdr=Sentinel1() | ||
+ rdr.configure() | ||
+# rdr.safe=['./S1A_IW_SLC__1SDH_20180401T100057_20180401T100124_021272_024972_8CAF.zip'] | ||
+ rdr.safe=[indir] | ||
+ rdr.output='reference' | ||
+ rdr.orbitDir='/Users/yanglei/orbit/S1A/precise' | ||
+ rdr.auxDir='/Users/yanglei/orbit/S1A/aux' | ||
+ rdr.swathNumber=swath | ||
+ rdr.polarization='hh' | ||
+ rdr.parse() | ||
+ frames.append(rdr.product) | ||
+ | ||
+ info = Dummy() | ||
+ info.sensingStart = min([x.sensingStart for x in frames]) | ||
+ info.sensingStop = max([x.sensingStop for x in frames]) | ||
+ info.startingRange = min([x.startingRange for x in frames]) | ||
+ info.farRange = max([x.farRange for x in frames]) | ||
+ info.prf = 1.0 / frames[0].bursts[0].azimuthTimeInterval | ||
+ info.rangePixelSize = frames[0].bursts[0].rangePixelSize | ||
+ info.lookSide = -1 | ||
+ | ||
+ info.startingRange -= buffer * info.rangePixelSize | ||
+ info.farRange += buffer * info.rangePixelSize | ||
+ | ||
+ info.numberOfLines = int( np.round( (info.sensingStop - info.sensingStart).total_seconds() * info.prf)) + 1 | ||
+ info.numberOfSamples = int( np.round( (info.farRange - info.startingRange)/info.rangePixelSize)) + 1 + 2 * buffer | ||
+ info.orbit = getMergedOrbit(frames) | ||
+ | ||
+ return info | ||
|
||
def coregisterLoadMetadataOptical(indir_m, indir_s): | ||
''' | ||
@@ -383,8 +432,12 @@ def main(): | ||
metadata_m, metadata_s = coregisterLoadMetadataOptical(inps.indir_m, inps.indir_s) | ||
runGeogridOptical(metadata_m, metadata_s, inps.demfile, inps.dhdxfile, inps.dhdyfile, inps.vxfile, inps.vyfile, inps.srxfile, inps.sryfile, inps.csminxfile, inps.csminyfile, inps.csmaxxfile, inps.csmaxyfile, inps.ssmfile) | ||
else: | ||
- metadata_m = loadMetadata(inps.indir_m) | ||
- metadata_s = loadMetadata(inps.indir_s) | ||
+ if inps.parse: | ||
+ metadata_m = loadParsedata(inps.indir_m,inps.buffer) | ||
+ metadata_s = loadParsedata(inps.indir_s,inps.buffer) | ||
+ else: | ||
+ metadata_m = loadMetadata(inps.indir_m,inps.buffer) | ||
+ metadata_s = loadMetadata(inps.indir_s,inps.buffer) | ||
runGeogrid(metadata_m, metadata_s, inps.demfile, inps.dhdxfile, inps.dhdyfile, inps.vxfile, inps.vyfile, inps.srxfile, inps.sryfile, inps.csminxfile, inps.csminyfile, inps.csmaxxfile, inps.csmaxyfile, inps.ssmfile) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.