

I'm currently working on deformation monitoring using sbas-mintpy and facing issue in the load step data
These are my processing parameters
CONFIG_TXT = f'''# vim: set filetype=cfg:
mintpy.load.processor = hyp3
mintpy.compute.maxMemory = auto #[float > 0.0], auto for 4, max memory to allocate in GB
ORBIT_DIRECTION = descending
##---------interferogram datasets:
mintpy.load.unwFile = {hyp3_dir}/*/*_unw_phase_clipped.tif
mintpy.load.corFile = {hyp3_dir}/*/*_corr_clipped.tif
mintpy.load.intFile = {hyp3_dir}/*/*_wrapped_phase_clipped.tif
##---------geometry datasets:
mintpy.load.demFile = {hyp3_dir}/*/*_dem_clipped.tif
mintpy.load.incAngleFile = {hyp3_dir}/*/*_lv_theta_clipped.tif
mintpy.load.azAngleFile = {hyp3_dir}/*/*_lv_phi_clipped.tif
mintpy.network.coherenceBased = yes #[yes / no], auto for no, exclude interferograms with coh < minCoh
mintpy.network.minCoherence = 0.3 #[0.0-1.0], auto for 0.7
mintpy.network.keepMinSpanTree = auto #[yes / no], auto for yes, keep interferograms in Min Span Tree network
mintpy.network.maskFile = auto #[file name, no], auto for waterMask.h5 or no [if no waterMask.h5 found]
mintpy.network.aoiYX = auto #[y0:y1,x0:x1 / no], auto for no, area of interest for coherence calculation
mintpy.network.aoiLALO = auto #[S:N,W:E / no], auto for no - use the whole area
mintpy.reference.yx = auto #[257,151 / auto]
mintpy.reference.lalo = auto #[31.8,130.8 / auto]
mintpy.reference.maskFile = {work_dir}/maskConnComp.h5 #[filename / no], auto for maskConnComp.h5
mintpy.reference.coherenceFile = {work_dir}/avgSpatialCoh.h5 #[filename], auto for avgSpatialCoh.h5
mintpy.reference.minCoherence = 0.7 #[0.0-1.0], auto for 0.85, minimum coherence for auto method
mintpy.reference.lalo = 21.847,73.750 #[31.8,130.8 / auto] #[N,E]
mintpy.reference.date = auto #[reference_date.txt / 20090214 / no], auto for reference_date.txt
mintpy.solidEarthTides = yes #[yes / no], auto for no
# Tropospheric delay method settings
mintpy.troposphericDelay.method = ERA5 #[ERA5 / MERRA / NARR], auto for ERA5
mintpy.troposphericDelay.weatherModel = ERA5 #[ERA5 / MERRA / NARR], auto for ERA5
mintpy.troposphericDelay.weatherDir = auto #[path2directory], auto for WEATHER_DIR or "./"
mintpy.deramp = quadratic #[no / linear / quadratic], auto for no - no ramp will be removed
mintpy.deramp.maskFile = {work_dir}/maskTempCoh.h5 #[filename / no], auto for maskTempCoh.h5,
#mask file for ramp estimation
mintpy.topographicResidual = auto #[yes / no], auto for yes
mintpy.topographicResidual.polyOrder = auto #[1-inf], auto for 2, poly order of temporal deformation model
mintpy.topographicResidual.phaseVelocity = {work_dir}/avgPhaseVelocity.h5 #[yes / no], auto for no - use phase velocity for minimization
mintpy.topographicResidual.stepFuncDate = auto #[20080529,20190704T1733 / no], auto for no, date of step jump
mintpy.topographicResidual.excludeDate = auto #[20070321 / txtFile / no], auto for exclude_date.txt
mintpy.topographicResidual.pixelwiseGeometry = {work_dir}/inputs/geometryGeo.h5 #[yes / no], auto for yes, use pixel-wise geometry info
mintpy.residualRMS.maskFile = {work_dir}/maskTempCoh.h5 #[file name / no], auto for maskTempCoh.h5, mask for ramp estimation
mintpy.residualRMS.deramp = auto #[quadratic / linear / no], auto for quadratic
mintpy.residualRMS.cutoff = auto #[0.0-inf], auto for 3
mintpy.save.hdfEos5 = yes #[yes / no], auto for no, save time-series to HDF-EOS5 format
mintpy.plot.dpi = 300 #[int], auto for 150, number of dots per inch (DPI)
mintpy.geocode.laloStep = auto #[-0.000555556,0.000555556 / None], auto for None, output resolution in degree
mintpy.unwrapError.method = auto #[bridging / phase_closure / bridging+phase_closure / no], auto for no
mintpy.networkInversion.minTempCoh = 0.3 #[0.0-1.0], auto for 0.7, min temporal coherence for mask
'''
print(CONFIG_TXT)
configName = os.path.join(work_dir, "{}.txt".format(proj_name))
configure_template_file(configName, CONFIG_TXT)
this is the error encountered. Can somebody help me out?