Open in Colab

Land Cover Over Time#

How have land use and land cover changed over time?

import folium
import ee
import geemap
import geopandas as gpd
ee.Authenticate()

# Write your project ID here, in quotes
ee.Initialize(project = "emerge-lessons")
def add_ee_layer(self, ee_image_object, vis_params, name):
    """Adds a method for displaying Earth Engine image tiles to folium map."""
    map_id_dict = ee.Image(ee_image_object).getMapId(vis_params)
    folium.raster_layers.TileLayer(
        tiles=map_id_dict['tile_fetcher'].url_format,
        attr='Map Data &copy; <a href="https://earthengine.google.com/">Google Earth Engine</a>',
        name=name,
        overlay=True,
        control=True
    ).add_to(self)

folium.Map.add_ee_layer = add_ee_layer
map = folium.Map(location=[28.263363, -83.497652], tiles="Cartodb dark_matter", zoom_start=7)

We will use land cover and land use data from USFS Landscape Change Monitoring System v2024.10 (CONUS and OCONUS) on Google Earth Engine.

landcover_1985 = (
    ee.ImageCollection('USFS/GTAC/LCMS/v2024-10')
      .filterDate('1985', '1986')
      .filter('study_area == "CONUS"')
      .first()
)

palette = ['fbff97', 'e6558b', '004e2b', '9dbac5', 'a6976a', '1b1716']
visual = {'min': 1, 'max': 6, 'palette': palette}

map.add_ee_layer(landcover_1985.select('Land_Use'), visual, '1985 Land Use')
display(map)
Make this Notebook Trusted to load map: File -> Trust Notebook
landcover_2024 = (
    ee.ImageCollection('USFS/GTAC/LCMS/v2024-10')
      .filterDate('2024', '2025')
      .filter('study_area == "CONUS"')
      .first()
)

map.add_ee_layer(landcover_2024.select('Land_Use'), visual, '2024 Land Use')
folium.LayerControl(collapsed = False).add_to(map)
display(map)
Make this Notebook Trusted to load map: File -> Trust Notebook

In the upper right, you can click the checkbox next to “2024 Land Use” to turn the layer on and off and compare the changes that occured in land use from 1985 to 2024.

Color Meanings (from catalog)

