Planet Data API Introduction using Python


Introduction


This tutorial is an introduction to Planet's Data API. It provides code samples on how to write simple Python code to access data.

https://api.planet.com/data/v1

The focus of this tutorial will be the search portion of the Planet Data API. We will find and download imagery data using complex searches and save them for later use, as well as learn how to get stats on search results. After completing this tutorial, you should feel comfortable interacting with the Data API, and have a good foundation for leveraging the Planet Data API for your own applications.

Table of Contents


  • Introduction
    • Requirements
      • Software & Modules
      • Planet API Key
    • Useful Links
  • Overview
    • The Basic Workflow
      • Data API Endpoints
      • Planet Explorer
  • Basic Setup
    • Authentication
    • Helper Modules and Functions
    • Our First Request
  • Search Mechanics & Filters
    • Statistics
    • Using a Search Filter
    • Filter types
      • Field Filters
      • Logical Filters
      • (Field) Filter Type examples
    • Complex Queries using Logical Filters
  • Searching for Items
    • Quick Search
      • Mapping Footprints Example
  • Assets & Permissions
    • Activating Assets
    • Downloading Assets
    • Rate Limits
  • Saved Searches
  • Conclusion

Requirements


Software & Modules

This tutorial assumes familiarity with the Python programming language throughout. Familiarity with basic REST API concepts and usage is also assumed.

We'll be using a "Jupyter Notebook" (aka Python Notebook) to run through the examples. To learn more about and get started with using Jupyter, visit: Jupyter and IPython.

For the best experience, download this notebook and run it on your system, and make sure to install the modules listed below first. You can also copy the examples' code to a separate Python files an run them directly with Python on your system if you prefer.

Python modules used in this tutorial are:

Planet API Key

You should have an account on the Planet Platform to access the Data API. You may retrieve your API key from your account page, or from the "API Tab" in Planet Explorer.


Overview


The Basic Workflow:

  1. Search item types based on filters
  2. Activate assets
  3. Download assets

API Endpoints

This tutorial will cover the following API endpoints:

There is an additional /spec endpoint that publishes a Swagger specification for the Data API.

Exploring Endpoints

We can start by exploring two endpoints using our browser.

What item types are available?

https://api.planet.com/data/v1/item-types/

What assets are available?

https://api.planet.com/data/v1/asset-types/

Note: You may choose to install a helpful browser plugin called JSONView that formats JSON and makes it easier to read:

Planet Explorer

We can also use Planet Explorer to expose relevant API information for search results.

In Planet Explorer, while in Daily Imagery Mode click on the "Api" button in the bottom left corner of the results panel.

Here, you may access your API Key, selected item id's, and cURL request information containing filters and options.

Basic Setup


Before interacting with the Planet Data API using Python, we will set up our environment with some useful modules and helper functions.

  • We'll configure authentication to the Planet Data API
  • We'll use the requests Python module to make HTTP communication easier.
  • We'll use the json Python module to help us work with JSON responses from the API.
  • We'll create a function called p that will print Python dictionaries nicely.

Then we'll be ready to make our first call to the Planet API by hitting the base endpoint at https://api.planet.com/data/v1.

Let's start by configuring authentication:

Authentication

Authentication with the Planet Data API be achieved using a valid Planet API key.

You can export your API Key as an environment variable on your system:

export PL_API_KEY="YOUR API KEY HERE"

Or add the variable to your path, etc. If you are using our Docker environement, it will already be set.

To start our Python code, we'll setup an API Key variable from an environment variable to use with our requests:


In [1]:
# Import the os module in order to access environment variables
import os

# If you're following along with this notebook, you can enter your API Key on the following line, and uncomment it:
#os.environ['PL_API_KEY']='YOUR API KEY HERE'

# Setup the API Key from the `PL_API_KEY` environment variable
PLANET_API_KEY = os.getenv('PL_API_KEY')

Helper Modules and Functions


In [2]:
# Import helper modules
import json
import requests

In [3]:
# Helper function to printformatted JSON using the json module
def p(data):
    print(json.dumps(data, indent=2))

Our First Request


In [4]:
# Setup Planet Data API base URL
URL = "https://api.planet.com/data/v1"

# Setup the session
session = requests.Session()

# Authenticate
session.auth = (PLANET_API_KEY, "")

In [5]:
# Make a GET request to the Planet Data API
res = session.get(URL)

Now we should get a response, hopefully it's a 200 code, saying everything is OK!


In [6]:
# Response status code
res.status_code


Out[6]:
200

In [7]:
# Response Body
res.text


Out[7]:
'{"_links": {"_self": "https://api.planet.com/data/v1/", "asset-types": "https://api.planet.com/data/v1/asset-types/", "item-types": "https://api.planet.com/data/v1/item-types/", "spec": "https://api.planet.com/data/v1/spec"}}'

In [8]:
# Print formatted JSON response
p(res.json())


{
  "_links": {
    "_self": "https://api.planet.com/data/v1/",
    "asset-types": "https://api.planet.com/data/v1/asset-types/",
    "item-types": "https://api.planet.com/data/v1/item-types/",
    "spec": "https://api.planet.com/data/v1/spec"
  }
}

In [9]:
# Print the value of the item-types key from _links
print(res.json()["_links"]["item-types"])


https://api.planet.com/data/v1/item-types/

Congratulations! You just made your first request to the Planet Data API using Python!

Now, let's take a look at how to access all that high cadence satellite imagery!

Search Mechanics & Filters


There's a lot of data available on the Planet Data API and in order to find what we're looking for, we'll have to perform various types of searches.

To construct a search, we use filters that let us limit results based on date, geography or other metadata properties.

Using these filters, we are able to search for items or get statistics for search results.

Let's first make a request to the /stats endpoint to understand how the filters work:

Statistics /stats


The /stats endpoint provides a summary of the available data based on some search criteria.

https://api.planet.com/data/v1/stats

We'll need to send a POST request to /stats, let's start by setting up the request url:


In [10]:
# Setup the stats URL
stats_url = "{}/stats".format(URL)

# Print the stats URL
print(stats_url)


https://api.planet.com/data/v1/stats

Using a Search Filter

Search filters should have the following properties:

  • Type (type) - The type of filter being used
  • Configuration (config) - The configuration for this filter
  • Field Name (field_name) - The field on which to filter

For this example, let's use a filter to get some stats on what data is available for Planet Scope (3 Band) and Rapid Eye (Ortho Tile) products taken from 2013 until now:


In [11]:
# Specify the sensors/satellites or "item types" to include in our results
item_types = ["PSScene3Band", "REOrthoTile"]

In [12]:
# Create filter object for all imagery captured between 2013-01-01 and present.
date_filter = {
    "type": "DateRangeFilter", # Type of filter -> Date Range
    "field_name": "acquired", # The field to filter on: "acquired" -> Date on which the "image was taken"
    "config": {
        "gte": "2013-01-01T00:00:00.000Z", # "gte" -> Greater than or equal to
    }
}

Depending on the filter type, some requests may need an interval field:

The following intervals are possible:

  • year
  • month
  • week
  • day
  • hour

An interval must be provided with the request so that the number of matching items can be aggregated. We'll use an interval with our date filter.

Now let's perform our request using the date_filter filter we created above:


In [13]:
# Construct the request.
request = {
    "item_types" : item_types,
    "interval" : "year",
    "filter" : date_filter
}

# Send the POST request to the API stats endpoint
res = session.post(stats_url, json=request)

# Print response
p(res.json())


{
  "utc_offset": "+0h",
  "interval": "year",
  "buckets": [
    {
      "count": 3095020,
      "start_time": "2013-01-01T00:00:00.000000Z"
    },
    {
      "count": 3596278,
      "start_time": "2014-01-01T00:00:00.000000Z"
    },
    {
      "count": 8491790,
      "start_time": "2015-01-01T00:00:00.000000Z"
    },
    {
      "count": 37679317,
      "start_time": "2016-01-01T00:00:00.000000Z"
    },
    {
      "count": 174722989,
      "start_time": "2017-01-01T00:00:00.000000Z"
    },
    {
      "count": 186371062,
      "start_time": "2018-01-01T00:00:00.000000Z"
    }
  ]
}

Good Job! You've received a response from the API that contains some statistics like item counts for the search criteria!

**Exercise:** Create a new date filter to find data from before 2013.

In [14]:
# Fill in this filter to complete the exercise! 
date_filter2 = {
}

request = {
    "item_types" : item_types,
    "interval" : "year",
    "filter" : date_filter
}

res = session.post(stats_url, json=request)
p(res.json())


{
  "utc_offset": "+0h",
  "interval": "year",
  "buckets": [
    {
      "count": 3095020,
      "start_time": "2013-01-01T00:00:00.000000Z"
    },
    {
      "count": 3596278,
      "start_time": "2014-01-01T00:00:00.000000Z"
    },
    {
      "count": 8491790,
      "start_time": "2015-01-01T00:00:00.000000Z"
    },
    {
      "count": 37679317,
      "start_time": "2016-01-01T00:00:00.000000Z"
    },
    {
      "count": 174722989,
      "start_time": "2017-01-01T00:00:00.000000Z"
    },
    {
      "count": 186371062,
      "start_time": "2018-01-01T00:00:00.000000Z"
    }
  ]
}

Next, let's take a closer look at some of the available filters:

Filter types

The Planet Data API supports several filter types. The most common are the following:

Field Filters

  • DateRangeFilter
  • RangeFilter
  • StringInFilter
  • PermissionFilter
  • GeometryFilter

Logical Filters

  • NotFilter
  • AndFilter
  • OrFilter

More information and examples on filter types can be found at the API Docs.


(Field) Filter Type examples:

DateRangeFilter

Find imagery that was acquired or published before, after or between certain dates.

{
  "type": "DateRangeFilter",
  "field_name": "acquired",
  "config": {
    "gt": "2016-01-01T00:00:00Z",
    "lte": "2016-03-01T00:00:00Z"
  }
}

The upper or lower bound may be omitted.

RangeFilter

Find imagery that has a metadata that matches a number within a range of numbers.

{
  "type": "RangeFilter",
  "field_name": "cloud_cover",
  "config": {
    "lt": 0.2,
    "gt": 0.1
  }
}

The following operators are supported by the Data API's DateRangeFilter and RangeFilter:

  • gt: Greater Than
  • gte: Greater Than or Equal To
  • lt: Less Than
  • lte: Less Than or Equal To

StringInFilter

Find imagery that has a metadata that matches a string within the array of provided strings.

{
  "type": "StringInFilter",
  "field_name": "instrument",
  "config": ["PS2"]
}

PermissionFilter

Find data which has assets that are accessible by the user.

{
  "type": "PermissionFilter",
  "config": ["assets.analytic:download"]
}

Note: assets:download means any downloadable asset.

GeometryFilter

Find data contained within a given geometry. The filter's config value may be any valid GeoJSON object.

{
  "type": "GeometryFilter",
  "field_name": "geometry",
  "config": {
    "type": "Polygon",
    "coordinates": [
      [
        [
          -120.27282714843749,
          38.348118547988065
        ],
        [
          -120.27282714843749,
          38.74337300148126
        ],
        [
          -119.761962890625,
          38.74337300148126
        ],
        [
          -119.761962890625,
          38.348118547988065
        ],
        [
          -120.27282714843749,
          38.348118547988065
        ]
      ]
    ]
  }
}

A few quick ways to get a GeoJSON geometry to use in your search:

Make sure the config property in the geometry filter is in the right format, which should be similar to a feature property in a GeoJSON object.


Let's try a few more requests and get some more stats, this time using different filters:


In [15]:
# Search for imagery only from PlanetScope satellites that have a PS2 telescope

# Setup item types
item_types = ["PSScene3Band"]

# Setup a filter for instrument type
instrument_filter = {
    "type": "StringInFilter",
    "field_name": "instrument",
    "config": ["PS2"]
}

In [16]:
# Setup the request
request = {
    "item_types" : item_types,
    "interval" : "year",
    "filter" : instrument_filter
}

# Send the POST request to the API stats endpoint
res = session.post(stats_url, json=request)

# Print response
p(res.json())


{
  "utc_offset": "+0h",
  "interval": "year",
  "buckets": [
    {
      "count": 1539543,
      "start_time": "2015-01-01T00:00:00.000000Z"
    },
    {
      "count": 30243181,
      "start_time": "2016-01-01T00:00:00.000000Z"
    },
    {
      "count": 170625428,
      "start_time": "2017-01-01T00:00:00.000000Z"
    },
    {
      "count": 184139032,
      "start_time": "2018-01-01T00:00:00.000000Z"
    }
  ]
}
**Exercise:** Create a new filter that finds all data from PS0 or PS1 telescopes.

In [17]:
# Fill in this filter to complete the exercise! 

instrument_filter2 = {
}
request = {
    "item_types" : item_types,
    "interval" : "year",
    "filter" : instrument_filter2
}

# Send the POST request to the API stats endpoint
res=session.post(stats_url, json=request)

# Print response
p(res.json())


{
  "field": {
    "filter.type": [
      {
        "message": "'type' is a required property"
      }
    ]
  },
  "general": []
}

Find a GeoJSON geometry from http://geojson.io and copy one feature.


In [18]:
# Search for imagery that only intersects with 40N, 90W

# Setup GeoJSON 
geom = {
    "type": "Point",
    "coordinates": [
        -90,
         40
    ]
}

# Setup Geometry Filter
geometry_filter = {
    "type": "GeometryFilter",
    "field_name": "geometry",
    "config": "POINT(-90 40)"
}

In [19]:
# Setup the request
request = {
    "item_types" : item_types,
    "filter" : geometry_filter
}

# Send the POST request to the API stats endpoint
res=session.post(stats_url, json=request)

# Print response
p(res.json())


{
  "field": {
    "filter.config": [
      {
        "message": "u'POINT(-90 40)' is not of type 'object'"
      }
    ],
    "interval": [
      {
        "message": "'interval' is a required property"
      }
    ]
  },
  "general": []
}

Complex Queries using Logical Filters

Complex queries may require combining field filters using logical filters (see Filter Types above).

Let's try a complex stats search:


In [20]:
# PS2 imagery; over 40N, 90W; captured between 2013 and present

# Setup an "AND" logical filter
and_filter = {
    "type": "AndFilter",
    "config": [instrument_filter, geometry_filter, date_filter]
}

# Print the logical filter
p(and_filter)


{
  "type": "AndFilter",
  "config": [
    {
      "type": "StringInFilter",
      "field_name": "instrument",
      "config": [
        "PS2"
      ]
    },
    {
      "type": "GeometryFilter",
      "field_name": "geometry",
      "config": "POINT(-90 40)"
    },
    {
      "type": "DateRangeFilter",
      "field_name": "acquired",
      "config": {
        "gte": "2013-01-01T00:00:00.000Z"
      }
    }
  ]
}

In [21]:
# Setup the request
request = {
    "item_types" : item_types,
    "interval" : "year",
    "filter" : and_filter
}

# Send the POST request to the API stats endpoint
res=session.post(stats_url, json=request)

# Print response
p(res.json())


{
  "field": {
    "filter.config.1.config": [
      {
        "message": "u'POINT(-90 40)' is not of type 'object'"
      }
    ]
  },
  "general": []
}

Here's another complex search query example using a "Not" logical filter and "string in" field filter. Can you tell what it's requesting?


In [22]:
# Setup Item Types
item_types = ["PSScene4Band"]

# Setup Instrument Filter
instrument_filter = {
    "type": "StringInFilter",
    "field_name": "instrument",
    "config": ["PS2"]
}

# Setup "not" Logical Filter
not_filter = {
    "type": "NotFilter",
    "config": instrument_filter
}

# Setup the request
request = {
    "item_types" : item_types,
    "interval" : "year",
    "filter" : not_filter
}

# Send the POST request to the API stats endpoint
res=session.post(stats_url, json=request)

# Print response
p(res.json())


{
  "utc_offset": "+0h",
  "interval": "year",
  "buckets": []
}

Now that you're comfortable working with filters, let's take a look at how to perform searches!

Searching for Items


There are two types of searches:

  • "Quick Search" /quick-search
  • "Saved Searches" /searches

Saved searches are retained on the Planet Platform and may be performed again at any time in the future. You can use these to setup efficient workflows for repetitive tasks, for example, querying an area that is of interest to you, or getting data for specific sensors.

Quick searches are meant to be more fleeting, and are not guaranteed to be available on the API after they are executed.

Searches use the same request format as the /stats endpoint except without the interval field.

Let's dive right in and create our first quick search:


In [23]:
# Setup the quick search endpoint url
quick_url = "{}/quick-search".format(URL)

In [24]:
# Setup Item Types
item_types = ["PSScene4Band"]

# Setup GeoJSON for only imagery that intersects with 40N, 90W
geom = {
    "type": "Point",
    "coordinates": [
        -90,
         40
    ]
}

# Setup a geometry filter
geometry_filter = {
    "type": "GeometryFilter",
    "field_name": "geometry",
    "config": "POINT(40 -90)"
}

# Setup the request
request = {
    "item_types" : item_types,
    "filter" : geometry_filter
}

In [25]:
# Send the POST request to the API quick search endpoint
res = session.post(quick_url, json=request)

# Assign the response to a variable
geojson = res.json()

# Print the response
p(geojson)


{
  "field": {
    "filter.config": [
      {
        "message": "u'POINT(40 -90)' is not of type 'object'"
      }
    ]
  },
  "general": []
}

Nice! The response gives us search results for Planet Scope (4 Band) for a specific area.

Let's do another search, this time using the "not" filter we setup earlier:


In [26]:
# Setup Item Types
item_types = ["PSScene3Band"]

# Setup the request
request = {
    "item_types" : item_types,
    "filter" : not_filter
}

# Send the POST request to the API quick search endpoint
res = session.post(quick_url, json=request)

# Assign the response to a variable
geojson = res.json()

# Print the response
p(geojson)


