Commit 22171225 authored by Mario Chirinos Colunga's avatar Mario Chirinos Colunga 💬

merge-crop

parent 2bf93598
...@@ -5,6 +5,7 @@ import osgeo.osr as osr ...@@ -5,6 +5,7 @@ import osgeo.osr as osr
import numpy as np import numpy as np
import gdal import gdal
import sys import sys
import json
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
def L2ASCLtoDict(filename, wkt): def L2ASCLtoDict(filename, wkt):
''' '''
...@@ -28,7 +29,7 @@ def main(argv): ...@@ -28,7 +29,7 @@ def main(argv):
else: else:
jsonFile=open(argv[1]).read() jsonFile=open(argv[1]).read()
cfg = json.loads(jsonFile) cfg = json.loads(jsonFile)
dataDict = L2ASCLtoDict(argv[1], cfg['wkt']) dataDict = L2ASCLtoDict(cfg["filename"], cfg['wkt'])
print(dataDict) print(dataDict)
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
if __name__ == "__main__": if __name__ == "__main__":
......
...@@ -15,5 +15,5 @@ mkdir mergecrop ...@@ -15,5 +15,5 @@ mkdir mergecrop
mkdir cropmerge mkdir cropmerge
ls -d */ | parallel -q --jobs $JOBS mergeImages.sh {} "$POLYGON" ls -d */ | parallel -q --jobs $JOBS mergeImages.sh {} "$POLYGON"
find . -name *.xml -type f -delete
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment