File: gdal_merge.py

package info (click to toggle)
gdal 3.2.2%2Bdfsg-2%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 105,324 kB
  • sloc: cpp: 1,120,467; ansic: 184,132; python: 25,552; perl: 7,931; sh: 7,217; java: 5,382; xml: 3,609; cs: 2,418; yacc: 1,081; makefile: 519; sql: 112
file content (11 lines) | stat: -rwxr-xr-x 295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

import sys
# import osgeo.utils.gdal_merge as a convenience to use as a script
from osgeo.utils.gdal_merge import *  # noqa
from osgeo.utils.gdal_merge import main
from osgeo.gdal import deprecation_warn


deprecation_warn('gdal_merge', 'utils')
sys.exit(main(sys.argv))