Skip to content
Snippets Groups Projects
Commit b270ad31 authored by Daniel Scheffler's avatar Daniel Scheffler
Browse files

Renamed coreg_cmd.py to arosics.py

parent 1f650c8e
Branches
Tags
No related merge requests found
Pipeline #
......@@ -250,7 +250,7 @@ The help instructions of the console interface can be accessed like this:
```bash
python coreg_cmd.py -h
python arosics.py -h
```
Follow these instructions to run AROSICS from a shell console. For example, the most simple call for a global
......@@ -258,7 +258,7 @@ co-registration would be like this:
```bash
python coreg_cmd.py global /path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq
python arosics.py global /path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq
```
......@@ -1494,7 +1494,7 @@ co-registration would be like this:
```bash
python coreg_cmd.py local /path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq 50
python arosics.py local /path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq 50
```
......
......@@ -114,7 +114,7 @@ if __name__ == '__main__':
wfa('/misc/hy5/scheffler/tmp/crlf', '%s\t%s\t%s\t%s\n' % (dt.now(), getuser(), gethostname(), ' '.join(sys.argv)))
parser = argparse.ArgumentParser(
prog='coreg_cmd.py',
prog='arosics.py',
description='Perform subpixel coregistration of two satellite image datasets ' \
'using Fourier Shift Theorem proposed by Foroosh et al. 2002: ' \
......@@ -158,7 +158,7 @@ if __name__ == '__main__':
'calculated at a specific (adjustable) image position. Correction performs a global shifting in '
'X- or Y direction.',
help="detect and correct global X/Y shifts (sub argument parser) - "
"use '>>> python /path/to/arosics/bin/coreg_cmd.py global -h' for documentation and usage hints")
"use '>>> python /path/to/arosics/bin/arosics.py global -h' for documentation and usage hints")
gloArg = parse_coreg_global.add_argument
gloArg('path_ref', type=str, help='source path of reference image (any GDAL compatible image format is supported)')
......@@ -265,7 +265,7 @@ if __name__ == '__main__':
'calculated shifts of each point in the grid as GCPs. Thus this class can be used to correct ' \
'for locally varying geometric distortions of the target image.',
help="detect and correct local shifts (sub argument parser)"
"use '>>> python /path/to/arosics/bin/coreg_cmd.py local -h' for documentation and usage hints")
"use '>>> python /path/to/arosics/bin/arosics.py local -h' for documentation and usage hints")
locArg = parse_coreg_local.add_argument
locArg('path_ref', type=str, help='source path of reference image (any GDAL compatible image format is supported)')
......@@ -388,5 +388,5 @@ if __name__ == '__main__':
print('\ntotal processing time: %.2fs' %(time.time()-t0))
else:
warnings.warn("The script 'coreg_cmd.py' provides a command line argument parser for AROSICS and is not to be "
warnings.warn("The script 'arosics.py' provides a command line argument parser for AROSICS and is not to be "
"used as a normal Python module.")
......@@ -32,7 +32,7 @@ setup(
url='https://github.com/danschef/arosics',
packages=find_packages(),
include_package_data=True,
scripts=["bin/coreg_cmd.py"],
scripts=["bin/arosics.py"],
install_requires=requirements,
license="GNU General Public License v3",
zip_safe=False,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment