geepillow.image =============== .. py:module:: geepillow.image .. autoapi-nested-parse:: image module. Functions --------- .. autoapisummary:: geepillow.image.from_eeimage Module Contents --------------- .. py:function:: from_eeimage(image, dimensions, viz_params = None, scale = None, region = None, overlay = None, overlay_style = None, style_property = None) Create a Pillow Image from an ee.Image. :param image: the ee.Image :param dimensions: dimensions of the image, in pixels. If only one number is passed, it is used as the maximum, and the other dimension is computed by proportional scaling. :param viz_params: dict with visualization parameters. Admits the following keys: - bands: a list of the 3 bands that will represent R G B, or one band that will work with palette. - min: the minimum value. - max: the maximum value. - palette: a list of colors to use as a palette. Will only work with one single band. :param scale: spatial resolution of the image. If None it'll use the image scale. :param region: the region to extract the image from. If None it'll use the boundaries of the image. :param overlay: a vector layer to overlay on top of the image. :param overlay_style: style of the vector layer to overlay. :param style_property: A per-feature property expected to contain a dictionary. Values in the dictionary override any default values for that feature.