{
  "_links": {
    "_first": "https://api.planet.com/data/v1/searches/4e12c2479e124a7f9c05dedd2b6db366/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6IG51bGwsICJzb3J0X2xhc3RfaWQiOiBudWxsLCAic29ydF9kZXNjIjogdHJ1ZX0%3D",
    "_next": "https://api.planet.com/data/v1/searches/4e12c2479e124a7f9c05dedd2b6db366/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6ICIyMDE4LTA3LTEwVDA2OjU3OjU4LjAwMDAwMFoiLCAic29ydF9sYXN0X2lkIjogIjIwMTYwMzMwXzA5MTIwNl8wYjA3IiwgInNvcnRfZGVzYyI6IHRydWV9",
    "_self": "https://api.planet.com/data/v1/searches/4e12c2479e124a7f9c05dedd2b6db366/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6IG51bGwsICJzb3J0X2xhc3RfaWQiOiBudWxsLCAic29ydF9kZXNjIjogdHJ1ZX0%3D"
  },
  "features": [
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091355_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091355_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091355_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.24373212161514,
              17.710628544970934
            ],
            [
              119.28029916421973,
              17.75441535679384
            ],
            [
              119.21127786978434,
              17.807559153325187
            ],
            [
              119.17471767810127,
              17.763759027619503
            ],
            [
              119.24373212161514,
              17.710628544970934
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091355_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:55.346047Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 730569,
        "origin_y": 1970280,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:10:00Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14,
        "updated": "2018-07-10T07:10:00Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091342_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091342_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091342_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.71672642415506,
              17.06301988666005
            ],
            [
              118.75296419711873,
              17.106963109074666
            ],
            [
              118.68393695895686,
              17.159809203962762
            ],
            [
              118.64770695033356,
              17.11585016160291
            ],
            [
              118.71672642415506,
              17.06301988666005
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091342_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:42.289892Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 675297,
        "origin_y": 1898013,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:59Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.6,
        "updated": "2018-07-10T07:09:59Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091336_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091336_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091336_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.48137278481008,
              16.771131324828925
            ],
            [
              118.51757628687119,
              16.8150673064456
            ],
            [
              118.44866756788853,
              16.867943019100267
            ],
            [
              118.41247079135631,
              16.823991609856506
            ],
            [
              118.48137278481008,
              16.771131324828925
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091336_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:36.577826Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 650499,
        "origin_y": 1865514,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:58Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.8,
        "updated": "2018-07-10T07:09:58Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091435_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091435_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091435_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.89569708284958,
              19.711640676739023
            ],
            [
              120.9331643417666,
              19.75504779275356
            ],
            [
              120.8639310936521,
              19.808881943928117
            ],
            [
              120.82647143301621,
              19.765459262105985
            ],
            [
              120.89569708284958,
              19.711640676739023
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091435_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:35.330535Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3724,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 272259,
        "origin_y": 2191749,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:56Z",
        "quality_category": "test",
        "rows": 3604,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.3,
        "updated": "2018-07-10T07:09:56Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091303_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091303_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091303_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.14671189354142,
              15.075688536351876
            ],
            [
              117.18225489710116,
              15.119924778492802
            ],
            [
              117.11345673718213,
              15.172257767214605
            ],
            [
              117.0779206980392,
              15.128009401358538
            ],
            [
              117.14671189354142,
              15.075688536351876
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091303_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:03.121444Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 508371,
        "origin_y": 1677384,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:56Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 16.2,
        "updated": "2018-07-10T07:09:56Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090346_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090346_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090346_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.09905417196526,
              6.46585366035927
            ],
            [
              113.13227640046757,
              6.511818675566065
            ],
            [
              113.0636407069435,
              6.561940256254441
            ],
            [
              113.03042245273943,
              6.515966481077072
            ],
            [
              113.09905417196526,
              6.46585366035927
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090346_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:46.839748Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 724530,
        "origin_y": 725796,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:56Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.7,
        "sun_elevation": 22.3,
        "updated": "2018-07-10T07:10:14Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090314_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090314_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090314_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.88753799847996,
              4.768097483110926
            ],
            [
              111.92043043089251,
              4.814139923657381
            ],
            [
              111.8517217589528,
              4.863940914124777
            ],
            [
              111.81883241242049,
              4.817892340029601
            ],
            [
              111.88753799847996,
              4.768097483110926
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090314_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:14.199517Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 590796,
        "origin_y": 537687,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:55Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.3,
        "sun_elevation": 23.6,
        "updated": "2018-07-10T07:10:14Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090351_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090351_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090351_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.27659063028318,
              6.707642319870997
            ],
            [
              113.30982239002819,
              6.753606655159423
            ],
            [
              113.24117871065694,
              6.8037126724592545
            ],
            [
              113.20795072313787,
              6.757740550750034
            ],
            [
              113.27659063028318,
              6.707642319870997
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090351_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:51.735784Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 744051,
        "origin_y": 752625,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:54Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.2,
        "updated": "2018-07-10T07:10:13Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091328_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091328_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091328_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.15489482032284,
              16.34885195844229
            ],
            [
              118.19087779885882,
              16.39290346712195
            ],
            [
              118.12194273440605,
              16.445565328002765
            ],
            [
              118.08596607768531,
              16.401504527747505
            ],
            [
              118.15489482032284,
              16.34885195844229
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091328_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:28.417731Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 615960,
        "origin_y": 1818555,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:53Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.2,
        "updated": "2018-07-10T07:09:53Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091325_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091325_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091325_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.04944955775426,
              16.215569291406936
            ],
            [
              118.08537643676434,
              16.259650456836795
            ],
            [
              118.01644412593437,
              16.31226521917586
            ],
            [
              117.98052176943705,
              16.26817656314169
            ],
            [
              118.04944955775426,
              16.215569291406936
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091325_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:25.969703Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 604770,
        "origin_y": 1803750,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:53Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.3,
        "updated": "2018-07-10T07:09:53Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091401_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091401_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091401_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.47232454734961,
              18.00659799273254
            ],
            [
              119.50891521784327,
              18.050404970693318
            ],
            [
              119.43974374437313,
              18.103502057821167
            ],
            [
              119.40315881479336,
              18.05967617715033
            ],
            [
              119.47232454734961,
              18.00659799273254
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091401_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:01.058116Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 754377,
        "origin_y": 2003346,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:52Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.8,
        "updated": "2018-07-10T07:09:52Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091354_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091354_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091354_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.20699746927461,
              17.6709172847974
            ],
            [
              119.24351869114048,
              17.714732023177277
            ],
            [
              119.17446845554394,
              17.767822353286753
            ],
            [
              119.13795253050206,
              17.723993329030574
            ],
            [
              119.20699746927461,
              17.6709172847974
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091354_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:54.530037Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 726720,
        "origin_y": 1965837,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:52Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.1,
        "updated": "2018-07-10T07:09:52Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091227_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091227_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091227_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.73317098017067,
              13.244123429818998
            ],
            [
              115.76814403186793,
              13.2886145086936
            ],
            [
              115.69950280677271,
              13.340509596533371
            ],
            [
              115.66453636408059,
              13.29600732177641
            ],
            [
              115.73317098017067,
              13.244123429818998
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091227_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:27.217051Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3741,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 355341,
        "origin_y": 1475163,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:52Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.8,
        "updated": "2018-07-10T07:09:52Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091432_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091432_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091432_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.75378292175365,
              19.556395566879946
            ],
            [
              120.79111752383767,
              19.59987544037524
            ],
            [
              120.72183217059889,
              19.653573349961817
            ],
            [
              120.68450312468154,
              19.610073731360785
            ],
            [
              120.75378292175365,
              19.556395566879946
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091432_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:32.066494Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3725,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 257142,
        "origin_y": 2174745,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:51Z",
        "quality_category": "test",
        "rows": 3602,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.4,
        "updated": "2018-07-10T07:09:51Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091348_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091348_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091348_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.97468493296373,
              17.37834583596261
            ],
            [
              119.01112467098434,
              17.422187088171125
            ],
            [
              118.9421424651776,
              17.475239001168326
            ],
            [
              118.90571086473841,
              17.431383984958114
            ],
            [
              118.97468493296373,
              17.37834583596261
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091348_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:48.817969Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 702411,
        "origin_y": 1933182,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:50Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.3,
        "updated": "2018-07-10T07:09:50Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091335_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091335_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091335_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.450347843324,
              16.732925510903623
            ],
            [
              118.48654136350048,
              16.776864464185557
            ],
            [
              118.41764028428636,
              16.829735469813407
            ],
            [
              118.3814549452514,
              16.78577974476219
            ],
            [
              118.450347843324,
              16.732925510903623
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091335_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:35.761816Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 647223,
        "origin_y": 1861263,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:49Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.9,
        "updated": "2018-07-10T07:09:49Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091424_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091424_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091424_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.44735370698726,
              19.184578011567602
            ],
            [
              120.48459506395348,
              19.228074171250285
            ],
            [
              120.41544040270816,
              19.28175341935401
            ],
            [
              120.37820732298509,
              19.238238127116436
            ],
            [
              120.44735370698726,
              19.184578011567602
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091424_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:24.722403Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 224373,
        "origin_y": 2134029,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:48Z",
        "quality_category": "test",
        "rows": 3605,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 12.8,
        "updated": "2018-07-10T07:09:48Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091230_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091230_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091230_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.86479673417475,
              13.414293564738147
            ],
            [
              115.899808634867,
              13.458767138380336
            ],
            [
              115.83114709258656,
              13.510684658427273
            ],
            [
              115.79614136956181,
              13.466200581602743
            ],
            [
              115.86479673417475,
              13.414293564738147
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091230_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:30.481086Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3741,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 369690,
        "origin_y": 1493916,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:48Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.6,
        "updated": "2018-07-10T07:09:48Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091346_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091346_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091346_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.87942567854047,
              17.26213122669465
            ],
            [
              118.91582373144217,
              17.305984957529528
            ],
            [
              118.84686475733658,
              17.359008904485318
            ],
            [
              118.81047451337344,
              17.315140753740568
            ],
            [
              118.87942567854047,
              17.26213122669465
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091346_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:46.369941Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 692412,
        "origin_y": 1920216,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:47Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.4,
        "updated": "2018-07-10T07:09:47Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091420_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091420_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091420_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.28227769720004,
              18.97448739256236
            ],
            [
              120.31946600905036,
              19.017993029194844
            ],
            [
              120.25038551136261,
              19.07165806641104
            ],
            [
              120.21320686601246,
              19.028137201511285
            ],
            [
              120.28227769720004,
              18.97448739256236
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091420_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:20.642353Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 206646,
        "origin_y": 2111028,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:46Z",
        "quality_category": "test",
        "rows": 3606,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 12.9,
        "updated": "2018-07-10T07:09:46Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091254_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091254_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091254_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.78594121905061,
              14.622592877427568
            ],
            [
              116.82118977390246,
              14.66699887202731
            ],
            [
              116.75227072954354,
              14.719006417714354
            ],
            [
              116.71702624829845,
              14.674586569348152
            ],
            [
              116.78594121905061,
              14.622592877427568
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091254_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:54.145344Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 469530,
        "origin_y": 1627263,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:46Z",
        "quality_category": "test",
        "rows": 3557,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 16.6,
        "updated": "2018-07-10T07:09:46Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091334_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091334_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091334_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.38074165995924,
              16.650099082952217
            ],
            [
              118.41679772020039,
              16.694129035791256
            ],
            [
              118.34778387158502,
              16.746822995323967
            ],
            [
              118.31173394028563,
              16.702776178787676
            ],
            [
              118.38074165995924,
              16.650099082952217
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091334_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:34.129797Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 639852,
        "origin_y": 1852035,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:45Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.9,
        "updated": "2018-07-10T07:09:45Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091244_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091244_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091244_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.40564661768141,
              14.123752965414138
            ],
            [
              116.44085038907137,
              14.168146846327236
            ],
            [
              116.3721032855775,
              14.220197645437711
            ],
            [
              116.33690583956704,
              14.17579122269127
            ],
            [
              116.40564661768141,
              14.123752965414138
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091244_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:44.353236Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 428445,
        "origin_y": 1572171,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:45Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17,
        "updated": "2018-07-10T07:09:45Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090306_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090306_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090306_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.61697644198102,
              4.390394410602015
            ],
            [
              111.64983093161374,
              4.436431954788045
            ],
            [
              111.58112986457125,
              4.486209459518808
            ],
            [
              111.54827906476062,
              4.4401653489418855
            ],
            [
              111.61697644198102,
              4.390394410602015
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090306_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:06.855466Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 560826,
        "origin_y": 495897,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:45Z",
        "quality_category": "test",
        "rows": 3530,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.4,
        "sun_elevation": 23.9,
        "updated": "2018-07-10T07:10:12Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091138_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091138_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091138_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.85188096756104,
              10.741289019003114
            ],
            [
              113.8861211468542,
              10.786141236359208
            ],
            [
              113.81756089640443,
              10.837404242970306
            ],
            [
              113.78332483901315,
              10.792543764997335
            ],
            [
              113.85188096756104,
              10.741289019003114
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091138_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:38.256544Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3754,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 804381,
        "origin_y": 1199427,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:44Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.8,
        "updated": "2018-07-10T07:09:44Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091237_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091237_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091237_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.14630564316697,
              13.787642204356208
            ],
            [
              116.18145529107197,
              13.832048908666078
            ],
            [
              116.11278742521237,
              13.884092765335305
            ],
            [
              116.0776445412198,
              13.83967287375583
            ],
            [
              116.14630564316697,
              13.787642204356208
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091237_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:37.825165Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 400320,
        "origin_y": 1535088,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:43Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17.3,
        "updated": "2018-07-10T07:09:43Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090342_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090342_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090342_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.94305337067304,
              6.24781865005948
            ],
            [
              112.97624587786294,
              6.293786666298456
            ],
            [
              112.90761496750498,
              6.343888192203253
            ],
            [
              112.87442686656995,
              6.297911726941072
            ],
            [
              112.94305337067304,
              6.24781865005948
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090342_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:42.759719Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 707361,
        "origin_y": 701610,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:43Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.7,
        "sun_elevation": 22.5,
        "updated": "2018-07-10T07:10:11Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091412_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091412_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091412_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.9428569861359,
              18.571507781306448
            ],
            [
              119.97970578551183,
              18.615203112363346
            ],
            [
              119.9104897478672,
              18.668504526786656
            ],
            [
              119.87364657676483,
              18.624793854670774
            ],
            [
              119.9428569861359,
              18.571507781306448
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091412_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:12.482253Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 803223,
        "origin_y": 2066649,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:41Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.3,
        "updated": "2018-07-10T07:09:41Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091350_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091350_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091350_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.04445968043395,
              17.468348269475964
            ],
            [
              119.0809481479998,
              17.512161192494933
            ],
            [
              119.01197586866631,
              17.56525973037865
            ],
            [
              118.97549502756021,
              17.521431646185327
            ],
            [
              119.04445968043395,
              17.468348269475964
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091350_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:50.449989Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 709722,
        "origin_y": 1943223,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:41Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.2,
        "updated": "2018-07-10T07:09:41Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091241_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091241_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091241_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.30461460301439,
              13.992430647792753
            ],
            [
              116.339767607097,
              14.036852993669056
            ],
            [
              116.27101629872467,
              14.08885739633686
            ],
            [
              116.23586915722521,
              14.044423215233508
            ],
            [
              116.30461460301439,
              13.992430647792753
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091241_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:41.905209Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 417492,
        "origin_y": 1557678,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:40Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17.1,
        "updated": "2018-07-10T07:09:40Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091155_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091155_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091155_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.50752411555516,
              11.619808367709156
            ],
            [
              114.54204989223562,
              11.664505384763292
            ],
            [
              114.47352037570606,
              11.716045571440189
            ],
            [
              114.43899960117477,
              11.671339766786222
            ],
            [
              114.50752411555516,
              11.619808367709156
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091155_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:55.392717Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3746,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 220791,
        "origin_y": 1296390,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:40Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.1,
        "updated": "2018-07-10T07:09:40Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091132_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091132_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091132_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.63833701742624,
              10.451007466081386
            ],
            [
              113.67260225735876,
              10.495825810473365
            ],
            [
              113.60415857029831,
              10.547172838535404
            ],
            [
              113.56989806396669,
              10.50234645584159
            ],
            [
              113.63833701742624,
              10.451007466081386
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091132_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:32.544487Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 781293,
        "origin_y": 1167099,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:39Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20,
        "updated": "2018-07-10T07:09:39Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091123_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091123_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091123_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.29610408952657,
              9.98855963177219
            ],
            [
              113.3302586312931,
              10.033435872546663
            ],
            [
              113.26182484624323,
              10.08468811203919
            ],
            [
              113.22767587528243,
              10.039803454049116
            ],
            [
              113.29610408952657,
              9.98855963177219
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091123_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:23.568399Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.05,
        "columns": 3752,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 744171,
        "origin_y": 1115634,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:39Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.4,
        "updated": "2018-07-10T07:09:40Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091152_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091152_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091152_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.41462183668364,
              11.495714299414674
            ],
            [
              114.44908890363622,
              11.540445918697415
            ],
            [
              114.38053566132987,
              11.591920202145062
            ],
            [
              114.34607418469409,
              11.547179145627526
            ],
            [
              114.41462183668364,
              11.495714299414674
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091152_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:52.944692Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3747,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 210525,
        "origin_y": 1282743,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:38Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.2,
        "updated": "2018-07-10T07:09:38Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091220_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091220_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091220_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.48812021150208,
              12.918428792316446
            ],
            [
              115.52297052669061,
              12.962979354263805
            ],
            [
              115.45432839765044,
              13.014757529503077
            ],
            [
              115.41948458889165,
              12.970196823442436
            ],
            [
              115.48812021150208,
              12.918428792316446
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091220_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:20.688981Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3742,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 328566,
        "origin_y": 1439277,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:37Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 18,
        "updated": "2018-07-10T07:09:37Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091357_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091357_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091357_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.3437162481572,
              17.839213602882822
            ],
            [
              119.38028136252198,
              17.883018444578724
            ],
            [
              119.31117930713906,
              17.936123526578278
            ],
            [
              119.27462208522073,
              17.892302200711324
            ],
            [
              119.3437162481572,
              17.839213602882822
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091357_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:57.794076Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 740994,
        "origin_y": 1984641,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:36Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.9,
        "updated": "2018-07-10T07:09:36Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091142_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091142_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091142_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.0109816238756,
              10.95069636537837
            ],
            [
              114.04539615126875,
              10.995434325782286
            ],
            [
              113.97696271181425,
              11.046922552083767
            ],
            [
              113.94255422781892,
              11.002176520629677
            ],
            [
              114.0109816238756,
              10.95069636537837
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091142_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:42.336584Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3754,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 821583,
        "origin_y": 1222791,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:09:32Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.6,
        "updated": "2018-07-10T07:09:32Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090316_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090316_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090316_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.97323968538291,
              4.89009336255506
            ],
            [
              112.00615533295343,
              4.9361330083103985
            ],
            [
              111.93745019593992,
              4.9859579758155395
            ],
            [
              111.90453761508017,
              4.939911808845667
            ],
            [
              111.97323968538291,
              4.89009336255506
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090316_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:16.647533Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 600285,
        "origin_y": 551187,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:33Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.2,
        "sun_elevation": 23.5,
        "updated": "2018-07-10T07:10:03Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091326_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091326_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091326_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.08383567662268,
              16.25741514667891
            ],
            [
              118.11977663092755,
              16.301490751440376
            ],
            [
              118.05083760108205,
              16.354114737032468
            ],
            [
              118.014902066938,
              16.31003139828803
            ],
            [
              118.08383567662268,
              16.25741514667891
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091326_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:26.785712Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 608421,
        "origin_y": 1808397,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:32Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.2,
        "updated": "2018-07-10T07:08:32Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091436_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091436_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091436_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.96292412911671,
              19.79627694992771
            ],
            [
              121.000407892659,
              19.839684555288173
            ],
            [
              120.93113587367918,
              19.89351604175628
            ],
            [
              120.89365960966137,
              19.850090876360007
            ],
            [
              120.96292412911671,
              19.79627694992771
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091436_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:36.962555Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3724,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 279417,
        "origin_y": 2201031,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:31Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.2,
        "updated": "2018-07-10T07:08:31Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091338_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091338_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091338_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.54879840530651,
              16.84767923699335
            ],
            [
              118.58497945767796,
              16.891642634103214
            ],
            [
              118.51600205997174,
              16.944463117312747
            ],
            [
              118.47982789353858,
              16.900487363447166
            ],
            [
              118.54879840530651,
              16.84767923699335
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091338_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:38.209845Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 657615,
        "origin_y": 1874034,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:31Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.8,
        "updated": "2018-07-10T07:08:31Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091443_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091443_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091443_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              121.23316376741833,
              20.119453908167458
            ],
            [
              121.27082073510617,
              20.162783142647736
            ],
            [
              121.20153409048565,
              20.21675798239957
            ],
            [
              121.16388238353643,
              20.17341131163904
            ],
            [
              121.23316376741833,
              20.119453908167458
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091443_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:43.490637Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3723,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 308118,
        "origin_y": 2236488,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:30Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 11.9,
        "updated": "2018-07-10T07:08:30Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090313_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090313_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090313_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.85864252888227,
              4.722829911750037
            ],
            [
              111.89153064497816,
              4.768873711869752
            ],
            [
              111.8228236207556,
              4.818670304296226
            ],
            [
              111.78993838063913,
              4.772624513042539
            ],
            [
              111.85864252888227,
              4.722829911750037
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090313_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:13.383511Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 587598,
        "origin_y": 532677,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:30Z",
        "quality_category": "test",
        "rows": 3531,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.3,
        "sun_elevation": 23.7,
        "updated": "2018-07-10T07:10:03Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091322_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091322_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091322_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.92285238947998,
              16.078465439316922
            ],
            [
              117.95876268002861,
              16.122536407004482
            ],
            [
              117.88988400115717,
              16.175166517879358
            ],
            [
              117.85398074615159,
              16.13107668995598
            ],
            [
              117.92285238947998,
              16.078465439316922
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091322_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:22.705665Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 591309,
        "origin_y": 1788519,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:27Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.4,
        "updated": "2018-07-10T07:08:27Z",
        "usable_data": 0,
        "view_angle": 0.3
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090406_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090406_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090406_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.8216807666769,
              7.465433138297785
            ],
            [
              113.85511392488766,
              7.5113465178071275
            ],
            [
              113.78650845726887,
              7.561659647393377
            ],
            [
              113.75307757400856,
              7.515740754498318
            ],
            [
              113.8216807666769,
              7.465433138297785
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090406_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:06.423893Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3759,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 803847,
        "origin_y": 836826,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:27Z",
        "quality_category": "test",
        "rows": 3543,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.3,
        "sun_elevation": 21.6,
        "updated": "2018-07-10T07:10:02Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091321_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091321_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091321_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.88355859156523,
              16.043899187821612
            ],
            [
              117.91948337186402,
              16.08795889956924
            ],
            [
              117.85063025528376,
              16.1406238352797
            ],
            [
              117.81471345272382,
              16.09653854247796
            ],
            [
              117.88355859156523,
              16.043899187821612
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091321_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:21.889656Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 587127,
        "origin_y": 1784679,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:25Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.5,
        "updated": "2018-07-10T07:08:25Z",
        "usable_data": 0,
        "view_angle": 0.5
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091333_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091333_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091333_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.34675688209568,
              16.60820566258638
            ],
            [
              118.38278530299647,
              16.652250858511483
            ],
            [
              118.31376287738887,
              16.704915646469622
            ],
            [
              118.27774013389651,
              16.66085391966247
            ],
            [
              118.34675688209568,
              16.60820566258638
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091333_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:33.313788Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 636258,
        "origin_y": 1847376,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:24Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15,
        "updated": "2018-07-10T07:08:24Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091308_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091308_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091308_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.37066111029952,
              15.36912867593485
            ],
            [
              117.40622995143893,
              15.4133749316051
            ],
            [
              117.33731894921607,
              15.465677780067178
            ],
            [
              117.3017565301095,
              15.421416678048551
            ],
            [
              117.37066111029952,
              15.36912867593485
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091308_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:08.833508Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 532374,
        "origin_y": 1709862,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:24Z",
        "quality_category": "test",
        "rows": 3558,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 16,
        "updated": "2018-07-10T07:08:24Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091344_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091344_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091344_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.81612150210623,
              17.182938109341663
            ],
            [
              118.85252798411977,
              17.226775742897516
            ],
            [
              118.78362253891892,
              17.279833120787533
            ],
            [
              118.74722557302802,
              17.23598012235762
            ],
            [
              118.81612150210623,
              17.182938109341663
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091344_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:44.737921Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 685767,
        "origin_y": 1911390,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:23Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.5,
        "updated": "2018-07-10T07:08:23Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090323_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090323_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090323_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.22127883493182,
              5.234300408792397
            ],
            [
              112.25426578166626,
              5.280316448222091
            ],
            [
              112.1855908944216,
              5.330215280129858
            ],
            [
              112.1526078508603,
              5.28419276485619
            ],
            [
              112.22127883493182,
              5.234300408792397
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090323_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:23.175579Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.06,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 627723,
        "origin_y": 589293,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:23Z",
        "quality_category": "test",
        "rows": 3533,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.1,
        "sun_elevation": 23.3,
        "updated": "2018-07-10T07:10:02Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091241_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091241_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091241_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.27499524590404,
              13.950128075073446
            ],
            [
              116.31013883646276,
              13.994551970281853
            ],
            [
              116.24139896935989,
              14.046551122455158
            ],
            [
              116.20626087217823,
              14.002116853572968
            ],
            [
              116.27499524590404,
              13.950128075073446
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091241_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:41.089201Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 414279,
        "origin_y": 1553007,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:22Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17.2,
        "updated": "2018-07-10T07:08:22Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090318_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090318_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090318_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.03793462750134,
              4.982673553710509
            ],
            [
              112.07087578881028,
              5.028699242178758
            ],
            [
              112.00218979854431,
              5.078554719874784
            ],
            [
              111.96925148522956,
              5.0325219855462215
            ],
            [
              112.03793462750134,
              4.982673553710509
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090318_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:18.279545Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 607443,
        "origin_y": 561435,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:20Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.2,
        "sun_elevation": 23.5,
        "updated": "2018-07-10T07:10:02Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091429_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091429_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091429_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.65363416878309,
              19.427913048648875
            ],
            [
              120.69092902773565,
              19.47140391738725
            ],
            [
              120.62168350581571,
              19.525083253146697
            ],
            [
              120.5843944857604,
              19.481576281939194
            ],
            [
              120.65363416878309,
              19.427913048648875
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091429_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:29.618464Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3725,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 246438,
        "origin_y": 2160663,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:19Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.5,
        "updated": "2018-07-10T07:08:19Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091231_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091231_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091231_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.89645291038099,
              13.457378238568108
            ],
            [
              115.93145380463956,
              13.501863258225269
            ],
            [
              115.86276169343739,
              13.553755796265731
            ],
            [
              115.82776703295492,
              13.509259554143602
            ],
            [
              115.89645291038099,
              13.457378238568108
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091231_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:31.297094Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 373137,
        "origin_y": 1498662,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:19Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.6,
        "updated": "2018-07-10T07:08:19Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091427_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091427_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091427_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.5561919686932,
              19.309982824985873
            ],
            [
              120.59343528311946,
              19.353494681721905
            ],
            [
              120.52420376606278,
              19.407136002344973
            ],
            [
              120.48696918736127,
              19.363606433540223
            ],
            [
              120.5561919686932,
              19.309982824985873
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091427_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:27.170433Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3725,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 236016,
        "origin_y": 2147745,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:18Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.7,
        "updated": "2018-07-10T07:08:18Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091332_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091332_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091332_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.30985949314038,
              16.558846373538916
            ],
            [
              118.345856128646,
              16.602912712714744
            ],
            [
              118.27681921730631,
              16.65554304022498
            ],
            [
              118.24082829057163,
              16.61146169917244
            ],
            [
              118.30985949314038,
              16.558846373538916
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091332_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:32.497778Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 632355,
        "origin_y": 1841886,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:18Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15,
        "updated": "2018-07-10T07:08:18Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090254_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090254_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090254_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.16388803958152,
              3.7519720373581165
            ],
            [
              111.19664176123254,
              3.7980305730184165
            ],
            [
              111.12790561598563,
              3.8477081448617096
            ],
            [
              111.09515455210028,
              3.801644136324972
            ],
            [
              111.16388803958152,
              3.7519720373581165
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090254_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:54.615383Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 510564,
        "origin_y": 425295,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:18Z",
        "quality_category": "test",
        "rows": 3528,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.7,
        "sun_elevation": 24.4,
        "updated": "2018-07-10T07:10:01Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090404_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090404_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090404_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.7632791260901,
              7.3827845138046655
            ],
            [
              113.79661589085855,
              7.428758419002352
            ],
            [
              113.72792262932379,
              7.478936071094437
            ],
            [
              113.6945896597103,
              7.432956302491695
            ],
            [
              113.7632791260901,
              7.3827845138046655
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090404_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:04.79188Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3759,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 797442,
        "origin_y": 827628,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:17Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.4,
        "sun_elevation": 21.6,
        "updated": "2018-07-10T07:10:01Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090306_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090306_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090306_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.5866671971896,
              4.346446266108336
            ],
            [
              111.61950975829802,
              4.3924888856735045
            ],
            [
              111.55080139789364,
              4.442251963974996
            ],
            [
              111.51796240492114,
              4.396203145402894
            ],
            [
              111.5866671971896,
              4.346446266108336
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090306_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:06.039461Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 557466,
        "origin_y": 491037,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:16Z",
        "quality_category": "test",
        "rows": 3530,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.4,
        "sun_elevation": 23.9,
        "updated": "2018-07-10T07:10:00Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090354_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090354_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090354_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.36620273108792,
              6.83289385533723
            ],
            [
              113.39944349128402,
              6.87887740258503
            ],
            [
              113.33076700520957,
              6.928980641523312
            ],
            [
              113.2975294272408,
              6.8829919192550815
            ],
            [
              113.36620273108792,
              6.83289385533723
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090354_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:54.183802Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 753891,
        "origin_y": 766533,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:08:15Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.5,
        "sun_elevation": 22.1,
        "updated": "2018-07-10T07:10:00Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090358_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090358_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090358_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.51869859356778,
              7.0453160964188095
            ],
            [
              113.5520239026482,
              7.091259977802913
            ],
            [
              113.48339402929184,
              7.141465844443555
            ],
            [
              113.45007191179467,
              7.095513735757273
            ],
            [
              113.51869859356778,
              7.0453160964188095
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090358_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:58.263832Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 770637,
        "origin_y": 790128,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:44Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.5,
        "sun_elevation": 21.9,
        "updated": "2018-07-10T07:10:11Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091419_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091419_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091419_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.25194067163362,
              18.93928224175955
            ],
            [
              120.28907443767093,
              18.98282007329471
            ],
            [
              120.21995771825956,
              19.036418189167055
            ],
            [
              120.18283254508277,
              18.99286519605243
            ],
            [
              120.25194067163362,
              18.93928224175955
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091419_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:19.826343Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 203385,
        "origin_y": 2107176,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:43Z",
        "quality_category": "test",
        "rows": 3605,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13,
        "updated": "2018-07-10T07:07:43Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091414_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091414_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091414_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.0439089667475,
              18.69927402359094
            ],
            [
              120.08080855753123,
              18.742949520994294
            ],
            [
              120.01156993387322,
              18.796286708150983
            ],
            [
              119.97467675620241,
              18.752593229031625
            ],
            [
              120.0439089667475,
              18.69927402359094
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091414_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:14.930284Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3728,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 180999,
        "origin_y": 2080938,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:42Z",
        "quality_category": "test",
        "rows": 3602,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.2,
        "updated": "2018-07-10T07:07:42Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090301_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090301_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090301_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.40547197272392,
              4.089508260080315
            ],
            [
              111.43831078993523,
              4.1355340206354665
            ],
            [
              111.36963029039795,
              4.185312423159522
            ],
            [
              111.33679389024888,
              4.139284144578101
            ],
            [
              111.40547197272392,
              4.089508260080315
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090301_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:01.143427Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 537378,
        "origin_y": 462621,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:41Z",
        "quality_category": "test",
        "rows": 3530,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.5,
        "sun_elevation": 24.1,
        "updated": "2018-07-10T07:10:11Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090401_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090401_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090401_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.63966317748218,
              7.211055258666621
            ],
            [
              113.67301285286973,
              7.2570033637664375
            ],
            [
              113.6043698375961,
              7.3072228856525125
            ],
            [
              113.5710237117536,
              7.26126962324072
            ],
            [
              113.63966317748218,
              7.211055258666621
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090401_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:01.527856Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 783903,
        "origin_y": 808545,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:39Z",
        "quality_category": "test",
        "rows": 3541,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.4,
        "sun_elevation": 21.8,
        "updated": "2018-07-10T07:10:09Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090346_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090346_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090346_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.06822146038564,
              6.4219042308819905
            ],
            [
              113.10140460739542,
              6.467892845456024
            ],
            [
              113.03273546116905,
              6.51796035140011
            ],
            [
              112.99955600888529,
              6.471963349918523
            ],
            [
              113.06822146038564,
              6.4219042308819905
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090346_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:46.023742Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 721134,
        "origin_y": 720915,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:38Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.7,
        "sun_elevation": 22.4,
        "updated": "2018-07-10T07:10:09Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091431_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091431_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091431_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.71964517553513,
              19.513946866921934
            ],
            [
              120.75694506628444,
              19.55744630214403
            ],
            [
              120.68764724982236,
              19.611107427636686
            ],
            [
              120.65035278584254,
              19.56758912150356
            ],
            [
              120.71964517553513,
              19.513946866921934
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091431_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:31.250484Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 253494,
        "origin_y": 2170092,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:37Z",
        "quality_category": "test",
        "rows": 3602,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.5,
        "updated": "2018-07-10T07:07:37Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091139_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091139_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091139_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.88324444921727,
              10.78344367768862
            ],
            [
              113.91753410984508,
              10.82826231457858
            ],
            [
              113.84901539312379,
              10.879592647681736
            ],
            [
              113.81473044631491,
              10.83476530487783
            ],
            [
              113.88324444921727,
              10.78344367768862
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091139_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:39.072552Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 807777,
        "origin_y": 1204131,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:35Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.7,
        "updated": "2018-07-10T07:07:35Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091356_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091356_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091356_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.30535799659492,
              17.793705538661772
            ],
            [
              119.34194199879691,
              17.837493178432567
            ],
            [
              119.27288441111092,
              17.890639064510086
            ],
            [
              119.23630831231895,
              17.84683446705383
            ],
            [
              119.30535799659492,
              17.793705538661772
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091356_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:56.978067Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 736992,
        "origin_y": 1979556,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:34Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14,
        "updated": "2018-07-10T07:07:34Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090134_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090134_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090134_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              108.2175695877579,
              -0.41406768975897196
            ],
            [
              108.24998270035023,
              -0.36802313987252755
            ],
            [
              108.18103453850557,
              -0.31866686499240016
            ],
            [
              108.1486212901932,
              -0.3647112604924361
            ],
            [
              108.2175695877579,
              -0.41406768975897196
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090134_0b09",
      "properties": {
        "acquired": "2016-03-30T09:01:34.646872Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3765,
        "epsg_code": 32749,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 182586,
        "origin_y": 9964737,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:34Z",
        "quality_category": "test",
        "rows": 3520,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 274.7,
        "sun_elevation": 27.4,
        "updated": "2018-07-10T07:07:34Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091434_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091434_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091434_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.85473098300317,
              19.665331333821868
            ],
            [
              120.89217321195206,
              19.708752607951986
            ],
            [
              120.82293737415031,
              19.76256649474843
            ],
            [
              120.78550204621321,
              19.719129422807654
            ],
            [
              120.85473098300317,
              19.665331333821868
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091434_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:34.514525Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3724,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 267897,
        "origin_y": 2186676,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:33Z",
        "quality_category": "test",
        "rows": 3604,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.3,
        "updated": "2018-07-10T07:07:33Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091327_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091327_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091327_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.11600089679362,
              16.297069662889353
            ],
            [
              118.15198957846503,
              16.341114840212306
            ],
            [
              118.08308490586785,
              16.393798248577756
            ],
            [
              118.04710148680627,
              16.34974586682471
            ],
            [
              118.11600089679362,
              16.297069662889353
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091327_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:27.601722Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 611838,
        "origin_y": 1812807,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:33Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.2,
        "updated": "2018-07-10T07:07:33Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091126_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091126_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091126_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.39265157952647,
              10.115643013925807
            ],
            [
              113.42685171034509,
              10.16049319434351
            ],
            [
              113.35842993835084,
              10.211792823971413
            ],
            [
              113.32423745591758,
              10.16693411517076
            ],
            [
              113.39265157952647,
              10.115643013925807
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091126_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:26.016423Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 754659,
        "origin_y": 1129773,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:32Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.3,
        "updated": "2018-07-10T07:07:32Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090340_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090340_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090340_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.85588403260995,
              6.12261194984964
            ],
            [
              112.88899088692675,
              6.168625844864913
            ],
            [
              112.8202959408349,
              6.218612167474143
            ],
            [
              112.78719241766753,
              6.1725908098787565
            ],
            [
              112.85588403260995,
              6.12261194984964
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090340_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:40.311701Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 697755,
        "origin_y": 687720,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:32Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.8,
        "sun_elevation": 22.6,
        "updated": "2018-07-10T07:10:06Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090341_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090341_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090341_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.91635018292078,
              6.211217532282986
            ],
            [
              112.94953303935596,
              6.257184934278662
            ],
            [
              112.8809042288397,
              6.307276760002838
            ],
            [
              112.8477248861051,
              6.261300988668488
            ],
            [
              112.91635018292078,
              6.211217532282986
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090341_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:41.943713Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 704421,
        "origin_y": 697548,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:28Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.7,
        "sun_elevation": 22.5,
        "updated": "2018-07-10T07:10:05Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090319_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090319_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090319_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.06941556023327,
              5.025370719789291
            ],
            [
              112.10234843931791,
              5.071406125232188
            ],
            [
              112.03364677644446,
              5.121244070120613
            ],
            [
              112.00071737772197,
              5.075201659833604
            ],
            [
              112.06941556023327,
              5.025370719789291
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090319_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:19.095551Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 610926,
        "origin_y": 566160,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:07:27Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.2,
        "sun_elevation": 23.4,
        "updated": "2018-07-10T07:10:04Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091237_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091237_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091237_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.11363754795002,
              13.743821344032252
            ],
            [
              116.14873627344397,
              13.788261641930891
            ],
            [
              116.08003006438618,
              13.840239321951591
            ],
            [
              116.04493748847689,
              13.795786839487793
            ],
            [
              116.11363754795002,
              13.743821344032252
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091237_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:37.009156Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 396765,
        "origin_y": 1530249,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:55Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17.3,
        "updated": "2018-07-10T07:06:55Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091259_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091259_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091259_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.01655467128616,
              14.914693338890165
            ],
            [
              117.05200989038863,
              14.958977509336084
            ],
            [
              116.98318694477307,
              15.011220436279865
            ],
            [
              116.94773883612103,
              14.96692180067553
            ],
            [
              117.01655467128616,
              14.914693338890165
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091259_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:59.857407Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 494379,
        "origin_y": 1659570,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:51Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 16.4,
        "updated": "2018-07-10T07:06:51Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091405_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091405_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091405_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.64151207016474,
              18.208997491735776
            ],
            [
              119.67824281630928,
              18.252728999530486
            ],
            [
              119.60911219154534,
              18.30596830525276
            ],
            [
              119.57238803855527,
              18.26221926488023
            ],
            [
              119.64151207016474,
              18.208997491735776
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091405_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:05.138164Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 771987,
        "origin_y": 2026011,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:50Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.6,
        "updated": "2018-07-10T07:06:50Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091258_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091258_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091258_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.95374515358486,
              14.828443939562112
            ],
            [
              116.98924461438187,
              14.872687811467706
            ],
            [
              116.92051319895246,
              14.92501472217841
            ],
            [
              116.88502111301486,
              14.880758448780359
            ],
            [
              116.95374515358486,
              14.828443939562112
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091258_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:58.225389Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 487632,
        "origin_y": 1650036,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:49Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 16.5,
        "updated": "2018-07-10T07:06:49Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091339_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091339_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091339_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.61124344185538,
              16.92532626955942
            ],
            [
              118.64747985819045,
              16.96926145902316
            ],
            [
              118.57851773374857,
              17.022141240279517
            ],
            [
              118.5422892596217,
              16.97819317941898
            ],
            [
              118.61124344185538,
              16.92532626955942
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091339_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:39.841864Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 664200,
        "origin_y": 1882683,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:48Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.7,
        "updated": "2018-07-10T07:06:48Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090348_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090348_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090348_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.15222541831508,
              6.539966787282671
            ],
            [
              113.18546816387705,
              6.585916504657296
            ],
            [
              113.11685431101172,
              6.636060869662526
            ],
            [
              113.08361419202576,
              6.590102833317674
            ],
            [
              113.15222541831508,
              6.539966787282671
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090348_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:48.47176Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 730380,
        "origin_y": 734019,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:46Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.3,
        "updated": "2018-07-10T07:10:09Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090347_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090347_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090347_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.12219318872633,
              6.497111835820656
            ],
            [
              113.15540529792976,
              6.543079101851012
            ],
            [
              113.08676692642824,
              6.593181993786994
            ],
            [
              113.05355744309942,
              6.547206672930939
            ],
            [
              113.12219318872633,
              6.497111835820656
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090347_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:47.655754Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 727074,
        "origin_y": 729261,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:38Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.3,
        "updated": "2018-07-10T07:10:08Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091419_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091419_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091419_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.21426336927178,
              18.90343890221474
            ],
            [
              120.25130922783471,
              18.947035485401308
            ],
            [
              120.18211223358617,
              19.00052090194926
            ],
            [
              120.14507352299484,
              18.95690611983474
            ],
            [
              120.21426336927178,
              18.90343890221474
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091419_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:19.010333Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3727,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 199341,
        "origin_y": 2103264,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:37Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13,
        "updated": "2018-07-10T07:06:37Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091427_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091427_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091427_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.58837971382802,
              19.349411471354472
            ],
            [
              120.62562648404837,
              19.39292636458154
            ],
            [
              120.55637430474486,
              19.446560812110086
            ],
            [
              120.51913509347425,
              19.40302872859818
            ],
            [
              120.58837971382802,
              19.349411471354472
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091427_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:27.986444Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3725,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 239460,
        "origin_y": 2152062,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:35Z",
        "quality_category": "test",
        "rows": 3602,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.6,
        "updated": "2018-07-10T07:06:35Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090357_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090357_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090357_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.48548189092325,
              7.001581958212152
            ],
            [
              113.51878235772563,
              7.047540850334041
            ],
            [
              113.45013269157016,
              7.097715598844293
            ],
            [
              113.41683458307365,
              7.051748384331325
            ],
            [
              113.48548189092325,
              7.001581958212152
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090357_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:57.447826Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 766989,
        "origin_y": 785268,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:35Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.5,
        "sun_elevation": 21.9,
        "updated": "2018-07-10T07:10:07Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090400_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090400_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090400_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.61028960701145,
              7.170914540714644
            ],
            [
              113.64360089276099,
              7.216883591400298
            ],
            [
              113.57492801855004,
              7.267050414841832
            ],
            [
              113.5416202402123,
              7.221075970875779
            ],
            [
              113.61028960701145,
              7.170914540714644
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090400_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:00.71185Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3759,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 780678,
        "origin_y": 804081,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:06:34Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.4,
        "sun_elevation": 21.8,
        "updated": "2018-07-10T07:10:07Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090310_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090310_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090310_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.73776250314627,
              4.554347792431036
            ],
            [
              111.77066146410516,
              4.600369307950268
            ],
            [
              111.7019888238572,
              4.650198241869274
            ],
            [
              111.66909255492908,
              4.604174617478373
            ],
            [
              111.73776250314627,
              4.554347792431036
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090310_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:10.119488Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 574215,
        "origin_y": 514038,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:52Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.3,
        "sun_elevation": 23.8,
        "updated": "2018-07-10T07:09:59Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090259_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090259_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090259_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.34431139720587,
              4.004769459026903
            ],
            [
              111.37714882828642,
              4.050789209518996
            ],
            [
              111.30847694607732,
              4.100573009808863
            ],
            [
              111.27564137653695,
              4.05455068242052
            ],
            [
              111.34431139720587,
              4.004769459026903
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090259_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:59.511416Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 530595,
        "origin_y": 453252,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:51Z",
        "quality_category": "test",
        "rows": 3530,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.6,
        "sun_elevation": 24.2,
        "updated": "2018-07-10T07:09:59Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091115_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091115_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091115_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.98814508761618,
              9.561465640749367
            ],
            [
              113.0222005204515,
              9.606387328621551
            ],
            [
              112.95359722501271,
              9.657319495982065
            ],
            [
              112.91954717087833,
              9.61239270942947
            ],
            [
              112.98814508761618,
              9.561465640749367
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091115_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:15.40832Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3759,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 710655,
        "origin_y": 1068141,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:50Z",
        "quality_category": "test",
        "rows": 3529,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.7,
        "sun_elevation": 20.7,
        "updated": "2018-07-10T07:04:50Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090356_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090356_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090356_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.45529949705924,
              6.96016415617391
            ],
            [
              113.4886077988155,
              7.006110609379907
            ],
            [
              113.41997928361829,
              7.056302811694171
            ],
            [
              113.38667277248136,
              7.010348032038747
            ],
            [
              113.45529949705924,
              6.96016415617391
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090356_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:56.63182Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 763677,
        "origin_y": 780669,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:49Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.5,
        "sun_elevation": 22,
        "updated": "2018-07-10T07:09:57Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091153_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091153_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091153_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.44238558168034,
              11.52891758431198
            ],
            [
              114.47688115568991,
              11.573634494898231
            ],
            [
              114.40834340572734,
              11.625144307591757
            ],
            [
              114.37385376841591,
              11.580419608723167
            ],
            [
              114.44238558168034,
              11.52891758431198
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091153_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:53.7607Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3747,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 213591,
        "origin_y": 1286394,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:48Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.1,
        "updated": "2018-07-10T07:04:48Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091118_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091118_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091118_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.1104246325839,
              9.738557465852324
            ],
            [
              113.14445898060174,
              9.783507395578066
            ],
            [
              113.07596310574068,
              9.834618641946305
            ],
            [
              113.04193312686377,
              9.789657812735912
            ],
            [
              113.1104246325839,
              9.738557465852324
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091118_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:18.672351Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 723972,
        "origin_y": 1087833,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:48Z",
        "quality_category": "test",
        "rows": 3535,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.6,
        "updated": "2018-07-10T07:04:48Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090359_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090359_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090359_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.58122160922554,
              7.129707532120892
            ],
            [
              113.6145466875743,
              7.175662475441361
            ],
            [
              113.54589703061586,
              7.225855081749913
            ],
            [
              113.512576157717,
              7.179894613531553
            ],
            [
              113.58122160922554,
              7.129707532120892
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090359_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:59.895844Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 777495,
        "origin_y": 799503,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:48Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.4,
        "sun_elevation": 21.8,
        "updated": "2018-07-10T07:09:57Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091411_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091411_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091411_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.91245137808247,
              18.53343263192376
            ],
            [
              119.94932541373441,
              18.577103930876532
            ],
            [
              119.88016151443817,
              18.630452487504677
            ],
            [
              119.84329492045103,
              18.586764928043397
            ],
            [
              119.91245137808247,
              18.53343263192376
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091411_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:11.666244Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 800085,
        "origin_y": 2062383,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:47Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.3,
        "updated": "2018-07-10T07:04:47Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091222_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091222_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091222_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.5459566549327,
              12.998244740947097
            ],
            [
              115.58082303113773,
              13.042790916803789
            ],
            [
              115.51216607688816,
              13.094577983075116
            ],
            [
              115.47730510050616,
              13.05002139335547
            ],
            [
              115.5459566549327,
              12.998244740947097
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091222_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:22.320998Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3742,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 334890,
        "origin_y": 1448070,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:46Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 18,
        "updated": "2018-07-10T07:04:46Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091135_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091135_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091135_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.76299423859855,
              10.619312687814466
            ],
            [
              113.79734018937037,
              10.664082202335166
            ],
            [
              113.72893196769854,
              10.71552221847268
            ],
            [
              113.69459311200349,
              10.670743140321823
            ],
            [
              113.76299423859855,
              10.619312687814466
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091135_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:35.808519Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 794790,
        "origin_y": 1185849,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:46Z",
        "quality_category": "test",
        "rows": 3540,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 19.9,
        "updated": "2018-07-10T07:04:46Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090131_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090131_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090131_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              108.09873757059326,
              -0.5833622647908172
            ],
            [
              108.13111434920927,
              -0.5372983997224186
            ],
            [
              108.06211944518728,
              -0.4879953663922621
            ],
            [
              108.0297430600656,
              -0.5340590600332055
            ],
            [
              108.09873757059326,
              -0.5833622647908172
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090131_0b09",
      "properties": {
        "acquired": "2016-03-30T09:01:31.382852Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3766,
        "epsg_code": 32749,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 169347,
        "origin_y": 9945993,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:46Z",
        "quality_category": "test",
        "rows": 3519,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 274.8,
        "sun_elevation": 27.5,
        "updated": "2018-07-10T07:04:46Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091149_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091149_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091149_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.29255637163742,
              11.330767836332448
            ],
            [
              114.32696391829131,
              11.375531768312992
            ],
            [
              114.25840158958091,
              11.426945916805098
            ],
            [
              114.22399914817842,
              11.382173322123535
            ],
            [
              114.29255637163742,
              11.330767836332448
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091149_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:49.680659Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3747,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 197025,
        "origin_y": 1264608,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:45Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.3,
        "updated": "2018-07-10T07:04:45Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091143_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091143_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091143_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.07352825289834,
              11.0352845667221
            ],
            [
              114.10789952759909,
              11.080058934930598
            ],
            [
              114.03939013624365,
              11.131468103040712
            ],
            [
              114.00502525155885,
              11.08668517384682
            ],
            [
              114.07352825289834,
              11.0352845667221
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091143_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:43.968601Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 172773,
        "origin_y": 1232133,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:44Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.5,
        "updated": "2018-07-10T07:04:45Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091125_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091125_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091125_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.36055104722264,
              10.071934060666122
            ],
            [
              113.39471779918385,
              10.116806276697702
            ],
            [
              113.32627238075992,
              10.168062766786178
            ],
            [
              113.29211251921089,
              10.123182699491121
            ],
            [
              113.36055104722264,
              10.071934060666122
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091125_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:25.200415Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3752,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 751173,
        "origin_y": 1124910,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:43Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.3,
        "updated": "2018-07-10T07:04:43Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090359_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090359_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090359_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.54976868989156,
              7.08741558726211
            ],
            [
              113.58305802885738,
              7.133379233764636
            ],
            [
              113.51439567389178,
              7.1835248314308995
            ],
            [
              113.48111013915319,
              7.13755297854194
            ],
            [
              113.54976868989156,
              7.08741558726211
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090359_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:59.079838Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 774042,
        "origin_y": 794802,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:43Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.5,
        "sun_elevation": 21.9,
        "updated": "2018-07-10T07:09:56Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091415_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091415_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091415_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.07956860758298,
              18.73888904975059
            ],
            [
              120.11652686498991,
              18.782527092006113
            ],
            [
              120.04733208593315,
              18.83593583149672
            ],
            [
              120.01038096380394,
              18.792280699724373
            ],
            [
              120.07956860758298,
              18.73888904975059
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091415_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:15.746293Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3728,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 184839,
        "origin_y": 2085267,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:42Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.1,
        "updated": "2018-07-10T07:04:42Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091141_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091141_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091141_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.97805718736518,
              10.908638543775838
            ],
            [
              114.01240860973222,
              10.953419775186635
            ],
            [
              113.9439189375797,
              11.004821326808331
            ],
            [
              113.90957265651012,
              10.960031967290863
            ],
            [
              113.97805718736518,
              10.908638543775838
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091141_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:41.520576Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 818022,
        "origin_y": 1218093,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:35Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.6,
        "updated": "2018-07-10T07:04:35Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091358_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091358_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091358_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.37763578831544,
              17.875339166490622
            ],
            [
              119.41427472577026,
              17.919094717059053
            ],
            [
              119.34523881204223,
              17.972295457754253
            ],
            [
              119.3086073062486,
              17.928526043517692
            ],
            [
              119.37763578831544,
              17.875339166490622
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091358_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:58.610086Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 744546,
        "origin_y": 1988691,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:34Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.9,
        "updated": "2018-07-10T07:04:35Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091351_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091351_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091351_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.07381962820494,
              17.509723506533874
            ],
            [
              119.11024292680646,
              17.553589433641275
            ],
            [
              119.04117185712428,
              17.606583454773173
            ],
            [
              119.00475414423566,
              17.562701940240903
            ],
            [
              119.07381962820494,
              17.509723506533874
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091351_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:51.265999Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 712779,
        "origin_y": 1947828,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:34Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.2,
        "updated": "2018-07-10T07:04:34Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091330_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091330_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091330_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.22011049701781,
              16.435911392641895
            ],
            [
              118.25610298568301,
              16.47996499276144
            ],
            [
              118.18713165310108,
              16.53261886225946
            ],
            [
              118.15114603773004,
              16.488553424279182
            ],
            [
              118.22011049701781,
              16.435911392641895
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091330_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:30.04975Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 622866,
        "origin_y": 1828227,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:32Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.1,
        "updated": "2018-07-10T07:04:32Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091353_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091353_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091353_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.17054387363243,
              17.628672557824597
            ],
            [
              119.20701192517899,
              17.67252443586256
            ],
            [
              119.13791660646191,
              17.725549210822976
            ],
            [
              119.10145573729694,
              17.68168088752714
            ],
            [
              119.17054387363243,
              17.628672557824597
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091353_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:53.714028Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 722901,
        "origin_y": 1961112,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:31Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.1,
        "updated": "2018-07-10T07:04:31Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091255_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091255_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091255_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.85469396663616,
              14.701340581329543
            ],
            [
              116.8900479082241,
              14.745678784407415
            ],
            [
              116.82121113679213,
              14.79782102424522
            ],
            [
              116.7858629815603,
              14.753471598629835
            ],
            [
              116.85469396663616,
              14.701340581329543
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091255_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:55.777362Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 476952,
        "origin_y": 1635972,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:31Z",
        "quality_category": "test",
        "rows": 3558,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 16.6,
        "updated": "2018-07-10T07:04:31Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091256_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091256_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091256_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.8888759097393,
              14.739280563586867
            ],
            [
              116.92433962907266,
              14.783542847178841
            ],
            [
              116.85561034536443,
              14.83583689501022
            ],
            [
              116.8201530837551,
              14.791565291287219
            ],
            [
              116.8888759097393,
              14.739280563586867
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091256_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:56.593371Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 480645,
        "origin_y": 1640175,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:30Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 16.5,
        "updated": "2018-07-10T07:04:30Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090330_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090330_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090330_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.49090746688779,
              5.613235030527607
            ],
            [
              112.52395349484618,
              5.65924469461929
            ],
            [
              112.45528376771425,
              5.709193883981869
            ],
            [
              112.42223985359571,
              5.663180585941955
            ],
            [
              112.49090746688779,
              5.613235030527607
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090330_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:30.519631Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.07,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 657507,
        "origin_y": 631263,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:30Z",
        "quality_category": "test",
        "rows": 3534,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.9,
        "sun_elevation": 23,
        "updated": "2018-07-10T07:10:12Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091345_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091345_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091345_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.84232803423507,
              17.215645079555344
            ],
            [
              118.87874828244499,
              17.259479537847557
            ],
            [
              118.80983682628943,
              17.31254836555424
            ],
            [
              118.77342503681831,
              17.268699457702024
            ],
            [
              118.84232803423507,
              17.215645079555344
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091345_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:45.553931Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 688521,
        "origin_y": 1915038,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:29Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.4,
        "updated": "2018-07-10T07:04:29Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090349_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090349_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090349_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.18367687310078,
              6.583013607325342
            ],
            [
              113.21689556065,
              6.628985147505924
            ],
            [
              113.14824633545177,
              6.679087481659987
            ],
            [
              113.11503080855441,
              6.633107517541606
            ],
            [
              113.18367687310078,
              6.583013607325342
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090349_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:49.287766Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 733836,
        "origin_y": 738792,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:29Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.3,
        "updated": "2018-07-10T07:10:11Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091340_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091340_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091340_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.64902052097776,
              16.97521677439463
            ],
            [
              118.68525290224309,
              17.01915745631731
            ],
            [
              118.61626278975707,
              17.072018326357142
            ],
            [
              118.58003845651717,
              17.028063421947525
            ],
            [
              118.64902052097776,
              16.97521677439463
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091340_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:40.657873Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 668175,
        "origin_y": 1888236,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:28Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.6,
        "updated": "2018-07-10T07:04:28Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091127_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091127_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091127_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.45062915950066,
              10.195988414546816
            ],
            [
              113.48480629933769,
              10.24085818854443
            ],
            [
              113.41633932474276,
              10.29211250922354
            ],
            [
              113.38216725077332,
              10.247235167173768
            ],
            [
              113.45062915950066,
              10.195988414546816
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091127_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:27.648439Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 760944,
        "origin_y": 1138710,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:28Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20.2,
        "updated": "2018-07-10T07:04:28Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091341_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091341_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091341_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.68180701363663,
              17.01608096017963
            ],
            [
              118.71808264631235,
              17.059994704278214
            ],
            [
              118.64911995651649,
              17.112907577848286
            ],
            [
              118.61285256182525,
              17.06897951274115
            ],
            [
              118.68180701363663,
              17.01608096017963
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091341_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:41.473883Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 671631,
        "origin_y": 1892790,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:04:00Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.6,
        "updated": "2018-07-10T07:04:00Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091325_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091325_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091325_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.02366932020058,
              16.176713099663313
            ],
            [
              118.05965798192217,
              16.220742339097054
            ],
            [
              117.99082145558229,
              16.273456269241667
            ],
            [
              117.95483812990786,
              16.229421231498755
            ],
            [
              118.02366932020058,
              16.176713099663313
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091325_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:25.153693Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 602046,
        "origin_y": 1799442,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:59Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.3,
        "updated": "2018-07-10T07:03:59Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090350_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090350_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090350_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.24498284749916,
              6.665085923389989
            ],
            [
              113.27819572375319,
              6.711070653805686
            ],
            [
              113.20952328154398,
              6.761153670501943
            ],
            [
              113.17631372141344,
              6.715161062606011
            ],
            [
              113.24498284749916,
              6.665085923389989
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090350_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:50.919778Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 740574,
        "origin_y": 747900,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:48Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.2,
        "updated": "2018-07-10T07:09:58Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090329_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090329_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090329_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.45979572674652,
              5.572405729564808
            ],
            [
              112.49283304455402,
              5.618415979159787
            ],
            [
              112.42416065548521,
              5.668357915218119
            ],
            [
              112.39112555392937,
              5.622340690220852
            ],
            [
              112.45979572674652,
              5.572405729564808
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090329_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:29.703625Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 654072,
        "origin_y": 626739,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:47Z",
        "quality_category": "test",
        "rows": 3534,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272,
        "sun_elevation": 23,
        "updated": "2018-07-10T07:09:58Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090258_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090258_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090258_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.31181062969297,
              3.9601856492997505
            ],
            [
              111.34459480128724,
              4.006243537808413
            ],
            [
              111.27586063239492,
              4.0559476585601955
            ],
            [
              111.24308303995895,
              4.0098843207604125
            ],
            [
              111.31181062969297,
              3.9601856492997505
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090258_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:58.695411Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 526983,
        "origin_y": 448317,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:46Z",
        "quality_category": "test",
        "rows": 3528,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.6,
        "sun_elevation": 24.2,
        "updated": "2018-07-10T07:10:00Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090248_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090248_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090248_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.92420112860047,
              3.4136318499324902
            ],
            [
              110.95691512671794,
              3.4596945818527773
            ],
            [
              110.8881652904037,
              3.5093348141130623
            ],
            [
              110.85545440584414,
              3.4632665946749235
            ],
            [
              110.92420112860047,
              3.4136318499324902
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090248_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:48.087339Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 483942,
        "origin_y": 387894,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:45Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.8,
        "sun_elevation": 24.6,
        "updated": "2018-07-10T07:09:59Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091239_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091239_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091239_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.21515053269613,
              13.870045174311045
            ],
            [
              116.25030692415189,
              13.914451919366693
            ],
            [
              116.1816175527874,
              13.966486646502092
            ],
            [
              116.14646719665505,
              13.922070143579123
            ],
            [
              116.21515053269613,
              13.870045174311045
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091239_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:39.457183Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 407790,
        "origin_y": 1544175,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:44Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17.2,
        "updated": "2018-07-10T07:03:44Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090350_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090350_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090350_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.21469467061046,
              6.623608253631004
            ],
            [
              113.24790654922954,
              6.669589222016031
            ],
            [
              113.17924142060875,
              6.719675749343072
            ],
            [
              113.14603307039786,
              6.673686716650703
            ],
            [
              113.21469467061046,
              6.623608253631004
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090350_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:50.103772Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 737244,
        "origin_y": 743298,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:44Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.2,
        "updated": "2018-07-10T07:09:59Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091409_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091409_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091409_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.8125275935234,
              18.408407909242136
            ],
            [
              119.84935935235723,
              18.452093683313265
            ],
            [
              119.78022346047949,
              18.505417398260022
            ],
            [
              119.74339948472765,
              18.461716820369013
            ],
            [
              119.8125275935234,
              18.408407909242136
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091409_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:09.218214Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 789747,
        "origin_y": 2048367,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:43Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.4,
        "updated": "2018-07-10T07:03:43Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091407_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091407_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091407_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.74424747676741,
              18.32561255249074
            ],
            [
              119.78108084478191,
              18.3692849910449
            ],
            [
              119.71200003763956,
              18.42263634816279
            ],
            [
              119.67517344704883,
              18.378949578766033
            ],
            [
              119.74424747676741,
              18.32561255249074
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091407_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:07.586194Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 782670,
        "origin_y": 2039091,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:43Z",
        "quality_category": "test",
        "rows": 3566,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.5,
        "updated": "2018-07-10T07:03:43Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090341_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090341_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090341_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.88123843078651,
              6.161753370809511
            ],
            [
              112.914385447823,
              6.207745231381988
            ],
            [
              112.84572221076748,
              6.2577882556415005
            ],
            [
              112.81257870355527,
              6.211788164666786
            ],
            [
              112.88123843078651,
              6.161753370809511
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090341_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:41.127707Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 700551,
        "origin_y": 692061,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:43Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.8,
        "sun_elevation": 22.6,
        "updated": "2018-07-10T07:09:58Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091402_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091402_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091402_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.54045450154959,
              18.08771471170898
            ],
            [
              119.5771008639455,
              18.131491776210808
            ],
            [
              119.50794516450475,
              18.184645184930513
            ],
            [
              119.47130516948404,
              18.140849654595023
            ],
            [
              119.54045450154959,
              18.08771471170898
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091402_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:02.690135Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 761475,
        "origin_y": 2012427,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:41Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.7,
        "updated": "2018-07-10T07:03:41Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090307_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090307_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090307_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.6440412676968,
              4.432125988742621
            ],
            [
              111.67687977255305,
              4.478177803005233
            ],
            [
              111.6081578152811,
              4.527928630058708
            ],
            [
              111.5753214203438,
              4.481870074877195
            ],
            [
              111.6440412676968,
              4.432125988742621
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090307_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:07.671471Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 563823,
        "origin_y": 500511,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:41Z",
        "quality_category": "test",
        "rows": 3530,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.4,
        "sun_elevation": 23.9,
        "updated": "2018-07-10T07:09:57Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091440_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091440_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091440_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              121.10243127049995,
              19.958361844578455
            ],
            [
              121.14005544620092,
              20.001690569756555
            ],
            [
              121.07083916701708,
              20.055669114260166
            ],
            [
              121.03322360092481,
              20.012323234772424
            ],
            [
              121.10243127049995,
              19.958361844578455
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091440_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:40.226596Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3723,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 294249,
        "origin_y": 2218809,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:40Z",
        "quality_category": "test",
        "rows": 3605,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.1,
        "updated": "2018-07-10T07:03:40Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091257_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091257_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091257_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.92086003129032,
              14.782735622104893
            ],
            [
              116.95634671872797,
              14.826984696030266
            ],
            [
              116.88762352916842,
              14.879302990348213
            ],
            [
              116.8521433726973,
              14.835043577969195
            ],
            [
              116.92086003129032,
              14.782735622104893
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091257_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:57.40938Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 484092,
        "origin_y": 1644981,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:40Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 16.5,
        "updated": "2018-07-10T07:03:40Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091400_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091400_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091400_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.43457463448999,
              17.957877976646376
            ],
            [
              119.471154886881,
              18.00168955677421
            ],
            [
              119.40199584566248,
              18.05478471907748
            ],
            [
              119.36542158214282,
              18.01095532599973
            ],
            [
              119.43457463448999,
              17.957877976646376
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091400_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:00.242106Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 750450,
        "origin_y": 1997901,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:38Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.8,
        "updated": "2018-07-10T07:03:38Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091352_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091352_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091352_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.10791946620195,
              17.552500286857327
            ],
            [
              119.14435890269874,
              17.596359875252567
            ],
            [
              119.07528059054994,
              17.649365252081132
            ],
            [
              119.03884760378298,
              17.605489113920115
            ],
            [
              119.10791946620195,
              17.552500286857327
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091352_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:52.082008Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 716349,
        "origin_y": 1952604,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:38Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.2,
        "updated": "2018-07-10T07:03:38Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091201_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091201_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091201_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.75196358836197,
              11.955598706429855
            ],
            [
              114.78646592153561,
              12.000335271178418
            ],
            [
              114.71778932578982,
              12.051783898181016
            ],
            [
              114.6832901744615,
              12.007033678912856
            ],
            [
              114.75196358836197,
              11.955598706429855
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091201_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:01.920784Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.1,
        "columns": 3746,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 247746,
        "origin_y": 1333314,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:38Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.8,
        "updated": "2018-07-10T07:03:38Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090403_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090403_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090403_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.73360526949152,
              7.339765402229237
            ],
            [
              113.76692257150123,
              7.385748997677821
            ],
            [
              113.69821757764844,
              7.435902182653804
            ],
            [
              113.66490435548808,
              7.389913427216806
            ],
            [
              113.73360526949152,
              7.339765402229237
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090403_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:03.975874Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3759,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 794193,
        "origin_y": 822846,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:32Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.4,
        "sun_elevation": 21.7,
        "updated": "2018-07-10T07:09:55Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090353_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090353_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090353_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.33635259701293,
              6.791091811429989
            ],
            [
              113.36961159078011,
              6.8370579481270966
            ],
            [
              113.3009634732126,
              6.8871938900133385
            ],
            [
              113.26770784859698,
              6.841222602085642
            ],
            [
              113.33635259701293,
              6.791091811429989
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090353_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:53.367796Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 750618,
        "origin_y": 761892,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:32Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.6,
        "sun_elevation": 22.1,
        "updated": "2018-07-10T07:09:56Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091159_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091159_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091159_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.66528274005766,
              11.82906783860744
            ],
            [
              114.6998301341404,
              11.873762794965986
            ],
            [
              114.63125155737859,
              11.92529732539705
            ],
            [
              114.59670973995009,
              11.880593307058614
            ],
            [
              114.66528274005766,
              11.82906783860744
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091159_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:59.472759Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3745,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 238194,
        "origin_y": 1319397,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:29Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.9,
        "updated": "2018-07-10T07:03:29Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091130_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091130_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091130_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.57357529877719,
              10.36268396582285
            ],
            [
              113.60776285351308,
              10.407554795346492
            ],
            [
              113.53925870629487,
              10.458798823084797
            ],
            [
              113.5050758323155,
              10.413920754510622
            ],
            [
              113.57357529877719,
              10.36268396582285
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091130_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:30.912471Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 774270,
        "origin_y": 1157259,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:03:29Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20.1,
        "updated": "2018-07-10T07:03:29Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090246_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090246_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090246_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.8576663781201,
              3.322886552032722
            ],
            [
              110.89036807298679,
              3.368953331978081
            ],
            [
              110.82161200599491,
              3.4185842890282534
            ],
            [
              110.78891262657483,
              3.3725119044850285
            ],
            [
              110.8576663781201,
              3.322886552032722
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090246_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:46.455328Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 476550,
        "origin_y": 377865,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:27Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.8,
        "sun_elevation": 24.7,
        "updated": "2018-07-10T07:09:16Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090244_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090244_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090244_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.76877226206959,
              3.194178264971137
            ],
            [
              110.80149612932641,
              3.2402224015238663
            ],
            [
              110.73277273771369,
              3.2898926954767442
            ],
            [
              110.70005357618994,
              3.2438465466379625
            ],
            [
              110.76877226206959,
              3.194178264971137
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090244_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:44.007312Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 466674,
        "origin_y": 363642,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:27Z",
        "quality_category": "test",
        "rows": 3528,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.9,
        "sun_elevation": 24.8,
        "updated": "2018-07-10T07:09:16Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091408_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091408_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091408_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.77790512629731,
              18.366711560537123
            ],
            [
              119.81473930897432,
              18.410389247682357
            ],
            [
              119.74563348516314,
              18.463729475025257
            ],
            [
              119.70880634773575,
              18.420037197119438
            ],
            [
              119.77790512629731,
              18.366711560537123
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091408_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:08.402204Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 786159,
        "origin_y": 2043696,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:25Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.5,
        "updated": "2018-07-10T07:01:25Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090252_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090252_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090252_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.10498639383486,
              3.670590817707582
            ],
            [
              111.13772235431058,
              3.7166571385389053
            ],
            [
              111.06897099159814,
              3.766311357094282
            ],
            [
              111.03624142748212,
              3.720239357366952
            ],
            [
              111.10498639383486,
              3.670590817707582
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090252_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:52.983372Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 504024,
        "origin_y": 416298,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:25Z",
        "quality_category": "test",
        "rows": 3528,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.7,
        "sun_elevation": 24.4,
        "updated": "2018-07-10T07:09:15Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091422_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091422_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091422_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.35317704470799,
              19.0608484271612
            ],
            [
              120.39039979866466,
              19.104337875825532
            ],
            [
              120.32131018660515,
              19.158026757278453
            ],
            [
              120.28409582993771,
              19.11452221849382
            ],
            [
              120.35317704470799,
              19.0608484271612
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091422_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:22.274373Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 214260,
        "origin_y": 2120478,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:24Z",
        "quality_category": "test",
        "rows": 3606,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 12.9,
        "updated": "2018-07-10T07:01:24Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090308_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090308_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090308_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.67012391650582,
              4.466387164304343
            ],
            [
              111.70298499041931,
              4.512429323412977
            ],
            [
              111.6342785978248,
              4.562210731417323
            ],
            [
              111.6014199345928,
              4.516162331924727
            ],
            [
              111.67012391650582,
              4.466387164304343
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090308_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:08.487477Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 566715,
        "origin_y": 504306,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:23Z",
        "quality_category": "test",
        "rows": 3531,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.4,
        "sun_elevation": 23.8,
        "updated": "2018-07-10T07:09:14Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091126_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091126_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091126_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.42372641101018,
              10.157716913812042
            ],
            [
              113.45794470423726,
              10.202555886115846
            ],
            [
              113.38953106715296,
              10.253876489669008
            ],
            [
              113.35532048600753,
              10.209028779739873
            ],
            [
              113.42372641101018,
              10.157716913812042
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091126_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:26.83243Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3752,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 758034,
        "origin_y": 1134456,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:22Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.2,
        "updated": "2018-07-10T07:01:22Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090337_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090337_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090337_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.76510433922982,
              6.0001939362377215
            ],
            [
              112.79821680145473,
              6.046191448597092
            ],
            [
              112.72954978364336,
              6.0962005692725345
            ],
            [
              112.69644105652186,
              6.050194751794545
            ],
            [
              112.76510433922982,
              6.0001939362377215
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090337_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:37.863683Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 687753,
        "origin_y": 674148,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:21Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.8,
        "sun_elevation": 22.7,
        "updated": "2018-07-10T07:09:14Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091343_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091343_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091343_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.78202980316117,
              17.141470773980213
            ],
            [
              118.81839567756866,
              17.185333178661146
            ],
            [
              118.74946672464662,
              17.238343187283824
            ],
            [
              118.71310990016195,
              17.194465447941873
            ],
            [
              118.78202980316117,
              17.141470773980213
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091343_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:43.921912Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 682182,
        "origin_y": 1906764,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:20Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.5,
        "updated": "2018-07-10T07:01:20Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090321_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090321_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090321_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.15322129130946,
              5.1440886250962174
            ],
            [
              112.1861728226525,
              5.190124574459211
            ],
            [
              112.11747003947629,
              5.239979625638546
            ],
            [
              112.0845212384592,
              5.193936803127543
            ],
            [
              112.15322129130946,
              5.1440886250962174
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090321_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:21.543568Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 620193,
        "origin_y": 579303,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:20Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.1,
        "sun_elevation": 23.3,
        "updated": "2018-07-10T07:09:14Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091245_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091245_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091245_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.43802440839565,
              14.167239227380305
            ],
            [
              116.47322255884416,
              14.2116408388576
            ],
            [
              116.40444954608678,
              14.263673947170899
            ],
            [
              116.36925810592491,
              14.219258888559532
            ],
            [
              116.43802440839565,
              14.167239227380305
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091245_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:45.169245Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.06,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 431949,
        "origin_y": 1576971,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:19Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17,
        "updated": "2018-07-10T07:01:19Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091225_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091225_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091225_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.6735109974868,
              13.164738840354648
            ],
            [
              115.7084207960348,
              13.209266668600401
            ],
            [
              115.63974604059341,
              13.26108424491167
            ],
            [
              115.6048419232493,
              13.216546171439848
            ],
            [
              115.6735109974868,
              13.164738840354648
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091225_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:25.585033Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3741,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 348825,
        "origin_y": 1466412,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:19Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.8,
        "updated": "2018-07-10T07:01:19Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091316_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091316_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091316_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.69539030038139,
              15.779615254747707
            ],
            [
              117.73107764011961,
              15.823818467293586
            ],
            [
              117.66209782655129,
              15.876194003218346
            ],
            [
              117.62641675868859,
              15.831977219399631
            ],
            [
              117.69539030038139,
              15.779615254747707
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091316_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:16.9936Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 567078,
        "origin_y": 1755354,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:18Z",
        "quality_category": "test",
        "rows": 3558,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.7,
        "updated": "2018-07-10T07:01:18Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091129_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091129_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091129_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.5128396227465,
              10.27708547922694
            ],
            [
              113.54703249149819,
              10.32194863743513
            ],
            [
              113.47855933706009,
              10.373213455962185
            ],
            [
              113.44437131827702,
              10.328344082881593
            ],
            [
              113.5128396227465,
              10.27708547922694
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091129_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:29.280455Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 767694,
        "origin_y": 1147737,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:18Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20.1,
        "updated": "2018-07-10T07:01:18Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091348_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091348_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091348_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.94527531269966,
              17.344053771405473
            ],
            [
              118.9816729645529,
              17.38791838334011
            ],
            [
              118.91266642555354,
              17.440919357946605
            ],
            [
              118.87627644359092,
              17.397040250147118
            ],
            [
              118.94527531269966,
              17.344053771405473
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091348_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:48.00196Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 699321,
        "origin_y": 1929351,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:16Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.3,
        "updated": "2018-07-10T07:01:16Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091302_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091302_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091302_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.11005354267776,
              15.029033611965275
            ],
            [
              117.14559722122975,
              15.073267825003628
            ],
            [
              117.07681704624994,
              15.125612889302998
            ],
            [
              117.04128060464146,
              15.081366330470095
            ],
            [
              117.11005354267776,
              15.029033611965275
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091302_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:02.305434Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 504435,
        "origin_y": 1672221,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:16Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 16.3,
        "updated": "2018-07-10T07:01:16Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091234_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091234_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091234_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.01854900736606,
              13.617075254690253
            ],
            [
              116.05361209275695,
              13.661531433437883
            ],
            [
              115.98491900738235,
              13.713482439975945
            ],
            [
              115.94986217052735,
              13.669015384761078
            ],
            [
              116.01854900736606,
              13.617075254690253
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091234_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:34.561129Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 386427,
        "origin_y": 1516272,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:16Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.5,
        "updated": "2018-07-10T07:01:16Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091356_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091356_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091356_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.27271457122059,
              17.751250394930167
            ],
            [
              119.30931442752288,
              17.795020877727595
            ],
            [
              119.24030076250823,
              17.848201311828504
            ],
            [
              119.20370904279198,
              17.80441465250186
            ],
            [
              119.27271457122059,
              17.751250394930167
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091356_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:56.162057Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 733593,
        "origin_y": 1974816,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:15Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14,
        "updated": "2018-07-10T07:01:15Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091310_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091310_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091310_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.43258305667497,
              15.447134045183699
            ],
            [
              117.46823547567999,
              15.491327315081241
            ],
            [
              117.39938220454593,
              15.543734224177483
            ],
            [
              117.36373564603484,
              15.499526714002672
            ],
            [
              117.43258305667497,
              15.447134045183699
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091310_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:10.465526Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 539010,
        "origin_y": 1718508,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:14Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.9,
        "updated": "2018-07-10T07:01:14Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090354_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090354_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090354_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.39663063538411,
              6.878797966976118
            ],
            [
              113.42986117701663,
              6.924780485138486
            ],
            [
              113.36118105705029,
              6.974864380591549
            ],
            [
              113.32795364611466,
              6.928873261661707
            ],
            [
              113.39663063538411,
              6.878797966976118
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090354_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:54.999808Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 757230,
        "origin_y": 771624,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:13Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.5,
        "sun_elevation": 22,
        "updated": "2018-07-10T07:09:13Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091122_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091122_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091122_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.26575621216924,
              9.94494444328498
            ],
            [
              113.29987893273142,
              9.989842009043674
            ],
            [
              113.2314222111368,
              10.041052442851147
            ],
            [
              113.19730519440034,
              9.996147345080143
            ],
            [
              113.26575621216924,
              9.94494444328498
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091122_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:22.752391Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 740871,
        "origin_y": 1110783,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:12Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.4,
        "updated": "2018-07-10T07:01:12Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091240_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091240_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091240_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.24443267177834,
              13.9121986914791
            ],
            [
              116.27954131330823,
              13.956643535665433
            ],
            [
              116.2107802322878,
              14.008599627111662
            ],
            [
              116.17567659463029,
              13.964144200147045
            ],
            [
              116.24443267177834,
              13.9121986914791
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091240_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:40.273191Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 410964,
        "origin_y": 1548822,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:11Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 17.2,
        "updated": "2018-07-10T07:01:11Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090315_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090315_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090315_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.95005611377101,
              4.853793715566446
            ],
            [
              111.98294109813936,
              4.899849329297486
            ],
            [
              111.91421117201119,
              4.9496302375342776
            ],
            [
              111.88133038685673,
              4.903568326240374
            ],
            [
              111.95005611377101,
              4.853793715566446
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090315_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:15.831528Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3756,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 597717,
        "origin_y": 547167,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:10Z",
        "quality_category": "test",
        "rows": 3531,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.2,
        "sun_elevation": 23.6,
        "updated": "2018-07-10T07:09:11Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090333_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090333_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090333_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.61447037622962,
              5.784110406026286
            ],
            [
              112.64747432521676,
              5.830165617698872
            ],
            [
              112.57872754104172,
              5.880032684842197
            ],
            [
              112.54572777964302,
              5.833970530864763
            ],
            [
              112.61447037622962,
              5.784110406026286
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090333_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:33.783654Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 671136,
        "origin_y": 650190,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:01:09Z",
        "quality_category": "test",
        "rows": 3533,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.9,
        "sun_elevation": 22.9,
        "updated": "2018-07-10T07:09:11Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090114_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090114_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090114_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              107.47032803977363,
              -1.4750130519839229
            ],
            [
              107.50266964021064,
              -1.4289538655290859
            ],
            [
              107.43358155083544,
              -1.379698041068472
            ],
            [
              107.40124006677574,
              -1.425755947777535
            ],
            [
              107.47032803977363,
              -1.4750130519839229
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090114_0b09",
      "properties": {
        "acquired": "2016-03-30T09:01:14.246748Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3765,
        "epsg_code": 32748,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 767193,
        "origin_y": 9847365,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:25Z",
        "quality_category": "test",
        "rows": 3518,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 275.3,
        "sun_elevation": 28.1,
        "updated": "2018-07-10T07:00:25Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091146_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091146_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091146_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.16353772045542,
              11.164513878909197
            ],
            [
              114.19791091574733,
              11.209291743877023
            ],
            [
              114.12936456046516,
              11.260686167989947
            ],
            [
              114.0949948488398,
              11.215895955212343
            ],
            [
              114.16353772045542,
              11.164513878909197
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091146_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:46.416625Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 182751,
        "origin_y": 1246341,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:24Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.4,
        "updated": "2018-07-10T07:00:24Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091139_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091139_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091139_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.91655324799203,
              10.827744406026312
            ],
            [
              113.95090354281814,
              10.872521712102765
            ],
            [
              113.88243713293855,
              10.923935109484459
            ],
            [
              113.84809253309297,
              10.879148436021033
            ],
            [
              113.91655324799203,
              10.827744406026312
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091139_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:39.88856Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3754,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 811380,
        "origin_y": 1209072,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:24Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.7,
        "updated": "2018-07-10T07:00:24Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091425_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091425_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091425_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.48540854493962,
              19.228210291259074
            ],
            [
              120.52264355031429,
              19.27171486577305
            ],
            [
              120.45345871553022,
              19.32537122569391
            ],
            [
              120.41623094008192,
              19.281849055491232
            ],
            [
              120.48540854493962,
              19.228210291259074
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091425_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:25.538413Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3725,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 228447,
        "origin_y": 2138799,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:23Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.7,
        "updated": "2018-07-10T07:00:24Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091405_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091405_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091405_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.67796981663524,
              18.248303917249487
            ],
            [
              119.71477778123297,
              18.29198422575938
            ],
            [
              119.64571301095222,
              18.345321990069106
            ],
            [
              119.60891310237437,
              18.301625150404202
            ],
            [
              119.67796981663524,
              18.248303917249487
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091405_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:05.954175Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 775788,
        "origin_y": 2030427,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:23Z",
        "quality_category": "test",
        "rows": 3566,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.6,
        "updated": "2018-07-10T07:00:23Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091150_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091150_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091150_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.31996891239734,
              11.367643423840569
            ],
            [
              114.35438247551461,
              11.4124060992064
            ],
            [
              114.28581397493679,
              11.463822836447667
            ],
            [
              114.25140489440055,
              11.419052177571123
            ],
            [
              114.31996891239734,
              11.367643423840569
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091150_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:50.496667Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3747,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 200058,
        "origin_y": 1268661,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:22Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.3,
        "updated": "2018-07-10T07:00:22Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091134_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091134_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091134_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.69714897994977,
              10.533778425290508
            ],
            [
              113.73140101281611,
              10.578610786123237
            ],
            [
              113.66291680083395,
              10.629925234417275
            ],
            [
              113.6286696007183,
              10.585083809471643
            ],
            [
              113.69714897994977,
              10.533778425290508
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091134_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:34.176503Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 787653,
        "origin_y": 1176312,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:22Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 19.9,
        "updated": "2018-07-10T07:00:22Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091201_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091201_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091201_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.72084122566748,
              11.912749962080511
            ],
            [
              114.75536964284186,
              11.957464830969709
            ],
            [
              114.68673736380929,
              12.008959916759123
            ],
            [
              114.6522122905032,
              11.964231657165664
            ],
            [
              114.72084122566748,
              11.912749962080511
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091201_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:01.104776Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3746,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 244320,
        "origin_y": 1328604,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:21Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.8,
        "updated": "2018-07-10T07:00:21Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091144_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091144_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091144_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.10296081876132,
              11.08107557771677
            ],
            [
              114.1373378715344,
              11.12584627748434
            ],
            [
              114.068821814171,
              11.177259786846358
            ],
            [
              114.03444936343384,
              11.13247689046146
            ],
            [
              114.10296081876132,
              11.08107557771677
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091144_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:44.784609Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 176040,
        "origin_y": 1237170,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:21Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.5,
        "updated": "2018-07-10T07:00:21Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090343_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090343_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090343_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.97796796447878,
              6.294063859915309
            ],
            [
              113.01115868777843,
              6.340034310210902
            ],
            [
              112.94252250141783,
              6.390127931331317
            ],
            [
              112.90933565625993,
              6.34414957930343
            ],
            [
              112.97796796447878,
              6.294063859915309
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090343_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:43.575724Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 711207,
        "origin_y": 706737,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:21Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.7,
        "sun_elevation": 22.5,
        "updated": "2018-07-10T07:09:55Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091207_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091207_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091207_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.97788405899017,
              12.24695687117691
            ],
            [
              115.01251663129867,
              12.291617958927064
            ],
            [
              114.94388378899991,
              12.34320291691865
            ],
            [
              114.90925634901839,
              12.298532277500092
            ],
            [
              114.97788405899017,
              12.24695687117691
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091207_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:07.632843Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.07,
        "columns": 3744,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 272610,
        "origin_y": 1365363,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:20Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.1,
        "sun_elevation": 18.6,
        "updated": "2018-07-10T07:00:20Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091323_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091323_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091323_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.95535592639352,
              16.10762963309616
            ],
            [
              117.99124447251958,
              16.15172106892737
            ],
            [
              117.92232846522154,
              16.204309119108945
            ],
            [
              117.8864454317944,
              16.1602048983184
            ],
            [
              117.95535592639352,
              16.10762963309616
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091323_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:23.521675Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 594768,
        "origin_y": 1791759,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:18Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.4,
        "updated": "2018-07-10T07:00:18Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091219_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091219_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091219_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.45300155304182,
              12.870924145417701
            ],
            [
              115.4878444651504,
              12.915478513812404
            ],
            [
              115.41921055014598,
              12.96725483963503
            ],
            [
              115.38437372492754,
              12.922691581140226
            ],
            [
              115.45300155304182,
              12.870924145417701
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091219_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:19.872972Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3742,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 324723,
        "origin_y": 1434048,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:18Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.1,
        "sun_elevation": 18.1,
        "updated": "2018-07-10T07:00:19Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091203_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091203_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091203_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.82009683474298,
              12.038148868566186
            ],
            [
              114.85470803316235,
              12.082810794235929
            ],
            [
              114.78612771945838,
              12.134403125185639
            ],
            [
              114.75152125546387,
              12.0897317230947
            ],
            [
              114.82009683474298,
              12.038148868566186
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091203_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:03.552801Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.07,
        "columns": 3744,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 255255,
        "origin_y": 1342395,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:17Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.7,
        "updated": "2018-07-10T07:00:17Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091148_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091148_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091148_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.22731813843423,
              11.245726138791754
            ],
            [
              114.26175675590972,
              11.290463220844627
            ],
            [
              114.19325495106014,
              11.341938441072726
            ],
            [
              114.1588220010939,
              11.29719188172073
            ],
            [
              114.22731813843423,
              11.245726138791754
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091148_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:48.048642Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 189813,
        "origin_y": 1255266,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:17Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.4,
        "updated": "2018-07-10T07:00:17Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091136_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091136_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091136_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.7921498059623,
              10.658421381884084
            ],
            [
              113.82650247163396,
              10.703187892430897
            ],
            [
              113.75809132199153,
              10.75463222176637
            ],
            [
              113.72374439552091,
              10.709857049893502
            ],
            [
              113.7921498059623,
              10.658421381884084
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091136_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:36.624527Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 797943,
        "origin_y": 1190205,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:17Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.8,
        "updated": "2018-07-10T07:00:17Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091206_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091206_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091206_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.94818371075448,
              12.206441153141672
            ],
            [
              114.98283017117859,
              12.251089538321482
            ],
            [
              114.91422680246761,
              12.302702258616364
            ],
            [
              114.87958637260955,
              12.258044095428874
            ],
            [
              114.94818371075448,
              12.206441153141672
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091206_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:06.816835Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3744,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 269346,
        "origin_y": 1360908,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:16Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.6,
        "updated": "2018-07-10T07:00:16Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091131_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091131_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091131_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.60549471263079,
              10.407077253389279
            ],
            [
              113.63970331877357,
              10.45193497832172
            ],
            [
              113.57120840476962,
              10.503203568518861
            ],
            [
              113.5370052279803,
              10.458337535133655
            ],
            [
              113.60549471263079,
              10.407077253389279
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091131_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:31.728479Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 777729,
        "origin_y": 1162203,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:16Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20,
        "updated": "2018-07-10T07:00:16Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090248_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090248_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090248_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.95514294725145,
              3.454853887616595
            ],
            [
              110.98782264778009,
              3.5009455543538897
            ],
            [
              110.91903275794786,
              3.550529472633403
            ],
            [
              110.8863583458604,
              3.5044357766559027
            ],
            [
              110.95514294725145,
              3.454853887616595
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090248_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:48.903345Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 487377,
        "origin_y": 392448,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:16Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.8,
        "sun_elevation": 24.6,
        "updated": "2018-07-10T07:09:21Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090344_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090344_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090344_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.00229970738027,
              6.328686172109104
            ],
            [
              113.03548689210919,
              6.374666013146141
            ],
            [
              112.96683610682906,
              6.424750505680942
            ],
            [
              112.93365221401746,
              6.378762761881435
            ],
            [
              113.00229970738027,
              6.328686172109104
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090344_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:44.39173Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 713883,
        "origin_y": 710577,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:15Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.7,
        "sun_elevation": 22.4,
        "updated": "2018-07-10T07:09:21Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091140_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091140_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091140_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.94700377743426,
              10.868102609796237
            ],
            [
              113.98133040899049,
              10.912899222736558
            ],
            [
              113.91282549754848,
              10.964270387526605
            ],
            [
              113.87850440414306,
              10.919464764386136
            ],
            [
              113.94700377743426,
              10.868102609796237
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091140_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:40.704568Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3754,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 814665,
        "origin_y": 1213572,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:14Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.7,
        "updated": "2018-07-10T07:00:14Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091439_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091439_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091439_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              121.06274884057783,
              19.915544294713975
            ],
            [
              121.10034266443277,
              19.95888611428752
            ],
            [
              121.03112387405591,
              20.012836828820685
            ],
            [
              120.99353748751336,
              19.969476849492313
            ],
            [
              121.06274884057783,
              19.915544294713975
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091439_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:39.410586Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3724,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 290037,
        "origin_y": 2214114,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:13Z",
        "quality_category": "test",
        "rows": 3604,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.1,
        "updated": "2018-07-10T07:00:13Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091130_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091130_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091130_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.5429915211138,
              10.32008615403671
            ],
            [
              113.57713530211089,
              10.364986704011654
            ],
            [
              113.50859511058974,
              10.416171379975948
            ],
            [
              113.47445600046146,
              10.37126399032258
            ],
            [
              113.5429915211138,
              10.32008615403671
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091130_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:30.096463Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 770955,
        "origin_y": 1152516,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:13Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20.1,
        "updated": "2018-07-10T07:00:13Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090253_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090253_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090253_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.13004524757574,
              3.7060131774031366
            ],
            [
              111.1627964365696,
              3.752074681402184
            ],
            [
              111.09405369506555,
              3.801749183076686
            ],
            [
              111.06130880088159,
              3.7556821701547425
            ],
            [
              111.13004524757574,
              3.7060131774031366
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090253_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:53.799378Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 506805,
        "origin_y": 420216,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:12Z",
        "quality_category": "test",
        "rows": 3528,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.7,
        "sun_elevation": 24.4,
        "updated": "2018-07-10T07:09:19Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091224_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091224_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091224_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.64278246235615,
              13.124222390662224
            ],
            [
              115.67767634078825,
              13.168758871687333
            ],
            [
              115.6089987831571,
              13.220560704699711
            ],
            [
              115.57411135064378,
              13.176013487900747
            ],
            [
              115.64278246235615,
              13.124222390662224
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091224_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:24.769024Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3742,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 345468,
        "origin_y": 1461948,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:11Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.9,
        "updated": "2018-07-10T07:00:11Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091154_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091154_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091154_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.47545726525972,
              11.578022746210543
            ],
            [
              114.50995235703319,
              11.622739109612729
            ],
            [
              114.44140358825797,
              11.67424126414354
            ],
            [
              114.4069129354839,
              11.629516141002078
            ],
            [
              114.47545726525972,
              11.578022746210543
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091154_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:54.576708Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3746,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 217248,
        "origin_y": 1291794,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:11Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.1,
        "updated": "2018-07-10T07:00:11Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090256_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090256_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090256_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.2247852122442,
              3.8386550855804162
            ],
            [
              111.25741690946248,
              3.88480749669293
            ],
            [
              111.18853940522891,
              3.934292202579143
            ],
            [
              111.15591091245285,
              3.8881338364307063
            ],
            [
              111.2247852122442,
              3.8386550855804162
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090256_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:56.247394Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 517308,
        "origin_y": 434868,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:08Z",
        "quality_category": "test",
        "rows": 3524,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.6,
        "sun_elevation": 24.3,
        "updated": "2018-07-10T07:09:18Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090315_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090315_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090315_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.91923013321784,
              4.810017682685216
            ],
            [
              111.9521232564778,
              4.856062323224054
            ],
            [
              111.88340908070228,
              4.905858067921524
            ],
            [
              111.85051956379328,
              4.859807522922483
            ],
            [
              111.91923013321784,
              4.810017682685216
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090315_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:15.015522Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 594306,
        "origin_y": 542325,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T07:00:07Z",
        "quality_category": "test",
        "rows": 3531,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.2,
        "sun_elevation": 23.6,
        "updated": "2018-07-10T07:09:18Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090405_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090405_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090405_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.79234532180269,
              7.423538227663758
            ],
            [
              113.82573213014079,
              7.469469189696847
            ],
            [
              113.7571026056864,
              7.519717567524206
            ],
            [
              113.72371844369113,
              7.4737812836972815
            ],
            [
              113.79234532180269,
              7.423538227663758
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090405_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:05.607886Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 800634,
        "origin_y": 832164,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:59:03Z",
        "quality_category": "test",
        "rows": 3541,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.4,
        "sun_elevation": 21.6,
        "updated": "2018-07-10T07:09:39Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090334_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090334_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090334_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.64237933998095,
              5.826600328953276
            ],
            [
              112.67539243900109,
              5.872652422786647
            ],
            [
              112.60664966085719,
              5.922529930968002
            ],
            [
              112.57363920354324,
              5.87647068342064
            ],
            [
              112.64237933998095,
              5.826600328953276
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090334_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:34.59966Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 674214,
        "origin_y": 654900,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:59:03Z",
        "quality_category": "test",
        "rows": 3533,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.9,
        "sun_elevation": 22.8,
        "updated": "2018-07-10T07:09:42Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090320_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090320_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090320_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.1295276748555,
              5.11253656523111
            ],
            [
              112.16244809567051,
              5.15858860657437
            ],
            [
              112.09371943842487,
              5.208399463559958
            ],
            [
              112.06080256277053,
              5.162339713944512
            ],
            [
              112.1295276748555,
              5.11253656523111
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090320_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:20.727562Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 617571,
        "origin_y": 575808,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:59:03Z",
        "quality_category": "test",
        "rows": 3532,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.1,
        "sun_elevation": 23.4,
        "updated": "2018-07-10T07:09:42Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090326_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090326_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090326_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.33973844670118,
              5.404229923869794
            ],
            [
              112.37276483234774,
              5.450232466762984
            ],
            [
              112.30410742196214,
              5.50017508309512
            ],
            [
              112.27108374526098,
              5.454165546877379
            ],
            [
              112.33973844670118,
              5.404229923869794
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090326_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:26.439602Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3756,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 640815,
        "origin_y": 608112,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:59:01Z",
        "quality_category": "test",
        "rows": 3534,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272,
        "sun_elevation": 23.1,
        "updated": "2018-07-10T07:09:32Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090407_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090407_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090407_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.85303798864228,
              7.507506092048019
            ],
            [
              113.88644580297998,
              7.553444613986156
            ],
            [
              113.81779851606437,
              7.6037129216178725
            ],
            [
              113.78439448521917,
              7.557768457422598
            ],
            [
              113.85303798864228,
              7.507506092048019
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090407_0b09",
      "properties": {
        "acquired": "2016-03-30T09:04:07.239899Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3759,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 807276,
        "origin_y": 841503,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:59:00Z",
        "quality_category": "test",
        "rows": 3542,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.3,
        "sun_elevation": 21.5,
        "updated": "2018-07-10T07:10:01Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090338_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090338_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090338_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.79398365296042,
              6.039253545495452
            ],
            [
              112.8271031134179,
              6.085249667007809
            ],
            [
              112.7584379178547,
              6.135265298949605
            ],
            [
              112.72532114778353,
              6.089261412769102
            ],
            [
              112.79398365296042,
              6.039253545495452
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090338_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:38.679689Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 690936,
        "origin_y": 678477,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:59Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.8,
        "sun_elevation": 22.7,
        "updated": "2018-07-10T07:09:59Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090336_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090336_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090336_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.69821303835967,
              5.906745986604436
            ],
            [
              112.73129682405025,
              5.952758324096294
            ],
            [
              112.66261191370873,
              6.002734512787737
            ],
            [
              112.62953096225195,
              5.956714486432143
            ],
            [
              112.69821303835967,
              5.906745986604436
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090336_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:36.231671Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 680376,
        "origin_y": 663789,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:59Z",
        "quality_category": "test",
        "rows": 3536,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.8,
        "sun_elevation": 22.8,
        "updated": "2018-07-10T07:09:57Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091305_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091305_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091305_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.2422517992141,
              15.200634859523365
            ],
            [
              117.27784334821506,
              15.244847593771642
            ],
            [
              117.20904122446227,
              15.297223348334972
            ],
            [
              117.1734560396606,
              15.252997664946786
            ],
            [
              117.2422517992141,
              15.200634859523365
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091305_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:05.569471Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 518625,
        "origin_y": 1691214,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:45Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 16.1,
        "updated": "2018-07-10T06:58:45Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091349_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091349_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091349_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.01019751723875,
              17.425951589783757
            ],
            [
              119.04663389530191,
              17.469797731696378
            ],
            [
              118.9776259337678,
              17.522832815480815
            ],
            [
              118.94119638355455,
              17.478972035966237
            ],
            [
              119.01019751723875,
              17.425951589783757
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091349_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:49.633979Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 706125,
        "origin_y": 1938489,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:44Z",
        "quality_category": "test",
        "rows": 3564,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 14.3,
        "updated": "2018-07-10T06:58:44Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091313_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091313_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091313_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.56355506087544,
              15.606015277632729
            ],
            [
              117.59929943484302,
              15.650161951674873
            ],
            [
              117.53046745818344,
              15.702662408694636
            ],
            [
              117.49473029355751,
              15.658504123535959
            ],
            [
              117.56355506087544,
              15.606015277632729
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091313_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:13.729563Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 553020,
        "origin_y": 1736118,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:44Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.8,
        "updated": "2018-07-10T06:58:44Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091236_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091236_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091236_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.08638224622275,
              13.70530603140754
            ],
            [
              116.12146489588514,
              13.749752112880344
            ],
            [
              116.05276237000933,
              13.801713882771228
            ],
            [
              116.0176853534209,
              13.757257100402798
            ],
            [
              116.08638224622275,
              13.70530603140754
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091236_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:36.193147Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 393804,
        "origin_y": 1526001,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:44Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.4,
        "updated": "2018-07-10T06:58:44Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091438_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091438_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091438_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              121.02912753217069,
              19.881867970483498
            ],
            [
              121.06667211268986,
              19.925242503936555
            ],
            [
              120.99741428190431,
              19.979135401870987
            ],
            [
              120.95987660593121,
              19.935740669347748
            ],
            [
              121.02912753217069,
              19.881867970483498
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091438_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:38.594575Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3723,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 286470,
        "origin_y": 2210424,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:43Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.2,
        "updated": "2018-07-10T06:58:43Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091229_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091229_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091229_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.83298983269242,
              13.372561971582847
            ],
            [
              115.8679483039862,
              13.417071084912893
            ],
            [
              115.79924383580271,
              13.468917996842455
            ],
            [
              115.76429134292836,
              13.424398600416257
            ],
            [
              115.83298983269242,
              13.372561971582847
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091229_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:29.665077Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3741,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 366219,
        "origin_y": 1489311,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:43Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.7,
        "updated": "2018-07-10T06:58:43Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091232_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091232_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091232_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.96115934837421,
              13.539025408181315
            ],
            [
              115.9961636773547,
              13.583515500872666
            ],
            [
              115.92744076957993,
              13.635395056323095
            ],
            [
              115.8924432127035,
              13.590894745047136
            ],
            [
              115.96115934837421,
              13.539025408181315
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091232_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:32.929112Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 380178,
        "origin_y": 1507662,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:42Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.5,
        "updated": "2018-07-10T06:58:42Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091331_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091331_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091331_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              118.28512496888884,
              16.522424924093883
            ],
            [
              118.32115230414563,
              16.56646214748564
            ],
            [
              118.25217416753674,
              16.619145298207993
            ],
            [
              118.21615403626753,
              16.575093923924126
            ],
            [
              118.28512496888884,
              16.522424924093883
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091331_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:31.681769Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3738,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 629745,
        "origin_y": 1837842,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:40Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15,
        "updated": "2018-07-10T06:58:40Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091250_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091250_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091250_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              116.65995080592597,
              14.45026581523811
            ],
            [
              116.69532826371879,
              14.494565979991844
            ],
            [
              116.62662687947272,
              14.546799383638755
            ],
            [
              116.59125728012789,
              14.502486681376377
            ],
            [
              116.65995080592597,
              14.45026581523811
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091250_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:50.881308Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 455955,
        "origin_y": 1608234,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:40Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 16.8,
        "updated": "2018-07-10T06:58:40Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090309_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090309_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090309_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.70633739032287,
              4.512846337755421
            ],
            [
              111.73920083360379,
              4.558889146456608
            ],
            [
              111.67049570813006,
              4.608668446805387
            ],
            [
              111.63763454614508,
              4.562622837208723
            ],
            [
              111.70633739032287,
              4.512846337755421
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090309_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:09.303483Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 570729,
        "origin_y": 509445,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:37Z",
        "quality_category": "test",
        "rows": 3531,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.4,
        "sun_elevation": 23.8,
        "updated": "2018-07-10T07:09:43Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090245_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090245_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090245_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.83263089752062,
              3.2867446316963425
            ],
            [
              110.86532860165022,
              3.3328081734450548
            ],
            [
              110.7965759561029,
              3.3824357083802674
            ],
            [
              110.76388065914071,
              3.3363665837643977
            ],
            [
              110.83263089752062,
              3.2867446316963425
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090245_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:45.639323Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 473769,
        "origin_y": 373869,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:36Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.9,
        "sun_elevation": 24.7,
        "updated": "2018-07-10T07:09:42Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090244_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090244_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090244_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.80434371700711,
              3.245693731622943
            ],
            [
              110.8370492126077,
              3.29175023156763
            ],
            [
              110.76830439988834,
              3.3413896809739976
            ],
            [
              110.73560519372468,
              3.295327751319838
            ],
            [
              110.80434371700711,
              3.245693731622943
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090244_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:44.823318Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 470625,
        "origin_y": 369333,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:36Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.9,
        "sun_elevation": 24.8,
        "updated": "2018-07-10T07:09:42Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090328_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090328_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090328_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.43183820616214,
              5.534549672793606
            ],
            [
              112.46486265224844,
              5.5805656384445035
            ],
            [
              112.3961808791334,
              5.6304914867574745
            ],
            [
              112.3631600735642,
              5.584467732586819
            ],
            [
              112.43183820616214,
              5.534549672793606
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090328_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:28.887619Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 650982,
        "origin_y": 622545,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:34Z",
        "quality_category": "test",
        "rows": 3534,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272,
        "sun_elevation": 23.1,
        "updated": "2018-07-10T07:09:42Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091416_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091416_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091416_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.11292261982624,
              18.776828870355455
            ],
            [
              120.14993338889862,
              18.820433398546584
            ],
            [
              120.08077757131389,
              18.873905933026165
            ],
            [
              120.0437735389068,
              18.83028559970041
            ],
            [
              120.11292261982624,
              18.776828870355455
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091416_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:16.562303Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3727,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 188433,
        "origin_y": 2089413,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:33Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.1,
        "updated": "2018-07-10T06:58:33Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090249_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090249_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090249_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.98543291025499,
              3.4973639935352905
            ],
            [
              111.0181342403722,
              3.5434434199145888
            ],
            [
              110.94936372949155,
              3.5930569303756053
            ],
            [
              110.91666765570304,
              3.5469756732271076
            ],
            [
              110.98543291025499,
              3.4973639935352905
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090249_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:49.71935Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 490743,
        "origin_y": 397149,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:32Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.8,
        "sun_elevation": 24.6,
        "updated": "2018-07-10T07:09:41Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091133_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091133_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091133_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.66037768952688,
              10.483295257701425
            ],
            [
              113.69461066659609,
              10.528142082749108
            ],
            [
              113.62611669853156,
              10.579435971994755
            ],
            [
              113.59188775974502,
              10.534581274721138
            ],
            [
              113.66037768952688,
              10.483295257701425
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091133_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:33.360495Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 783672,
        "origin_y": 1170690,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:31Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.5,
        "sun_elevation": 20,
        "updated": "2018-07-10T06:58:31Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091223_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091223_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091223_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.60484809876903,
              13.076164706478632
            ],
            [
              115.63973755745796,
              13.120703310188956
            ],
            [
              115.57107041009498,
              13.172508825511287
            ],
            [
              115.53618672385299,
              13.127959540465074
            ],
            [
              115.60484809876903,
              13.076164706478632
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091223_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:23.953015Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3741,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 341328,
        "origin_y": 1456656,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:30Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.9,
        "updated": "2018-07-10T06:58:30Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091121_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091121_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091121_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.20304737229353,
              9.86120745753413
            ],
            [
              113.23718066819136,
              9.90609312699222
            ],
            [
              113.16875968055969,
              9.957332545399112
            ],
            [
              113.13463157350583,
              9.912439201300007
            ],
            [
              113.20304737229353,
              9.86120745753413
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091121_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:21.120375Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 734058,
        "origin_y": 1101474,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:30Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.5,
        "updated": "2018-07-10T06:58:30Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091120_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091120_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091120_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.16559382615715,
              9.8118699879547
            ],
            [
              113.19968631710488,
              9.85678571635633
            ],
            [
              113.13123014399712,
              9.907971627150816
            ],
            [
              113.0971418555775,
              9.863048519439124
            ],
            [
              113.16559382615715,
              9.8118699879547
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091120_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:20.304367Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3752,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 729981,
        "origin_y": 1095987,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:29Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.5,
        "updated": "2018-07-10T06:58:29Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091148_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091148_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091148_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.25806886217842,
              11.283872459487577
            ],
            [
              114.2924810225295,
              11.328631544889175
            ],
            [
              114.22393788647268,
              11.380060181071842
            ],
            [
              114.1895307812465,
              11.335293290149608
            ],
            [
              114.25806886217842,
              11.283872459487577
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091148_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:48.86465Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 193209,
        "origin_y": 1259454,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:28Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.3,
        "updated": "2018-07-10T06:58:28Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091119_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091119_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091119_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.13765787747194,
              9.777979153101407
            ],
            [
              113.1716909113205,
              9.822932451336975
            ],
            [
              113.1031836452223,
              9.874035227588266
            ],
            [
              113.06915404568517,
              9.829073291887857
            ],
            [
              113.13765787747194,
              9.777979153101407
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091119_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:19.488359Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 726933,
        "origin_y": 1092213,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:28Z",
        "quality_category": "test",
        "rows": 3535,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.5,
        "updated": "2018-07-10T06:58:28Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090113_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090113_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090113_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              107.43951889408694,
              -1.5189945817470696
            ],
            [
              107.47187859538377,
              -1.4729496072371178
            ],
            [
              107.40280750969632,
              -1.4236659348986893
            ],
            [
              107.37044722377551,
              -1.4697089674983437
            ],
            [
              107.43951889408694,
              -1.5189945817470696
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090113_0b09",
      "properties": {
        "acquired": "2016-03-30T09:01:13.430743Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3766,
        "epsg_code": 32748,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 763758,
        "origin_y": 9842505,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:28Z",
        "quality_category": "test",
        "rows": 3518,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 275.3,
        "sun_elevation": 28.1,
        "updated": "2018-07-10T06:58:28Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091157_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091157_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091157_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.60342835323566,
              11.747493494638455
            ],
            [
              114.63787600433037,
              11.79225554868539
            ],
            [
              114.56921364445185,
              11.843655522322898
            ],
            [
              114.53477234848054,
              11.79888376936754
            ],
            [
              114.60342835323566,
              11.747493494638455
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091157_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:57.840742Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3746,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 231363,
        "origin_y": 1310421,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:27Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 19,
        "updated": "2018-07-10T06:58:27Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090130_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090130_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090130_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              108.0681586266799,
              -0.6275785607342474
            ],
            [
              108.10052109237962,
              -0.5815059209524168
            ],
            [
              108.0315094489878,
              -0.5322240548907888
            ],
            [
              107.99914655307315,
              -0.5782957104465108
            ],
            [
              108.0681586266799,
              -0.6275785607342474
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090130_0b09",
      "properties": {
        "acquired": "2016-03-30T09:01:30.566847Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3766,
        "epsg_code": 32749,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 165942,
        "origin_y": 9941094,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:26Z",
        "quality_category": "test",
        "rows": 3518,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 274.8,
        "sun_elevation": 27.5,
        "updated": "2018-07-10T06:58:26Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090328_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090328_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090328_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.39570792251125,
              5.484729053395442
            ],
            [
              112.42872877259256,
              5.530746367931692
            ],
            [
              112.36004710003097,
              5.580672061579107
            ],
            [
              112.32702944602211,
              5.534647169952089
            ],
            [
              112.39570792251125,
              5.484729053395442
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090328_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:28.071613Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 646992,
        "origin_y": 617028,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:09Z",
        "quality_category": "test",
        "rows": 3535,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272,
        "sun_elevation": 23.1,
        "updated": "2018-07-10T07:09:10Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091124_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091124_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091124_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.32857114808205,
              10.029456833588561
            ],
            [
              113.36277941131222,
              10.074296644330898
            ],
            [
              113.2943928158914,
              10.125622432424924
            ],
            [
              113.2601909212293,
              10.080774814762911
            ],
            [
              113.32857114808205,
              10.029456833588561
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091124_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:24.384406Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.06,
        "columns": 3752,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 747705,
        "origin_y": 1120188,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:08Z",
        "quality_category": "test",
        "rows": 3539,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.3,
        "updated": "2018-07-10T06:58:08Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090337_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090337_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090337_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.73490936942412,
              5.956337393455153
            ],
            [
              112.76803462509173,
              6.002321691261112
            ],
            [
              112.69938939114638,
              6.052354710442094
            ],
            [
              112.66626785120745,
              6.0063625996843975
            ],
            [
              112.73490936942412,
              5.956337393455153
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090337_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:37.047677Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 684426,
        "origin_y": 669288,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:08Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 271.8,
        "sun_elevation": 22.7,
        "updated": "2018-07-10T07:09:08Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091317_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091317_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091317_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.73052191620116,
              15.821715619805598
            ],
            [
              117.76630182740573,
              15.865855936253583
            ],
            [
              117.69740566230415,
              15.918355861671644
            ],
            [
              117.6616333213484,
              15.874201932674495
            ],
            [
              117.73052191620116,
              15.821715619805598
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091317_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:17.809609Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 570834,
        "origin_y": 1760031,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:07Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.6,
        "updated": "2018-07-10T06:58:07Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091204_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091204_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091204_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.85371080524835,
              12.078485444483611
            ],
            [
              114.88838371733019,
              12.123106103083392
            ],
            [
              114.81985715961797,
              12.174781875971878
            ],
            [
              114.78518978760357,
              12.130152838057164
            ],
            [
              114.85371080524835,
              12.078485444483611
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091204_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:04.368809Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.05,
        "columns": 3744,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 258957,
        "origin_y": 1346835,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:07Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.7,
        "updated": "2018-07-10T06:58:07Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090324_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090324_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090324_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              112.28133260477341,
              5.319601602909351
            ],
            [
              112.31434512882208,
              5.365606690589374
            ],
            [
              112.24568513637878,
              5.415535976796976
            ],
            [
              112.21267639959798,
              5.369524134873902
            ],
            [
              112.28133260477341,
              5.319601602909351
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090324_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:24.80759Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.07,
        "columns": 3756,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 634362,
        "origin_y": 598740,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:07Z",
        "quality_category": "test",
        "rows": 3534,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.1,
        "sun_elevation": 23.2,
        "updated": "2018-07-10T07:09:53Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091156_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091156_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091156_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.53517921394383,
              11.656158517582917
            ],
            [
              114.5697401201831,
              11.70083544327993
            ],
            [
              114.50123233479063,
              11.752421195841833
            ],
            [
              114.46667700371837,
              11.707735506106387
            ],
            [
              114.53517921394383,
              11.656158517582917
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091156_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:56.208725Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3745,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 223848,
        "origin_y": 1300389,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:06Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 19,
        "updated": "2018-07-10T06:58:06Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091426_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091426_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091426_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.51366073352938,
              19.26433625157471
            ],
            [
              120.55087628995965,
              19.307863907626317
            ],
            [
              120.48163877279268,
              19.361481469775082
            ],
            [
              120.44443061063258,
              19.31793522703456
            ],
            [
              120.51366073352938,
              19.26433625157471
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091426_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:26.354424Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 231471,
        "origin_y": 2142756,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:05Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.7,
        "updated": "2018-07-10T06:58:05Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091423_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091423_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091423_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.41492024619048,
              19.143945530748766
            ],
            [
              120.45212184613497,
              19.187465604205823
            ],
            [
              120.38294611131595,
              19.24109991181167
            ],
            [
              120.34575322526858,
              19.197560962860386
            ],
            [
              120.41492024619048,
              19.143945530748766
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091423_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:23.906394Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 220893,
        "origin_y": 2129577,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:05Z",
        "quality_category": "test",
        "rows": 3604,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 12.8,
        "updated": "2018-07-10T06:58:05Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091406_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091406_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091406_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.70710816159436,
              18.28076764944951
            ],
            [
              119.74393101428048,
              18.324444817425647
            ],
            [
              119.67485964192866,
              18.377793928697404
            ],
            [
              119.63804463404158,
              18.334101777083053
            ],
            [
              119.70710816159436,
              18.28076764944951
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091406_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:06.770184Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3739,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 778818,
        "origin_y": 2034066,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:05Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.5,
        "updated": "2018-07-10T06:58:05Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091202_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091202_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091202_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.78929414254978,
              12.000584719684637
            ],
            [
              114.82383042629606,
              12.045298255898473
            ],
            [
              114.75517841312019,
              12.0967861810815
            ],
            [
              114.72064745918644,
              12.052061301279856
            ],
            [
              114.78929414254978,
              12.000584719684637
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091202_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:02.736792Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.04,
        "columns": 3745,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 251859,
        "origin_y": 1338261,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:04Z",
        "quality_category": "test",
        "rows": 3559,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.8,
        "updated": "2018-07-10T06:58:04Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090303_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090303_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090303_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.4896565164721,
              4.209172659131262
            ],
            [
              111.52246014668678,
              4.255236636774794
            ],
            [
              111.45372397330304,
              4.3049516298144725
            ],
            [
              111.4209219701251,
              4.258885417200405
            ],
            [
              111.4896565164721,
              4.209172659131262
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090303_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:03.591444Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 546708,
        "origin_y": 475851,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:04Z",
        "quality_category": "test",
        "rows": 3529,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.5,
        "sun_elevation": 24,
        "updated": "2018-07-10T07:09:52Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090252_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090252_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090252_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.07474582721346,
              3.626160618086049
            ],
            [
              111.10746767852409,
              3.6722337408540917
            ],
            [
              111.03870600466699,
              3.7218697859756618
            ],
            [
              111.00599024910562,
              3.675791555937177
            ],
            [
              111.07474582721346,
              3.626160618086049
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090252_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:52.167367Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 500664,
        "origin_y": 411387,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:04Z",
        "quality_category": "test",
        "rows": 3528,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.7,
        "sun_elevation": 24.5,
        "updated": "2018-07-10T07:09:52Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091423_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091423_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091423_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.38554255068766,
              19.10602553708207
            ],
            [
              120.42273665007512,
              19.149542615494024
            ],
            [
              120.35358248183965,
              19.203177386289457
            ],
            [
              120.3163966576541,
              19.15964282136485
            ],
            [
              120.38554255068766,
              19.10602553708207
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091423_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:23.090383Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3726,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 217737,
        "origin_y": 2125425,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:03Z",
        "quality_category": "test",
        "rows": 3604,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 12.8,
        "updated": "2018-07-10T06:58:03Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091152_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091152_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091152_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.37798683438294,
              11.448190513774271
            ],
            [
              114.41243692016577,
              11.492934418079784
            ],
            [
              114.34387647815694,
              11.544391988174198
            ],
            [
              114.3094315563019,
              11.499638646171551
            ],
            [
              114.37798683438294,
              11.448190513774271
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091152_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:52.128683Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3746,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 206478,
        "origin_y": 1277520,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:03Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.2,
        "updated": "2018-07-10T06:58:03Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091145_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091145_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091145_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.13252469049553,
              11.120507958857242
            ],
            [
              114.16693282882648,
              11.1652593702955
            ],
            [
              114.09843846533417,
              11.216711180496564
            ],
            [
              114.06403532318144,
              11.17194983638925
            ],
            [
              114.13252469049553,
              11.120507958857242
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091145_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:45.600617Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 179319,
        "origin_y": 1241505,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:03Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.3,
        "sun_elevation": 19.5,
        "updated": "2018-07-10T06:58:03Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090257_1_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090257_1_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090257_1_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.25551358007682,
              3.88682906107214
            ],
            [
              111.28807980893406,
              3.9330328824072294
            ],
            [
              111.21912259429094,
              3.9824119494561407
            ],
            [
              111.18656318361268,
              3.9362013234407227
            ],
            [
              111.25551358007682,
              3.88682906107214
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090257_1_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:57.0634Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.05,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 520710,
        "origin_y": 440187,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:03Z",
        "quality_category": "test",
        "rows": 3522,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.6,
        "sun_elevation": 24.3,
        "updated": "2018-07-10T07:09:51Z",
        "usable_data": 0,
        "view_angle": 0.2
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091410_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091410_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091410_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.88029780171338,
              18.48952531169016
            ],
            [
              119.91716635684651,
              18.53319535070554
            ],
            [
              119.84802315053274,
              18.586547867095184
            ],
            [
              119.81116250418842,
              18.54286326925106
            ],
            [
              119.88029780171338,
              18.48952531169016
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091410_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:10.850234Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 796767,
        "origin_y": 2057466,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:02Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.4,
        "updated": "2018-07-10T06:58:02Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090243_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090243_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090243_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              110.73835307573133,
              3.151431509590263
            ],
            [
              110.77104811073673,
              3.1974931940993043
            ],
            [
              110.70229723988285,
              3.247122581407627
            ],
            [
              110.6696068141643,
              3.201058940435384
            ],
            [
              110.73835307573133,
              3.151431509590263
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090243_0b09",
      "properties": {
        "acquired": "2016-03-30T09:02:43.191307Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3758,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 463290,
        "origin_y": 358914,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:02Z",
        "quality_category": "test",
        "rows": 3527,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.9,
        "sun_elevation": 24.8,
        "updated": "2018-07-10T07:09:51Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091318_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091318_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091318_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              117.76106680383272,
              15.860263233951038
            ],
            [
              117.79687967095886,
              15.90438329672125
            ],
            [
              117.72800368950375,
              15.956922448990385
            ],
            [
              117.69219686889768,
              15.912789976768545
            ],
            [
              117.76106680383272,
              15.860263233951038
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091318_0b07",
      "properties": {
        "acquired": "2016-03-30T09:13:18.625618Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3737,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 574092,
        "origin_y": 1764309,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:01Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 15.6,
        "updated": "2018-07-10T06:58:01Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091205_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091205_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091205_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.88454664406905,
              12.119122911285508
            ],
            [
              114.91921177880911,
              12.163751983608517
            ],
            [
              114.85066228133027,
              12.215408623739238
            ],
            [
              114.81600240084177,
              12.170771510723487
            ],
            [
              114.88454664406905,
              12.119122911285508
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091205_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:05.184818Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3745,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 262347,
        "origin_y": 1351302,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:01Z",
        "quality_category": "test",
        "rows": 3562,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.7,
        "updated": "2018-07-10T06:58:01Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091143_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091143_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091143_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.04180141443985,
              10.992899224045662
            ],
            [
              114.07618294023455,
              11.037663585577285
            ],
            [
              114.00769895837048,
              11.08909541072164
            ],
            [
              113.97332354157038,
              11.044322616212392
            ],
            [
              114.04180141443985,
              10.992899224045662
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091143_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:43.152593Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3748,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 169260,
        "origin_y": 1227474,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:01Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.4,
        "sun_elevation": 19.6,
        "updated": "2018-07-10T06:58:01Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091428_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091428_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091428_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              120.62205103291143,
              19.389309247252157
            ],
            [
              120.65931393072998,
              19.432818362724394
            ],
            [
              120.59005429642608,
              19.486463286267337
            ],
            [
              120.55279886447734,
              19.442937200730984
            ],
            [
              120.62205103291143,
              19.389309247252157
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091428_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:28.802454Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3725,
        "epsg_code": 32651,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 243060,
        "origin_y": 2156433,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:00Z",
        "quality_category": "test",
        "rows": 3603,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.9,
        "sun_elevation": 12.6,
        "updated": "2018-07-10T06:58:00Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091226_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091226_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091226_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              115.69970105323358,
              13.200866987865979
            ],
            [
              115.73461395396811,
              13.245398264793913
            ],
            [
              115.66592349208146,
              13.297213361723914
            ],
            [
              115.6310161817291,
              13.25267143033101
            ],
            [
              115.69970105323358,
              13.200866987865979
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091226_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:26.401042Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.02,
        "columns": 3741,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 351684,
        "origin_y": 1470393,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:58:00Z",
        "quality_category": "test",
        "rows": 3560,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270,
        "sun_elevation": 17.8,
        "updated": "2018-07-10T06:58:00Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091200_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091200_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091200_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.69650787640941,
              11.87070298763547
            ],
            [
              114.73104144474937,
              11.915410879814038
            ],
            [
              114.66243270334706,
              11.966917266005227
            ],
            [
              114.62790453264252,
              11.922200421305286
            ],
            [
              114.69650787640941,
              11.87070298763547
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091200_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:00.288767Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3745,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 241632,
        "origin_y": 1323975,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:57:59Z",
        "quality_category": "test",
        "rows": 3561,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.9,
        "updated": "2018-07-10T06:57:59Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091121_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091121_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091121_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.2313217370359,
              9.897645901359265
            ],
            [
              113.26547415733617,
              9.942523088072841
            ],
            [
              113.19705822259681,
              9.993784832050219
            ],
            [
              113.16291204794328,
              9.948900178219791
            ],
            [
              113.2313217370359,
              9.897645901359265
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091121_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:21.936383Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.03,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 737133,
        "origin_y": 1105527,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:57:59Z",
        "quality_category": "test",
        "rows": 3538,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.6,
        "sun_elevation": 20.5,
        "updated": "2018-07-10T06:57:59Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091117_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091117_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091117_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              113.04849283909677,
              9.656085950558126
            ],
            [
              113.08254239804091,
              9.701021100976005
            ],
            [
              113.01408554723541,
              9.752167520845639
            ],
            [
              112.9800405209106,
              9.707220992164498
            ],
            [
              113.04849283909677,
              9.656085950558126
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091117_0b07",
      "properties": {
        "acquired": "2016-03-30T09:11:17.040335Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3753,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 717234,
        "origin_y": 1078671,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:57:59Z",
        "quality_category": "test",
        "rows": 3537,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.7,
        "sun_elevation": 20.6,
        "updated": "2018-07-10T06:57:59Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090304_0b09",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090304_0b09/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_090304_0b09/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              111.52018363436709,
              4.251385107419545
            ],
            [
              111.55299322512697,
              4.297448445563719
            ],
            [
              111.48425832206047,
              4.3471687351006585
            ],
            [
              111.45145043960676,
              4.301103351966544
            ],
            [
              111.52018363436709,
              4.251385107419545
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_090304_0b09",
      "properties": {
        "acquired": "2016-03-30T09:03:04.407449Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0.01,
        "columns": 3757,
        "epsg_code": 32649,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 550095,
        "origin_y": 480522,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:57:59Z",
        "quality_category": "test",
        "rows": 3530,
        "satellite_id": "0b09",
        "strip_id": "168207",
        "sun_azimuth": 272.5,
        "sun_elevation": 24,
        "updated": "2018-07-10T07:09:50Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091410_1_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091410_1_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091410_1_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              119.84175356181991,
              18.44151481022619
            ],
            [
              119.87860427422876,
              18.485194665938852
            ],
            [
              119.80946547778407,
              18.538535456997653
            ],
            [
              119.7726226578083,
              18.494841908661563
            ],
            [
              119.84175356181991,
              18.44151481022619
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091410_1_0b07",
      "properties": {
        "acquired": "2016-03-30T09:14:10.034224Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3740,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 792777,
        "origin_y": 2052084,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:57:58Z",
        "quality_category": "test",
        "rows": 3565,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 269.8,
        "sun_elevation": 13.4,
        "updated": "2018-07-10T06:57:58Z",
        "usable_data": 0,
        "view_angle": 0.1
      },
      "type": "Feature"
    },
    {
      "_links": {
        "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091206_0b07",
        "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091206_0b07/assets/",
        "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091206_0b07/thumb"
      },
      "_permissions": [
        "assets.basic_analytic_dn_rpc:download",
        "assets.analytic_dn:download",
        "assets.basic_udm:download",
        "assets.visual:download",
        "assets.analytic_dn_xml:download",
        "assets.basic_analytic_dn_xml:download",
        "assets.basic_analytic_dn:download",
        "assets.visual_xml:download",
        "assets.udm:download"
      ],
      "geometry": {
        "coordinates": [
          [
            [
              114.91670895682793,
              12.162992226247521
            ],
            [
              114.95141613729585,
              12.207593515718926
            ],
            [
              114.88289721889838,
              12.259304703735394
            ],
            [
              114.84819588026723,
              12.214694441546413
            ],
            [
              114.91670895682793,
              12.162992226247521
            ]
          ]
        ],
        "type": "Polygon"
      },
      "id": "20160330_091206_0b07",
      "properties": {
        "acquired": "2016-03-30T09:12:06.000826Z",
        "anomalous_pixels": 0,
        "cloud_cover": 0,
        "columns": 3743,
        "epsg_code": 32650,
        "ground_control": false,
        "gsd": 2.3,
        "instrument": "PS1",
        "item_type": "PSScene3Band",
        "origin_x": 265893,
        "origin_y": 1356132,
        "pixel_resolution": 3,
        "provider": "planetscope",
        "published": "2018-07-10T06:57:58Z",
        "quality_category": "test",
        "rows": 3563,
        "satellite_id": "0b07",
        "strip_id": "168204",
        "sun_azimuth": 270.2,
        "sun_elevation": 18.6,
        "updated": "2018-07-10T06:57:58Z",
        "usable_data": 0,
        "view_angle": 0
      },
      "type": "Feature"
    }
  ],
  "type": "FeatureCollection"
}

Let's take a closer look at our response data:


In [27]:
# Assign a features variable 
features = geojson["features"]

# Get the number of features present in the response
len(features)


Out[27]:
250

In [28]:
# Loop over all the features from the response
for f in features:
    # Print the ID for each feature
    p(f["id"])


"20160330_091355_0b07"
"20160330_091342_0b07"
"20160330_091336_0b07"
"20160330_091435_0b07"
"20160330_091303_0b07"
"20160330_090346_1_0b09"
"20160330_090314_0b09"
"20160330_090351_0b09"
"20160330_091328_0b07"
"20160330_091325_1_0b07"
"20160330_091401_0b07"
"20160330_091354_0b07"
"20160330_091227_0b07"
"20160330_091432_1_0b07"
"20160330_091348_1_0b07"
"20160330_091335_0b07"
"20160330_091424_0b07"
"20160330_091230_0b07"
"20160330_091346_0b07"
"20160330_091420_0b07"
"20160330_091254_0b07"
"20160330_091334_1_0b07"
"20160330_091244_0b07"
"20160330_090306_1_0b09"
"20160330_091138_0b07"
"20160330_091237_0b07"
"20160330_090342_0b09"
"20160330_091412_0b07"
"20160330_091350_0b07"
"20160330_091241_0b07"
"20160330_091155_0b07"
"20160330_091132_0b07"
"20160330_091123_0b07"
"20160330_091152_1_0b07"
"20160330_091220_0b07"
"20160330_091357_0b07"
"20160330_091142_0b07"
"20160330_090316_0b09"
"20160330_091326_0b07"
"20160330_091436_0b07"
"20160330_091338_0b07"
"20160330_091443_0b07"
"20160330_090313_0b09"
"20160330_091322_0b07"
"20160330_090406_0b09"
"20160330_091321_1_0b07"
"20160330_091333_0b07"
"20160330_091308_0b07"
"20160330_091344_0b07"
"20160330_090323_0b09"
"20160330_091241_1_0b07"
"20160330_090318_0b09"
"20160330_091429_0b07"
"20160330_091231_0b07"
"20160330_091427_1_0b07"
"20160330_091332_0b07"
"20160330_090254_0b09"
"20160330_090404_0b09"
"20160330_090306_0b09"
"20160330_090354_1_0b09"
"20160330_090358_0b09"
"20160330_091419_1_0b07"
"20160330_091414_0b07"
"20160330_090301_1_0b09"
"20160330_090401_0b09"
"20160330_090346_0b09"
"20160330_091431_0b07"
"20160330_091139_1_0b07"
"20160330_091356_0b07"
"20160330_090134_0b09"
"20160330_091434_0b07"
"20160330_091327_0b07"
"20160330_091126_0b07"
"20160330_090340_0b09"
"20160330_090341_1_0b09"
"20160330_090319_0b09"
"20160330_091237_1_0b07"
"20160330_091259_0b07"
"20160330_091405_0b07"
"20160330_091258_0b07"
"20160330_091339_0b07"
"20160330_090348_0b09"
"20160330_090347_0b09"
"20160330_091419_0b07"
"20160330_091427_0b07"
"20160330_090357_0b09"
"20160330_090400_0b09"
"20160330_090310_1_0b09"
"20160330_090259_0b09"
"20160330_091115_0b07"
"20160330_090356_0b09"
"20160330_091153_0b07"
"20160330_091118_0b07"
"20160330_090359_1_0b09"
"20160330_091411_0b07"
"20160330_091222_0b07"
"20160330_091135_0b07"
"20160330_090131_0b09"
"20160330_091149_0b07"
"20160330_091143_1_0b07"
"20160330_091125_0b07"
"20160330_090359_0b09"
"20160330_091415_0b07"
"20160330_091141_0b07"
"20160330_091358_0b07"
"20160330_091351_0b07"
"20160330_091330_0b07"
"20160330_091353_0b07"
"20160330_091255_0b07"
"20160330_091256_0b07"
"20160330_090330_0b09"
"20160330_091345_0b07"
"20160330_090349_0b09"
"20160330_091340_0b07"
"20160330_091127_0b07"
"20160330_091341_0b07"
"20160330_091325_0b07"
"20160330_090350_0b09"
"20160330_090329_0b09"
"20160330_090258_0b09"
"20160330_090248_1_0b09"
"20160330_091239_0b07"
"20160330_090350_1_0b09"
"20160330_091409_0b07"
"20160330_091407_0b07"
"20160330_090341_0b09"
"20160330_091402_0b07"
"20160330_090307_0b09"
"20160330_091440_0b07"
"20160330_091257_0b07"
"20160330_091400_0b07"
"20160330_091352_1_0b07"
"20160330_091201_0b07"
"20160330_090403_0b09"
"20160330_090353_0b09"
"20160330_091159_0b07"
"20160330_091130_1_0b07"
"20160330_090246_0b09"
"20160330_090244_1_0b09"
"20160330_091408_0b07"
"20160330_090252_1_0b09"
"20160330_091422_0b07"
"20160330_090308_0b09"
"20160330_091126_1_0b07"
"20160330_090337_0b09"
"20160330_091343_0b07"
"20160330_090321_0b09"
"20160330_091245_0b07"
"20160330_091225_0b07"
"20160330_091316_0b07"
"20160330_091129_0b07"
"20160330_091348_0b07"
"20160330_091302_0b07"
"20160330_091234_0b07"
"20160330_091356_1_0b07"
"20160330_091310_0b07"
"20160330_090354_0b09"
"20160330_091122_0b07"
"20160330_091240_0b07"
"20160330_090315_1_0b09"
"20160330_090333_0b09"
"20160330_090114_0b09"
"20160330_091146_0b07"
"20160330_091139_0b07"
"20160330_091425_0b07"
"20160330_091405_1_0b07"
"20160330_091150_0b07"
"20160330_091134_1_0b07"
"20160330_091201_1_0b07"
"20160330_091144_0b07"
"20160330_090343_0b09"
"20160330_091207_0b07"
"20160330_091323_0b07"
"20160330_091219_0b07"
"20160330_091203_0b07"
"20160330_091148_0b07"
"20160330_091136_0b07"
"20160330_091206_1_0b07"
"20160330_091131_0b07"
"20160330_090248_0b09"
"20160330_090344_0b09"
"20160330_091140_0b07"
"20160330_091439_0b07"
"20160330_091130_0b07"
"20160330_090253_0b09"
"20160330_091224_0b07"
"20160330_091154_0b07"
"20160330_090256_0b09"
"20160330_090315_0b09"
"20160330_090405_0b09"
"20160330_090334_0b09"
"20160330_090320_0b09"
"20160330_090326_0b09"
"20160330_090407_0b09"
"20160330_090338_0b09"
"20160330_090336_0b09"
"20160330_091305_0b07"
"20160330_091349_0b07"
"20160330_091313_0b07"
"20160330_091236_0b07"
"20160330_091438_0b07"
"20160330_091229_0b07"
"20160330_091232_1_0b07"
"20160330_091331_0b07"
"20160330_091250_1_0b07"
"20160330_090309_0b09"
"20160330_090245_0b09"
"20160330_090244_0b09"
"20160330_090328_1_0b09"
"20160330_091416_0b07"
"20160330_090249_0b09"
"20160330_091133_0b07"
"20160330_091223_0b07"
"20160330_091121_1_0b07"
"20160330_091120_0b07"
"20160330_091148_1_0b07"
"20160330_091119_0b07"
"20160330_090113_0b09"
"20160330_091157_0b07"
"20160330_090130_0b09"
"20160330_090328_0b09"
"20160330_091124_0b07"
"20160330_090337_1_0b09"
"20160330_091317_0b07"
"20160330_091204_0b07"
"20160330_090324_0b09"
"20160330_091156_0b07"
"20160330_091426_0b07"
"20160330_091423_1_0b07"
"20160330_091406_0b07"
"20160330_091202_0b07"
"20160330_090303_0b09"
"20160330_090252_0b09"
"20160330_091423_0b07"
"20160330_091152_0b07"
"20160330_091145_0b07"
"20160330_090257_1_0b09"
"20160330_091410_0b07"
"20160330_090243_0b09"
"20160330_091318_0b07"
"20160330_091205_0b07"
"20160330_091143_0b07"
"20160330_091428_0b07"
"20160330_091226_0b07"
"20160330_091200_0b07"
"20160330_091121_0b07"
"20160330_091117_0b07"
"20160330_090304_0b09"
"20160330_091410_1_0b07"
"20160330_091206_0b07"

In [29]:
# Print the first feature
p(features[0])


{
  "_links": {
    "_self": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091355_0b07",
    "assets": "https://api.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091355_0b07/assets/",
    "thumbnail": "https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20160330_091355_0b07/thumb"
  },
  "_permissions": [
    "assets.basic_analytic_dn_rpc:download",
    "assets.analytic_dn:download",
    "assets.basic_udm:download",
    "assets.visual:download",
    "assets.analytic_dn_xml:download",
    "assets.basic_analytic_dn_xml:download",
    "assets.basic_analytic_dn:download",
    "assets.visual_xml:download",
    "assets.udm:download"
  ],
  "geometry": {
    "coordinates": [
      [
        [
          119.24373212161514,
          17.710628544970934
        ],
        [
          119.28029916421973,
          17.75441535679384
        ],
        [
          119.21127786978434,
          17.807559153325187
        ],
        [
          119.17471767810127,
          17.763759027619503
        ],
        [
          119.24373212161514,
          17.710628544970934
        ]
      ]
    ],
    "type": "Polygon"
  },
  "id": "20160330_091355_0b07",
  "properties": {
    "acquired": "2016-03-30T09:13:55.346047Z",
    "anomalous_pixels": 0,
    "cloud_cover": 0,
    "columns": 3738,
    "epsg_code": 32650,
    "ground_control": false,
    "gsd": 2.3,
    "instrument": "PS1",
    "item_type": "PSScene3Band",
    "origin_x": 730569,
    "origin_y": 1970280,
    "pixel_resolution": 3,
    "provider": "planetscope",
    "published": "2018-07-10T07:10:00Z",
    "quality_category": "test",
    "rows": 3564,
    "satellite_id": "0b07",
    "strip_id": "168204",
    "sun_azimuth": 269.8,
    "sun_elevation": 14,
    "updated": "2018-07-10T07:10:00Z",
    "usable_data": 0,
    "view_angle": 0
  },
  "type": "Feature"
}

What happens when there are A LOT of results?

When the number of matching items exceeds 250, the results are delivered in pages. Let's perform a search query that should return a large number of results:


In [30]:
# Setup a GeoJSON polygon for our geometry filter
geom = {
    "type": "Polygon",
    "coordinates": [
      [
        [
          -125.29632568359376,
          48.37084770238366
        ],
        [
          -125.29632568359376,
          49.335861591104106
        ],
        [
          -123.2391357421875,
          49.335861591104106
        ],
        [
          -123.2391357421875,
          48.37084770238366
        ],
        [
          -125.29632568359376,
          48.37084770238366
        ]
      ]
    ]
  }

# Setup the geometry filter
geometry_filter = {
    "type": "GeometryFilter",
    "field_name": "geometry",
    "config": geom
}

# Setup the request
request = {
    "item_types" : item_types,
    "filter" : geometry_filter
}

In [31]:
# Send the POST request to the API quick search endpoint
res = session.post(quick_url, json=request)

# Assign the response to a variable
geojson = res.json()

In [32]:
# Print the response "_links" property
p(geojson["_links"])


{
  "_first": "https://api.planet.com/data/v1/searches/b46ecdd2e7624db987fe193232e4e852/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6IG51bGwsICJzb3J0X2xhc3RfaWQiOiBudWxsLCAic29ydF9kZXNjIjogdHJ1ZX0%3D",
  "_next": "https://api.planet.com/data/v1/searches/b46ecdd2e7624db987fe193232e4e852/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6ICIyMDE4LTA5LTI1VDIwOjU1OjUwLjAwMDAwMFoiLCAic29ydF9sYXN0X2lkIjogIjIwMTgwOTI1XzE4NDMyM18xMDMzIiwgInNvcnRfZGVzYyI6IHRydWV9",
  "_self": "https://api.planet.com/data/v1/searches/b46ecdd2e7624db987fe193232e4e852/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6IG51bGwsICJzb3J0X2xhc3RfaWQiOiBudWxsLCAic29ydF9kZXNjIjogdHJ1ZX0%3D"
}

In [33]:
# Assign the "_links" -> "_next" property (link to next page of results) to a variable 
next_url = geojson["_links"]["_next"]

# Print the link to the next page of results
print(next_url)


https://api.planet.com/data/v1/searches/b46ecdd2e7624db987fe193232e4e852/results?_page=eyJxdWVyeV9wYXJhbXMiOiB7fSwgInNvcnRfcHJldiI6IGZhbHNlLCAicGFnZV9zaXplIjogMjUwLCAic29ydF9ieSI6ICJwdWJsaXNoZWQiLCAic29ydF9zdGFydCI6ICIyMDE4LTA5LTI1VDIwOjU1OjUwLjAwMDAwMFoiLCAic29ydF9sYXN0X2lkIjogIjIwMTgwOTI1XzE4NDMyM18xMDMzIiwgInNvcnRfZGVzYyI6IHRydWV9

The page size can be set with a _page_size parameter in the request:


In [34]:
# Send the POST request to the API quick search endpoint with a page size of 9
res = session.post(quick_url, json=request, params={"_page_size" : 9})

# Assign the response to a variable
geojson = res.json()

# Get the number of features present in the response
len(geojson["features"])


Out[34]:
9

Mapping Footprints Example

The geojsonio module can be used to map GeoJSON files and is therefore compatible with the output from Planet Data API searches.

Make sure you've got the module installed and then let's use it to show our resuls on a map:


In [35]:
# Import the geojsonio python module
# You may need to install this on your system first
import geojsonio

# Assign the url variable to display the geojsonio map
url = geojsonio.display(res.text)

We can now iterate through the pages of results.


In [36]:
# Assign the next_url variable to the next page of results from the response (Setup the next page of results)
next_url = geojson["_links"]["_next"]

# Get the next page of results
res = session.get(next_url)

# Assign the response to a variable
geojson = res.json()

# Get the url see results on geojson.io
url = geojsonio.to_geojsonio(res.text)

In [37]:
# Setup the next page of results
next_url = geojson["_links"]["_next"]

# Get the next page of results
res = session.get(next_url)

# Assign the response to a variable
geojson = res.json()

# Get the url see results on geojson.io
url = geojsonio.to_geojsonio(res.text)

Cool huh? Now that we know how to search and find items we are interested in, let's try activating and downloading some assets.

Assets & Permissions

Assets may be imagery files, image masks, metadata files or some other file type that might be associated with the item.

The _permissions element in each feature contains a list of assets that the user has access to.

Let's pick the first item out of our search result to work with, and then see what the permissions are for that item:


In [38]:
# Assign a variable to the search result features (items)
features = geojson["features"]

# Get the first result's feature
feature = features[0]

# Print the ID
p(feature["id"])

# Print the permissions
p(feature["_permissions"])


"20180926_184920_1001"
[
  "assets.analytic_xml:download",
  "assets.basic_analytic_dn:download",
  "assets.basic_analytic_dn_xml:download",
  "assets.basic_analytic_xml:download",
  "assets.analytic_dn:download",
  "assets.basic_udm:download",
  "assets.analytic:download",
  "assets.visual:download",
  "assets.analytic_dn_xml:download",
  "assets.basic_analytic_rpc:download",
  "assets.basic_analytic_dn_rpc:download",
  "assets.visual_xml:download",
  "assets.basic_analytic:download",
  "assets.udm:download"
]

Each item has an assets endpoint in the API that lists all of its assets. Let's get a list of available assets for our item:


In [39]:
# Get the assets link for the item
assets_url = feature["_links"]["assets"]

# Print the assets link
print(assets_url)


https://api.planet.com/data/v1/item-types/PSScene3Band/items/20180926_184920_1001/assets/

In [44]:
# Send a GET request to the assets url for the item (Get the list of available assets for the item)
res = session.get(assets_url)

# Assign a variable to the response
assets = res.json()

In [49]:
# Print the asset types that are available
print(assets.keys())


dict_keys(['analytic', 'analytic_dn', 'analytic_dn_xml', 'analytic_xml', 'basic_analytic', 'basic_analytic_dn', 'basic_analytic_dn_rpc', 'basic_analytic_dn_xml', 'basic_analytic_rpc', 'basic_analytic_xml', 'basic_udm', 'udm', 'visual', 'visual_xml'])

We can see that most items have several assets available. Let's check out the "visual" asset for this item:


In [50]:
# Assign a variable to the visual asset from the item's assets
visual = assets["visual"]

# Print the visual asset data
p(visual)


{
  "_links": {
    "_self": "https://api.planet.com/data/v1/assets/eyJpIjogIjIwMTgwOTI2XzE4NDkyMF8xMDAxIiwgImMiOiAiUFNTY2VuZTNCYW5kIiwgInQiOiAidmlzdWFsIiwgImN0IjogIml0ZW0tdHlwZSJ9",
    "activate": "https://api.planet.com/data/v1/assets/eyJpIjogIjIwMTgwOTI2XzE4NDkyMF8xMDAxIiwgImMiOiAiUFNTY2VuZTNCYW5kIiwgInQiOiAidmlzdWFsIiwgImN0IjogIml0ZW0tdHlwZSJ9/activate",
    "type": "https://api.planet.com/data/v1/asset-types/visual"
  },
  "_permissions": [
    "download"
  ],
  "md5_digest": null,
  "status": "inactive",
  "type": "visual"
}

Activating Assets

Before an asset is available for download, it must be activated.

You can activate an asset by sending a POST or GET request to the asset's "activation link".

The activation usually takes a little bit of time, but hey, I'm sure by now you have some ideas on how to automate your workflow. Go robots!


In [51]:
# Setup the activation url for a particular asset (in this case the visual asset)
activation_url = visual["_links"]["activate"]

# Send a request to the activation url to activate the item
res = session.get(activation_url)

# Print the response from the activation request
p(res.status_code)


202

Activation Response Codes

After hitting an activation url, you should get a response code back from the API:

  • 202 - The request has been accepted and the activation will begin shortly.
  • 204 - The asset is already active and no further action is needed.
  • 401 - The user does not have permissions to download this file.

After requesting to actiate an asset, let's do another request to see if the assset's status has changed:


In [53]:
import time

asset_activated = False

while asset_activated == False:
    # Send a request to the item's assets url
    res = session.get(assets_url)

    # Assign a variable to the item's assets url response
    assets = res.json()

    # Assign a variable to the visual asset from the response
    visual = assets["visual"]

    asset_status = visual["status"]
    
    # If asset is already active, we are done
    if asset_status == 'active':
        asset_activated = True
        print("Asset is active and ready to download")

# Print the visual asset data    
p(visual)


Asset is active and ready to download
{
  "_links": {
    "_self": "https://api.planet.com/data/v1/assets/eyJpIjogIjIwMTgwOTI2XzE4NDkyMF8xMDAxIiwgImMiOiAiUFNTY2VuZTNCYW5kIiwgInQiOiAidmlzdWFsIiwgImN0IjogIml0ZW0tdHlwZSJ9",
    "activate": "https://api.planet.com/data/v1/assets/eyJpIjogIjIwMTgwOTI2XzE4NDkyMF8xMDAxIiwgImMiOiAiUFNTY2VuZTNCYW5kIiwgInQiOiAidmlzdWFsIiwgImN0IjogIml0ZW0tdHlwZSJ9/activate",
    "type": "https://api.planet.com/data/v1/asset-types/visual"
  },
  "_permissions": [
    "download"
  ],
  "expires_at": "2018-09-27T18:55:49.541124",
  "location": "https://api.planet.com/data/v1/download?token=eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyTEE4QlVXQUFvZm5yWGJHTnRGNjZ0OFJlbFpvbEEraTVRNlJHUW5QNjNkQndhT2lwWG9IS0gxUkZBN09MbXBxUmtmNWRsTDEvWW94Rm1CelRWRTFmQT09IiwiaXRlbV90eXBlX2lkIjoiUFNTY2VuZTNCYW5kIiwidG9rZW5fdHlwZSI6InR5cGVkLWl0ZW0iLCJleHAiOjE1MzgwNzQ1NDksIml0ZW1faWQiOiIyMDE4MDkyNl8xODQ5MjBfMTAwMSIsImFzc2V0X3R5cGUiOiJ2aXN1YWwifQ.VdiE1M27MIb8JMtsY5TnwF1QPtJfEXSZKzwzlVfPr_ipIuNIQNITGk59MjAQLCB7EZI6wqkkPyJ4d0r-g9BHqQ",
  "md5_digest": "8202709c1629b78d23b5367eebe2b88c",
  "status": "active",
  "type": "visual"
}

Activation Status

An asset may have a status of inactive, activating or active.

Once an asset is active, the response will contain a location. We'll use the location to download the asset!

Below, we are polling the API until the item is activated. This may take awhile.

Downloading Assets

The asset's location property points asset file for use to download. Are you ready to download the asset? Let's do it!


In [54]:
# Assign a variable to the visual asset's location endpoint
location_url = visual["location"]

# Print the location endpoint
print(location_url)


https://api.planet.com/data/v1/download?token=eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyTEE4QlVXQUFvZm5yWGJHTnRGNjZ0OFJlbFpvbEEraTVRNlJHUW5QNjNkQndhT2lwWG9IS0gxUkZBN09MbXBxUmtmNWRsTDEvWW94Rm1CelRWRTFmQT09IiwiaXRlbV90eXBlX2lkIjoiUFNTY2VuZTNCYW5kIiwidG9rZW5fdHlwZSI6InR5cGVkLWl0ZW0iLCJleHAiOjE1MzgwNzQ1NDksIml0ZW1faWQiOiIyMDE4MDkyNl8xODQ5MjBfMTAwMSIsImFzc2V0X3R5cGUiOiJ2aXN1YWwifQ.VdiE1M27MIb8JMtsY5TnwF1QPtJfEXSZKzwzlVfPr_ipIuNIQNITGk59MjAQLCB7EZI6wqkkPyJ4d0r-g9BHqQ

There's the location url! You could click on it to open it in a browser and download the file... but why not let your code do it?

Let's write a small helper function to download asset files:


In [55]:
# Create a function to download asset files
# Parameters: 
# - url (the location url)
# - filename (the filename to save it as. defaults to whatever the file is called originally)

def pl_download(url, filename=None):
    
    # Send a GET request to the provided location url, using your API Key for authentication
    res = requests.get(url, stream=True, auth=(PLANET_API_KEY, ""))
    # If no filename argument is given
    if not filename:
        # Construct a filename from the API response
        if "content-disposition" in res.headers:
            filename = res.headers["content-disposition"].split("filename=")[-1].strip("'\"")
        # Construct a filename from the location url
        else:
            filename = url.split("=")[1][:10]
    # Save the file
    with open('output/' + filename, "wb") as f:
        for chunk in res.iter_content(chunk_size=1024):
            if chunk: # filter out keep-alive new chunks
                f.write(chunk)
                f.flush()

    return filename

In [56]:
# Download the file from an activated asset's location url
pl_download(location_url)


Out[56]:
'20180926_184920_1001_3B_Visual.tif'

High Five! You should now be downloading your very own GeoTIFF! We can't wait to see what you'll do with it!

Rate Limits


Now that you know how to download assets, you should probably keep some of the API rate limits in mind:

  • For most endpoints, the rate limit is 10 requests per second, per API key.
  • For activation endpoints, the rate limit is 5 requests per second, per API key.
  • For download endpoints, the rate limit is 15 requests per second, per API key.

If you're writing to code to automate accessing the API, you should account for 429 responses and handle retries after a backoff period.

Saved Searches


The /searches endpoint lets you created saved searches that can be reused.

To view your saved searches, visit the searches/?search_type=saved endpoint.

Finally, let's create a saved search:


In [57]:
# Setup the saved searches endpoint url
searches_url = "{}/searches".format(URL)

In [58]:
# Setup the request, specifying a name for the saved search, along with the usual search item_types and filter.
request = {
    "name" : "Vancouver Island",
    "item_types" : item_types,
    "filter" : geometry_filter
}

# Send a POST request to the saved searches endpoint (Create the saved search)
res = session.post(searches_url, json=request)

# Print the response
p(res.json())


{
  "__daily_email_enabled": false,
  "_links": {
    "_self": "https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f",
    "results": "https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f/results"
  },
  "created": "2018-09-27T17:56:19.691586Z",
  "filter": {
    "config": {
      "coordinates": [
        [
          [
            -125.29632568359376,
            48.37084770238366
          ],
          [
            -125.29632568359376,
            49.335861591104106
          ],
          [
            -123.2391357421875,
            49.335861591104106
          ],
          [
            -123.2391357421875,
            48.37084770238366
          ],
          [
            -125.29632568359376,
            48.37084770238366
          ]
        ]
      ],
      "type": "Polygon"
    },
    "field_name": "geometry",
    "type": "GeometryFilter"
  },
  "id": "02dbcab738b6424db5ef653c60d7800f",
  "item_types": [
    "PSScene3Band"
  ],
  "last_executed": null,
  "name": "Vancouver Island",
  "search_type": "saved",
  "updated": "2018-09-27T17:56:19.691611Z"
}

Now that we created a saved search, let's get a list of our saved searches:


In [80]:
# Send a GET request to the saved searches endpoint with the saved search type parameter (Get saved searches)
res = session.get(searches_url, params={"search_type" : "saved"})

# Assign a variable to the searches property in the saved searches response
searches = res.json()["searches"]
print(searches[2])#['name'])
print(len(searches))

# Loop through the searches
for search in searches:
    # Print the ID, Created Time, and Name for each saved search
    print("id: {} created: {} name: {}".format(search["id"], search["created"], search['name']))


{'__daily_email_enabled': False, '_links': {'_self': 'https://api.planet.com/data/v1/searches/3b67071ddf0a4f2c9cd032d269992dae', 'results': 'https://api.planet.com/data/v1/searches/3b67071ddf0a4f2c9cd032d269992dae/results'}, 'created': '2018-04-26T17:01:41.674550Z', 'filter': {'config': {'coordinates': [[[-122.47455596923828, 37.810326435534755], [-122.49172210693358, 37.795406713958236], [-122.52056121826172, 37.784282779035216], [-122.51953124999999, 37.6971326434885], [-122.38941192626953, 37.69441603823106], [-122.38872528076173, 37.705010235842614], [-122.36228942871092, 37.70935613533687], [-122.34992980957031, 37.727280276860036], [-122.37773895263672, 37.76230130281876], [-122.38494873046875, 37.794592824285104], [-122.40554809570311, 37.813310018173155], [-122.46150970458983, 37.805715207044685], [-122.47455596923828, 37.810326435534755]]], 'type': 'Polygon'}, 'field_name': 'geometry', 'type': 'GeometryFilter'}, 'id': '3b67071ddf0a4f2c9cd032d269992dae', 'item_types': ['PSScene3Band'], 'last_executed': '2018-04-26T17:01:41.952395Z', 'name': 'San Francisco', 'search_type': 'saved', 'updated': '2018-04-26T17:01:41.952593Z'}
7
id: 02dbcab738b6424db5ef653c60d7800f created: 2018-09-27T17:56:19.691586Z name: Vancouver Island
id: f1d47dd8eb00453da94cf5f0d690bb10 created: 2018-09-27T17:55:00.489357Z name: San Francisco
id: 3b67071ddf0a4f2c9cd032d269992dae created: 2018-04-26T17:01:41.674550Z name: San Francisco
id: 06b6392f4076460b9514e5c6a11d8577 created: 2018-04-01T20:08:35.155276Z name: Viet smaller AOI
id: fa1622c65a4644e58bd5cc3e51fe41ce created: 2018-04-01T19:56:17.791099Z name: Vietnam Label-Maker
id: 378c4e84629a48688fac99c917214c76 created: 2018-03-03T02:46:41.798342Z name: San Francisco
id: 7d793c34ee074cdebdb4c85b56b65e18 created: 2018-01-23T22:46:51.997098Z name: Medianía Alta

Ok, now let's check out the results from a particular saved search:


In [81]:
# Setup the saved search url, using the first saved search in the list
saved_url = "{}/{}".format(searches_url, searches[0]["id"])

# Print the saved search url
p(saved_url)

# Setup the saved search's results url
results_url = "{}/results".format(saved_url)

# Print the saved search's results url
p(results_url)


"https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f"
"https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f/results"

In [82]:
# Send a GET request to the saved search url (Get the saved search data)
res = session.get(saved_url)

# Print the response
p(res.json())


{
  "__daily_email_enabled": false,
  "_links": {
    "_self": "https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f",
    "results": "https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f/results"
  },
  "created": "2018-09-27T17:56:19.691586Z",
  "filter": {
    "config": {
      "coordinates": [
        [
          [
            -125.29632568359376,
            48.37084770238366
          ],
          [
            -125.29632568359376,
            49.335861591104106
          ],
          [
            -123.2391357421875,
            49.335861591104106
          ],
          [
            -123.2391357421875,
            48.37084770238366
          ],
          [
            -125.29632568359376,
            48.37084770238366
          ]
        ]
      ],
      "type": "Polygon"
    },
    "field_name": "geometry",
    "type": "GeometryFilter"
  },
  "id": "02dbcab738b6424db5ef653c60d7800f",
  "item_types": [
    "PSScene3Band"
  ],
  "last_executed": "2018-09-27T18:05:07.344387Z",
  "name": "Vancouver Island",
  "search_type": "saved",
  "updated": "2018-09-27T18:05:07.344644Z"
}

In [83]:
# Send a GET request to the saved search results url (Get the saved search results)
results = session.get(results_url).json()

# Print the number of features in the saved search
print(len(results["features"]))

# Print the first feature in the saved search
print(results["features"][0])


250
{'_links': {'_self': 'https://api.planet.com/data/v1/item-types/PSScene3Band/items/20180926_184622_101f', 'assets': 'https://api.planet.com/data/v1/item-types/PSScene3Band/items/20180926_184622_101f/assets/', 'thumbnail': 'https://tiles.planet.com/data/v1/item-types/PSScene3Band/items/20180926_184622_101f/thumb'}, '_permissions': ['assets.analytic_xml:download', 'assets.basic_analytic_dn:download', 'assets.basic_analytic_dn_xml:download', 'assets.basic_analytic_xml:download', 'assets.analytic_dn:download', 'assets.basic_udm:download', 'assets.analytic:download', 'assets.visual:download', 'assets.analytic_dn_xml:download', 'assets.basic_analytic_rpc:download', 'assets.basic_analytic_dn_rpc:download', 'assets.visual_xml:download', 'assets.basic_analytic:download', 'assets.udm:download'], 'geometry': {'coordinates': [[[-124.41902221336055, 49.46881119451928], [-124.4469003178027, 49.39546891193115], [-124.09936243367707, 49.33944891779779], [-124.07169599358859, 49.4129295372475], [-124.41902221336055, 49.46881119451928]]], 'type': 'Polygon'}, 'id': '20180926_184622_101f', 'properties': {'acquired': '2018-09-26T18:46:22.870024Z', 'anomalous_pixels': 0, 'cloud_cover': 0.11, 'columns': 9085, 'epsg_code': 32610, 'ground_control': True, 'gsd': 3.9, 'instrument': 'PS2', 'item_type': 'PSScene3Band', 'origin_x': 395010, 'origin_y': 5480544, 'pixel_resolution': 3, 'provider': 'planetscope', 'published': '2018-09-27T16:26:12Z', 'quality_category': 'standard', 'rows': 4924, 'satellite_id': '101f', 'strip_id': '1727623', 'sun_azimuth': 154.2, 'sun_elevation': 36.2, 'updated': '2018-09-27T16:26:12Z', 'usable_data': 0, 'view_angle': 1}, 'type': 'Feature'}

A saved search can also be updated by senidng a PUT request with a changed search definition back to the API.

Did you know that saved searches can also send you a daily email to alert you to when new items are added to the search resutlts? Oh yeah!


In [84]:
# Assign a variable to the saved search response
search = res.json()

# Print the saved search
p(search)


{
  "__daily_email_enabled": false,
  "_links": {
    "_self": "https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f",
    "results": "https://api.planet.com/data/v1/searches/02dbcab738b6424db5ef653c60d7800f/results"
  },
  "created": "2018-09-27T17:56:19.691586Z",
  "filter": {
    "config": {
      "coordinates": [
        [
          [
            -125.29632568359376,
            48.37084770238366
          ],
          [
            -125.29632568359376,
            49.335861591104106
          ],
          [
            -123.2391357421875,
            49.335861591104106
          ],
          [
            -123.2391357421875,
            48.37084770238366
          ],
          [
            -125.29632568359376,
            48.37084770238366
          ]
        ]
      ],
      "type": "Polygon"
    },
    "field_name": "geometry",
    "type": "GeometryFilter"
  },
  "id": "02dbcab738b6424db5ef653c60d7800f",
  "item_types": [
    "PSScene3Band"
  ],
  "last_executed": "2018-09-27T18:05:07.344387Z",
  "name": "Vancouver Island",
  "search_type": "saved",
  "updated": "2018-09-27T18:05:07.344644Z"
}

In [85]:
# Change the saved search name to "South Vancouver Island"
search["name"] = "South Vancouver Island"

# Set the daily email enabled to true (Get email alerts when new items show up in this search)
search["__daily_email_enabled"] = True

# Send a PUT request to the saved search endpoint (Update the saved search)
res = session.put(saved_url, json=search)

# The response status code
res.status_code


Out[85]:
200

Conclusion

You made it! You should now be able to use the Planet API to find items and assets by searching, get stats and save searches, and activate and download assets using Python code!

Don't forget to visit the Planet API Reference Docs.