1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
#!/usr/bin/env python
# This program is a direct translation of the sample program
# "write_bitmask.c" bundled with the EPR-API distribution.
#
# Source code of the C program is available at:
# https://github.com/bcdev/epr-api/blob/master/src/examples/write_bitmask.c
'''Generates bit mask from ENVISAT flags information as "raw" image
for (e.g.) Photoshop
Call::
$ python write_bitmask.py <envisat-product> <bitmask-expression>
<output-file>
Example to call the main function::
$ python write_bitmask.py MER_RR__2P_TEST.N1 \
'l2_flags.LAND and !l2_flags.BRIGHT' my_flags.raw
'''
from __future__ import print_function
import sys
import epr
def main(*argv):
if not argv:
argv = sys.argv
if len(argv) != 4:
print('Usage: write_bitmask <envisat-product> <bitmask-expression> '
'<output-file>')
print(' where envisat-product is the input filename')
print(' and bitmask-expression is a string containing the bitmask '
'logic')
print(' and output-file is the output filename.')
print('Example:')
print(" MER_RR__2P_TEST.N1 'l2_flags.LAND and not l2_flags.BRIGHT' "
"my_flags.raw")
print
sys.exit(1)
product_file_path = argv[1]
bm_expr = argv[2]
image_file_path = argv[3]
# Open the product; an argument is a path to product data file
with epr.open(product_file_path) as product:
offset_x = 0
offset_y = 0
source_width = product.get_scene_width()
source_height = product.get_scene_height()
source_step_x = 1
source_step_y = 1
bm_raster = epr.create_bitmask_raster(source_width, source_height,
source_step_x, source_step_y)
product.read_bitmask_raster(bm_expr, offset_x, offset_y, bm_raster)
with open(image_file_path, 'wb') as out_stream:
bm_raster.data.tofile(out_stream)
print('Raw image data successfully written to "%s".' % image_file_path)
print('Data type is "byte", size is %d x %d pixels.' % (source_width,
source_height))
if __name__ == '__main__':
main()
|