TM5-4DVar Isotopic CH₄ Inverse Fluxes

Global, monthly 1 degree resolution methane emission estimates from microbial, fossil and pyrogenic sources derived using inverse modeling, version 1.
Author

Siddharth Chaudhary, Vishal Gaur

Published

August 22, 2023

Run this notebook

You can launch this notebook in the US GHG Center JupyterHub by clicking the link below.

Launch in the US GHG Center JupyterHub (requires access)

Approach

  1. Identify available dates and temporal frequency of observations for the given collection using the GHGC API /stac endpoint. The collection processed in this notebook is the TM5-4DVar Isotopic CH₄ Inverse Fluxes Data product.
  2. Pass the STAC item into the raster API /collections/{collection_id}/items/{item_id}/tilejson.jsonendpoint.
  3. Using folium.plugins.DualMap, we will visualize two tiles (side-by-side), allowing us to compare time points.
  4. After the visualization, we will perform zonal statistics for a given polygon.

About the Data

Surface methane (CH₄) emissions are derived from atmospheric measurements of methane and its ¹³C carbon isotope content. Different sources of methane contain different ratios of the two stable isotopologues, ¹²CH₄ and ¹³CH₄. This makes normally indistinguishable collocated sources of methane, say from agriculture and oil and gas exploration, distinguishable. The National Oceanic and Atmospheric Administration (NOAA) collects whole air samples from its global cooperative network of flasks (https://gml.noaa.gov/ccgg/about.html), which are then analyzed for methane and other trace gasses. A subset of those flasks are also analyzed for ¹³C of methane in collaboration with the Institute of Arctic and Alpine Research at the University of Colorado Boulder. Scientists at the National Aeronautics and Space Administration (NASA) and NOAA used those measurements of methane and ¹³C of methane in conjunction with a model of atmospheric circulation to estimate emissions of methane separated by three source types, microbial, fossil and pyrogenic.

For more information regarding this dataset, please visit the TM5-4DVar Isotopic CH₄ Inverse Fluxes data overview page.

Install the Required Libraries

Required libraries are pre-installed on the GHG Center Hub. If you need to run this notebook elsewhere, please install them with this line in a code cell:

%pip install requests folium rasterstats pystac_client pandas matplotlib –quiet

# Import the following libraries
import requests
import folium
import folium.plugins
from folium import Map, TileLayer
from pystac_client import Client
import branca
import pandas as pd
import matplotlib.pyplot as plt
/Users/rrimal/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
  warnings.warn(

Querying the STAC API

First, we are going to import the required libraries. Once imported, they allow better executing a query in the GHG Center Spatio Temporal Asset Catalog (STAC) Application Programming Interface (API) where the granules for this collection are stored.

# Provide the STAC and RASTER API endpoints
# The endpoint is referring to a location within the API that executes a request on a data collection nesting on the server.

# The STAC API is a catalog of all the existing data collections that are stored in the GHG Center.
STAC_API_URL = "https://earth.gov/ghgcenter/api/stac"

# The RASTER API is used to fetch collections for visualization
RASTER_API_URL = "https://earth.gov/ghgcenter/api/raster"

# The collection name is used to fetch the dataset from the STAC API. First, we define the collection name as a variable
# Name of the collection for TM5 CH₄ inverse flux dataset 
collection_name = "tm54dvar-ch4flux-monthgrid-v1"
# Fetch the collection from the STAC API using the appropriate endpoint
# The 'requests' library allows a HTTP request possible
collection = requests.get(f"{STAC_API_URL}/collections/{collection_name}").json()

# Print the properties of the collection to the console
collection
{'id': 'tm54dvar-ch4flux-monthgrid-v1',
 'type': 'Collection',
 'links': [{'rel': 'items',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1/items'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'root',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'self',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1'}],
 'title': 'TM5-4DVar Isotopic CH4 Inverse Fluxes',
 'assets': None,
 'extent': {'spatial': {'bbox': [[-180, -90, 180, 90]]},
  'temporal': {'interval': [['1999-01-01T00:00:00+00:00',
     '2016-12-31T00:00:00+00:00']]}},
 'license': 'CC-BY-4.0',
 'keywords': None,
 'providers': None,
 'summaries': {'datetime': ['1999-01-01T00:00:00Z', '2016-12-31T00:00:00Z']},
 'description': 'Global, monthly 1 degree resolution methane emission estimates from microbial, fossil and pyrogenic sources derived using inverse modeling, version 1.',
 'item_assets': {'total': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total CH4 Emission',
   'description': 'Total methane emission from microbial, fossil and pyrogenic sources'},
  'fossil': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Fossil CH4 Emission',
   'description': 'Emission of methane from all fossil sources, such as oil and gas activities and coal mining.'},
  'microbial': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Microbial CH4 Emission',
   'description': 'Emission of methane from all microbial sources, such as wetlands, agriculture and termites.'},
  'pyrogenic': {'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Pyrogenic CH4 Emission',
   'description': 'Emission of methane from all sources of biomass burning, such as wildfires and crop burning.'}},
 'stac_version': '1.0.0',
 'stac_extensions': None,
 'dashboard:is_periodic': True,
 'dashboard:time_density': 'month'}

Examining the contents of our collection under the temporal variable, we see that the data is available from January 1999 to December 2016. By looking at the dashboard:time density, we observe that the data is periodic with monthly time density.

# Create a function that would search for a data collection in the US GHG Center STAC API