\[\color{#fbff97}Agriculture\]
\[\color{#e6558b}Developed\]
\[\color{#004e2b}Forest\]
\[\color{#9dbac5}Other\]
\[\color{#a6976a}Rangeland or Pasture\]

Now, we will show land cover, as opposed to land use.

# Refresh the map
map = folium.Map(location=[28.263363, -83.497652], tiles="Cartodb dark_matter", zoom_start=7)

palette = ['004e2b', '009344', '61bb46', 'acbb67', '8b8560', 'cafd4b', 'f89a1c', '8fa55f', 'bebb8e', 'e5e98a', 'ddb925', '893f54', 'e4f5fd', '00b6f0', '1b1716']
visual = {'min': 1, 'max': 15, 'palette': palette}

# Add land cover for 1985 and 2024
map.add_ee_layer(landcover_1985.select('Land_Cover'), visual, '1985 Land Cover')
map.add_ee_layer(landcover_2024.select('Land_Cover'), visual, '2024 Land Cover')
folium.LayerControl(collapsed = False).add_to(map)
display(map)
Make this Notebook Trusted to load map: File -> Trust Notebook
\[\color{#004e2b}Trees\]
\[\color{#61bb46}Shrubs \space and \space Trees Mix\]
\[\color{#acbb67}Grass/Forb/Herb \space and \space Trees Mix\]
\[\color{#8b8560}Barren \space and \space Trees Mix\]
\[\color{#f89a1c}Shrubs\]
\[\color{#8fa55f}Grass/Forb/Herb \space and \space Shrubs Mix\]
\[\color{#bebb8e}Barren \space and \space Shrubs Mix\]
\[\color{#e5e98a}Grass/Forb/Herb\]
\[\color{#ddb925}Barren \space and \space Grass/Forb/Herb Mix\]
\[\color{#893f54}Barren or Impervious\]
\[\color{#e4f5fd}Snow or Ice\]

Create Timelapse#

landcover = (
    ee.ImageCollection('USFS/GTAC/LCMS/v2024-10')
      .filter('study_area == "CONUS"')
      .select('Land_Use')
)

point = ee.Geometry.Point(-81.660044, 28.473813)
region = point.buffer(distance=100000)

images = geemap.create_timeseries(
    landcover, '1985', '2024', region, frequency='year', reducer='first'
)
images
  • ImageCollection (39 elements)
    • type:ImageCollection
    • bands: []
      • features: List (39 elements)
        • 0: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:0
            • system:time_start:473385600000
        • 1: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:1
            • system:time_start:504921600000
        • 2: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:2
            • system:time_start:536457600000
        • 3: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:3
            • system:time_start:567993600000
        • 4: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:4
            • system:time_start:599616000000
        • 5: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:5
            • system:time_start:631152000000
        • 6: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:6
            • system:time_start:662688000000
        • 7: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:7
            • system:time_start:694224000000
        • 8: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:8
            • system:time_start:725846400000
        • 9: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:9
            • system:time_start:757382400000
        • 10: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:10
            • system:time_start:788918400000
        • 11: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:11
            • system:time_start:820454400000
        • 12: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:12
            • system:time_start:852076800000
        • 13: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:13
            • system:time_start:883612800000
        • 14: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:14
            • system:time_start:915148800000
        • 15: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:15
            • system:time_start:946684800000
        • 16: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:16
            • system:time_start:978307200000
        • 17: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:17
            • system:time_start:1009843200000
        • 18: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:18
            • system:time_start:1041379200000
        • 19: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:19
            • system:time_start:1072915200000
        • 20: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:20
            • system:time_start:1104537600000
        • 21: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:21
            • system:time_start:1136073600000
        • 22: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:22
            • system:time_start:1167609600000
        • 23: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:23
            • system:time_start:1199145600000
        • 24: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:24
            • system:time_start:1230768000000
        • 25: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:25
            • system:time_start:1262304000000
        • 26: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:26
            • system:time_start:1293840000000
        • 27: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:27
            • system:time_start:1325376000000
        • 28: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:28
            • system:time_start:1356998400000
        • 29: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:29
            • system:time_start:1388534400000
        • 30: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:30
            • system:time_start:1420070400000
        • 31: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:31
            • system:time_start:1451606400000
        • 32: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:32
            • system:time_start:1483228800000
        • 33: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:33
            • system:time_start:1514764800000
        • 34: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:34
            • system:time_start:1546300800000
        • 35: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:35
            • system:time_start:1577836800000
        • 36: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:36
            • system:time_start:1609459200000
        • 37: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:37
            • system:time_start:1640995200000
        • 38: Image (1 band)
          • type:Image
          • bands: List (1 element)
            • 0: "Land_Use", unsigned int8, EPSG:4326, 4x3 px
              • id:Land_Use
              • crs:EPSG:4326
              • crs_transform: [1, 0, 0, 0, 1, 0]
                • 0:1
                • 1:0
                • 2:0
                • 3:0
                • 4:1
                • 5:0
              • data_type: unsigned int8
                • type:PixelType
                • max:255
                • min:0
                • precision:int
              • dimensions: [4, 3]
                • 0:4
                • 1:3
              • origin: [-84, 27]
                • 0:-84
                • 1:27
          • properties: Object (4 properties)
            • empty:0
            • system:footprint: Polygon (24 vertices)
              • type:Polygon
              • coordinates: List (1 element)
                • 0: List (24 elements)
                  • 0: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
                  • 1: [-81.94836247854758, 29.337579808050535]
                    • 0:-81.94836247854758
                    • 1:29.337579808050535
                  • 2: [-82.21316606774361, 29.23216871504045]
                    • 0:-82.21316606774361
                    • 1:29.23216871504045
                  • 3: [-82.4329958161192, 29.066052246587347]
                    • 0:-82.4329958161192
                    • 1:29.066052246587347
                  • 4: [-82.59027797775441, 28.85270649294279]
                    • 0:-82.59027797775441
                    • 1:28.85270649294279
                  • 5: [-82.67274162270508, 28.609343264483282]
                    • 0:-82.67274162270508
                    • 1:28.609343264483282
                  • 6: [-82.67430932771454, 28.355467982135714]
                    • 0:-82.67430932771454
                    • 1:28.355467982135714
                  • 7: [-82.59542277831011, 28.111287421131095]
                    • 0:-82.59542277831011
                    • 1:28.111287421131095
                  • 8: [-82.44283090107902, 27.89610493570897]
                    • 0:-82.44283090107902
                    • 1:27.89610493570897
                  • 9: [-82.22891229566834, 27.726827614159454]
                    • 0:-82.22891229566834
                    • 1:27.726827614159454
                  • 10: [-81.97062542666436, 27.616689207211685]
                    • 0:-81.97062542666436
                    • 1:27.616689207211685
                  • 11: [-81.68818493731065, 27.57426933175896]
                    • 0:-81.68818493731065
                    • 1:27.57426933175896
                  • 12: [-81.4035583739624, 27.602866053229775]
                    • 0:-81.4035583739624
                    • 1:27.602866053229775
                  • 13: [-81.13887125579906, 27.70025641788561]
                    • 0:-81.13887125579906
                    • 1:27.70025641788561
                  • 14: [-80.91480405360673, 27.85885775475632]
                    • 0:-80.91480405360673
                    • 1:27.85885775475632
                  • 15: [-80.74906421945843, 28.066281134163564]
                    • 0:-80.74906421945843
                    • 1:28.066281134163564
                  • 16: [-80.65502009867, 28.306246721606673]
                    • 0:-80.65502009867
                    • 1:28.306246721606673
                  • 17: [-80.64058977761022, 28.559808412220587]
                    • 0:-80.64058977761022
                    • 1:28.559808412220587
                  • 18: [-80.70748289852588, 28.806811872187883]
                    • 0:-80.70748289852588
                    • 1:28.806811872187883
                  • 19: [-80.85089094321603, 29.027486614165717]
                    • 0:-80.85089094321603
                    • 1:29.027486614165717
                  • 20: [-81.05970365932073, 29.204051281761696]
                    • 0:-81.05970365932073
                    • 1:29.204051281761696
                  • 21: [-81.3172897506411, 29.32219623710256]
                    • 0:-81.3172897506411
                    • 1:29.32219623710256
                  • 22: [-81.60281790465068, 29.37230459521959]
                    • 0:-81.60281790465068
                    • 1:29.37230459521959
                  • 23: [-81.660044, 29.373699595148146]
                    • 0:-81.660044
                    • 1:29.373699595148146
            • system:index:38
            • system:time_start:1672531200000
    Map = geemap.Map()
    
    labels = [str(y) for y in range(1985, 2024)]
    
    Map.addLayer(images, visual, "Land Use")
    Map.add_time_slider(images, visual, time_interval=2, labels=labels)
    Map.setCenter(-81.660044, 28.473813, zoom=8)
    Map
    

    In Google Colab, click the > arrow to see a timelapse of the land use over the years. This may take a few seconds to load.

    fl = gpd.read_file('https://github.com/geo-di-lab/emerge-lessons/raw/refs/heads/main/docs/data/florida_boundary.geojson')[['geometry']]
    region = geemap.geopandas_to_ee(fl)
    
    timelapse = geemap.modis_ndvi_timelapse(
        region,
        out_gif='ndvi.gif',
        data='Terra',
        band='NDVI',
        start_date='2000-01-01',
        end_date='2024-12-31',
        frames_per_second=3,
        title='MODIS NDVI Timelapse',
    )
    
    geemap.show_image(timelapse)
    

    Florida vegetation time lapse

    References