# First, we need to define the function
# The name of the function = "get_item_count"
# The argument that will be passed through the defined function = "collection_id"
def get_item_count(collection_id):

    # Set a counter for the number of items existing in the collection
    count = 0

    # Define the path to retrieve the granules (items) of the collection of interest in the STAC API
    items_url = f"{STAC_API_URL}/collections/{collection_id}/items"

    # Run a while loop to make HTTP requests until there are no more URLs associated with the collection in the STAC API
    while True:

        # Retrieve information about the granules by sending a "get" request to the STAC API using the defined collection path
        response = requests.get(items_url)

        # If the items do not exist, print an error message and quit the loop
        if not response.ok:
            print("error getting items")
            exit()

        # Return the results of the HTTP response as JSON
        stac = response.json()

        # Increase the "count" by the number of items (granules) returned in the response
        count += int(stac["context"].get("returned", 0))

        # Retrieve information about the next URL associated with the collection in the STAC API (if applicable)
        next = [link for link in stac["links"] if link["rel"] == "next"]

        # Exit the loop if there are no other URLs
        if not next:
            break
        
        # Ensure the information gathered by other STAC API links associated with the collection are added to the original path
        # "href" is the identifier for each of the tiles stored in the STAC API
        items_url = next[0]["href"]

    # Return the information about the total number of granules found associated with the collection
    return count
# Apply the function created above "get_item_count" to the data collection
number_of_items = get_item_count(collection_name)

# Get the information about the number of granules found in the collection
items = requests.get(f"{STAC_API_URL}/collections/{collection_name}/items?limit={number_of_items}").json()["features"]

# Print the total number of items (granules) found
print(f"Found {len(items)} items")
Found 216 items
# Examine the first item in the collection
# Keep in mind that a list starts from 0, 1, 2... therefore items[0] is referring to the first item in the list/collection
items[0]
{'id': 'tm54dvar-ch4flux-monthgrid-v1-201612',
 'bbox': [-180.0, -90.0, 180.0, 90.0],
 'type': 'Feature',
 'links': [{'rel': 'collection',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1'},
  {'rel': 'root',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'self',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1/items/tm54dvar-ch4flux-monthgrid-v1-201612'}],
 'assets': {'total': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_total_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Total methane emission from microbial, fossil and pyrogenic sources',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 207.09559432166358,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64446.0, 253.0, 61.0, 16.0, 14.0, 4.0, 3.0, 0.0, 2.0, 1.0]},
     'statistics': {'mean': 0.7699816366032659,
      'stddev': 3.8996905358416045,
      'maximum': 207.09559432166358,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]},
  'fossil': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_fossil_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Fossil CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Emission of methane from all fossil sources, such as oil and gas activities and coal mining.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 202.8189294183266,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64633.0, 107.0, 35.0, 11.0, 8.0, 3.0, 1.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.27127687553584495,
      'stddev': 2.731411670166909,
      'maximum': 202.8189294183266,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]},
  'microbial': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_microbial_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Microbial CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Emission of methane from all microbial sources, such as wetlands, agriculture and termites.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 161.4604621003495,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64610.0, 155.0, 22.0, 5.0, 2.0, 2.0, 2.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.46611433673211145,
      'stddev': 2.2910210071489456,
      'maximum': 161.4604621003495,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]},
  'pyrogenic': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_pyrogenic_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Pyrogenic CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Emission of methane from all sources of biomass burning, such as wildfires and crop burning.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 13.432528617097262,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64440.0, 221.0, 78.0, 24.0, 18.0, 8.0, 3.0, 1.0, 1.0, 6.0]},
     'statistics': {'mean': 0.032590424335309266,
      'stddev': 0.28279054181617735,
      'maximum': 13.432528617097262,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]}},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[-180, -90],
    [180, -90],
    [180, 90],
    [-180, 90],
    [-180, -90]]]},
 'collection': 'tm54dvar-ch4flux-monthgrid-v1',
 'properties': {'end_datetime': '2016-12-31T00:00:00+00:00',
  'start_datetime': '2016-12-01T00:00:00+00:00'},
 'stac_version': '1.0.0',
 'stac_extensions': []}

Exploring Changes in CH₄ flux Levels Using the Raster API

In this notebook, we will explore the global changes of CH₄ flux over time in urban regions. We will visualize the outputs on a map using folium.

# Now we create a dictionary where the start datetime values for each granule is queried more explicitly by year and month (e.g., 2020-02)
items = {item["properties"]["start_datetime"][:10]: item for item in items} 

# Next, we need to specify the asset name for this collection
# The asset name is referring to the raster band containing the pixel values for the parameter of interest
# For the case of the TM5-4DVar Isotopic CH₄ Inverse Fluxes collection, the parameter of interest is “fossil”
asset_name = "fossil" #fossil fuel

Below, we are entering the minimum and maximum values to provide our upper and lower bounds in the rescale_values.

# Fetching the min and max values for a specific item
rescale_values = {"max":items[list(items.keys())[0]]["assets"][asset_name]["raster:bands"][0]["histogram"]["max"], "min":items[list(items.keys())[0]]["assets"][asset_name]["raster:bands"][0]["histogram"]["min"]}

Now, we will pass the item id, collection name, asset name, and the rescaling factor to the Raster API endpoint. We will do this twice, once for 2016 and again for 1999, so that we can visualize each event independently.

# Choose a color map for displaying the first observation (event)
# Please refer to matplotlib library if you'd prefer choosing a different color ramp.
# For more information on Colormaps in Matplotlib, please visit https://matplotlib.org/stable/users/explain/colors/colormaps.html
color_map = "purd"

# Make a GET request to retrieve information for the 2016 tile
ch4_flux_1 = requests.get(

    # Pass the collection name, the item number in the list, and its ID
    f"{RASTER_API_URL}/collections/{items['2016-12-01']['collection']}/items/{items['2016-12-01']['id']}/tilejson.json?"

    # Pass the asset name
    f"&assets={asset_name}"

    # Pass the color formula and colormap for custom visualization
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"

    # Pass the minimum and maximum values for rescaling
    f"&rescale={rescale_values['min']},{rescale_values['max']}", 

# Return the response in JSON format
).json()

# Print the properties of the retrieved granule to the console
ch4_flux_1
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/tm54dvar-ch4flux-monthgrid-v1/items/tm54dvar-ch4flux-monthgrid-v1-201612/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=fossil&color_formula=gamma+r+1.05&colormap_name=purd&rescale=0.0%2C202.8189294183266'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-180.0, -90.0, 180.0, 90.0],
 'center': [0.0, 0.0, 0]}
# Make a GET request to retrieve information for the 1999 tile
ch4_flux_2 = requests.get(

    # Pass the collection name, the item number in the list, and its ID
    f"{RASTER_API_URL}/collections/{items['1999-12-01']['collection']}/items/{items['1999-12-01']['id']}/tilejson.json?"

    # Pass the asset name
    f"&assets={asset_name}"

    # Pass the color formula and colormap for custom visualization
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"

    # Pass the minimum and maximum values for rescaling
    f"&rescale={rescale_values['min']},{rescale_values['max']}", 

# Return the response in JSON format
).json()

# Print the properties of the retrieved granule to the console
ch4_flux_2
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/tm54dvar-ch4flux-monthgrid-v1/items/tm54dvar-ch4flux-monthgrid-v1-199912/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=fossil&color_formula=gamma+r+1.05&colormap_name=purd&rescale=0.0%2C202.8189294183266'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-180.0, -90.0, 180.0, 90.0],
 'center': [0.0, 0.0, 0]}

Visualizing CH₄ flux Emissions from Fossil Fuel

# For this study we are going to compare CH4 fluxes from fossil fuels in 2016 and 1999 along the coast of California
# To change the location, you can simply insert the latitude and longitude of the area of your interest in the "location=(LAT, LONG)" statement

# Set the initial zoom level and center of map for both tiles
# 'folium.plugins' allows mapping side-by-side
map_ = folium.plugins.DualMap(location=(34, -118), zoom_start=6)

# Define the first map layer (2016)
map_layer_2016 = TileLayer(
    tiles=ch4_flux_1["tiles"][0], # Path to retrieve the tile
    attr="GHG", # Set the attribution
    opacity=0.8, # Adjust the transparency of the layer
)
# Add the first layer to the Dual Map
map_layer_2016.add_to(map_.m1)


# Define the second map layer (1999)
map_layer_1999 = TileLayer(
    tiles=ch4_flux_2["tiles"][0], # Path to retrieve the tile
    attr="GHG", # Set the attribution
    opacity=0.8, # Adjust the transparency of the layer
)

# Add the second layer to the Dual Map
map_layer_1999.add_to(map_.m2)

# Visualize the Dual Map
map_
Make this Notebook Trusted to load map: File -> Trust Notebook

Calculating Zonal Statistics

To perform zonal statistics, first we need to create a polygon. In this use case we are creating a polygon in Texas (USA).

# Create a polygon for the area of interest (aoi)
texas_aoi = {
    "type": "Feature", # Create a feature object
    "properties": {},
    "geometry": { # Set the bounding coordinates for the polygon
        "coordinates": [
            [
                [-95, 29], # South-east bounding coordinate
                [-95, 33], # North-east bounding coordinate
                [-104,33], # North-west bounding coordinate
                [-104,29], # South-west bounding coordinate
                [-95, 29]  # South-east bounding coordinate (closing the polygon)
            ]
        ],
        "type": "Polygon",
    },
}
# Create a new map to display the generated polygon
# We'll plug in the coordinates for a location
# Central to the study area and a reasonable zoom level
aoi_map = Map(

    # Base map is set to OpenStreetMap
    tiles="OpenStreetMap",

    # Define the spatial properties for the map
    location=[
        30,-100
    ],

    # Set the zoom value
    zoom_start=6,
)

# Insert the polygon to the map
folium.GeoJson(texas_aoi, name="Texas, USA").add_to(aoi_map)

# Visualize the map
aoi_map
Make this Notebook Trusted to load map: File -> Trust Notebook
# Check total number of items available within the collection
items = requests.get(
    f"{STAC_API_URL}/collections/{collection_name}/items?limit=600"
).json()["features"]

# Print the total number of items (granules) found
print(f"Found {len(items)} items")
Found 216 items
# Examine the first item in the collection
items[0]
{'id': 'tm54dvar-ch4flux-monthgrid-v1-201612',
 'bbox': [-180.0, -90.0, 180.0, 90.0],
 'type': 'Feature',
 'links': [{'rel': 'collection',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1'},
  {'rel': 'parent',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1'},
  {'rel': 'root',
   'type': 'application/json',
   'href': 'https://earth.gov/ghgcenter/api/stac/'},
  {'rel': 'self',
   'type': 'application/geo+json',
   'href': 'https://earth.gov/ghgcenter/api/stac/collections/tm54dvar-ch4flux-monthgrid-v1/items/tm54dvar-ch4flux-monthgrid-v1-201612'}],
 'assets': {'total': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_total_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Total CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Total methane emission from microbial, fossil and pyrogenic sources',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 207.09559432166358,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64446.0, 253.0, 61.0, 16.0, 14.0, 4.0, 3.0, 0.0, 2.0, 1.0]},
     'statistics': {'mean': 0.7699816366032659,
      'stddev': 3.8996905358416045,
      'maximum': 207.09559432166358,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]},
  'fossil': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_fossil_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Fossil CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Emission of methane from all fossil sources, such as oil and gas activities and coal mining.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 202.8189294183266,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64633.0, 107.0, 35.0, 11.0, 8.0, 3.0, 1.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.27127687553584495,
      'stddev': 2.731411670166909,
      'maximum': 202.8189294183266,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]},
  'microbial': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_microbial_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Microbial CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Emission of methane from all microbial sources, such as wetlands, agriculture and termites.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 161.4604621003495,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64610.0, 155.0, 22.0, 5.0, 2.0, 2.0, 2.0, 1.0, 0.0, 1.0]},
     'statistics': {'mean': 0.46611433673211145,
      'stddev': 2.2910210071489456,
      'maximum': 161.4604621003495,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]},
  'pyrogenic': {'href': 's3://ghgc-data-store/tm54dvar-ch4flux-monthgrid-v1/methane_emis_pyrogenic_201612.tif',
   'type': 'image/tiff; application=geotiff; profile=cloud-optimized',
   'roles': ['data', 'layer'],
   'title': 'Pyrogenic CH4 Emission',
   'proj:bbox': [-180.0, -90.0, 180.0, 90.0],
   'proj:epsg': 4326.0,
   'proj:shape': [180.0, 360.0],
   'description': 'Emission of methane from all sources of biomass burning, such as wildfires and crop burning.',
   'raster:bands': [{'scale': 1.0,
     'offset': 0.0,
     'sampling': 'area',
     'data_type': 'float64',
     'histogram': {'max': 13.432528617097262,
      'min': 0.0,
      'count': 11.0,
      'buckets': [64440.0, 221.0, 78.0, 24.0, 18.0, 8.0, 3.0, 1.0, 1.0, 6.0]},
     'statistics': {'mean': 0.032590424335309266,
      'stddev': 0.28279054181617735,
      'maximum': 13.432528617097262,
      'minimum': 0.0,
      'valid_percent': 0.00154320987654321}}],
   'proj:geometry': {'type': 'Polygon',
    'coordinates': [[[-180.0, -90.0],
      [180.0, -90.0],
      [180.0, 90.0],
      [-180.0, 90.0],
      [-180.0, -90.0]]]},
   'proj:projjson': {'id': {'code': 4326.0, 'authority': 'EPSG'},
    'name': 'WGS 84',
    'type': 'GeographicCRS',
    'datum': {'name': 'World Geodetic System 1984',
     'type': 'GeodeticReferenceFrame',
     'ellipsoid': {'name': 'WGS 84',
      'semi_major_axis': 6378137.0,
      'inverse_flattening': 298.257223563}},
    '$schema': 'https://proj.org/schemas/v0.4/projjson.schema.json',
    'coordinate_system': {'axis': [{'name': 'Geodetic latitude',
       'unit': 'degree',
       'direction': 'north',
       'abbreviation': 'Lat'},
      {'name': 'Geodetic longitude',
       'unit': 'degree',
       'direction': 'east',
       'abbreviation': 'Lon'}],
     'subtype': 'ellipsoidal'}},
   'proj:transform': [1.0, 0.0, -180.0, 0.0, -1.0, 90.0, 0.0, 0.0, 1.0]}},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[-180, -90],
    [180, -90],
    [180, 90],
    [-180, 90],
    [-180, -90]]]},
 'collection': 'tm54dvar-ch4flux-monthgrid-v1',
 'properties': {'end_datetime': '2016-12-31T00:00:00+00:00',
  'start_datetime': '2016-12-01T00:00:00+00:00'},
 'stac_version': '1.0.0',
 'stac_extensions': []}

Now that we created the polygon for the area of interest, we need to develop a function that runs through the data collection and generates the statistics for a specific item (granule) within the boundaries of the AOI polygon.

# The bounding box should be passed to the geojson param as a geojson Feature or FeatureCollection
# Create a function that retrieves information regarding a specific granule using its asset name and raster identifier and generates the statistics for it

# The function takes an item (granule) and a JSON (polygon) as input parameters
def generate_stats(item, geojson):

    # A POST request is made to submit the data associated with the item of interest (specific observation) within the boundaries of the polygon to compute its statistics
    result = requests.post(

        # Raster API Endpoint for computing statistics
        f"{RASTER_API_URL}/cog/statistics",

        # Pass the URL to the item, asset name, and raster identifier as parameters
        params={"url": item["assets"][asset_name]["href"]},

        # Send the GeoJSON object (polygon) along with the request
        json=geojson,

    # Return the response in JSON format
    ).json()

    # Print the result
    print(result)

    # Return a dictionary containing the computed statistics along with the item's datetime information.
    return {
        **result["properties"],
        "datetime": item["properties"]["start_datetime"][:10],
    }
# Generate a for loop that iterates over all the existing items in the collection
for item in items:

    # The loop will then retrieve the information for the start datetime of each item in the list
    print(item["properties"]["start_datetime"][:10])

    # Exit the loop after printing the start datetime for the first item in the collection
    break
2016-12-01

With the function above we can generate the statistics for the AOI.

%%time
# %%time = Wall time (execution time) for running the code below

# Generate statistics using the created function "generate_stats" within the bounding box defined by the polygon
stats = [generate_stats(item, texas_aoi) for item in items]
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293576, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293576, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293576, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293576, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.046440286649957814, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.6628765772935767, 'majority': 0.046440286649957814, 'minority': 0.046440286649957814, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.046440286649957814, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.046440286649957814, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0464402866499578, 'max': 49.61378870603235, 'mean': 9.039553150168388, 'count': 36.0, 'sum': 325.42391340606196, 'std': 11.97160706711745, 'median': 3.662876577293575, 'majority': 0.0464402866499578, 'minority': 0.0464402866499578, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0464402866499578, 5.003175128588197, 9.959909970526436, 14.916644812464675, 19.873379654402914, 24.830114496341153, 29.786849338279392, 34.74358418021763, 39.700319022155874, 44.65705386409412, 49.61378870603235]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0464402866499578, 'percentile_98': 49.61378870603235}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002913, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002913, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002913, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002913, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002913, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.03709242852969095, 'max': 39.62714368102128, 'mean': 7.220002358949011, 'count': 36.0, 'sum': 259.9200849221644, 'std': 9.561869909840457, 'median': 2.9255846046002905, 'majority': 0.03709242852969095, 'minority': 0.03709242852969095, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.03709242852969095, 3.9960975537788497, 7.955102679028009, 11.914107804277167, 15.873112929526327, 19.832118054775485, 23.79112318002464, 27.7501283052738, 31.70913343052296, 35.66813855577212, 39.62714368102128]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.03709242852969095, 'percentile_98': 39.62714368102128}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.930126835636344, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.930126835636344, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.930126835636344, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.930126835636344, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0498286559664811, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.930126835636344, 'majority': 0.0498286559664811, 'minority': 0.0498286559664811, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0498286559664811, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0498286559664811, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.049828655966481096, 'max': 53.233702609559955, 'mean': 9.69909568830946, 'count': 36.0, 'sum': 349.16744477914057, 'std': 12.845077688895602, 'median': 3.9301268356363437, 'majority': 0.049828655966481096, 'minority': 0.049828655966481096, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.049828655966481096, 5.368216051325828, 10.686603446685176, 16.004990842044524, 21.323378237403873, 26.64176563276322, 31.960153028122566, 37.278540423481914, 42.59692781884126, 47.915315214200604, 53.233702609559955]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.049828655966481096, 'percentile_98': 53.233702609559955}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797246, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797246, 'minority': 0.04844368240797246, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797246, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797246, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04844368240797245, 'max': 51.754086731793784, 'mean': 9.429512035906917, 'count': 36.0, 'sum': 339.462433292649, 'std': 12.488052346528812, 'median': 3.820890059260054, 'majority': 0.04844368240797245, 'minority': 0.04844368240797245, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04844368240797245, 5.219007987346554, 10.389572292285136, 15.560136597223718, 20.730700902162297, 25.901265207100877, 31.07182951203946, 36.242393816978044, 41.412958121916624, 46.583522426855204, 51.754086731793784]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04844368240797245, 'percentile_98': 51.754086731793784}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004203, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004203, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004203, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004203, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0410694758905591, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004203, 'majority': 0.0410694758905591, 'minority': 0.0410694758905591, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.0410694758905591, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0410694758905591, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.041069475890559086, 'max': 43.875963007294224, 'mean': 7.994130461780975, 'count': 36.0, 'sum': 287.7886966241151, 'std': 10.587092873051281, 'median': 3.239265563004202, 'majority': 0.041069475890559086, 'minority': 0.041069475890559086, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.041069475890559086, 4.424558829030926, 8.808048182171293, 13.19153753531166, 17.575026888452026, 21.958516241592392, 26.34200559473276, 30.725494947873127, 35.10898430101349, 39.49247365415386, 43.875963007294224]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.041069475890559086, 'percentile_98': 43.875963007294224}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.014990728690412, 'count': 36.0, 'sum': 288.5396662328548, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.04525232158395881, 'max': 43.218752482629654, 'mean': 8.01499072869041, 'count': 36.0, 'sum': 288.53966623285476, 'std': 10.403540190053944, 'median': 3.4394321723687717, 'majority': 0.04525232158395881, 'minority': 0.04525232158395881, 'unique': 36.0, 'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0], [0.04525232158395881, 4.362602337688529, 8.679952353793098, 12.997302369897668, 17.314652386002237, 21.632002402106806, 25.949352418211376, 30.266702434315945, 34.584052450420515, 38.901402466525084, 43.218752482629654]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.04525232158395881, 'percentile_98': 43.218752482629654}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652444, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.600275204778581, 'median': 2.6359418625830324, 'majority': 0.07815699260652444, 'minority': 0.07815699260652444, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652444, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652444, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652444, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.600275204778581, 'median': 2.6359418625830324, 'majority': 0.07815699260652444, 'minority': 0.07815699260652444, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652444, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652444, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652444, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.600275204778581, 'median': 2.6359418625830324, 'majority': 0.07815699260652444, 'minority': 0.07815699260652444, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652444, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652444, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652444, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.600275204778581, 'median': 2.6359418625830324, 'majority': 0.07815699260652444, 'minority': 0.07815699260652444, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652444, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652444, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652446, 'max': 30.207069000964125, 'mean': 4.93714764976287, 'count': 36.0, 'sum': 177.7373153914633, 'std': 5.600275204778581, 'median': 2.6359418625830333, 'majority': 0.07815699260652446, 'minority': 0.07815699260652446, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652446, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652446, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07815699260652442, 'max': 30.207069000964125, 'mean': 4.937147649762869, 'count': 36.0, 'sum': 177.73731539146328, 'std': 5.60027520477858, 'median': 2.6359418625830324, 'majority': 0.07815699260652442, 'minority': 0.07815699260652442, 'unique': 36.0, 'histogram': [[18.0, 8.0, 6.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07815699260652442, 3.0910481934422847, 6.103939394278045, 9.116830595113806, 12.129721795949566, 15.142612996785326, 18.155504197621084, 21.168395398456845, 24.181286599292605, 27.194177800128365, 30.207069000964125]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07815699260652442, 'percentile_98': 30.207069000964125}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.057000378217828634, 'max': 19.01294050176522, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.622437442156955, 'median': 1.9034478266961106, 'majority': 0.057000378217828634, 'minority': 0.057000378217828634, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.057000378217828634, 1.9525943905725678, 3.848188402927307, 5.7437824152820465, 7.639376427636786, 9.534970439991525, 11.430564452346264, 13.326158464701004, 15.221752477055743, 17.117346489410483, 19.01294050176522]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.057000378217828634, 'percentile_98': 19.01294050176522}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.05700037821782864, 'max': 19.012940501765218, 'mean': 3.3591134478629296, 'count': 36.0, 'sum': 120.92808412306547, 'std': 3.6224374421569547, 'median': 1.9034478266961106, 'majority': 0.05700037821782864, 'minority': 0.05700037821782864, 'unique': 36.0, 'histogram': [[18.0, 8.0, 5.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.05700037821782864, 1.9525943905725676, 3.8481884029273066, 5.7437824152820465, 7.639376427636785, 9.534970439991524, 11.430564452346264, 13.326158464701003, 15.221752477055741, 17.11734648941048, 19.012940501765218]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.05700037821782864, 'percentile_98': 19.012940501765218}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705136, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761584, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.9884604296440365, 3.91170669709527, 5.8349529645465035, 7.758199231997737, 9.68144549944897, 11.604691766900203, 13.527938034351436, 15.45118430180267, 17.374430569253903, 19.297676836705136]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705136}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06521416219280307, 'max': 19.297676836705133, 'mean': 3.7596895060958024, 'count': 36.0, 'sum': 135.3488222194489, 'std': 3.8700056847761575, 'median': 2.170593466679465, 'majority': 0.06521416219280307, 'minority': 0.06521416219280307, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06521416219280307, 1.988460429644036, 3.911706697095269, 5.834952964546502, 7.758199231997735, 9.681445499448968, 11.6046917669002, 13.527938034351433, 15.451184301802666, 17.3744305692539, 19.297676836705133]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06521416219280307, 'percentile_98': 19.297676836705133}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.638352569926129, 'count': 36.0, 'sum': 130.98069251734066, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.06564170217340089, 'max': 17.788216379456447, 'mean': 3.63835256992613, 'count': 36.0, 'sum': 130.98069251734069, 'std': 3.6526232484529304, 'median': 2.1544043639157815, 'majority': 0.06564170217340089, 'minority': 0.06564170217340089, 'unique': 36.0, 'histogram': [[15.0, 8.0, 6.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.06564170217340089, 1.8378991699017053, 3.61015663763001, 5.382414105358314, 7.154671573086619, 8.926929040814924, 10.699186508543228, 12.471443976271534, 14.243701443999838, 16.01595891172814, 17.788216379456447]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.06564170217340089, 'percentile_98': 17.788216379456447}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848969, 'count': 36.0, 'sum': 164.6227598705629, 'std': 4.563661183958428, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848969, 'count': 36.0, 'sum': 164.6227598705629, 'std': 4.563661183958428, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848969, 'count': 36.0, 'sum': 164.6227598705629, 'std': 4.563661183958428, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848969, 'count': 36.0, 'sum': 164.6227598705629, 'std': 4.563661183958428, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848969, 'count': 36.0, 'sum': 164.6227598705629, 'std': 4.563661183958428, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08306719506774579, 'max': 22.197690201784734, 'mean': 4.572854440848968, 'count': 36.0, 'sum': 164.62275987056287, 'std': 4.563661183958427, 'median': 2.7309298669526565, 'majority': 0.08306719506774579, 'minority': 0.08306719506774579, 'unique': 36.0, 'histogram': [[14.0, 9.0, 5.0, 4.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0], [0.08306719506774579, 2.294529495739445, 4.505991796411144, 6.717454097082843, 8.928916397754543, 11.140378698426241, 13.351840999097941, 15.563303299769641, 17.774765600441338, 19.986227901113036, 22.197690201784734]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08306719506774579, 'percentile_98': 22.197690201784734}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104373, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104373, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104373, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104373, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.62927121577234, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104373, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.344050753668785, 4.597964138346958, 6.851877523025132, 9.105790907703305, 11.359704292381478, 13.613617677059652, 15.867531061737825, 18.121444446415996, 20.37535783109417, 22.62927121577234]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.62927121577234}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09013736899061185, 'max': 22.629271215772338, 'mean': 4.838336807884279, 'count': 36.0, 'sum': 174.180125083834, 'std': 4.734412826104372, 'median': 2.9781794884311257, 'majority': 0.09013736899061185, 'minority': 0.09013736899061185, 'unique': 36.0, 'histogram': [[13.0, 9.0, 6.0, 4.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0], [0.09013736899061185, 2.3440507536687845, 4.597964138346957, 6.85187752302513, 9.105790907703303, 11.359704292381476, 13.613617677059649, 15.867531061737822, 18.121444446415993, 20.375357831094163, 22.629271215772338]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09013736899061185, 'percentile_98': 22.629271215772338}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09959954704184086, 'max': 29.329479922592046, 'mean': 5.437024362179681, 'count': 36.0, 'sum': 195.73287703846853, 'std': 5.660742853229752, 'median': 3.2918155176753596, 'majority': 0.09959954704184086, 'minority': 0.09959954704184086, 'unique': 36.0, 'histogram': [[16.0, 9.0, 6.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0], [0.09959954704184086, 3.0225875845968613, 5.945575622151882, 8.868563659706902, 11.791551697261923, 14.714539734816944, 17.637527772371964, 20.560515809926983, 23.483503847482005, 26.406491885037028, 29.329479922592046]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09959954704184086, 'percentile_98': 29.329479922592046}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.7044327250734708, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.7044327250734708, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.7044327250734708, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.7044327250734708, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.7044327250734708, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08247489535275522, 'max': 26.69475599253677, 'mean': 4.649424679209406, 'count': 36.0, 'sum': 167.3792884515386, 'std': 4.977627965821467, 'median': 2.70443272507347, 'majority': 0.08247489535275522, 'minority': 0.08247489535275522, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08247489535275522, 2.743703005071157, 5.404931114789558, 8.06615922450796, 10.72738733422636, 13.388615443944762, 16.049843553663166, 18.711071663381567, 21.372299773099968, 24.03352788281837, 26.69475599253677]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08247489535275522, 'percentile_98': 26.69475599253677}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.82688228944621, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.94179005708975, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531336, 6.644743021966321, 9.917510430401308, 13.190277838836293, 16.46304524727128, 19.735812655706265, 23.00858006414125, 26.281347472576236, 29.554114881011223, 32.82688228944621]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.82688228944621}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.82688228944621, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.94179005708975, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531336, 6.644743021966321, 9.917510430401308, 13.190277838836293, 16.46304524727128, 19.735812655706265, 23.00858006414125, 26.281347472576236, 29.554114881011223, 32.82688228944621]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.82688228944621}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.82688228944621, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.94179005708975, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531336, 6.644743021966321, 9.917510430401308, 13.190277838836293, 16.46304524727128, 19.735812655706265, 23.00858006414125, 26.281347472576236, 29.554114881011223, 32.82688228944621]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.82688228944621}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.82688228944621, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.94179005708975, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531336, 6.644743021966321, 9.917510430401308, 13.190277838836293, 16.46304524727128, 19.735812655706265, 23.00858006414125, 26.281347472576236, 29.554114881011223, 32.82688228944621]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.82688228944621}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635005, 'max': 32.82688228944621, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.94179005708975, 'median': 3.1495232787842964, 'majority': 0.09920820509635005, 'minority': 0.09920820509635005, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635005, 3.371975613531336, 6.644743021966321, 9.917510430401308, 13.190277838836293, 16.46304524727128, 19.735812655706265, 23.00858006414125, 26.281347472576236, 29.554114881011223, 32.82688228944621]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635005, 'percentile_98': 32.82688228944621}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.09920820509635007, 'max': 32.8268822894462, 'mean': 5.328482391280777, 'count': 36.0, 'sum': 191.82536608610798, 'std': 5.941790057089749, 'median': 3.1495232787842964, 'majority': 0.09920820509635007, 'minority': 0.09920820509635007, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.09920820509635007, 3.371975613531335, 6.6447430219663195, 9.917510430401304, 13.19027783883629, 16.463045247271275, 19.73581265570626, 23.008580064141245, 26.28134747257623, 29.554114881011213, 32.8268822894462]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.09920820509635007, 'percentile_98': 32.8268822894462}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07999033785669486, 'max': 26.550680129922398, 'mean': 4.283964391325785, 'count': 36.0, 'sum': 154.22271808772828, 'std': 4.804101963580192, 'median': 2.489670678448358, 'majority': 0.07999033785669486, 'minority': 0.07999033785669486, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0], [0.07999033785669486, 2.727059317063265, 5.374128296269835, 8.021197275476405, 10.668266254682974, 13.315335233889543, 15.962404213096114, 18.609473192302687, 21.256542171509256, 23.903611150715825, 26.550680129922398]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07999033785669486, 'percentile_98': 26.550680129922398}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.892939730852937, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.204705540340319, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.352449059096919, 4.634725800403143, 6.917002541709367, 9.19927928301559, 11.481556024321813, 13.763832765628038, 16.046109506934265, 18.328386248240488, 20.61066298954671, 22.892939730852937]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.892939730852937}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.07017231779069502, 'max': 22.89293973085294, 'mean': 3.8566844447476427, 'count': 36.0, 'sum': 138.84064001091514, 'std': 4.20470554034032, 'median': 2.2770158211093747, 'majority': 0.07017231779069502, 'minority': 0.07017231779069502, 'unique': 36.0, 'histogram': [[18.0, 7.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.07017231779069502, 2.3524490590969194, 4.634725800403144, 6.917002541709368, 9.199279283015592, 11.481556024321817, 13.76383276562804, 16.046109506934265, 18.32838624824049, 20.610662989546714, 22.89293973085294]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.07017231779069502, 'percentile_98': 22.89293973085294}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.348188537652892, 'count': 36.0, 'sum': 156.53478735550414, 'std': 4.633345420525916, 'median': 2.5974040079993723, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.348188537652892, 'count': 36.0, 'sum': 156.53478735550414, 'std': 4.633345420525916, 'median': 2.5974040079993723, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.348188537652892, 'count': 36.0, 'sum': 156.53478735550414, 'std': 4.633345420525916, 'median': 2.5974040079993723, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.348188537652892, 'count': 36.0, 'sum': 156.53478735550414, 'std': 4.633345420525916, 'median': 2.5974040079993723, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.08095810131399311, 'max': 24.822949625050086, 'mean': 4.348188537652892, 'count': 36.0, 'sum': 156.53478735550414, 'std': 4.633345420525916, 'median': 2.5974040079993723, 'majority': 0.08095810131399311, 'minority': 0.08095810131399311, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.08095810131399311, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.08095810131399311, 'percentile_98': 24.822949625050086}}}}
{'type': 'Feature', 'geometry': {'type': 'Polygon', 'coordinates': [[[-95.0, 29.0], [-95.0, 33.0], [-104.0, 33.0], [-104.0, 29.0], [-95.0, 29.0]]]}, 'properties': {'statistics': {'b1': {'min': 0.0809581013139931, 'max': 24.822949625050086, 'mean': 4.3481885376528915, 'count': 36.0, 'sum': 156.5347873555041, 'std': 4.633345420525916, 'median': 2.5974040079993728, 'majority': 0.0809581013139931, 'minority': 0.0809581013139931, 'unique': 36.0, 'histogram': [[17.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [0.0809581013139931, 2.5551572536876024, 5.029356406061212, 7.5035555584348215, 9.97775471080843, 12.45195386318204, 14.926153015555649, 17.40035216792926, 19.874551320302867, 22.348750472676475, 24.822949625050086]], 'valid_percent': 100.0, 'masked_pixels': 0.0, 'valid_pixels': 36.0, 'percentile_2': 0.0809581013139931, 'percentile_98': 24.822949625050086}}}}
CPU times: user 2.27 s, sys: 465 ms, total: 2.73 s
Wall time: 2min

Create a function that goes through every single item in the collection and populates their properties - including the minimum, maximum, and sum of their values - in a table.

# Print the stats for the first item in the collection
stats[0]
{'statistics': {'b1': {'min': 0.0464402866499578,
   'max': 49.61378870603235,
   'mean': 9.039553150168388,
   'count': 36.0,
   'sum': 325.42391340606196,
   'std': 11.97160706711745,
   'median': 3.662876577293575,
   'majority': 0.0464402866499578,
   'minority': 0.0464402866499578,
   'unique': 36.0,
   'histogram': [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0],
    [0.0464402866499578,
     5.003175128588197,
     9.959909970526436,
     14.916644812464675,
     19.873379654402914,
     24.830114496341153,
     29.786849338279392,
     34.74358418021763,
     39.700319022155874,
     44.65705386409412,
     49.61378870603235]],
   'valid_percent': 100.0,
   'masked_pixels': 0.0,
   'valid_pixels': 36.0,
   'percentile_2': 0.0464402866499578,
   'percentile_98': 49.61378870603235}},
 'datetime': '2016-12-01'}
# Create a function that converts statistics in JSON format into a pandas DataFrame
def clean_stats(stats_json) -> pd.DataFrame:

    # Normalize the JSON data
    df = pd.json_normalize(stats_json)

    # Replace the naming "statistics.b1" in the columns
    df.columns = [col.replace("statistics.b1.", "") for col in df.columns]

    # Set the datetime format
    df["date"] = pd.to_datetime(df["datetime"])

    # Return the cleaned format
    return df

# Apply the generated function on the stats data
df = clean_stats(stats)

# Display the stats for the first 5 granules in the collection in the table
# Change the value in the parenthesis to show more or a smaller number of rows in the table
df.head(5)
datetime min max mean count sum std median majority minority unique histogram valid_percent masked_pixels valid_pixels percentile_2 percentile_98 date
0 2016-12-01 0.04644 49.613789 9.039553 36.0 325.423913 11.971607 3.662877 0.04644 0.04644 36.0 [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0... 100.0 0.0 36.0 0.04644 49.613789 2016-12-01
1 2016-11-01 0.04644 49.613789 9.039553 36.0 325.423913 11.971607 3.662877 0.04644 0.04644 36.0 [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0... 100.0 0.0 36.0 0.04644 49.613789 2016-11-01
2 2016-10-01 0.04644 49.613789 9.039553 36.0 325.423913 11.971607 3.662877 0.04644 0.04644 36.0 [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0... 100.0 0.0 36.0 0.04644 49.613789 2016-10-01
3 2016-09-01 0.04644 49.613789 9.039553 36.0 325.423913 11.971607 3.662877 0.04644 0.04644 36.0 [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0... 100.0 0.0 36.0 0.04644 49.613789 2016-09-01
4 2016-08-01 0.04644 49.613789 9.039553 36.0 325.423913 11.971607 3.662877 0.04644 0.04644 36.0 [[18.0, 9.0, 1.0, 2.0, 2.0, 2.0, 0.0, 0.0, 1.0... 100.0 0.0 36.0 0.04644 49.613789 2016-08-01

Visualizing the Data as a Time Series

We can now explore the fossil fuel emission time series (January 1999 -December 2016) available for the Dallas, Texas area of the U.S. We can plot the data set using the code below:

# Figure size: 20 representing the width, 10 representing the height
fig = plt.figure(figsize=(20, 10))

plt.plot(
    df["datetime"], # X-axis: sorted datetime
    df["max"], # Y-axis: maximum CH4 flux
    color="red", # Line color
    linestyle="-", # Line style
    linewidth=0.5, # Line width
    label="CH4 emissions", # Legend label
)

# Display legend
plt.legend()

# Insert label for the X-axis
plt.xlabel("Years")

# Insert label for the Y-axis
plt.ylabel("g CH₄/m²/year")
plt.xticks(rotation = 90)

# Insert title for the plot
plt.title("CH4 emission Values for Texas, Dallas (1999-2016)")

# Add data citation
plt.text(
    df["datetime"].iloc[0],           # X-coordinate of the text
    df["max"].min(),                  # Y-coordinate of the text




    # Text to be displayed
    "Source: NASA/NOAA TM5-4DVar Isotopic CH₄ Inverse Fluxes",                  
    fontsize=12,                             # Font size
    horizontalalignment="left",              # Horizontal alignment
    verticalalignment="top",                 # Vertical alignment
    color="blue",                            # Text color
)


# Plot the time series
plt.show()

# Print the properties for the 3rd item in the collection
print(items[2]["properties"]["start_datetime"])
2016-10-01T00:00:00+00:00
# A GET request is made for the 3rd granule
ch4_flux_3 = requests.get(

    # Pass the collection name, the item number in the list, and its ID
    f"{RASTER_API_URL}/collections/{items[2]['collection']}/items/{items[2]['id']}/tilejson.json?"

    # Pass the asset name
    f"&assets={asset_name}"

    # Pass the color formula and colormap for custom visualization
    f"&color_formula=gamma+r+1.05&colormap_name={color_map}"

    # Pass the minimum and maximum values for rescaling
    f"&rescale={rescale_values['min']},{rescale_values['max']}",

# Return the response in JSON format
).json()

# Print the properties of the retrieved granule to the console
ch4_flux_3
{'tilejson': '2.2.0',
 'version': '1.0.0',
 'scheme': 'xyz',
 'tiles': ['https://earth.gov/ghgcenter/api/raster/collections/tm54dvar-ch4flux-monthgrid-v1/items/tm54dvar-ch4flux-monthgrid-v1-201610/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?assets=fossil&color_formula=gamma+r+1.05&colormap_name=purd&rescale=0.0%2C202.8189294183266'],
 'minzoom': 0,
 'maxzoom': 24,
 'bounds': [-180.0, -90.0, 180.0, 90.0],
 'center': [0.0, 0.0, 0]}
# Create a new map to display the tile
aoi_map_bbox = Map(

    # Base map is set to OpenStreetMap
    tiles="OpenStreetMap",

    # Set the center of the map
    location=[
        30,-100
    ],

    # Set the zoom value
    zoom_start=6.8,
)

# Define the map layer
map_layer = TileLayer(

    # Path to retrieve the tile
    tiles=ch4_flux_3["tiles"][0],

    # Set the attribution and adjust the transparency of the layer
    attr="GHG", opacity = 0.7
)

# Add the layer to the map
map_layer.add_to(aoi_map_bbox)

# Visualize the map
aoi_map_bbox
Make this Notebook Trusted to load map: File -> Trust Notebook

Summary

In this notebook we have successfully explored, analyzed, and visualized the STAC collection for TM5-4DVar Isotopic CH₄ Inverse Fluxes dataset.

  1. Install and import the necessary libraries
  2. Fetch the collection from STAC collections using the appropriate endpoints
  3. Count the number of existing granules within the collection
  4. Map and compare the CH₄ inverse fluxes for two distinctive months/years
  5. Generate zonal statistics for the area of interest (AOI)
  6. Visualizing the Data as a Time Series

If you have any questions regarding this user notebook, please contact us using the feedback form.

Back to top